blob: e27fca86fe4f8e22547fa3f90d3bde5cec81fca6 [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
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +053041static int imx6q_set_target(struct cpufreq_policy *policy, unsigned int index)
Shawn Guo1dd538f2013-02-04 05:46:29 +000042{
Nishanth Menon47d43ba2013-09-19 16:03:51 -050043 struct dev_pm_opp *opp;
Shawn Guo1dd538f2013-02-04 05:46:29 +000044 unsigned long freq_hz, volt, volt_old;
Viresh Kumard4019f02013-08-14 19:38:24 +053045 unsigned int old_freq, new_freq;
Shawn Guo1dd538f2013-02-04 05:46:29 +000046 int ret;
47
Viresh Kumard4019f02013-08-14 19:38:24 +053048 new_freq = freq_table[index].frequency;
49 freq_hz = new_freq * 1000;
50 old_freq = clk_get_rate(arm_clk) / 1000;
Shawn Guo1dd538f2013-02-04 05:46:29 +000051
Shawn Guo1dd538f2013-02-04 05:46:29 +000052 rcu_read_lock();
Nishanth Menon5d4879c2013-09-19 16:03:50 -050053 opp = dev_pm_opp_find_freq_ceil(cpu_dev, &freq_hz);
Shawn Guo1dd538f2013-02-04 05:46:29 +000054 if (IS_ERR(opp)) {
55 rcu_read_unlock();
56 dev_err(cpu_dev, "failed to find OPP for %ld\n", freq_hz);
57 return PTR_ERR(opp);
58 }
59
Nishanth Menon5d4879c2013-09-19 16:03:50 -050060 volt = dev_pm_opp_get_voltage(opp);
Shawn Guo1dd538f2013-02-04 05:46:29 +000061 rcu_read_unlock();
62 volt_old = regulator_get_voltage(arm_reg);
63
64 dev_dbg(cpu_dev, "%u MHz, %ld mV --> %u MHz, %ld mV\n",
Viresh Kumard4019f02013-08-14 19:38:24 +053065 old_freq / 1000, volt_old / 1000,
66 new_freq / 1000, volt / 1000);
Viresh Kumar5a571c32013-06-19 11:18:20 +053067
Shawn Guo1dd538f2013-02-04 05:46:29 +000068 /* scaling up? scale voltage before frequency */
Viresh Kumard4019f02013-08-14 19:38:24 +053069 if (new_freq > old_freq) {
Anson Huangb4573d1d2013-12-19 09:16:47 -050070 ret = regulator_set_voltage_tol(pu_reg, imx6_soc_volt[index], 0);
71 if (ret) {
72 dev_err(cpu_dev, "failed to scale vddpu up: %d\n", ret);
73 return ret;
74 }
75 ret = regulator_set_voltage_tol(soc_reg, imx6_soc_volt[index], 0);
76 if (ret) {
77 dev_err(cpu_dev, "failed to scale vddsoc up: %d\n", ret);
78 return ret;
79 }
Shawn Guo1dd538f2013-02-04 05:46:29 +000080 ret = regulator_set_voltage_tol(arm_reg, volt, 0);
81 if (ret) {
82 dev_err(cpu_dev,
83 "failed to scale vddarm up: %d\n", ret);
Viresh Kumard4019f02013-08-14 19:38:24 +053084 return ret;
Shawn Guo1dd538f2013-02-04 05:46:29 +000085 }
Shawn Guo1dd538f2013-02-04 05:46:29 +000086 }
87
88 /*
89 * The setpoints are selected per PLL/PDF frequencies, so we need to
90 * reprogram PLL for frequency scaling. The procedure of reprogramming
91 * PLL1 is as below.
92 *
93 * - Enable pll2_pfd2_396m_clk and reparent pll1_sw_clk to it
94 * - Reprogram pll1_sys_clk and reparent pll1_sw_clk back to it
95 * - Disable pll2_pfd2_396m_clk
96 */
Shawn Guo1dd538f2013-02-04 05:46:29 +000097 clk_set_parent(step_clk, pll2_pfd2_396m_clk);
98 clk_set_parent(pll1_sw_clk, step_clk);
99 if (freq_hz > clk_get_rate(pll2_pfd2_396m_clk)) {
Viresh Kumard4019f02013-08-14 19:38:24 +0530100 clk_set_rate(pll1_sys_clk, new_freq * 1000);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000101 clk_set_parent(pll1_sw_clk, pll1_sys_clk);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000102 }
103
104 /* Ensure the arm clock divider is what we expect */
Viresh Kumard4019f02013-08-14 19:38:24 +0530105 ret = clk_set_rate(arm_clk, new_freq * 1000);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000106 if (ret) {
107 dev_err(cpu_dev, "failed to set clock rate: %d\n", ret);
108 regulator_set_voltage_tol(arm_reg, volt_old, 0);
Viresh Kumard4019f02013-08-14 19:38:24 +0530109 return ret;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000110 }
111
112 /* scaling down? scale voltage after frequency */
Viresh Kumard4019f02013-08-14 19:38:24 +0530113 if (new_freq < old_freq) {
Shawn Guo1dd538f2013-02-04 05:46:29 +0000114 ret = regulator_set_voltage_tol(arm_reg, volt, 0);
Viresh Kumar5a571c32013-06-19 11:18:20 +0530115 if (ret) {
Shawn Guo1dd538f2013-02-04 05:46:29 +0000116 dev_warn(cpu_dev,
117 "failed to scale vddarm down: %d\n", ret);
Viresh Kumar5a571c32013-06-19 11:18:20 +0530118 ret = 0;
119 }
Anson Huangb4573d1d2013-12-19 09:16:47 -0500120 ret = regulator_set_voltage_tol(soc_reg, imx6_soc_volt[index], 0);
121 if (ret) {
122 dev_warn(cpu_dev, "failed to scale vddsoc down: %d\n", ret);
123 ret = 0;
124 }
125 ret = regulator_set_voltage_tol(pu_reg, imx6_soc_volt[index], 0);
126 if (ret) {
127 dev_warn(cpu_dev, "failed to scale vddpu down: %d\n", ret);
128 ret = 0;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000129 }
130 }
131
Viresh Kumard4019f02013-08-14 19:38:24 +0530132 return 0;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000133}
134
135static int imx6q_cpufreq_init(struct cpufreq_policy *policy)
136{
Viresh Kumar652ed952014-01-09 20:38:43 +0530137 policy->clk = arm_clk;
Viresh Kumar17922dd2013-10-03 20:29:14 +0530138 return cpufreq_generic_init(policy, freq_table, transition_latency);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000139}
140
Shawn Guo1dd538f2013-02-04 05:46:29 +0000141static struct cpufreq_driver imx6q_cpufreq_driver = {
Viresh Kumarae6b4272013-12-03 11:20:45 +0530142 .flags = CPUFREQ_NEED_INITIAL_FREQ_CHECK,
Viresh Kumar4f6ba382013-10-03 20:28:08 +0530143 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530144 .target_index = imx6q_set_target,
Viresh Kumar652ed952014-01-09 20:38:43 +0530145 .get = cpufreq_generic_get,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000146 .init = imx6q_cpufreq_init,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000147 .name = "imx6q-cpufreq",
Viresh Kumar4f6ba382013-10-03 20:28:08 +0530148 .attr = cpufreq_generic_attr,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000149};
150
151static int imx6q_cpufreq_probe(struct platform_device *pdev)
152{
153 struct device_node *np;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500154 struct dev_pm_opp *opp;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000155 unsigned long min_volt, max_volt;
156 int num, ret;
Anson Huangb4573d1d2013-12-19 09:16:47 -0500157 const struct property *prop;
158 const __be32 *val;
159 u32 nr, i, j;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000160
Sudeep KarkadaNageshab494b482013-09-10 18:59:47 +0100161 cpu_dev = get_cpu_device(0);
162 if (!cpu_dev) {
163 pr_err("failed to get cpu0 device\n");
164 return -ENODEV;
165 }
Shawn Guo1dd538f2013-02-04 05:46:29 +0000166
Sudeep KarkadaNageshacdc58d62013-06-17 14:58:48 +0100167 np = of_node_get(cpu_dev->of_node);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000168 if (!np) {
169 dev_err(cpu_dev, "failed to find cpu0 node\n");
170 return -ENOENT;
171 }
172
Shawn Guo1dd538f2013-02-04 05:46:29 +0000173 arm_clk = devm_clk_get(cpu_dev, "arm");
174 pll1_sys_clk = devm_clk_get(cpu_dev, "pll1_sys");
175 pll1_sw_clk = devm_clk_get(cpu_dev, "pll1_sw");
176 step_clk = devm_clk_get(cpu_dev, "step");
177 pll2_pfd2_396m_clk = devm_clk_get(cpu_dev, "pll2_pfd2_396m");
178 if (IS_ERR(arm_clk) || IS_ERR(pll1_sys_clk) || IS_ERR(pll1_sw_clk) ||
179 IS_ERR(step_clk) || IS_ERR(pll2_pfd2_396m_clk)) {
180 dev_err(cpu_dev, "failed to get clocks\n");
181 ret = -ENOENT;
182 goto put_node;
183 }
184
185 arm_reg = devm_regulator_get(cpu_dev, "arm");
186 pu_reg = devm_regulator_get(cpu_dev, "pu");
187 soc_reg = devm_regulator_get(cpu_dev, "soc");
Wei Yongjun3a3656d2013-02-22 04:39:30 +0000188 if (IS_ERR(arm_reg) || IS_ERR(pu_reg) || IS_ERR(soc_reg)) {
Shawn Guo1dd538f2013-02-04 05:46:29 +0000189 dev_err(cpu_dev, "failed to get regulators\n");
190 ret = -ENOENT;
191 goto put_node;
192 }
193
John Tobias20b7cbe2013-12-19 22:56:28 -0800194 /*
195 * We expect an OPP table supplied by platform.
196 * Just, incase the platform did not supply the OPP
197 * table, it will try to get it.
198 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500199 num = dev_pm_opp_get_opp_count(cpu_dev);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000200 if (num < 0) {
John Tobias20b7cbe2013-12-19 22:56:28 -0800201 ret = of_init_opp_table(cpu_dev);
202 if (ret < 0) {
203 dev_err(cpu_dev, "failed to init OPP table: %d\n", ret);
204 goto put_node;
205 }
206
207 num = dev_pm_opp_get_opp_count(cpu_dev);
208 if (num < 0) {
209 ret = num;
210 dev_err(cpu_dev, "no OPP table is found: %d\n", ret);
211 goto put_node;
212 }
Shawn Guo1dd538f2013-02-04 05:46:29 +0000213 }
214
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500215 ret = dev_pm_opp_init_cpufreq_table(cpu_dev, &freq_table);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000216 if (ret) {
217 dev_err(cpu_dev, "failed to init cpufreq table: %d\n", ret);
218 goto put_node;
219 }
220
Anson Huangb4573d1d2013-12-19 09:16:47 -0500221 /* Make imx6_soc_volt array's size same as arm opp number */
222 imx6_soc_volt = devm_kzalloc(cpu_dev, sizeof(*imx6_soc_volt) * num, GFP_KERNEL);
223 if (imx6_soc_volt == NULL) {
224 ret = -ENOMEM;
225 goto free_freq_table;
226 }
227
228 prop = of_find_property(np, "fsl,soc-operating-points", NULL);
229 if (!prop || !prop->value)
230 goto soc_opp_out;
231
232 /*
233 * Each OPP is a set of tuples consisting of frequency and
234 * voltage like <freq-kHz vol-uV>.
235 */
236 nr = prop->length / sizeof(u32);
237 if (nr % 2 || (nr / 2) < num)
238 goto soc_opp_out;
239
240 for (j = 0; j < num; j++) {
241 val = prop->value;
242 for (i = 0; i < nr / 2; i++) {
243 unsigned long freq = be32_to_cpup(val++);
244 unsigned long volt = be32_to_cpup(val++);
245 if (freq_table[j].frequency == freq) {
246 imx6_soc_volt[soc_opp_count++] = volt;
247 break;
248 }
249 }
250 }
251
252soc_opp_out:
253 /* use fixed soc opp volt if no valid soc opp info found in dtb */
254 if (soc_opp_count != num) {
255 dev_warn(cpu_dev, "can NOT find valid fsl,soc-operating-points property in dtb, use default value!\n");
256 for (j = 0; j < num; j++)
257 imx6_soc_volt[j] = PU_SOC_VOLTAGE_NORMAL;
258 if (freq_table[num - 1].frequency * 1000 == FREQ_1P2_GHZ)
259 imx6_soc_volt[num - 1] = PU_SOC_VOLTAGE_HIGH;
260 }
261
Shawn Guo1dd538f2013-02-04 05:46:29 +0000262 if (of_property_read_u32(np, "clock-latency", &transition_latency))
263 transition_latency = CPUFREQ_ETERNAL;
264
265 /*
Anson Huangb4573d1d2013-12-19 09:16:47 -0500266 * Calculate the ramp time for max voltage change in the
267 * VDDSOC and VDDPU regulators.
268 */
269 ret = regulator_set_voltage_time(soc_reg, imx6_soc_volt[0], imx6_soc_volt[num - 1]);
270 if (ret > 0)
271 transition_latency += ret * 1000;
272 ret = regulator_set_voltage_time(pu_reg, imx6_soc_volt[0], imx6_soc_volt[num - 1]);
273 if (ret > 0)
274 transition_latency += ret * 1000;
275
276 /*
Shawn Guo1dd538f2013-02-04 05:46:29 +0000277 * OPP is maintained in order of increasing frequency, and
278 * freq_table initialised from OPP is therefore sorted in the
279 * same order.
280 */
281 rcu_read_lock();
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500282 opp = dev_pm_opp_find_freq_exact(cpu_dev,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000283 freq_table[0].frequency * 1000, true);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500284 min_volt = dev_pm_opp_get_voltage(opp);
285 opp = dev_pm_opp_find_freq_exact(cpu_dev,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000286 freq_table[--num].frequency * 1000, true);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500287 max_volt = dev_pm_opp_get_voltage(opp);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000288 rcu_read_unlock();
289 ret = regulator_set_voltage_time(arm_reg, min_volt, max_volt);
290 if (ret > 0)
291 transition_latency += ret * 1000;
292
Shawn Guo1dd538f2013-02-04 05:46:29 +0000293 ret = cpufreq_register_driver(&imx6q_cpufreq_driver);
294 if (ret) {
295 dev_err(cpu_dev, "failed register driver: %d\n", ret);
296 goto free_freq_table;
297 }
298
299 of_node_put(np);
300 return 0;
301
302free_freq_table:
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500303 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000304put_node:
305 of_node_put(np);
306 return ret;
307}
308
309static int imx6q_cpufreq_remove(struct platform_device *pdev)
310{
311 cpufreq_unregister_driver(&imx6q_cpufreq_driver);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500312 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000313
314 return 0;
315}
316
317static struct platform_driver imx6q_cpufreq_platdrv = {
318 .driver = {
319 .name = "imx6q-cpufreq",
320 .owner = THIS_MODULE,
321 },
322 .probe = imx6q_cpufreq_probe,
323 .remove = imx6q_cpufreq_remove,
324};
325module_platform_driver(imx6q_cpufreq_platdrv);
326
327MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>");
328MODULE_DESCRIPTION("Freescale i.MX6Q cpufreq driver");
329MODULE_LICENSE("GPL");