blob: 2938257b8c196e184ebd23d18f63d584e4884e3a [file] [log] [blame]
Shawn Guo1dd538f2013-02-04 05:46:29 +00001/*
2 * Copyright (C) 2013 Freescale Semiconductor, Inc.
3 *
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.
7 */
8
9#include <linux/clk.h>
Sudeep KarkadaNageshab494b482013-09-10 18:59:47 +010010#include <linux/cpu.h>
Shawn Guo1dd538f2013-02-04 05:46:29 +000011#include <linux/cpufreq.h>
12#include <linux/delay.h>
13#include <linux/err.h>
14#include <linux/module.h>
15#include <linux/of.h>
Nishanth Menone4db1c72013-09-19 16:03:52 -050016#include <linux/pm_opp.h>
Shawn Guo1dd538f2013-02-04 05:46:29 +000017#include <linux/platform_device.h>
18#include <linux/regulator/consumer.h>
19
20#define PU_SOC_VOLTAGE_NORMAL 1250000
21#define PU_SOC_VOLTAGE_HIGH 1275000
22#define FREQ_1P2_GHZ 1200000000
23
24static struct regulator *arm_reg;
25static struct regulator *pu_reg;
26static struct regulator *soc_reg;
27
28static struct clk *arm_clk;
29static struct clk *pll1_sys_clk;
30static struct clk *pll1_sw_clk;
31static struct clk *step_clk;
32static struct clk *pll2_pfd2_396m_clk;
33
34static struct device *cpu_dev;
35static struct cpufreq_frequency_table *freq_table;
36static unsigned int transition_latency;
37
Anson Huangb4573d1d2013-12-19 09:16:47 -050038static u32 *imx6_soc_volt;
39static u32 soc_opp_count;
40
Shawn Guo1dd538f2013-02-04 05:46:29 +000041static unsigned int imx6q_get_speed(unsigned int cpu)
42{
43 return clk_get_rate(arm_clk) / 1000;
44}
45
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +053046static int imx6q_set_target(struct cpufreq_policy *policy, unsigned int index)
Shawn Guo1dd538f2013-02-04 05:46:29 +000047{
Nishanth Menon47d43ba2013-09-19 16:03:51 -050048 struct dev_pm_opp *opp;
Shawn Guo1dd538f2013-02-04 05:46:29 +000049 unsigned long freq_hz, volt, volt_old;
Viresh Kumard4019f02013-08-14 19:38:24 +053050 unsigned int old_freq, new_freq;
Shawn Guo1dd538f2013-02-04 05:46:29 +000051 int ret;
52
Viresh Kumard4019f02013-08-14 19:38:24 +053053 new_freq = freq_table[index].frequency;
54 freq_hz = new_freq * 1000;
55 old_freq = clk_get_rate(arm_clk) / 1000;
Shawn Guo1dd538f2013-02-04 05:46:29 +000056
Shawn Guo1dd538f2013-02-04 05:46:29 +000057 rcu_read_lock();
Nishanth Menon5d4879c2013-09-19 16:03:50 -050058 opp = dev_pm_opp_find_freq_ceil(cpu_dev, &freq_hz);
Shawn Guo1dd538f2013-02-04 05:46:29 +000059 if (IS_ERR(opp)) {
60 rcu_read_unlock();
61 dev_err(cpu_dev, "failed to find OPP for %ld\n", freq_hz);
62 return PTR_ERR(opp);
63 }
64
Nishanth Menon5d4879c2013-09-19 16:03:50 -050065 volt = dev_pm_opp_get_voltage(opp);
Shawn Guo1dd538f2013-02-04 05:46:29 +000066 rcu_read_unlock();
67 volt_old = regulator_get_voltage(arm_reg);
68
69 dev_dbg(cpu_dev, "%u MHz, %ld mV --> %u MHz, %ld mV\n",
Viresh Kumard4019f02013-08-14 19:38:24 +053070 old_freq / 1000, volt_old / 1000,
71 new_freq / 1000, volt / 1000);
Viresh Kumar5a571c32013-06-19 11:18:20 +053072
Shawn Guo1dd538f2013-02-04 05:46:29 +000073 /* scaling up? scale voltage before frequency */
Viresh Kumard4019f02013-08-14 19:38:24 +053074 if (new_freq > old_freq) {
Anson Huangb4573d1d2013-12-19 09:16:47 -050075 ret = regulator_set_voltage_tol(pu_reg, imx6_soc_volt[index], 0);
76 if (ret) {
77 dev_err(cpu_dev, "failed to scale vddpu up: %d\n", ret);
78 return ret;
79 }
80 ret = regulator_set_voltage_tol(soc_reg, imx6_soc_volt[index], 0);
81 if (ret) {
82 dev_err(cpu_dev, "failed to scale vddsoc up: %d\n", ret);
83 return ret;
84 }
Shawn Guo1dd538f2013-02-04 05:46:29 +000085 ret = regulator_set_voltage_tol(arm_reg, volt, 0);
86 if (ret) {
87 dev_err(cpu_dev,
88 "failed to scale vddarm up: %d\n", ret);
Viresh Kumard4019f02013-08-14 19:38:24 +053089 return ret;
Shawn Guo1dd538f2013-02-04 05:46:29 +000090 }
Shawn Guo1dd538f2013-02-04 05:46:29 +000091 }
92
93 /*
94 * The setpoints are selected per PLL/PDF frequencies, so we need to
95 * reprogram PLL for frequency scaling. The procedure of reprogramming
96 * PLL1 is as below.
97 *
98 * - Enable pll2_pfd2_396m_clk and reparent pll1_sw_clk to it
99 * - Reprogram pll1_sys_clk and reparent pll1_sw_clk back to it
100 * - Disable pll2_pfd2_396m_clk
101 */
Shawn Guo1dd538f2013-02-04 05:46:29 +0000102 clk_set_parent(step_clk, pll2_pfd2_396m_clk);
103 clk_set_parent(pll1_sw_clk, step_clk);
104 if (freq_hz > clk_get_rate(pll2_pfd2_396m_clk)) {
Viresh Kumard4019f02013-08-14 19:38:24 +0530105 clk_set_rate(pll1_sys_clk, new_freq * 1000);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000106 clk_set_parent(pll1_sw_clk, pll1_sys_clk);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000107 }
108
109 /* Ensure the arm clock divider is what we expect */
Viresh Kumard4019f02013-08-14 19:38:24 +0530110 ret = clk_set_rate(arm_clk, new_freq * 1000);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000111 if (ret) {
112 dev_err(cpu_dev, "failed to set clock rate: %d\n", ret);
113 regulator_set_voltage_tol(arm_reg, volt_old, 0);
Viresh Kumard4019f02013-08-14 19:38:24 +0530114 return ret;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000115 }
116
117 /* scaling down? scale voltage after frequency */
Viresh Kumard4019f02013-08-14 19:38:24 +0530118 if (new_freq < old_freq) {
Shawn Guo1dd538f2013-02-04 05:46:29 +0000119 ret = regulator_set_voltage_tol(arm_reg, volt, 0);
Viresh Kumar5a571c32013-06-19 11:18:20 +0530120 if (ret) {
Shawn Guo1dd538f2013-02-04 05:46:29 +0000121 dev_warn(cpu_dev,
122 "failed to scale vddarm down: %d\n", ret);
Viresh Kumar5a571c32013-06-19 11:18:20 +0530123 ret = 0;
124 }
Anson Huangb4573d1d2013-12-19 09:16:47 -0500125 ret = regulator_set_voltage_tol(soc_reg, imx6_soc_volt[index], 0);
126 if (ret) {
127 dev_warn(cpu_dev, "failed to scale vddsoc down: %d\n", ret);
128 ret = 0;
129 }
130 ret = regulator_set_voltage_tol(pu_reg, imx6_soc_volt[index], 0);
131 if (ret) {
132 dev_warn(cpu_dev, "failed to scale vddpu down: %d\n", ret);
133 ret = 0;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000134 }
135 }
136
Viresh Kumard4019f02013-08-14 19:38:24 +0530137 return 0;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000138}
139
140static int imx6q_cpufreq_init(struct cpufreq_policy *policy)
141{
Viresh Kumar17922dd2013-10-03 20:29:14 +0530142 return cpufreq_generic_init(policy, freq_table, transition_latency);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000143}
144
Shawn Guo1dd538f2013-02-04 05:46:29 +0000145static struct cpufreq_driver imx6q_cpufreq_driver = {
Viresh Kumarae6b4272013-12-03 11:20:45 +0530146 .flags = CPUFREQ_NEED_INITIAL_FREQ_CHECK,
Viresh Kumar4f6ba382013-10-03 20:28:08 +0530147 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530148 .target_index = imx6q_set_target,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000149 .get = imx6q_get_speed,
150 .init = imx6q_cpufreq_init,
Viresh Kumar4f6ba382013-10-03 20:28:08 +0530151 .exit = cpufreq_generic_exit,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000152 .name = "imx6q-cpufreq",
Viresh Kumar4f6ba382013-10-03 20:28:08 +0530153 .attr = cpufreq_generic_attr,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000154};
155
156static int imx6q_cpufreq_probe(struct platform_device *pdev)
157{
158 struct device_node *np;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500159 struct dev_pm_opp *opp;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000160 unsigned long min_volt, max_volt;
161 int num, ret;
Anson Huangb4573d1d2013-12-19 09:16:47 -0500162 const struct property *prop;
163 const __be32 *val;
164 u32 nr, i, j;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000165
Sudeep KarkadaNageshab494b482013-09-10 18:59:47 +0100166 cpu_dev = get_cpu_device(0);
167 if (!cpu_dev) {
168 pr_err("failed to get cpu0 device\n");
169 return -ENODEV;
170 }
Shawn Guo1dd538f2013-02-04 05:46:29 +0000171
Sudeep KarkadaNageshacdc58d62013-06-17 14:58:48 +0100172 np = of_node_get(cpu_dev->of_node);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000173 if (!np) {
174 dev_err(cpu_dev, "failed to find cpu0 node\n");
175 return -ENOENT;
176 }
177
Shawn Guo1dd538f2013-02-04 05:46:29 +0000178 arm_clk = devm_clk_get(cpu_dev, "arm");
179 pll1_sys_clk = devm_clk_get(cpu_dev, "pll1_sys");
180 pll1_sw_clk = devm_clk_get(cpu_dev, "pll1_sw");
181 step_clk = devm_clk_get(cpu_dev, "step");
182 pll2_pfd2_396m_clk = devm_clk_get(cpu_dev, "pll2_pfd2_396m");
183 if (IS_ERR(arm_clk) || IS_ERR(pll1_sys_clk) || IS_ERR(pll1_sw_clk) ||
184 IS_ERR(step_clk) || IS_ERR(pll2_pfd2_396m_clk)) {
185 dev_err(cpu_dev, "failed to get clocks\n");
186 ret = -ENOENT;
187 goto put_node;
188 }
189
190 arm_reg = devm_regulator_get(cpu_dev, "arm");
191 pu_reg = devm_regulator_get(cpu_dev, "pu");
192 soc_reg = devm_regulator_get(cpu_dev, "soc");
Wei Yongjun3a3656d2013-02-22 04:39:30 +0000193 if (IS_ERR(arm_reg) || IS_ERR(pu_reg) || IS_ERR(soc_reg)) {
Shawn Guo1dd538f2013-02-04 05:46:29 +0000194 dev_err(cpu_dev, "failed to get regulators\n");
195 ret = -ENOENT;
196 goto put_node;
197 }
198
John Tobias20b7cbe2013-12-19 22:56:28 -0800199 /*
200 * We expect an OPP table supplied by platform.
201 * Just, incase the platform did not supply the OPP
202 * table, it will try to get it.
203 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500204 num = dev_pm_opp_get_opp_count(cpu_dev);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000205 if (num < 0) {
John Tobias20b7cbe2013-12-19 22:56:28 -0800206 ret = of_init_opp_table(cpu_dev);
207 if (ret < 0) {
208 dev_err(cpu_dev, "failed to init OPP table: %d\n", ret);
209 goto put_node;
210 }
211
212 num = dev_pm_opp_get_opp_count(cpu_dev);
213 if (num < 0) {
214 ret = num;
215 dev_err(cpu_dev, "no OPP table is found: %d\n", ret);
216 goto put_node;
217 }
Shawn Guo1dd538f2013-02-04 05:46:29 +0000218 }
219
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500220 ret = dev_pm_opp_init_cpufreq_table(cpu_dev, &freq_table);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000221 if (ret) {
222 dev_err(cpu_dev, "failed to init cpufreq table: %d\n", ret);
223 goto put_node;
224 }
225
Anson Huangb4573d1d2013-12-19 09:16:47 -0500226 /* Make imx6_soc_volt array's size same as arm opp number */
227 imx6_soc_volt = devm_kzalloc(cpu_dev, sizeof(*imx6_soc_volt) * num, GFP_KERNEL);
228 if (imx6_soc_volt == NULL) {
229 ret = -ENOMEM;
230 goto free_freq_table;
231 }
232
233 prop = of_find_property(np, "fsl,soc-operating-points", NULL);
234 if (!prop || !prop->value)
235 goto soc_opp_out;
236
237 /*
238 * Each OPP is a set of tuples consisting of frequency and
239 * voltage like <freq-kHz vol-uV>.
240 */
241 nr = prop->length / sizeof(u32);
242 if (nr % 2 || (nr / 2) < num)
243 goto soc_opp_out;
244
245 for (j = 0; j < num; j++) {
246 val = prop->value;
247 for (i = 0; i < nr / 2; i++) {
248 unsigned long freq = be32_to_cpup(val++);
249 unsigned long volt = be32_to_cpup(val++);
250 if (freq_table[j].frequency == freq) {
251 imx6_soc_volt[soc_opp_count++] = volt;
252 break;
253 }
254 }
255 }
256
257soc_opp_out:
258 /* use fixed soc opp volt if no valid soc opp info found in dtb */
259 if (soc_opp_count != num) {
260 dev_warn(cpu_dev, "can NOT find valid fsl,soc-operating-points property in dtb, use default value!\n");
261 for (j = 0; j < num; j++)
262 imx6_soc_volt[j] = PU_SOC_VOLTAGE_NORMAL;
263 if (freq_table[num - 1].frequency * 1000 == FREQ_1P2_GHZ)
264 imx6_soc_volt[num - 1] = PU_SOC_VOLTAGE_HIGH;
265 }
266
Shawn Guo1dd538f2013-02-04 05:46:29 +0000267 if (of_property_read_u32(np, "clock-latency", &transition_latency))
268 transition_latency = CPUFREQ_ETERNAL;
269
270 /*
Anson Huangb4573d1d2013-12-19 09:16:47 -0500271 * Calculate the ramp time for max voltage change in the
272 * VDDSOC and VDDPU regulators.
273 */
274 ret = regulator_set_voltage_time(soc_reg, imx6_soc_volt[0], imx6_soc_volt[num - 1]);
275 if (ret > 0)
276 transition_latency += ret * 1000;
277 ret = regulator_set_voltage_time(pu_reg, imx6_soc_volt[0], imx6_soc_volt[num - 1]);
278 if (ret > 0)
279 transition_latency += ret * 1000;
280
281 /*
Shawn Guo1dd538f2013-02-04 05:46:29 +0000282 * OPP is maintained in order of increasing frequency, and
283 * freq_table initialised from OPP is therefore sorted in the
284 * same order.
285 */
286 rcu_read_lock();
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500287 opp = dev_pm_opp_find_freq_exact(cpu_dev,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000288 freq_table[0].frequency * 1000, true);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500289 min_volt = dev_pm_opp_get_voltage(opp);
290 opp = dev_pm_opp_find_freq_exact(cpu_dev,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000291 freq_table[--num].frequency * 1000, true);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500292 max_volt = dev_pm_opp_get_voltage(opp);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000293 rcu_read_unlock();
294 ret = regulator_set_voltage_time(arm_reg, min_volt, max_volt);
295 if (ret > 0)
296 transition_latency += ret * 1000;
297
Shawn Guo1dd538f2013-02-04 05:46:29 +0000298 ret = cpufreq_register_driver(&imx6q_cpufreq_driver);
299 if (ret) {
300 dev_err(cpu_dev, "failed register driver: %d\n", ret);
301 goto free_freq_table;
302 }
303
304 of_node_put(np);
305 return 0;
306
307free_freq_table:
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500308 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000309put_node:
310 of_node_put(np);
311 return ret;
312}
313
314static int imx6q_cpufreq_remove(struct platform_device *pdev)
315{
316 cpufreq_unregister_driver(&imx6q_cpufreq_driver);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500317 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000318
319 return 0;
320}
321
322static struct platform_driver imx6q_cpufreq_platdrv = {
323 .driver = {
324 .name = "imx6q-cpufreq",
325 .owner = THIS_MODULE,
326 },
327 .probe = imx6q_cpufreq_probe,
328 .remove = imx6q_cpufreq_remove,
329};
330module_platform_driver(imx6q_cpufreq_platdrv);
331
332MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>");
333MODULE_DESCRIPTION("Freescale i.MX6Q cpufreq driver");
334MODULE_LICENSE("GPL");