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 #define pr_fmt(fmt) "cpufreq: " fmt
13 #include <linux/kernel.h>
14 #include <linux/types.h>
15 #include <linux/init.h>
16 #include <linux/cpufreq.h>
17 #include <linux/clk.h>
18 #include <linux/err.h>
19 #include <linux/regulator/consumer.h>
20 #include <linux/module.h>
22 static struct regulator
*vddarm
;
23 static unsigned long regulator_latency
;
25 #ifdef CONFIG_CPU_S3C6410
27 unsigned int vddarm_min
;
28 unsigned int vddarm_max
;
31 static struct s3c64xx_dvfs s3c64xx_dvfs_table
[] = {
32 [0] = { 1000000, 1150000 },
33 [1] = { 1050000, 1150000 },
34 [2] = { 1100000, 1150000 },
35 [3] = { 1200000, 1350000 },
36 [4] = { 1300000, 1350000 },
39 static struct cpufreq_frequency_table s3c64xx_freq_table
[] = {
52 { 0, CPUFREQ_TABLE_END
},
56 static int s3c64xx_cpufreq_set_target(struct cpufreq_policy
*policy
,
59 struct s3c64xx_dvfs
*dvfs
;
60 unsigned int old_freq
, new_freq
;
63 old_freq
= clk_get_rate(policy
->clk
) / 1000;
64 new_freq
= s3c64xx_freq_table
[index
].frequency
;
65 dvfs
= &s3c64xx_dvfs_table
[s3c64xx_freq_table
[index
].driver_data
];
67 #ifdef CONFIG_REGULATOR
68 if (vddarm
&& new_freq
> old_freq
) {
69 ret
= regulator_set_voltage(vddarm
,
73 pr_err("Failed to set VDDARM for %dkHz: %d\n",
80 ret
= clk_set_rate(policy
->clk
, new_freq
* 1000);
82 pr_err("Failed to set rate %dkHz: %d\n",
87 #ifdef CONFIG_REGULATOR
88 if (vddarm
&& new_freq
< old_freq
) {
89 ret
= regulator_set_voltage(vddarm
,
93 pr_err("Failed to set VDDARM for %dkHz: %d\n",
95 if (clk_set_rate(policy
->clk
, old_freq
* 1000) < 0)
96 pr_err("Failed to restore original clock rate\n");
103 pr_debug("Set actual frequency %lukHz\n",
104 clk_get_rate(policy
->clk
) / 1000);
109 #ifdef CONFIG_REGULATOR
110 static void __init
s3c64xx_cpufreq_config_regulator(void)
112 int count
, v
, i
, found
;
113 struct cpufreq_frequency_table
*freq
;
114 struct s3c64xx_dvfs
*dvfs
;
116 count
= regulator_count_voltages(vddarm
);
118 pr_err("Unable to check supported voltages\n");
121 freq
= s3c64xx_freq_table
;
122 while (count
> 0 && freq
->frequency
!= CPUFREQ_TABLE_END
) {
123 if (freq
->frequency
== CPUFREQ_ENTRY_INVALID
)
126 dvfs
= &s3c64xx_dvfs_table
[freq
->driver_data
];
129 for (i
= 0; i
< count
; i
++) {
130 v
= regulator_list_voltage(vddarm
, i
);
131 if (v
>= dvfs
->vddarm_min
&& v
<= dvfs
->vddarm_max
)
136 pr_debug("%dkHz unsupported by regulator\n",
138 freq
->frequency
= CPUFREQ_ENTRY_INVALID
;
144 /* Guess based on having to do an I2C/SPI write; in future we
145 * will be able to query the regulator performance here. */
146 regulator_latency
= 1 * 1000 * 1000;
150 static int s3c64xx_cpufreq_driver_init(struct cpufreq_policy
*policy
)
153 struct cpufreq_frequency_table
*freq
;
155 if (policy
->cpu
!= 0)
158 if (s3c64xx_freq_table
== NULL
) {
159 pr_err("No frequency information for this CPU\n");
163 policy
->clk
= clk_get(NULL
, "armclk");
164 if (IS_ERR(policy
->clk
)) {
165 pr_err("Unable to obtain ARMCLK: %ld\n",
166 PTR_ERR(policy
->clk
));
167 return PTR_ERR(policy
->clk
);
170 #ifdef CONFIG_REGULATOR
171 vddarm
= regulator_get(NULL
, "vddarm");
172 if (IS_ERR(vddarm
)) {
173 ret
= PTR_ERR(vddarm
);
174 pr_err("Failed to obtain VDDARM: %d\n", ret
);
175 pr_err("Only frequency scaling available\n");
178 s3c64xx_cpufreq_config_regulator();
182 freq
= s3c64xx_freq_table
;
183 while (freq
->frequency
!= CPUFREQ_TABLE_END
) {
186 /* Check for frequencies we can generate */
187 r
= clk_round_rate(policy
->clk
, freq
->frequency
* 1000);
189 if (r
!= freq
->frequency
) {
190 pr_debug("%dkHz unsupported by clock\n",
192 freq
->frequency
= CPUFREQ_ENTRY_INVALID
;
195 /* If we have no regulator then assume startup
196 * frequency is the maximum we can support. */
197 if (!vddarm
&& freq
->frequency
> clk_get_rate(policy
->clk
) / 1000)
198 freq
->frequency
= CPUFREQ_ENTRY_INVALID
;
203 /* Datasheet says PLL stabalisation time (if we were to use
204 * the PLLs, which we don't currently) is ~300us worst case,
205 * but add some fudge.
207 ret
= cpufreq_generic_init(policy
, s3c64xx_freq_table
,
208 (500 * 1000) + regulator_latency
);
210 pr_err("Failed to configure frequency table: %d\n",
212 regulator_put(vddarm
);
213 clk_put(policy
->clk
);
219 static struct cpufreq_driver s3c64xx_cpufreq_driver
= {
220 .flags
= CPUFREQ_NEED_INITIAL_FREQ_CHECK
,
221 .verify
= cpufreq_generic_frequency_table_verify
,
222 .target_index
= s3c64xx_cpufreq_set_target
,
223 .get
= cpufreq_generic_get
,
224 .init
= s3c64xx_cpufreq_driver_init
,
228 static int __init
s3c64xx_cpufreq_init(void)
230 return cpufreq_register_driver(&s3c64xx_cpufreq_driver
);
232 module_init(s3c64xx_cpufreq_init
);