2 * Copyright 2009 Wolfson Microelectronics plc
4 * S3C64xx CPUfreq Support
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/kernel.h>
12 #include <linux/types.h>
13 #include <linux/init.h>
14 #include <linux/cpufreq.h>
15 #include <linux/clk.h>
16 #include <linux/err.h>
17 #include <linux/regulator/consumer.h>
18 #include <linux/module.h>
20 static struct clk
*armclk
;
21 static struct regulator
*vddarm
;
22 static unsigned long regulator_latency
;
24 #ifdef CONFIG_CPU_S3C6410
26 unsigned int vddarm_min
;
27 unsigned int vddarm_max
;
30 static struct s3c64xx_dvfs s3c64xx_dvfs_table
[] = {
31 [0] = { 1000000, 1150000 },
32 [1] = { 1050000, 1150000 },
33 [2] = { 1100000, 1150000 },
34 [3] = { 1200000, 1350000 },
35 [4] = { 1300000, 1350000 },
38 static struct cpufreq_frequency_table s3c64xx_freq_table
[] = {
51 { 0, CPUFREQ_TABLE_END
},
55 static int s3c64xx_cpufreq_verify_speed(struct cpufreq_policy
*policy
)
60 return cpufreq_frequency_table_verify(policy
, s3c64xx_freq_table
);
63 static unsigned int s3c64xx_cpufreq_get_speed(unsigned int cpu
)
68 return clk_get_rate(armclk
) / 1000;
71 static int s3c64xx_cpufreq_set_target(struct cpufreq_policy
*policy
,
72 unsigned int target_freq
,
73 unsigned int relation
)
77 struct cpufreq_freqs freqs
;
78 struct s3c64xx_dvfs
*dvfs
;
80 ret
= cpufreq_frequency_table_target(policy
, s3c64xx_freq_table
,
81 target_freq
, relation
, &i
);
86 freqs
.old
= clk_get_rate(armclk
) / 1000;
87 freqs
.new = s3c64xx_freq_table
[i
].frequency
;
89 dvfs
= &s3c64xx_dvfs_table
[s3c64xx_freq_table
[i
].index
];
91 if (freqs
.old
== freqs
.new)
94 pr_debug("cpufreq: Transition %d-%dkHz\n", freqs
.old
, freqs
.new);
96 cpufreq_notify_transition(&freqs
, CPUFREQ_PRECHANGE
);
98 #ifdef CONFIG_REGULATOR
99 if (vddarm
&& freqs
.new > freqs
.old
) {
100 ret
= regulator_set_voltage(vddarm
,
104 pr_err("cpufreq: Failed to set VDDARM for %dkHz: %d\n",
111 ret
= clk_set_rate(armclk
, freqs
.new * 1000);
113 pr_err("cpufreq: Failed to set rate %dkHz: %d\n",
118 cpufreq_notify_transition(&freqs
, CPUFREQ_POSTCHANGE
);
120 #ifdef CONFIG_REGULATOR
121 if (vddarm
&& freqs
.new < freqs
.old
) {
122 ret
= regulator_set_voltage(vddarm
,
126 pr_err("cpufreq: Failed to set VDDARM for %dkHz: %d\n",
133 pr_debug("cpufreq: Set actual frequency %lukHz\n",
134 clk_get_rate(armclk
) / 1000);
139 if (clk_set_rate(armclk
, freqs
.old
* 1000) < 0)
140 pr_err("Failed to restore original clock rate\n");
142 cpufreq_notify_transition(&freqs
, CPUFREQ_POSTCHANGE
);
147 #ifdef CONFIG_REGULATOR
148 static void __init
s3c64xx_cpufreq_config_regulator(void)
150 int count
, v
, i
, found
;
151 struct cpufreq_frequency_table
*freq
;
152 struct s3c64xx_dvfs
*dvfs
;
154 count
= regulator_count_voltages(vddarm
);
156 pr_err("cpufreq: Unable to check supported voltages\n");
159 freq
= s3c64xx_freq_table
;
160 while (count
> 0 && freq
->frequency
!= CPUFREQ_TABLE_END
) {
161 if (freq
->frequency
== CPUFREQ_ENTRY_INVALID
)
164 dvfs
= &s3c64xx_dvfs_table
[freq
->index
];
167 for (i
= 0; i
< count
; i
++) {
168 v
= regulator_list_voltage(vddarm
, i
);
169 if (v
>= dvfs
->vddarm_min
&& v
<= dvfs
->vddarm_max
)
174 pr_debug("cpufreq: %dkHz unsupported by regulator\n",
176 freq
->frequency
= CPUFREQ_ENTRY_INVALID
;
182 /* Guess based on having to do an I2C/SPI write; in future we
183 * will be able to query the regulator performance here. */
184 regulator_latency
= 1 * 1000 * 1000;
188 static int s3c64xx_cpufreq_driver_init(struct cpufreq_policy
*policy
)
191 struct cpufreq_frequency_table
*freq
;
193 if (policy
->cpu
!= 0)
196 if (s3c64xx_freq_table
== NULL
) {
197 pr_err("cpufreq: No frequency information for this CPU\n");
201 armclk
= clk_get(NULL
, "armclk");
202 if (IS_ERR(armclk
)) {
203 pr_err("cpufreq: Unable to obtain ARMCLK: %ld\n",
205 return PTR_ERR(armclk
);
208 #ifdef CONFIG_REGULATOR
209 vddarm
= regulator_get(NULL
, "vddarm");
210 if (IS_ERR(vddarm
)) {
211 ret
= PTR_ERR(vddarm
);
212 pr_err("cpufreq: Failed to obtain VDDARM: %d\n", ret
);
213 pr_err("cpufreq: Only frequency scaling available\n");
216 s3c64xx_cpufreq_config_regulator();
220 freq
= s3c64xx_freq_table
;
221 while (freq
->frequency
!= CPUFREQ_TABLE_END
) {
224 /* Check for frequencies we can generate */
225 r
= clk_round_rate(armclk
, freq
->frequency
* 1000);
227 if (r
!= freq
->frequency
) {
228 pr_debug("cpufreq: %dkHz unsupported by clock\n",
230 freq
->frequency
= CPUFREQ_ENTRY_INVALID
;
233 /* If we have no regulator then assume startup
234 * frequency is the maximum we can support. */
235 if (!vddarm
&& freq
->frequency
> s3c64xx_cpufreq_get_speed(0))
236 freq
->frequency
= CPUFREQ_ENTRY_INVALID
;
241 policy
->cur
= clk_get_rate(armclk
) / 1000;
243 /* Datasheet says PLL stabalisation time (if we were to use
244 * the PLLs, which we don't currently) is ~300us worst case,
245 * but add some fudge.
247 policy
->cpuinfo
.transition_latency
= (500 * 1000) + regulator_latency
;
249 ret
= cpufreq_frequency_table_cpuinfo(policy
, s3c64xx_freq_table
);
251 pr_err("cpufreq: Failed to configure frequency table: %d\n",
253 regulator_put(vddarm
);
260 static struct cpufreq_driver s3c64xx_cpufreq_driver
= {
261 .owner
= THIS_MODULE
,
263 .verify
= s3c64xx_cpufreq_verify_speed
,
264 .target
= s3c64xx_cpufreq_set_target
,
265 .get
= s3c64xx_cpufreq_get_speed
,
266 .init
= s3c64xx_cpufreq_driver_init
,
270 static int __init
s3c64xx_cpufreq_init(void)
272 return cpufreq_register_driver(&s3c64xx_cpufreq_driver
);
274 module_init(s3c64xx_cpufreq_init
);