Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013, The Linux Foundation. All rights reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 and |
| 6 | * only version 2 as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | * GNU General Public License for more details. |
| 12 | */ |
| 13 | |
| 14 | #define pr_fmt(fmt) "%s: " fmt, __func__ |
| 15 | |
| 16 | #include <linux/kernel.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/init.h> |
| 19 | #include <linux/io.h> |
| 20 | #include <linux/delay.h> |
| 21 | #include <linux/mutex.h> |
| 22 | #include <linux/spinlock.h> |
| 23 | #include <linux/errno.h> |
| 24 | #include <linux/cpufreq.h> |
| 25 | #include <linux/clk.h> |
| 26 | #include <linux/platform_device.h> |
| 27 | #include <linux/iopoll.h> |
| 28 | |
| 29 | #include <mach/board.h> |
| 30 | #include <mach/msm_iomap.h> |
| 31 | #include <mach/msm_bus.h> |
| 32 | #include <mach/msm_bus_board.h> |
| 33 | #include <mach/rpm-regulator.h> |
| 34 | #include <mach/clk-provider.h> |
| 35 | #include <mach/rpm-regulator-smd.h> |
| 36 | |
| 37 | #include "acpuclock.h" |
| 38 | #include "acpuclock-cortex.h" |
| 39 | |
| 40 | #define POLL_INTERVAL_US 1 |
| 41 | #define APCS_RCG_UPDATE_TIMEOUT_US 20 |
| 42 | |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 43 | static struct acpuclk_drv_data *priv; |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 44 | static uint32_t bus_perf_client; |
| 45 | |
| 46 | /* Update the bus bandwidth request. */ |
| 47 | static void set_bus_bw(unsigned int bw) |
| 48 | { |
| 49 | int ret; |
| 50 | |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 51 | if (bw >= priv->bus_scale->num_usecases) { |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 52 | pr_err("invalid bandwidth request (%d)\n", bw); |
| 53 | return; |
| 54 | } |
| 55 | |
| 56 | /* Update bandwidth if request has changed. This may sleep. */ |
| 57 | ret = msm_bus_scale_client_update_request(bus_perf_client, bw); |
| 58 | if (ret) |
| 59 | pr_err("bandwidth request failed (%d)\n", ret); |
| 60 | |
| 61 | return; |
| 62 | } |
| 63 | |
| 64 | /* Apply any voltage increases. */ |
| 65 | static int increase_vdd(unsigned int vdd_cpu, unsigned int vdd_mem) |
| 66 | { |
| 67 | int rc = 0; |
| 68 | |
Patrick Daly | 18748a7 | 2013-04-24 18:59:22 -0700 | [diff] [blame] | 69 | if (priv->vdd_mem) { |
| 70 | /* |
| 71 | * Increase vdd_mem before vdd_cpu. vdd_mem should |
| 72 | * be >= vdd_cpu. |
| 73 | */ |
| 74 | rc = regulator_set_voltage(priv->vdd_mem, vdd_mem, |
| 75 | priv->vdd_max_mem); |
| 76 | if (rc) { |
| 77 | pr_err("vdd_mem increase failed (%d)\n", rc); |
| 78 | return rc; |
| 79 | } |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 80 | } |
| 81 | |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 82 | rc = regulator_set_voltage(priv->vdd_cpu, vdd_cpu, priv->vdd_max_cpu); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 83 | if (rc) |
| 84 | pr_err("vdd_cpu increase failed (%d)\n", rc); |
| 85 | |
| 86 | return rc; |
| 87 | } |
| 88 | |
| 89 | /* Apply any per-cpu voltage decreases. */ |
| 90 | static void decrease_vdd(unsigned int vdd_cpu, unsigned int vdd_mem) |
| 91 | { |
| 92 | int ret; |
| 93 | |
| 94 | /* Update CPU voltage. */ |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 95 | ret = regulator_set_voltage(priv->vdd_cpu, vdd_cpu, priv->vdd_max_cpu); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 96 | if (ret) { |
| 97 | pr_err("vdd_cpu decrease failed (%d)\n", ret); |
| 98 | return; |
| 99 | } |
| 100 | |
Patrick Daly | 18748a7 | 2013-04-24 18:59:22 -0700 | [diff] [blame] | 101 | if (!priv->vdd_mem) |
| 102 | return; |
| 103 | |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 104 | /* Decrease vdd_mem after vdd_cpu. vdd_mem should be >= vdd_cpu. */ |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 105 | ret = regulator_set_voltage(priv->vdd_mem, vdd_mem, priv->vdd_max_mem); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 106 | if (ret) |
| 107 | pr_err("vdd_mem decrease failed (%d)\n", ret); |
| 108 | } |
| 109 | |
| 110 | static void select_clk_source_div(struct acpuclk_drv_data *drv_data, |
| 111 | struct clkctl_acpu_speed *s) |
| 112 | { |
| 113 | u32 regval, rc, src_div; |
| 114 | void __iomem *apcs_rcg_config = drv_data->apcs_rcg_config; |
| 115 | void __iomem *apcs_rcg_cmd = drv_data->apcs_rcg_cmd; |
| 116 | struct acpuclk_reg_data *r = &drv_data->reg_data; |
| 117 | |
| 118 | src_div = s->src_div ? ((2 * s->src_div) - 1) : s->src_div; |
| 119 | |
| 120 | regval = readl_relaxed(apcs_rcg_config); |
| 121 | regval &= ~r->cfg_src_mask; |
| 122 | regval |= s->src_sel << r->cfg_src_shift; |
| 123 | regval &= ~r->cfg_div_mask; |
| 124 | regval |= src_div << r->cfg_div_shift; |
| 125 | writel_relaxed(regval, apcs_rcg_config); |
| 126 | |
| 127 | /* Update the configuration */ |
| 128 | regval = readl_relaxed(apcs_rcg_cmd); |
| 129 | regval |= r->update_mask; |
| 130 | writel_relaxed(regval, apcs_rcg_cmd); |
| 131 | |
| 132 | /* Wait for the update to take effect */ |
Patrick Daly | 6bda591 | 2013-04-03 16:06:07 -0700 | [diff] [blame] | 133 | rc = readl_poll_timeout_noirq(apcs_rcg_cmd, regval, |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 134 | !(regval & r->poll_mask), |
| 135 | POLL_INTERVAL_US, |
| 136 | APCS_RCG_UPDATE_TIMEOUT_US); |
| 137 | if (rc) |
| 138 | pr_warn("acpu rcg didn't update its configuration\n"); |
| 139 | } |
| 140 | |
Patrick Daly | 57d87e6 | 2013-04-09 18:51:51 -0700 | [diff] [blame] | 141 | static int set_speed_atomic(struct clkctl_acpu_speed *tgt_s) |
| 142 | { |
| 143 | struct clkctl_acpu_speed *strt_s = priv->current_speed; |
| 144 | struct clk *strt = priv->src_clocks[strt_s->src].clk; |
| 145 | struct clk *tgt = priv->src_clocks[tgt_s->src].clk; |
| 146 | int rc = 0; |
| 147 | |
| 148 | WARN(strt_s->src == ACPUPLL && tgt_s->src == ACPUPLL, |
| 149 | "can't reprogram ACPUPLL during atomic context\n"); |
| 150 | rc = clk_enable(tgt); |
| 151 | if (rc) |
| 152 | return rc; |
| 153 | |
| 154 | select_clk_source_div(priv, tgt_s); |
| 155 | clk_disable(strt); |
| 156 | |
| 157 | return rc; |
| 158 | } |
| 159 | |
| 160 | static int set_speed(struct clkctl_acpu_speed *tgt_s) |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 161 | { |
| 162 | int rc = 0; |
| 163 | unsigned int tgt_freq_hz = tgt_s->khz * 1000; |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 164 | struct clkctl_acpu_speed *strt_s = priv->current_speed; |
| 165 | struct clkctl_acpu_speed *cxo_s = &priv->freq_tbl[0]; |
| 166 | struct clk *strt = priv->src_clocks[strt_s->src].clk; |
| 167 | struct clk *tgt = priv->src_clocks[tgt_s->src].clk; |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 168 | |
| 169 | if (strt_s->src == ACPUPLL && tgt_s->src == ACPUPLL) { |
| 170 | /* Switch to another always on src */ |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 171 | select_clk_source_div(priv, cxo_s); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 172 | |
| 173 | /* Re-program acpu pll */ |
Patrick Daly | 57d87e6 | 2013-04-09 18:51:51 -0700 | [diff] [blame] | 174 | clk_disable_unprepare(tgt); |
Patrick Daly | e85c6bc | 2013-01-31 14:14:28 -0800 | [diff] [blame] | 175 | |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 176 | rc = clk_set_rate(tgt, tgt_freq_hz); |
| 177 | if (rc) |
| 178 | pr_err("Failed to set ACPU PLL to %u\n", tgt_freq_hz); |
Patrick Daly | e85c6bc | 2013-01-31 14:14:28 -0800 | [diff] [blame] | 179 | |
Patrick Daly | 57d87e6 | 2013-04-09 18:51:51 -0700 | [diff] [blame] | 180 | BUG_ON(clk_prepare_enable(tgt)); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 181 | |
| 182 | /* Switch back to acpu pll */ |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 183 | select_clk_source_div(priv, tgt_s); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 184 | |
| 185 | } else if (strt_s->src != ACPUPLL && tgt_s->src == ACPUPLL) { |
| 186 | rc = clk_set_rate(tgt, tgt_freq_hz); |
| 187 | if (rc) { |
| 188 | pr_err("Failed to set ACPU PLL to %u\n", tgt_freq_hz); |
| 189 | return rc; |
| 190 | } |
| 191 | |
Patrick Daly | 57d87e6 | 2013-04-09 18:51:51 -0700 | [diff] [blame] | 192 | rc = clk_prepare_enable(tgt); |
Patrick Daly | e85c6bc | 2013-01-31 14:14:28 -0800 | [diff] [blame] | 193 | |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 194 | if (rc) { |
| 195 | pr_err("ACPU PLL enable failed\n"); |
| 196 | return rc; |
| 197 | } |
| 198 | |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 199 | select_clk_source_div(priv, tgt_s); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 200 | |
Patrick Daly | 57d87e6 | 2013-04-09 18:51:51 -0700 | [diff] [blame] | 201 | clk_disable_unprepare(strt); |
Patrick Daly | e85c6bc | 2013-01-31 14:14:28 -0800 | [diff] [blame] | 202 | |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 203 | } else { |
Patrick Daly | 57d87e6 | 2013-04-09 18:51:51 -0700 | [diff] [blame] | 204 | rc = clk_prepare_enable(tgt); |
Patrick Daly | e85c6bc | 2013-01-31 14:14:28 -0800 | [diff] [blame] | 205 | |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 206 | if (rc) { |
| 207 | pr_err("%s enable failed\n", |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 208 | priv->src_clocks[tgt_s->src].name); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 209 | return rc; |
| 210 | } |
| 211 | |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 212 | select_clk_source_div(priv, tgt_s); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 213 | |
Patrick Daly | 57d87e6 | 2013-04-09 18:51:51 -0700 | [diff] [blame] | 214 | clk_disable_unprepare(strt); |
Patrick Daly | e85c6bc | 2013-01-31 14:14:28 -0800 | [diff] [blame] | 215 | |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | return rc; |
| 219 | } |
| 220 | |
| 221 | static int acpuclk_cortex_set_rate(int cpu, unsigned long rate, |
| 222 | enum setrate_reason reason) |
| 223 | { |
| 224 | struct clkctl_acpu_speed *tgt_s, *strt_s; |
| 225 | int rc = 0; |
| 226 | |
| 227 | if (reason == SETRATE_CPUFREQ) |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 228 | mutex_lock(&priv->lock); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 229 | |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 230 | strt_s = priv->current_speed; |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 231 | |
| 232 | /* Return early if rate didn't change */ |
| 233 | if (rate == strt_s->khz) |
| 234 | goto out; |
| 235 | |
| 236 | /* Find target frequency */ |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 237 | for (tgt_s = priv->freq_tbl; tgt_s->khz != 0; tgt_s++) |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 238 | if (tgt_s->khz == rate) |
| 239 | break; |
| 240 | if (tgt_s->khz == 0) { |
| 241 | rc = -EINVAL; |
| 242 | goto out; |
| 243 | } |
| 244 | |
| 245 | /* Increase VDD levels if needed */ |
| 246 | if ((reason == SETRATE_CPUFREQ || reason == SETRATE_INIT) |
| 247 | && (tgt_s->khz > strt_s->khz)) { |
| 248 | rc = increase_vdd(tgt_s->vdd_cpu, tgt_s->vdd_mem); |
| 249 | if (rc) |
| 250 | goto out; |
| 251 | } |
| 252 | |
| 253 | pr_debug("Switching from CPU rate %u KHz -> %u KHz\n", |
| 254 | strt_s->khz, tgt_s->khz); |
| 255 | |
Patrick Daly | e85c6bc | 2013-01-31 14:14:28 -0800 | [diff] [blame] | 256 | /* Switch CPU speed. Flag indicates atomic context */ |
| 257 | if (reason == SETRATE_CPUFREQ || reason == SETRATE_INIT) |
Patrick Daly | 57d87e6 | 2013-04-09 18:51:51 -0700 | [diff] [blame] | 258 | rc = set_speed(tgt_s); |
Patrick Daly | e85c6bc | 2013-01-31 14:14:28 -0800 | [diff] [blame] | 259 | else |
Patrick Daly | 57d87e6 | 2013-04-09 18:51:51 -0700 | [diff] [blame] | 260 | rc = set_speed_atomic(tgt_s); |
Patrick Daly | e85c6bc | 2013-01-31 14:14:28 -0800 | [diff] [blame] | 261 | |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 262 | if (rc) |
| 263 | goto out; |
| 264 | |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 265 | priv->current_speed = tgt_s; |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 266 | pr_debug("CPU speed change complete\n"); |
| 267 | |
| 268 | /* Nothing else to do for SWFI or power-collapse. */ |
| 269 | if (reason == SETRATE_SWFI || reason == SETRATE_PC) |
| 270 | goto out; |
| 271 | |
| 272 | /* Update bus bandwith request */ |
| 273 | set_bus_bw(tgt_s->bw_level); |
| 274 | |
| 275 | /* Drop VDD levels if we can. */ |
| 276 | if (tgt_s->khz < strt_s->khz) |
| 277 | decrease_vdd(tgt_s->vdd_cpu, tgt_s->vdd_mem); |
| 278 | |
| 279 | out: |
| 280 | if (reason == SETRATE_CPUFREQ) |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 281 | mutex_unlock(&priv->lock); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 282 | return rc; |
| 283 | } |
| 284 | |
| 285 | static unsigned long acpuclk_cortex_get_rate(int cpu) |
| 286 | { |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 287 | return priv->current_speed->khz; |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | #ifdef CONFIG_CPU_FREQ_MSM |
| 291 | static struct cpufreq_frequency_table freq_table[30]; |
| 292 | |
| 293 | static void __init cpufreq_table_init(void) |
| 294 | { |
| 295 | int i, freq_cnt = 0; |
| 296 | |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 297 | /* Construct the freq_table tables from priv->freq_tbl. */ |
| 298 | for (i = 0; priv->freq_tbl[i].khz != 0 |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 299 | && freq_cnt < ARRAY_SIZE(freq_table); i++) { |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 300 | if (!priv->freq_tbl[i].use_for_scaling) |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 301 | continue; |
| 302 | freq_table[freq_cnt].index = freq_cnt; |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 303 | freq_table[freq_cnt].frequency = priv->freq_tbl[i].khz; |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 304 | freq_cnt++; |
| 305 | } |
| 306 | /* freq_table not big enough to store all usable freqs. */ |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 307 | BUG_ON(priv->freq_tbl[i].khz != 0); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 308 | |
| 309 | freq_table[freq_cnt].index = freq_cnt; |
| 310 | freq_table[freq_cnt].frequency = CPUFREQ_TABLE_END; |
| 311 | |
| 312 | pr_info("CPU: %d scaling frequencies supported.\n", freq_cnt); |
| 313 | |
| 314 | /* Register table with CPUFreq. */ |
| 315 | for_each_possible_cpu(i) |
| 316 | cpufreq_frequency_table_get_attr(freq_table, i); |
| 317 | } |
| 318 | #else |
| 319 | static void __init cpufreq_table_init(void) {} |
| 320 | #endif |
| 321 | |
| 322 | static struct acpuclk_data acpuclk_cortex_data = { |
| 323 | .set_rate = acpuclk_cortex_set_rate, |
| 324 | .get_rate = acpuclk_cortex_get_rate, |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 325 | }; |
| 326 | |
| 327 | int __init acpuclk_cortex_init(struct platform_device *pdev, |
| 328 | struct acpuclk_drv_data *data) |
| 329 | { |
| 330 | unsigned long max_cpu_khz = 0; |
| 331 | int i, rc; |
| 332 | |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 333 | priv = data; |
| 334 | mutex_init(&priv->lock); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 335 | |
Patrick Daly | af8808e | 2013-03-20 12:57:00 -0700 | [diff] [blame] | 336 | acpuclk_cortex_data.power_collapse_khz = priv->wait_for_irq_khz; |
| 337 | acpuclk_cortex_data.wait_for_irq_khz = priv->wait_for_irq_khz; |
| 338 | |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 339 | bus_perf_client = msm_bus_scale_register_client(priv->bus_scale); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 340 | if (!bus_perf_client) { |
| 341 | pr_err("Unable to register bus client\n"); |
| 342 | BUG(); |
| 343 | } |
| 344 | |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 345 | /* Improve boot time by ramping up CPU immediately */ |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 346 | for (i = 0; priv->freq_tbl[i].khz != 0; i++) |
| 347 | if (priv->freq_tbl[i].use_for_scaling) |
| 348 | max_cpu_khz = priv->freq_tbl[i].khz; |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 349 | |
| 350 | /* Initialize regulators */ |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 351 | rc = increase_vdd(priv->vdd_max_cpu, priv->vdd_max_mem); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 352 | if (rc) |
| 353 | goto err_vdd; |
| 354 | |
Patrick Daly | 18748a7 | 2013-04-24 18:59:22 -0700 | [diff] [blame] | 355 | if (priv->vdd_mem) { |
| 356 | rc = regulator_enable(priv->vdd_mem); |
| 357 | if (rc) { |
| 358 | dev_err(&pdev->dev, "regulator_enable for mem failed\n"); |
| 359 | goto err_vdd; |
| 360 | } |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 361 | } |
| 362 | |
Patrick Daly | 9196ed4 | 2013-03-13 15:59:03 -0700 | [diff] [blame] | 363 | rc = regulator_enable(priv->vdd_cpu); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 364 | if (rc) { |
| 365 | dev_err(&pdev->dev, "regulator_enable for cpu failed\n"); |
| 366 | goto err_vdd_cpu; |
| 367 | } |
| 368 | |
Patrick Daly | 71839d4 | 2013-02-25 13:05:05 -0800 | [diff] [blame] | 369 | /* |
| 370 | * Select a state which is always a valid transition to align SW with |
| 371 | * the HW configuration set by the bootloaders. |
| 372 | */ |
| 373 | acpuclk_cortex_set_rate(0, acpuclk_cortex_data.power_collapse_khz, |
| 374 | SETRATE_INIT); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 375 | acpuclk_cortex_set_rate(0, max_cpu_khz, SETRATE_INIT); |
| 376 | |
| 377 | acpuclk_register(&acpuclk_cortex_data); |
| 378 | cpufreq_table_init(); |
| 379 | |
| 380 | return 0; |
| 381 | |
| 382 | err_vdd_cpu: |
Patrick Daly | 18748a7 | 2013-04-24 18:59:22 -0700 | [diff] [blame] | 383 | if (priv->vdd_mem) |
| 384 | regulator_disable(priv->vdd_mem); |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 385 | err_vdd: |
Patrick Daly | 985c14b | 2012-12-03 17:12:37 -0800 | [diff] [blame] | 386 | return rc; |
| 387 | } |