blob: 0c80a561deb7a800b09ec7bbd5ba7aaa83c91504 [file] [log] [blame]
Patrick Daly985c14b2012-12-03 17:12:37 -08001/*
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 Daly9196ed42013-03-13 15:59:03 -070043static struct acpuclk_drv_data *priv;
Patrick Daly985c14b2012-12-03 17:12:37 -080044static uint32_t bus_perf_client;
45
46/* Update the bus bandwidth request. */
47static void set_bus_bw(unsigned int bw)
48{
49 int ret;
50
Patrick Daly9196ed42013-03-13 15:59:03 -070051 if (bw >= priv->bus_scale->num_usecases) {
Patrick Daly985c14b2012-12-03 17:12:37 -080052 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. */
65static int increase_vdd(unsigned int vdd_cpu, unsigned int vdd_mem)
66{
67 int rc = 0;
68
Patrick Daly18748a72013-04-24 18:59:22 -070069 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 Daly985c14b2012-12-03 17:12:37 -080080 }
81
Patrick Daly9196ed42013-03-13 15:59:03 -070082 rc = regulator_set_voltage(priv->vdd_cpu, vdd_cpu, priv->vdd_max_cpu);
Patrick Daly985c14b2012-12-03 17:12:37 -080083 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. */
90static void decrease_vdd(unsigned int vdd_cpu, unsigned int vdd_mem)
91{
92 int ret;
93
94 /* Update CPU voltage. */
Patrick Daly9196ed42013-03-13 15:59:03 -070095 ret = regulator_set_voltage(priv->vdd_cpu, vdd_cpu, priv->vdd_max_cpu);
Patrick Daly985c14b2012-12-03 17:12:37 -080096 if (ret) {
97 pr_err("vdd_cpu decrease failed (%d)\n", ret);
98 return;
99 }
100
Patrick Daly18748a72013-04-24 18:59:22 -0700101 if (!priv->vdd_mem)
102 return;
103
Patrick Daly985c14b2012-12-03 17:12:37 -0800104 /* Decrease vdd_mem after vdd_cpu. vdd_mem should be >= vdd_cpu. */
Patrick Daly9196ed42013-03-13 15:59:03 -0700105 ret = regulator_set_voltage(priv->vdd_mem, vdd_mem, priv->vdd_max_mem);
Patrick Daly985c14b2012-12-03 17:12:37 -0800106 if (ret)
107 pr_err("vdd_mem decrease failed (%d)\n", ret);
108}
109
110static 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 Daly6bda5912013-04-03 16:06:07 -0700133 rc = readl_poll_timeout_noirq(apcs_rcg_cmd, regval,
Patrick Daly985c14b2012-12-03 17:12:37 -0800134 !(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 Daly57d87e62013-04-09 18:51:51 -0700141static 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
160static int set_speed(struct clkctl_acpu_speed *tgt_s)
Patrick Daly985c14b2012-12-03 17:12:37 -0800161{
162 int rc = 0;
163 unsigned int tgt_freq_hz = tgt_s->khz * 1000;
Patrick Daly9196ed42013-03-13 15:59:03 -0700164 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 Daly985c14b2012-12-03 17:12:37 -0800168
169 if (strt_s->src == ACPUPLL && tgt_s->src == ACPUPLL) {
170 /* Switch to another always on src */
Patrick Daly9196ed42013-03-13 15:59:03 -0700171 select_clk_source_div(priv, cxo_s);
Patrick Daly985c14b2012-12-03 17:12:37 -0800172
173 /* Re-program acpu pll */
Patrick Daly57d87e62013-04-09 18:51:51 -0700174 clk_disable_unprepare(tgt);
Patrick Dalye85c6bc2013-01-31 14:14:28 -0800175
Patrick Daly985c14b2012-12-03 17:12:37 -0800176 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 Dalye85c6bc2013-01-31 14:14:28 -0800179
Patrick Daly57d87e62013-04-09 18:51:51 -0700180 BUG_ON(clk_prepare_enable(tgt));
Patrick Daly985c14b2012-12-03 17:12:37 -0800181
182 /* Switch back to acpu pll */
Patrick Daly9196ed42013-03-13 15:59:03 -0700183 select_clk_source_div(priv, tgt_s);
Patrick Daly985c14b2012-12-03 17:12:37 -0800184
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 Daly57d87e62013-04-09 18:51:51 -0700192 rc = clk_prepare_enable(tgt);
Patrick Dalye85c6bc2013-01-31 14:14:28 -0800193
Patrick Daly985c14b2012-12-03 17:12:37 -0800194 if (rc) {
195 pr_err("ACPU PLL enable failed\n");
196 return rc;
197 }
198
Patrick Daly9196ed42013-03-13 15:59:03 -0700199 select_clk_source_div(priv, tgt_s);
Patrick Daly985c14b2012-12-03 17:12:37 -0800200
Patrick Daly57d87e62013-04-09 18:51:51 -0700201 clk_disable_unprepare(strt);
Patrick Dalye85c6bc2013-01-31 14:14:28 -0800202
Patrick Daly985c14b2012-12-03 17:12:37 -0800203 } else {
Patrick Daly57d87e62013-04-09 18:51:51 -0700204 rc = clk_prepare_enable(tgt);
Patrick Dalye85c6bc2013-01-31 14:14:28 -0800205
Patrick Daly985c14b2012-12-03 17:12:37 -0800206 if (rc) {
207 pr_err("%s enable failed\n",
Patrick Daly9196ed42013-03-13 15:59:03 -0700208 priv->src_clocks[tgt_s->src].name);
Patrick Daly985c14b2012-12-03 17:12:37 -0800209 return rc;
210 }
211
Patrick Daly9196ed42013-03-13 15:59:03 -0700212 select_clk_source_div(priv, tgt_s);
Patrick Daly985c14b2012-12-03 17:12:37 -0800213
Patrick Daly57d87e62013-04-09 18:51:51 -0700214 clk_disable_unprepare(strt);
Patrick Dalye85c6bc2013-01-31 14:14:28 -0800215
Patrick Daly985c14b2012-12-03 17:12:37 -0800216 }
217
218 return rc;
219}
220
221static 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 Daly9196ed42013-03-13 15:59:03 -0700228 mutex_lock(&priv->lock);
Patrick Daly985c14b2012-12-03 17:12:37 -0800229
Patrick Daly9196ed42013-03-13 15:59:03 -0700230 strt_s = priv->current_speed;
Patrick Daly985c14b2012-12-03 17:12:37 -0800231
232 /* Return early if rate didn't change */
233 if (rate == strt_s->khz)
234 goto out;
235
236 /* Find target frequency */
Patrick Daly9196ed42013-03-13 15:59:03 -0700237 for (tgt_s = priv->freq_tbl; tgt_s->khz != 0; tgt_s++)
Patrick Daly985c14b2012-12-03 17:12:37 -0800238 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 Dalye85c6bc2013-01-31 14:14:28 -0800256 /* Switch CPU speed. Flag indicates atomic context */
257 if (reason == SETRATE_CPUFREQ || reason == SETRATE_INIT)
Patrick Daly57d87e62013-04-09 18:51:51 -0700258 rc = set_speed(tgt_s);
Patrick Dalye85c6bc2013-01-31 14:14:28 -0800259 else
Patrick Daly57d87e62013-04-09 18:51:51 -0700260 rc = set_speed_atomic(tgt_s);
Patrick Dalye85c6bc2013-01-31 14:14:28 -0800261
Patrick Daly985c14b2012-12-03 17:12:37 -0800262 if (rc)
263 goto out;
264
Patrick Daly9196ed42013-03-13 15:59:03 -0700265 priv->current_speed = tgt_s;
Patrick Daly985c14b2012-12-03 17:12:37 -0800266 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
279out:
280 if (reason == SETRATE_CPUFREQ)
Patrick Daly9196ed42013-03-13 15:59:03 -0700281 mutex_unlock(&priv->lock);
Patrick Daly985c14b2012-12-03 17:12:37 -0800282 return rc;
283}
284
285static unsigned long acpuclk_cortex_get_rate(int cpu)
286{
Patrick Daly9196ed42013-03-13 15:59:03 -0700287 return priv->current_speed->khz;
Patrick Daly985c14b2012-12-03 17:12:37 -0800288}
289
290#ifdef CONFIG_CPU_FREQ_MSM
291static struct cpufreq_frequency_table freq_table[30];
292
293static void __init cpufreq_table_init(void)
294{
295 int i, freq_cnt = 0;
296
Patrick Daly9196ed42013-03-13 15:59:03 -0700297 /* Construct the freq_table tables from priv->freq_tbl. */
298 for (i = 0; priv->freq_tbl[i].khz != 0
Patrick Daly985c14b2012-12-03 17:12:37 -0800299 && freq_cnt < ARRAY_SIZE(freq_table); i++) {
Patrick Daly9196ed42013-03-13 15:59:03 -0700300 if (!priv->freq_tbl[i].use_for_scaling)
Patrick Daly985c14b2012-12-03 17:12:37 -0800301 continue;
302 freq_table[freq_cnt].index = freq_cnt;
Patrick Daly9196ed42013-03-13 15:59:03 -0700303 freq_table[freq_cnt].frequency = priv->freq_tbl[i].khz;
Patrick Daly985c14b2012-12-03 17:12:37 -0800304 freq_cnt++;
305 }
306 /* freq_table not big enough to store all usable freqs. */
Patrick Daly9196ed42013-03-13 15:59:03 -0700307 BUG_ON(priv->freq_tbl[i].khz != 0);
Patrick Daly985c14b2012-12-03 17:12:37 -0800308
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
319static void __init cpufreq_table_init(void) {}
320#endif
321
322static struct acpuclk_data acpuclk_cortex_data = {
323 .set_rate = acpuclk_cortex_set_rate,
324 .get_rate = acpuclk_cortex_get_rate,
Patrick Daly985c14b2012-12-03 17:12:37 -0800325};
326
327int __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 Daly9196ed42013-03-13 15:59:03 -0700333 priv = data;
334 mutex_init(&priv->lock);
Patrick Daly985c14b2012-12-03 17:12:37 -0800335
Patrick Dalyaf8808e2013-03-20 12:57:00 -0700336 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 Daly9196ed42013-03-13 15:59:03 -0700339 bus_perf_client = msm_bus_scale_register_client(priv->bus_scale);
Patrick Daly985c14b2012-12-03 17:12:37 -0800340 if (!bus_perf_client) {
341 pr_err("Unable to register bus client\n");
342 BUG();
343 }
344
Patrick Daly985c14b2012-12-03 17:12:37 -0800345 /* Improve boot time by ramping up CPU immediately */
Patrick Daly9196ed42013-03-13 15:59:03 -0700346 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 Daly985c14b2012-12-03 17:12:37 -0800349
350 /* Initialize regulators */
Patrick Daly9196ed42013-03-13 15:59:03 -0700351 rc = increase_vdd(priv->vdd_max_cpu, priv->vdd_max_mem);
Patrick Daly985c14b2012-12-03 17:12:37 -0800352 if (rc)
353 goto err_vdd;
354
Patrick Daly18748a72013-04-24 18:59:22 -0700355 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 Daly985c14b2012-12-03 17:12:37 -0800361 }
362
Patrick Daly9196ed42013-03-13 15:59:03 -0700363 rc = regulator_enable(priv->vdd_cpu);
Patrick Daly985c14b2012-12-03 17:12:37 -0800364 if (rc) {
365 dev_err(&pdev->dev, "regulator_enable for cpu failed\n");
366 goto err_vdd_cpu;
367 }
368
Patrick Daly71839d42013-02-25 13:05:05 -0800369 /*
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 Daly985c14b2012-12-03 17:12:37 -0800375 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
382err_vdd_cpu:
Patrick Daly18748a72013-04-24 18:59:22 -0700383 if (priv->vdd_mem)
384 regulator_disable(priv->vdd_mem);
Patrick Daly985c14b2012-12-03 17:12:37 -0800385err_vdd:
Patrick Daly985c14b2012-12-03 17:12:37 -0800386 return rc;
387}