2 * Copyright (C) 2013 Freescale Semiconductor, Inc.
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 as
6 * published by the Free Software Foundation.
10 #include <linux/cpu.h>
11 #include <linux/cpufreq.h>
12 #include <linux/cpu_cooling.h>
13 #include <linux/err.h>
14 #include <linux/module.h>
16 #include <linux/of_address.h>
17 #include <linux/pm_opp.h>
18 #include <linux/platform_device.h>
19 #include <linux/regulator/consumer.h>
21 #define PU_SOC_VOLTAGE_NORMAL 1250000
22 #define PU_SOC_VOLTAGE_HIGH 1275000
23 #define FREQ_1P2_GHZ 1200000000
25 static struct regulator
*arm_reg
;
26 static struct regulator
*pu_reg
;
27 static struct regulator
*soc_reg
;
29 enum IMX6_CPUFREQ_CLKS
{
35 /* MX6UL requires two more clks */
39 #define IMX6Q_CPUFREQ_CLK_NUM 5
40 #define IMX6UL_CPUFREQ_CLK_NUM 7
43 static struct clk_bulk_data clks
[] = {
48 { .id
= "pll2_pfd2_396m" },
50 { .id
= "secondary_sel" },
53 static struct device
*cpu_dev
;
54 static struct thermal_cooling_device
*cdev
;
56 static struct cpufreq_frequency_table
*freq_table
;
57 static unsigned int max_freq
;
58 static unsigned int transition_latency
;
60 static u32
*imx6_soc_volt
;
61 static u32 soc_opp_count
;
63 static int imx6q_set_target(struct cpufreq_policy
*policy
, unsigned int index
)
65 struct dev_pm_opp
*opp
;
66 unsigned long freq_hz
, volt
, volt_old
;
67 unsigned int old_freq
, new_freq
;
68 bool pll1_sys_temp_enabled
= false;
71 new_freq
= freq_table
[index
].frequency
;
72 freq_hz
= new_freq
* 1000;
73 old_freq
= clk_get_rate(clks
[ARM
].clk
) / 1000;
75 opp
= dev_pm_opp_find_freq_ceil(cpu_dev
, &freq_hz
);
77 dev_err(cpu_dev
, "failed to find OPP for %ld\n", freq_hz
);
81 volt
= dev_pm_opp_get_voltage(opp
);
84 volt_old
= regulator_get_voltage(arm_reg
);
86 dev_dbg(cpu_dev
, "%u MHz, %ld mV --> %u MHz, %ld mV\n",
87 old_freq
/ 1000, volt_old
/ 1000,
88 new_freq
/ 1000, volt
/ 1000);
90 /* scaling up? scale voltage before frequency */
91 if (new_freq
> old_freq
) {
92 if (!IS_ERR(pu_reg
)) {
93 ret
= regulator_set_voltage_tol(pu_reg
, imx6_soc_volt
[index
], 0);
95 dev_err(cpu_dev
, "failed to scale vddpu up: %d\n", ret
);
99 ret
= regulator_set_voltage_tol(soc_reg
, imx6_soc_volt
[index
], 0);
101 dev_err(cpu_dev
, "failed to scale vddsoc up: %d\n", ret
);
104 ret
= regulator_set_voltage_tol(arm_reg
, volt
, 0);
107 "failed to scale vddarm up: %d\n", ret
);
113 * The setpoints are selected per PLL/PDF frequencies, so we need to
114 * reprogram PLL for frequency scaling. The procedure of reprogramming
116 * For i.MX6UL, it has a secondary clk mux, the cpu frequency change
117 * flow is slightly different from other i.MX6 OSC.
118 * The cpu frequeny change flow for i.MX6(except i.MX6UL) is as below:
119 * - Enable pll2_pfd2_396m_clk and reparent pll1_sw_clk to it
120 * - Reprogram pll1_sys_clk and reparent pll1_sw_clk back to it
121 * - Disable pll2_pfd2_396m_clk
123 if (of_machine_is_compatible("fsl,imx6ul") ||
124 of_machine_is_compatible("fsl,imx6ull")) {
126 * When changing pll1_sw_clk's parent to pll1_sys_clk,
127 * CPU may run at higher than 528MHz, this will lead to
128 * the system unstable if the voltage is lower than the
129 * voltage of 528MHz, so lower the CPU frequency to one
130 * half before changing CPU frequency.
132 clk_set_rate(clks
[ARM
].clk
, (old_freq
>> 1) * 1000);
133 clk_set_parent(clks
[PLL1_SW
].clk
, clks
[PLL1_SYS
].clk
);
134 if (freq_hz
> clk_get_rate(clks
[PLL2_PFD2_396M
].clk
))
135 clk_set_parent(clks
[SECONDARY_SEL
].clk
,
138 clk_set_parent(clks
[SECONDARY_SEL
].clk
,
139 clks
[PLL2_PFD2_396M
].clk
);
140 clk_set_parent(clks
[STEP
].clk
, clks
[SECONDARY_SEL
].clk
);
141 clk_set_parent(clks
[PLL1_SW
].clk
, clks
[STEP
].clk
);
142 if (freq_hz
> clk_get_rate(clks
[PLL2_BUS
].clk
)) {
143 clk_set_rate(clks
[PLL1_SYS
].clk
, new_freq
* 1000);
144 clk_set_parent(clks
[PLL1_SW
].clk
, clks
[PLL1_SYS
].clk
);
147 clk_set_parent(clks
[STEP
].clk
, clks
[PLL2_PFD2_396M
].clk
);
148 clk_set_parent(clks
[PLL1_SW
].clk
, clks
[STEP
].clk
);
149 if (freq_hz
> clk_get_rate(clks
[PLL2_PFD2_396M
].clk
)) {
150 clk_set_rate(clks
[PLL1_SYS
].clk
, new_freq
* 1000);
151 clk_set_parent(clks
[PLL1_SW
].clk
, clks
[PLL1_SYS
].clk
);
153 /* pll1_sys needs to be enabled for divider rate change to work. */
154 pll1_sys_temp_enabled
= true;
155 clk_prepare_enable(clks
[PLL1_SYS
].clk
);
159 /* Ensure the arm clock divider is what we expect */
160 ret
= clk_set_rate(clks
[ARM
].clk
, new_freq
* 1000);
162 dev_err(cpu_dev
, "failed to set clock rate: %d\n", ret
);
163 regulator_set_voltage_tol(arm_reg
, volt_old
, 0);
167 /* PLL1 is only needed until after ARM-PODF is set. */
168 if (pll1_sys_temp_enabled
)
169 clk_disable_unprepare(clks
[PLL1_SYS
].clk
);
171 /* scaling down? scale voltage after frequency */
172 if (new_freq
< old_freq
) {
173 ret
= regulator_set_voltage_tol(arm_reg
, volt
, 0);
176 "failed to scale vddarm down: %d\n", ret
);
179 ret
= regulator_set_voltage_tol(soc_reg
, imx6_soc_volt
[index
], 0);
181 dev_warn(cpu_dev
, "failed to scale vddsoc down: %d\n", ret
);
184 if (!IS_ERR(pu_reg
)) {
185 ret
= regulator_set_voltage_tol(pu_reg
, imx6_soc_volt
[index
], 0);
187 dev_warn(cpu_dev
, "failed to scale vddpu down: %d\n", ret
);
196 static void imx6q_cpufreq_ready(struct cpufreq_policy
*policy
)
198 cdev
= of_cpufreq_cooling_register(policy
);
202 "running cpufreq without cooling device: %ld\n",
206 static int imx6q_cpufreq_init(struct cpufreq_policy
*policy
)
210 policy
->clk
= clks
[ARM
].clk
;
211 ret
= cpufreq_generic_init(policy
, freq_table
, transition_latency
);
212 policy
->suspend_freq
= max_freq
;
217 static int imx6q_cpufreq_exit(struct cpufreq_policy
*policy
)
219 cpufreq_cooling_unregister(cdev
);
224 static struct cpufreq_driver imx6q_cpufreq_driver
= {
225 .flags
= CPUFREQ_NEED_INITIAL_FREQ_CHECK
,
226 .verify
= cpufreq_generic_frequency_table_verify
,
227 .target_index
= imx6q_set_target
,
228 .get
= cpufreq_generic_get
,
229 .init
= imx6q_cpufreq_init
,
230 .exit
= imx6q_cpufreq_exit
,
231 .name
= "imx6q-cpufreq",
232 .ready
= imx6q_cpufreq_ready
,
233 .attr
= cpufreq_generic_attr
,
234 .suspend
= cpufreq_generic_suspend
,
237 #define OCOTP_CFG3 0x440
238 #define OCOTP_CFG3_SPEED_SHIFT 16
239 #define OCOTP_CFG3_SPEED_1P2GHZ 0x3
240 #define OCOTP_CFG3_SPEED_996MHZ 0x2
241 #define OCOTP_CFG3_SPEED_852MHZ 0x1
243 static void imx6q_opp_check_speed_grading(struct device
*dev
)
245 struct device_node
*np
;
249 np
= of_find_compatible_node(NULL
, NULL
, "fsl,imx6q-ocotp");
253 base
= of_iomap(np
, 0);
255 dev_err(dev
, "failed to map ocotp\n");
260 * SPEED_GRADING[1:0] defines the max speed of ARM:
261 * 2b'11: 1200000000Hz;
262 * 2b'10: 996000000Hz;
263 * 2b'01: 852000000Hz; -- i.MX6Q Only, exclusive with 996MHz.
264 * 2b'00: 792000000Hz;
265 * We need to set the max speed of ARM according to fuse map.
267 val
= readl_relaxed(base
+ OCOTP_CFG3
);
268 val
>>= OCOTP_CFG3_SPEED_SHIFT
;
271 if (val
< OCOTP_CFG3_SPEED_996MHZ
)
272 if (dev_pm_opp_disable(dev
, 996000000))
273 dev_warn(dev
, "failed to disable 996MHz OPP\n");
275 if (of_machine_is_compatible("fsl,imx6q") ||
276 of_machine_is_compatible("fsl,imx6qp")) {
277 if (val
!= OCOTP_CFG3_SPEED_852MHZ
)
278 if (dev_pm_opp_disable(dev
, 852000000))
279 dev_warn(dev
, "failed to disable 852MHz OPP\n");
280 if (val
!= OCOTP_CFG3_SPEED_1P2GHZ
)
281 if (dev_pm_opp_disable(dev
, 1200000000))
282 dev_warn(dev
, "failed to disable 1.2GHz OPP\n");
289 #define OCOTP_CFG3_6UL_SPEED_696MHZ 0x2
290 #define OCOTP_CFG3_6ULL_SPEED_792MHZ 0x2
291 #define OCOTP_CFG3_6ULL_SPEED_900MHZ 0x3
293 static void imx6ul_opp_check_speed_grading(struct device
*dev
)
295 struct device_node
*np
;
299 np
= of_find_compatible_node(NULL
, NULL
, "fsl,imx6ul-ocotp");
303 base
= of_iomap(np
, 0);
305 dev_err(dev
, "failed to map ocotp\n");
310 * Speed GRADING[1:0] defines the max speed of ARM:
312 * 2b'01: 528000000Hz;
313 * 2b'10: 696000000Hz on i.MX6UL, 792000000Hz on i.MX6ULL;
314 * 2b'11: 900000000Hz on i.MX6ULL only;
315 * We need to set the max speed of ARM according to fuse map.
317 val
= readl_relaxed(base
+ OCOTP_CFG3
);
318 val
>>= OCOTP_CFG3_SPEED_SHIFT
;
321 if (of_machine_is_compatible("fsl,imx6ul")) {
322 if (val
!= OCOTP_CFG3_6UL_SPEED_696MHZ
)
323 if (dev_pm_opp_disable(dev
, 696000000))
324 dev_warn(dev
, "failed to disable 696MHz OPP\n");
327 if (of_machine_is_compatible("fsl,imx6ull")) {
328 if (val
!= OCOTP_CFG3_6ULL_SPEED_792MHZ
)
329 if (dev_pm_opp_disable(dev
, 792000000))
330 dev_warn(dev
, "failed to disable 792MHz OPP\n");
332 if (val
!= OCOTP_CFG3_6ULL_SPEED_900MHZ
)
333 if (dev_pm_opp_disable(dev
, 900000000))
334 dev_warn(dev
, "failed to disable 900MHz OPP\n");
342 static int imx6q_cpufreq_probe(struct platform_device
*pdev
)
344 struct device_node
*np
;
345 struct dev_pm_opp
*opp
;
346 unsigned long min_volt
, max_volt
;
348 const struct property
*prop
;
352 cpu_dev
= get_cpu_device(0);
354 pr_err("failed to get cpu0 device\n");
358 np
= of_node_get(cpu_dev
->of_node
);
360 dev_err(cpu_dev
, "failed to find cpu0 node\n");
364 if (of_machine_is_compatible("fsl,imx6ul") ||
365 of_machine_is_compatible("fsl,imx6ull"))
366 num_clks
= IMX6UL_CPUFREQ_CLK_NUM
;
368 num_clks
= IMX6Q_CPUFREQ_CLK_NUM
;
370 ret
= clk_bulk_get(cpu_dev
, num_clks
, clks
);
374 arm_reg
= regulator_get(cpu_dev
, "arm");
375 pu_reg
= regulator_get_optional(cpu_dev
, "pu");
376 soc_reg
= regulator_get(cpu_dev
, "soc");
377 if (PTR_ERR(arm_reg
) == -EPROBE_DEFER
||
378 PTR_ERR(soc_reg
) == -EPROBE_DEFER
||
379 PTR_ERR(pu_reg
) == -EPROBE_DEFER
) {
381 dev_dbg(cpu_dev
, "regulators not ready, defer\n");
384 if (IS_ERR(arm_reg
) || IS_ERR(soc_reg
)) {
385 dev_err(cpu_dev
, "failed to get regulators\n");
390 ret
= dev_pm_opp_of_add_table(cpu_dev
);
392 dev_err(cpu_dev
, "failed to init OPP table: %d\n", ret
);
396 if (of_machine_is_compatible("fsl,imx6ul") ||
397 of_machine_is_compatible("fsl,imx6ull"))
398 imx6ul_opp_check_speed_grading(cpu_dev
);
400 imx6q_opp_check_speed_grading(cpu_dev
);
402 /* Because we have added the OPPs here, we must free them */
404 num
= dev_pm_opp_get_opp_count(cpu_dev
);
407 dev_err(cpu_dev
, "no OPP table is found: %d\n", ret
);
411 ret
= dev_pm_opp_init_cpufreq_table(cpu_dev
, &freq_table
);
413 dev_err(cpu_dev
, "failed to init cpufreq table: %d\n", ret
);
417 /* Make imx6_soc_volt array's size same as arm opp number */
418 imx6_soc_volt
= devm_kcalloc(cpu_dev
, num
, sizeof(*imx6_soc_volt
),
420 if (imx6_soc_volt
== NULL
) {
422 goto free_freq_table
;
425 prop
= of_find_property(np
, "fsl,soc-operating-points", NULL
);
426 if (!prop
|| !prop
->value
)
430 * Each OPP is a set of tuples consisting of frequency and
431 * voltage like <freq-kHz vol-uV>.
433 nr
= prop
->length
/ sizeof(u32
);
434 if (nr
% 2 || (nr
/ 2) < num
)
437 for (j
= 0; j
< num
; j
++) {
439 for (i
= 0; i
< nr
/ 2; i
++) {
440 unsigned long freq
= be32_to_cpup(val
++);
441 unsigned long volt
= be32_to_cpup(val
++);
442 if (freq_table
[j
].frequency
== freq
) {
443 imx6_soc_volt
[soc_opp_count
++] = volt
;
450 /* use fixed soc opp volt if no valid soc opp info found in dtb */
451 if (soc_opp_count
!= num
) {
452 dev_warn(cpu_dev
, "can NOT find valid fsl,soc-operating-points property in dtb, use default value!\n");
453 for (j
= 0; j
< num
; j
++)
454 imx6_soc_volt
[j
] = PU_SOC_VOLTAGE_NORMAL
;
455 if (freq_table
[num
- 1].frequency
* 1000 == FREQ_1P2_GHZ
)
456 imx6_soc_volt
[num
- 1] = PU_SOC_VOLTAGE_HIGH
;
459 if (of_property_read_u32(np
, "clock-latency", &transition_latency
))
460 transition_latency
= CPUFREQ_ETERNAL
;
463 * Calculate the ramp time for max voltage change in the
464 * VDDSOC and VDDPU regulators.
466 ret
= regulator_set_voltage_time(soc_reg
, imx6_soc_volt
[0], imx6_soc_volt
[num
- 1]);
468 transition_latency
+= ret
* 1000;
469 if (!IS_ERR(pu_reg
)) {
470 ret
= regulator_set_voltage_time(pu_reg
, imx6_soc_volt
[0], imx6_soc_volt
[num
- 1]);
472 transition_latency
+= ret
* 1000;
476 * OPP is maintained in order of increasing frequency, and
477 * freq_table initialised from OPP is therefore sorted in the
480 max_freq
= freq_table
[--num
].frequency
;
481 opp
= dev_pm_opp_find_freq_exact(cpu_dev
,
482 freq_table
[0].frequency
* 1000, true);
483 min_volt
= dev_pm_opp_get_voltage(opp
);
485 opp
= dev_pm_opp_find_freq_exact(cpu_dev
, max_freq
* 1000, true);
486 max_volt
= dev_pm_opp_get_voltage(opp
);
489 ret
= regulator_set_voltage_time(arm_reg
, min_volt
, max_volt
);
491 transition_latency
+= ret
* 1000;
493 ret
= cpufreq_register_driver(&imx6q_cpufreq_driver
);
495 dev_err(cpu_dev
, "failed register driver: %d\n", ret
);
496 goto free_freq_table
;
503 dev_pm_opp_free_cpufreq_table(cpu_dev
, &freq_table
);
506 dev_pm_opp_of_remove_table(cpu_dev
);
508 if (!IS_ERR(arm_reg
))
509 regulator_put(arm_reg
);
511 regulator_put(pu_reg
);
512 if (!IS_ERR(soc_reg
))
513 regulator_put(soc_reg
);
515 clk_bulk_put(num_clks
, clks
);
522 static int imx6q_cpufreq_remove(struct platform_device
*pdev
)
524 cpufreq_unregister_driver(&imx6q_cpufreq_driver
);
525 dev_pm_opp_free_cpufreq_table(cpu_dev
, &freq_table
);
527 dev_pm_opp_of_remove_table(cpu_dev
);
528 regulator_put(arm_reg
);
530 regulator_put(pu_reg
);
531 regulator_put(soc_reg
);
533 clk_bulk_put(num_clks
, clks
);
538 static struct platform_driver imx6q_cpufreq_platdrv
= {
540 .name
= "imx6q-cpufreq",
542 .probe
= imx6q_cpufreq_probe
,
543 .remove
= imx6q_cpufreq_remove
,
545 module_platform_driver(imx6q_cpufreq_platdrv
);
547 MODULE_ALIAS("platform:imx6q-cpufreq");
548 MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>");
549 MODULE_DESCRIPTION("Freescale i.MX6Q cpufreq driver");
550 MODULE_LICENSE("GPL");