2 * Copyright (C) 2012 Freescale Semiconductor, Inc.
4 * The OPP code in function cpu0_set_target() is reused from
5 * drivers/cpufreq/omap-cpufreq.c
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.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/clk.h>
15 #include <linux/cpufreq.h>
16 #include <linux/err.h>
17 #include <linux/module.h>
19 #include <linux/opp.h>
20 #include <linux/platform_device.h>
21 #include <linux/regulator/consumer.h>
22 #include <linux/slab.h>
24 static unsigned int transition_latency
;
25 static unsigned int voltage_tolerance
; /* in percentage */
27 static struct device
*cpu_dev
;
28 static struct clk
*cpu_clk
;
29 static struct regulator
*cpu_reg
;
30 static struct cpufreq_frequency_table
*freq_table
;
32 static int cpu0_verify_speed(struct cpufreq_policy
*policy
)
34 return cpufreq_frequency_table_verify(policy
, freq_table
);
37 static unsigned int cpu0_get_speed(unsigned int cpu
)
39 return clk_get_rate(cpu_clk
) / 1000;
42 static int cpu0_set_target(struct cpufreq_policy
*policy
,
43 unsigned int target_freq
, unsigned int relation
)
45 struct cpufreq_freqs freqs
;
47 unsigned long volt
= 0, volt_old
= 0, tol
= 0;
48 long freq_Hz
, freq_exact
;
52 ret
= cpufreq_frequency_table_target(policy
, freq_table
, target_freq
,
55 pr_err("failed to match target freqency %d: %d\n",
60 freq_Hz
= clk_round_rate(cpu_clk
, freq_table
[index
].frequency
* 1000);
62 freq_Hz
= freq_table
[index
].frequency
* 1000;
64 freqs
.new = freq_Hz
/ 1000;
65 freqs
.old
= clk_get_rate(cpu_clk
) / 1000;
67 if (freqs
.old
== freqs
.new)
70 cpufreq_notify_transition(policy
, &freqs
, CPUFREQ_PRECHANGE
);
74 opp
= opp_find_freq_ceil(cpu_dev
, &freq_Hz
);
77 pr_err("failed to find OPP for %ld\n", freq_Hz
);
78 freqs
.new = freqs
.old
;
82 volt
= opp_get_voltage(opp
);
84 tol
= volt
* voltage_tolerance
/ 100;
85 volt_old
= regulator_get_voltage(cpu_reg
);
88 pr_debug("%u MHz, %ld mV --> %u MHz, %ld mV\n",
89 freqs
.old
/ 1000, volt_old
? volt_old
/ 1000 : -1,
90 freqs
.new / 1000, volt
? volt
/ 1000 : -1);
92 /* scaling up? scale voltage before frequency */
93 if (cpu_reg
&& freqs
.new > freqs
.old
) {
94 ret
= regulator_set_voltage_tol(cpu_reg
, volt
, tol
);
96 pr_err("failed to scale voltage up: %d\n", ret
);
97 freqs
.new = freqs
.old
;
102 ret
= clk_set_rate(cpu_clk
, freq_exact
);
104 pr_err("failed to set clock rate: %d\n", ret
);
106 regulator_set_voltage_tol(cpu_reg
, volt_old
, tol
);
107 freqs
.new = freqs
.old
;
111 /* scaling down? scale voltage after frequency */
112 if (cpu_reg
&& freqs
.new < freqs
.old
) {
113 ret
= regulator_set_voltage_tol(cpu_reg
, volt
, tol
);
115 pr_err("failed to scale voltage down: %d\n", ret
);
116 clk_set_rate(cpu_clk
, freqs
.old
* 1000);
117 freqs
.new = freqs
.old
;
122 cpufreq_notify_transition(policy
, &freqs
, CPUFREQ_POSTCHANGE
);
127 static int cpu0_cpufreq_init(struct cpufreq_policy
*policy
)
131 ret
= cpufreq_frequency_table_cpuinfo(policy
, freq_table
);
133 pr_err("invalid frequency table: %d\n", ret
);
137 policy
->cpuinfo
.transition_latency
= transition_latency
;
138 policy
->cur
= clk_get_rate(cpu_clk
) / 1000;
141 * The driver only supports the SMP configuartion where all processors
142 * share the clock and voltage and clock. Use cpufreq affected_cpus
143 * interface to have all CPUs scaled together.
145 cpumask_setall(policy
->cpus
);
147 cpufreq_frequency_table_get_attr(freq_table
, policy
->cpu
);
152 static int cpu0_cpufreq_exit(struct cpufreq_policy
*policy
)
154 cpufreq_frequency_table_put_attr(policy
->cpu
);
159 static struct freq_attr
*cpu0_cpufreq_attr
[] = {
160 &cpufreq_freq_attr_scaling_available_freqs
,
164 static struct cpufreq_driver cpu0_cpufreq_driver
= {
165 .flags
= CPUFREQ_STICKY
,
166 .verify
= cpu0_verify_speed
,
167 .target
= cpu0_set_target
,
168 .get
= cpu0_get_speed
,
169 .init
= cpu0_cpufreq_init
,
170 .exit
= cpu0_cpufreq_exit
,
171 .name
= "generic_cpu0",
172 .attr
= cpu0_cpufreq_attr
,
175 static int cpu0_cpufreq_probe(struct platform_device
*pdev
)
177 struct device_node
*np
, *parent
;
180 parent
= of_find_node_by_path("/cpus");
182 pr_err("failed to find OF /cpus\n");
186 for_each_child_of_node(parent
, np
) {
187 if (of_get_property(np
, "operating-points", NULL
))
192 pr_err("failed to find cpu0 node\n");
197 cpu_dev
= &pdev
->dev
;
198 cpu_dev
->of_node
= np
;
200 cpu_reg
= devm_regulator_get(cpu_dev
, "cpu0");
201 if (IS_ERR(cpu_reg
)) {
203 * If cpu0 regulator supply node is present, but regulator is
204 * not yet registered, we should try defering probe.
206 if (PTR_ERR(cpu_reg
) == -EPROBE_DEFER
) {
207 dev_err(cpu_dev
, "cpu0 regulator not ready, retry\n");
211 pr_warn("failed to get cpu0 regulator: %ld\n",
216 cpu_clk
= devm_clk_get(cpu_dev
, NULL
);
217 if (IS_ERR(cpu_clk
)) {
218 ret
= PTR_ERR(cpu_clk
);
219 pr_err("failed to get cpu0 clock: %d\n", ret
);
223 ret
= of_init_opp_table(cpu_dev
);
225 pr_err("failed to init OPP table: %d\n", ret
);
229 ret
= opp_init_cpufreq_table(cpu_dev
, &freq_table
);
231 pr_err("failed to init cpufreq table: %d\n", ret
);
235 of_property_read_u32(np
, "voltage-tolerance", &voltage_tolerance
);
237 if (of_property_read_u32(np
, "clock-latency", &transition_latency
))
238 transition_latency
= CPUFREQ_ETERNAL
;
242 unsigned long min_uV
, max_uV
;
246 * OPP is maintained in order of increasing frequency, and
247 * freq_table initialised from OPP is therefore sorted in the
250 for (i
= 0; freq_table
[i
].frequency
!= CPUFREQ_TABLE_END
; i
++)
253 opp
= opp_find_freq_exact(cpu_dev
,
254 freq_table
[0].frequency
* 1000, true);
255 min_uV
= opp_get_voltage(opp
);
256 opp
= opp_find_freq_exact(cpu_dev
,
257 freq_table
[i
-1].frequency
* 1000, true);
258 max_uV
= opp_get_voltage(opp
);
260 ret
= regulator_set_voltage_time(cpu_reg
, min_uV
, max_uV
);
262 transition_latency
+= ret
* 1000;
265 ret
= cpufreq_register_driver(&cpu0_cpufreq_driver
);
267 pr_err("failed register driver: %d\n", ret
);
276 opp_free_cpufreq_table(cpu_dev
, &freq_table
);
284 static int cpu0_cpufreq_remove(struct platform_device
*pdev
)
286 cpufreq_unregister_driver(&cpu0_cpufreq_driver
);
287 opp_free_cpufreq_table(cpu_dev
, &freq_table
);
292 static struct platform_driver cpu0_cpufreq_platdrv
= {
294 .name
= "cpufreq-cpu0",
295 .owner
= THIS_MODULE
,
297 .probe
= cpu0_cpufreq_probe
,
298 .remove
= cpu0_cpufreq_remove
,
300 module_platform_driver(cpu0_cpufreq_platdrv
);
302 MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>");
303 MODULE_DESCRIPTION("Generic CPU0 cpufreq driver");
304 MODULE_LICENSE("GPL");