[CPUFREQ] powernow-k8: Update copyright, maintainer and documentation information
[deliverable/linux.git] / drivers / cpufreq / exynos4210-cpufreq.c
CommitLineData
f7d77079 1/*
7d30e8b3 2 * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
f40f91fe
SK
3 * http://www.samsung.com
4 *
7d30e8b3 5 * EXYNOS4 - CPU frequency scaling support
f40f91fe
SK
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10*/
11
12#include <linux/types.h>
13#include <linux/kernel.h>
14#include <linux/err.h>
15#include <linux/clk.h>
16#include <linux/io.h>
17#include <linux/slab.h>
18#include <linux/regulator/consumer.h>
19#include <linux/cpufreq.h>
0073f538
MH
20#include <linux/notifier.h>
21#include <linux/suspend.h>
f40f91fe
SK
22
23#include <mach/map.h>
24#include <mach/regs-clock.h>
25#include <mach/regs-mem.h>
26
27#include <plat/clock.h>
bf5ce054 28#include <plat/pm.h>
f40f91fe
SK
29
30static struct clk *cpu_clk;
31static struct clk *moutcore;
32static struct clk *mout_mpll;
33static struct clk *mout_apll;
34
f40f91fe 35static struct regulator *arm_regulator;
f40f91fe
SK
36
37static struct cpufreq_freqs freqs;
f40f91fe 38
27f805dc
JL
39struct cpufreq_clkdiv {
40 unsigned int clkdiv;
41};
42
0073f538
MH
43static unsigned int locking_frequency;
44static bool frequency_locked;
45static DEFINE_MUTEX(cpufreq_lock);
46
f40f91fe 47enum cpufreq_level_index {
ba9d7803 48 L0, L1, L2, L3, L4, CPUFREQ_LEVEL_END,
f40f91fe
SK
49};
50
27f805dc
JL
51static struct cpufreq_clkdiv exynos4_clkdiv_table[CPUFREQ_LEVEL_END];
52
7d30e8b3 53static struct cpufreq_frequency_table exynos4_freq_table[] = {
ba9d7803
JL
54 {L0, 1200*1000},
55 {L1, 1000*1000},
56 {L2, 800*1000},
57 {L3, 500*1000},
58 {L4, 200*1000},
f40f91fe
SK
59 {0, CPUFREQ_TABLE_END},
60};
61
bf5ce054 62static unsigned int clkdiv_cpu0[CPUFREQ_LEVEL_END][7] = {
f40f91fe
SK
63 /*
64 * Clock divider value for following
65 * { DIVCORE, DIVCOREM0, DIVCOREM1, DIVPERIPH,
66 * DIVATB, DIVPCLK_DBG, DIVAPLL }
67 */
68
ba9d7803
JL
69 /* ARM L0: 1200MHz */
70 { 0, 3, 7, 3, 4, 1, 7 },
f40f91fe 71
ba9d7803
JL
72 /* ARM L1: 1000MHz */
73 { 0, 3, 7, 3, 4, 1, 7 },
f40f91fe 74
ba9d7803
JL
75 /* ARM L2: 800MHz */
76 { 0, 3, 7, 3, 3, 1, 7 },
f40f91fe 77
ba9d7803
JL
78 /* ARM L3: 500MHz */
79 { 0, 3, 7, 3, 3, 1, 7 },
80
81 /* ARM L4: 200MHz */
82 { 0, 1, 3, 1, 3, 1, 0 },
bf5ce054 83};
f40f91fe 84
bf5ce054
SJ
85static unsigned int clkdiv_cpu1[CPUFREQ_LEVEL_END][2] = {
86 /*
87 * Clock divider value for following
88 * { DIVCOPY, DIVHPM }
89 */
90
ba9d7803
JL
91 /* ARM L0: 1200MHz */
92 { 5, 0 },
93
94 /* ARM L1: 1000MHz */
95 { 4, 0 },
bf5ce054 96
ba9d7803 97 /* ARM L2: 800MHz */
bf5ce054 98 { 3, 0 },
f40f91fe 99
ba9d7803 100 /* ARM L3: 500MHz */
bf5ce054
SJ
101 { 3, 0 },
102
ba9d7803 103 /* ARM L4: 200MHz */
bf5ce054 104 { 3, 0 },
f40f91fe
SK
105};
106
f40f91fe
SK
107struct cpufreq_voltage_table {
108 unsigned int index; /* any */
109 unsigned int arm_volt; /* uV */
f40f91fe
SK
110};
111
7d30e8b3 112static struct cpufreq_voltage_table exynos4_volt_table[CPUFREQ_LEVEL_END] = {
f40f91fe
SK
113 {
114 .index = L0,
ba9d7803 115 .arm_volt = 1350000,
f40f91fe
SK
116 }, {
117 .index = L1,
ba9d7803 118 .arm_volt = 1300000,
f40f91fe
SK
119 }, {
120 .index = L2,
ba9d7803 121 .arm_volt = 1200000,
f40f91fe
SK
122 }, {
123 .index = L3,
ba9d7803
JL
124 .arm_volt = 1100000,
125 }, {
126 .index = L4,
127 .arm_volt = 1050000,
f40f91fe
SK
128 },
129};
130
7d30e8b3 131static unsigned int exynos4_apll_pms_table[CPUFREQ_LEVEL_END] = {
ba9d7803
JL
132 /* APLL FOUT L0: 1200MHz */
133 ((150 << 16) | (3 << 8) | 1),
134
135 /* APLL FOUT L1: 1000MHz */
bf5ce054
SJ
136 ((250 << 16) | (6 << 8) | 1),
137
ba9d7803 138 /* APLL FOUT L2: 800MHz */
bf5ce054
SJ
139 ((200 << 16) | (6 << 8) | 1),
140
ba9d7803
JL
141 /* APLL FOUT L3: 500MHz */
142 ((250 << 16) | (6 << 8) | 2),
bf5ce054 143
ba9d7803
JL
144 /* APLL FOUT L4: 200MHz */
145 ((200 << 16) | (6 << 8) | 3),
bf5ce054
SJ
146};
147
2f0d6f20 148static int exynos4_verify_speed(struct cpufreq_policy *policy)
f40f91fe 149{
7d30e8b3 150 return cpufreq_frequency_table_verify(policy, exynos4_freq_table);
f40f91fe
SK
151}
152
2f0d6f20 153static unsigned int exynos4_getspeed(unsigned int cpu)
f40f91fe
SK
154{
155 return clk_get_rate(cpu_clk) / 1000;
156}
157
2f0d6f20 158static void exynos4_set_clkdiv(unsigned int div_index)
f40f91fe
SK
159{
160 unsigned int tmp;
161
162 /* Change Divider - CPU0 */
163
27f805dc 164 tmp = exynos4_clkdiv_table[div_index].clkdiv;
f40f91fe
SK
165
166 __raw_writel(tmp, S5P_CLKDIV_CPU);
167
168 do {
169 tmp = __raw_readl(S5P_CLKDIV_STATCPU);
170 } while (tmp & 0x1111111);
171
bf5ce054
SJ
172 /* Change Divider - CPU1 */
173
174 tmp = __raw_readl(S5P_CLKDIV_CPU1);
175
176 tmp &= ~((0x7 << 4) | 0x7);
177
178 tmp |= ((clkdiv_cpu1[div_index][0] << 4) |
179 (clkdiv_cpu1[div_index][1] << 0));
180
181 __raw_writel(tmp, S5P_CLKDIV_CPU1);
182
183 do {
184 tmp = __raw_readl(S5P_CLKDIV_STATCPU1);
185 } while (tmp & 0x11);
f40f91fe
SK
186}
187
7d30e8b3 188static void exynos4_set_apll(unsigned int index)
bf5ce054
SJ
189{
190 unsigned int tmp;
191
192 /* 1. MUX_CORE_SEL = MPLL, ARMCLK uses MPLL for lock time */
193 clk_set_parent(moutcore, mout_mpll);
194
195 do {
196 tmp = (__raw_readl(S5P_CLKMUX_STATCPU)
197 >> S5P_CLKSRC_CPU_MUXCORE_SHIFT);
198 tmp &= 0x7;
199 } while (tmp != 0x2);
200
201 /* 2. Set APLL Lock time */
202 __raw_writel(S5P_APLL_LOCKTIME, S5P_APLL_LOCK);
203
204 /* 3. Change PLL PMS values */
205 tmp = __raw_readl(S5P_APLL_CON0);
206 tmp &= ~((0x3ff << 16) | (0x3f << 8) | (0x7 << 0));
7d30e8b3 207 tmp |= exynos4_apll_pms_table[index];
bf5ce054
SJ
208 __raw_writel(tmp, S5P_APLL_CON0);
209
210 /* 4. wait_lock_time */
211 do {
212 tmp = __raw_readl(S5P_APLL_CON0);
213 } while (!(tmp & (0x1 << S5P_APLLCON0_LOCKED_SHIFT)));
214
215 /* 5. MUX_CORE_SEL = APLL */
216 clk_set_parent(moutcore, mout_apll);
217
218 do {
219 tmp = __raw_readl(S5P_CLKMUX_STATCPU);
220 tmp &= S5P_CLKMUX_STATCPU_MUXCORE_MASK;
221 } while (tmp != (0x1 << S5P_CLKSRC_CPU_MUXCORE_SHIFT));
222}
223
7d30e8b3 224static void exynos4_set_frequency(unsigned int old_index, unsigned int new_index)
bf5ce054
SJ
225{
226 unsigned int tmp;
227
228 if (old_index > new_index) {
27f805dc
JL
229 /*
230 * L1/L3, L2/L4 Level change require
231 * to only change s divider value
232 */
233 if (((old_index == L3) && (new_index == L1)) ||
234 ((old_index == L4) && (new_index == L2))) {
bf5ce054 235 /* 1. Change the system clock divider values */
7d30e8b3 236 exynos4_set_clkdiv(new_index);
bf5ce054
SJ
237
238 /* 2. Change just s value in apll m,p,s value */
239 tmp = __raw_readl(S5P_APLL_CON0);
240 tmp &= ~(0x7 << 0);
7d30e8b3 241 tmp |= (exynos4_apll_pms_table[new_index] & 0x7);
bf5ce054 242 __raw_writel(tmp, S5P_APLL_CON0);
bf5ce054 243 } else {
27f805dc
JL
244 /* Clock Configuration Procedure */
245 /* 1. Change the system clock divider values */
246 exynos4_set_clkdiv(new_index);
247 /* 2. Change the apll m,p,s value */
248 exynos4_set_apll(new_index);
249 }
250 } else if (old_index < new_index) {
251 /*
252 * L1/L3, L2/L4 Level change require
253 * to only change s divider value
254 */
255 if (((old_index == L1) && (new_index == L3)) ||
256 ((old_index == L2) && (new_index == L4))) {
bf5ce054
SJ
257 /* 1. Change just s value in apll m,p,s value */
258 tmp = __raw_readl(S5P_APLL_CON0);
259 tmp &= ~(0x7 << 0);
7d30e8b3 260 tmp |= (exynos4_apll_pms_table[new_index] & 0x7);
bf5ce054
SJ
261 __raw_writel(tmp, S5P_APLL_CON0);
262
27f805dc
JL
263 /* 2. Change the system clock divider values */
264 exynos4_set_clkdiv(new_index);
265 } else {
266 /* Clock Configuration Procedure */
267 /* 1. Change the apll m,p,s value */
268 exynos4_set_apll(new_index);
bf5ce054 269 /* 2. Change the system clock divider values */
7d30e8b3 270 exynos4_set_clkdiv(new_index);
bf5ce054
SJ
271 }
272 }
273}
274
7d30e8b3 275static int exynos4_target(struct cpufreq_policy *policy,
f40f91fe
SK
276 unsigned int target_freq,
277 unsigned int relation)
278{
bf5ce054 279 unsigned int index, old_index;
c8c430e2 280 unsigned int arm_volt;
0073f538 281 int err = -EINVAL;
f40f91fe 282
7d30e8b3 283 freqs.old = exynos4_getspeed(policy->cpu);
f40f91fe 284
0073f538
MH
285 mutex_lock(&cpufreq_lock);
286
287 if (frequency_locked && target_freq != locking_frequency) {
288 err = -EAGAIN;
289 goto out;
290 }
291
7d30e8b3 292 if (cpufreq_frequency_table_target(policy, exynos4_freq_table,
bf5ce054 293 freqs.old, relation, &old_index))
0073f538 294 goto out;
bf5ce054 295
7d30e8b3 296 if (cpufreq_frequency_table_target(policy, exynos4_freq_table,
f40f91fe 297 target_freq, relation, &index))
0073f538
MH
298 goto out;
299
300 err = 0;
f40f91fe 301
7d30e8b3 302 freqs.new = exynos4_freq_table[index].frequency;
f40f91fe
SK
303 freqs.cpu = policy->cpu;
304
305 if (freqs.new == freqs.old)
0073f538 306 goto out;
f40f91fe 307
f40f91fe 308 /* get the voltage value */
7d30e8b3 309 arm_volt = exynos4_volt_table[index].arm_volt;
f40f91fe
SK
310
311 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
312
313 /* control regulator */
314 if (freqs.new > freqs.old) {
315 /* Voltage up */
f40f91fe 316 regulator_set_voltage(arm_regulator, arm_volt, arm_volt);
f40f91fe
SK
317 }
318
319 /* Clock Configuration Procedure */
7d30e8b3 320 exynos4_set_frequency(old_index, index);
f40f91fe 321
27f805dc
JL
322 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
323
f40f91fe
SK
324 /* control regulator */
325 if (freqs.new < freqs.old) {
326 /* Voltage down */
f40f91fe 327 regulator_set_voltage(arm_regulator, arm_volt, arm_volt);
f40f91fe
SK
328 }
329
0073f538
MH
330out:
331 mutex_unlock(&cpufreq_lock);
332 return err;
f40f91fe
SK
333}
334
335#ifdef CONFIG_PM
0073f538
MH
336/*
337 * These suspend/resume are used as syscore_ops, it is already too
338 * late to set regulator voltages at this stage.
339 */
411f5c7a 340static int exynos4_cpufreq_suspend(struct cpufreq_policy *policy)
f40f91fe
SK
341{
342 return 0;
343}
344
7d30e8b3 345static int exynos4_cpufreq_resume(struct cpufreq_policy *policy)
f40f91fe
SK
346{
347 return 0;
348}
349#endif
350
0073f538
MH
351/**
352 * exynos4_cpufreq_pm_notifier - block CPUFREQ's activities in suspend-resume
353 * context
354 * @notifier
355 * @pm_event
356 * @v
357 *
358 * While frequency_locked == true, target() ignores every frequency but
359 * locking_frequency. The locking_frequency value is the initial frequency,
360 * which is set by the bootloader. In order to eliminate possible
361 * inconsistency in clock values, we save and restore frequencies during
362 * suspend and resume and block CPUFREQ activities. Note that the standard
363 * suspend/resume cannot be used as they are too deep (syscore_ops) for
364 * regulator actions.
365 */
366static int exynos4_cpufreq_pm_notifier(struct notifier_block *notifier,
367 unsigned long pm_event, void *v)
368{
369 struct cpufreq_policy *policy = cpufreq_cpu_get(0); /* boot CPU */
370 static unsigned int saved_frequency;
371 unsigned int temp;
372
373 mutex_lock(&cpufreq_lock);
374 switch (pm_event) {
375 case PM_SUSPEND_PREPARE:
376 if (frequency_locked)
377 goto out;
378 frequency_locked = true;
379
380 if (locking_frequency) {
381 saved_frequency = exynos4_getspeed(0);
382
383 mutex_unlock(&cpufreq_lock);
384 exynos4_target(policy, locking_frequency,
385 CPUFREQ_RELATION_H);
386 mutex_lock(&cpufreq_lock);
387 }
388
389 break;
390 case PM_POST_SUSPEND:
391
392 if (saved_frequency) {
393 /*
394 * While frequency_locked, only locking_frequency
395 * is valid for target(). In order to use
396 * saved_frequency while keeping frequency_locked,
397 * we temporarly overwrite locking_frequency.
398 */
399 temp = locking_frequency;
400 locking_frequency = saved_frequency;
401
402 mutex_unlock(&cpufreq_lock);
403 exynos4_target(policy, locking_frequency,
404 CPUFREQ_RELATION_H);
405 mutex_lock(&cpufreq_lock);
406
407 locking_frequency = temp;
408 }
409
410 frequency_locked = false;
411 break;
412 }
413out:
414 mutex_unlock(&cpufreq_lock);
415
416 return NOTIFY_OK;
417}
418
419static struct notifier_block exynos4_cpufreq_nb = {
420 .notifier_call = exynos4_cpufreq_pm_notifier,
421};
422
7d30e8b3 423static int exynos4_cpufreq_cpu_init(struct cpufreq_policy *policy)
f40f91fe 424{
5beae3b9
DK
425 int ret;
426
7d30e8b3 427 policy->cur = policy->min = policy->max = exynos4_getspeed(policy->cpu);
f40f91fe 428
7d30e8b3 429 cpufreq_frequency_table_get_attr(exynos4_freq_table, policy->cpu);
f40f91fe
SK
430
431 /* set the transition latency value */
432 policy->cpuinfo.transition_latency = 100000;
433
434 /*
7d30e8b3 435 * EXYNOS4 multi-core processors has 2 cores
f40f91fe
SK
436 * that the frequency cannot be set independently.
437 * Each cpu is bound to the same speed.
438 * So the affected cpu is all of the cpus.
439 */
27f805dc
JL
440 if (!cpu_online(1)) {
441 cpumask_copy(policy->related_cpus, cpu_possible_mask);
442 cpumask_copy(policy->cpus, cpu_online_mask);
443 } else {
444 cpumask_setall(policy->cpus);
445 }
f40f91fe 446
5beae3b9
DK
447 ret = cpufreq_frequency_table_cpuinfo(policy, exynos4_freq_table);
448 if (ret)
449 return ret;
450
451 cpufreq_frequency_table_get_attr(exynos4_freq_table, policy->cpu);
452
453 return 0;
f40f91fe
SK
454}
455
5beae3b9
DK
456static int exynos4_cpufreq_cpu_exit(struct cpufreq_policy *policy)
457{
458 cpufreq_frequency_table_put_attr(policy->cpu);
459 return 0;
460}
461
462static struct freq_attr *exynos4_cpufreq_attr[] = {
463 &cpufreq_freq_attr_scaling_available_freqs,
464 NULL,
465};
466
7d30e8b3 467static struct cpufreq_driver exynos4_driver = {
f40f91fe 468 .flags = CPUFREQ_STICKY,
7d30e8b3
KK
469 .verify = exynos4_verify_speed,
470 .target = exynos4_target,
471 .get = exynos4_getspeed,
472 .init = exynos4_cpufreq_cpu_init,
5beae3b9 473 .exit = exynos4_cpufreq_cpu_exit,
7d30e8b3 474 .name = "exynos4_cpufreq",
5beae3b9 475 .attr = exynos4_cpufreq_attr,
f40f91fe 476#ifdef CONFIG_PM
7d30e8b3
KK
477 .suspend = exynos4_cpufreq_suspend,
478 .resume = exynos4_cpufreq_resume,
f40f91fe
SK
479#endif
480};
481
7d30e8b3 482static int __init exynos4_cpufreq_init(void)
f40f91fe 483{
27f805dc
JL
484 int i;
485 unsigned int tmp;
486
f40f91fe
SK
487 cpu_clk = clk_get(NULL, "armclk");
488 if (IS_ERR(cpu_clk))
489 return PTR_ERR(cpu_clk);
490
0073f538
MH
491 locking_frequency = exynos4_getspeed(0);
492
f40f91fe
SK
493 moutcore = clk_get(NULL, "moutcore");
494 if (IS_ERR(moutcore))
495 goto out;
496
497 mout_mpll = clk_get(NULL, "mout_mpll");
498 if (IS_ERR(mout_mpll))
499 goto out;
500
501 mout_apll = clk_get(NULL, "mout_apll");
502 if (IS_ERR(mout_apll))
503 goto out;
504
f40f91fe
SK
505 arm_regulator = regulator_get(NULL, "vdd_arm");
506 if (IS_ERR(arm_regulator)) {
507 printk(KERN_ERR "failed to get resource %s\n", "vdd_arm");
508 goto out;
509 }
510
0073f538
MH
511 register_pm_notifier(&exynos4_cpufreq_nb);
512
27f805dc
JL
513 tmp = __raw_readl(S5P_CLKDIV_CPU);
514
515 for (i = L0; i < CPUFREQ_LEVEL_END; i++) {
516 tmp &= ~(S5P_CLKDIV_CPU0_CORE_MASK |
517 S5P_CLKDIV_CPU0_COREM0_MASK |
518 S5P_CLKDIV_CPU0_COREM1_MASK |
519 S5P_CLKDIV_CPU0_PERIPH_MASK |
520 S5P_CLKDIV_CPU0_ATB_MASK |
521 S5P_CLKDIV_CPU0_PCLKDBG_MASK |
522 S5P_CLKDIV_CPU0_APLL_MASK);
523
524 tmp |= ((clkdiv_cpu0[i][0] << S5P_CLKDIV_CPU0_CORE_SHIFT) |
525 (clkdiv_cpu0[i][1] << S5P_CLKDIV_CPU0_COREM0_SHIFT) |
526 (clkdiv_cpu0[i][2] << S5P_CLKDIV_CPU0_COREM1_SHIFT) |
527 (clkdiv_cpu0[i][3] << S5P_CLKDIV_CPU0_PERIPH_SHIFT) |
528 (clkdiv_cpu0[i][4] << S5P_CLKDIV_CPU0_ATB_SHIFT) |
529 (clkdiv_cpu0[i][5] << S5P_CLKDIV_CPU0_PCLKDBG_SHIFT) |
530 (clkdiv_cpu0[i][6] << S5P_CLKDIV_CPU0_APLL_SHIFT));
531
532 exynos4_clkdiv_table[i].clkdiv = tmp;
533 }
534
7d30e8b3 535 return cpufreq_register_driver(&exynos4_driver);
f40f91fe
SK
536
537out:
538 if (!IS_ERR(cpu_clk))
539 clk_put(cpu_clk);
540
541 if (!IS_ERR(moutcore))
542 clk_put(moutcore);
543
544 if (!IS_ERR(mout_mpll))
545 clk_put(mout_mpll);
546
547 if (!IS_ERR(mout_apll))
548 clk_put(mout_apll);
549
f40f91fe
SK
550 if (!IS_ERR(arm_regulator))
551 regulator_put(arm_regulator);
552
f40f91fe
SK
553 printk(KERN_ERR "%s: failed initialization\n", __func__);
554
555 return -EINVAL;
556}
7d30e8b3 557late_initcall(exynos4_cpufreq_init);
This page took 0.103631 seconds and 5 git commands to generate.