blob: 8b3c2a79ad6cd113e38982f6cb1700a282ebff16 [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>
Shawn Guo1dd538f2013-02-04 05:46:29 +000012#include <linux/err.h>
13#include <linux/module.h>
14#include <linux/of.h>
Fabio Estevam2b3d58a2017-09-30 12:16:46 -030015#include <linux/of_address.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
Dong Aisheng2332bd02017-12-23 12:53:52 +080028enum IMX6_CPUFREQ_CLKS {
29 ARM,
30 PLL1_SYS,
31 STEP,
32 PLL1_SW,
33 PLL2_PFD2_396M,
34 /* MX6UL requires two more clks */
35 PLL2_BUS,
36 SECONDARY_SEL,
37};
38#define IMX6Q_CPUFREQ_CLK_NUM 5
39#define IMX6UL_CPUFREQ_CLK_NUM 7
Shawn Guo1dd538f2013-02-04 05:46:29 +000040
Dong Aisheng2332bd02017-12-23 12:53:52 +080041static int num_clks;
42static struct clk_bulk_data clks[] = {
43 { .id = "arm" },
44 { .id = "pll1_sys" },
45 { .id = "step" },
46 { .id = "pll1_sw" },
47 { .id = "pll2_pfd2_396m" },
48 { .id = "pll2_bus" },
49 { .id = "secondary_sel" },
50};
Bai Pinga35fc5a2015-09-11 23:41:05 +080051
Shawn Guo1dd538f2013-02-04 05:46:29 +000052static struct device *cpu_dev;
Viresh Kumarcc87b8a2014-11-25 16:04:23 +053053static bool free_opp;
Shawn Guo1dd538f2013-02-04 05:46:29 +000054static struct cpufreq_frequency_table *freq_table;
Viresh Kumar8d768cd2018-02-26 10:38:44 +053055static unsigned int max_freq;
Shawn Guo1dd538f2013-02-04 05:46:29 +000056static unsigned int transition_latency;
57
Anson Huangb4573d1d2013-12-19 09:16:47 -050058static u32 *imx6_soc_volt;
59static u32 soc_opp_count;
60
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +053061static int imx6q_set_target(struct cpufreq_policy *policy, unsigned int index)
Shawn Guo1dd538f2013-02-04 05:46:29 +000062{
Nishanth Menon47d43ba2013-09-19 16:03:51 -050063 struct dev_pm_opp *opp;
Shawn Guo1dd538f2013-02-04 05:46:29 +000064 unsigned long freq_hz, volt, volt_old;
Viresh Kumard4019f02013-08-14 19:38:24 +053065 unsigned int old_freq, new_freq;
Leonard Crestezfded5fc2017-08-28 14:05:18 +030066 bool pll1_sys_temp_enabled = false;
Shawn Guo1dd538f2013-02-04 05:46:29 +000067 int ret;
68
Viresh Kumard4019f02013-08-14 19:38:24 +053069 new_freq = freq_table[index].frequency;
70 freq_hz = new_freq * 1000;
Dong Aisheng2332bd02017-12-23 12:53:52 +080071 old_freq = clk_get_rate(clks[ARM].clk) / 1000;
Shawn Guo1dd538f2013-02-04 05:46:29 +000072
Nishanth Menon5d4879c2013-09-19 16:03:50 -050073 opp = dev_pm_opp_find_freq_ceil(cpu_dev, &freq_hz);
Shawn Guo1dd538f2013-02-04 05:46:29 +000074 if (IS_ERR(opp)) {
Shawn Guo1dd538f2013-02-04 05:46:29 +000075 dev_err(cpu_dev, "failed to find OPP for %ld\n", freq_hz);
76 return PTR_ERR(opp);
77 }
78
Nishanth Menon5d4879c2013-09-19 16:03:50 -050079 volt = dev_pm_opp_get_voltage(opp);
Viresh Kumar8a31d9d92017-01-23 10:11:47 +053080 dev_pm_opp_put(opp);
81
Shawn Guo1dd538f2013-02-04 05:46:29 +000082 volt_old = regulator_get_voltage(arm_reg);
83
84 dev_dbg(cpu_dev, "%u MHz, %ld mV --> %u MHz, %ld mV\n",
Viresh Kumard4019f02013-08-14 19:38:24 +053085 old_freq / 1000, volt_old / 1000,
86 new_freq / 1000, volt / 1000);
Viresh Kumar5a571c32013-06-19 11:18:20 +053087
Shawn Guo1dd538f2013-02-04 05:46:29 +000088 /* scaling up? scale voltage before frequency */
Viresh Kumard4019f02013-08-14 19:38:24 +053089 if (new_freq > old_freq) {
Anson Huang22d06282014-06-20 15:42:18 +080090 if (!IS_ERR(pu_reg)) {
91 ret = regulator_set_voltage_tol(pu_reg, imx6_soc_volt[index], 0);
92 if (ret) {
93 dev_err(cpu_dev, "failed to scale vddpu up: %d\n", ret);
94 return ret;
95 }
Anson Huangb4573d1d2013-12-19 09:16:47 -050096 }
97 ret = regulator_set_voltage_tol(soc_reg, imx6_soc_volt[index], 0);
98 if (ret) {
99 dev_err(cpu_dev, "failed to scale vddsoc up: %d\n", ret);
100 return ret;
101 }
Shawn Guo1dd538f2013-02-04 05:46:29 +0000102 ret = regulator_set_voltage_tol(arm_reg, volt, 0);
103 if (ret) {
104 dev_err(cpu_dev,
105 "failed to scale vddarm up: %d\n", ret);
Viresh Kumard4019f02013-08-14 19:38:24 +0530106 return ret;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000107 }
Shawn Guo1dd538f2013-02-04 05:46:29 +0000108 }
109
110 /*
111 * The setpoints are selected per PLL/PDF frequencies, so we need to
112 * reprogram PLL for frequency scaling. The procedure of reprogramming
113 * PLL1 is as below.
Bai Pinga35fc5a2015-09-11 23:41:05 +0800114 * For i.MX6UL, it has a secondary clk mux, the cpu frequency change
115 * flow is slightly different from other i.MX6 OSC.
116 * The cpu frequeny change flow for i.MX6(except i.MX6UL) is as below:
Shawn Guo1dd538f2013-02-04 05:46:29 +0000117 * - Enable pll2_pfd2_396m_clk and reparent pll1_sw_clk to it
118 * - Reprogram pll1_sys_clk and reparent pll1_sw_clk back to it
119 * - Disable pll2_pfd2_396m_clk
120 */
Octavian Purdila3fafb4e2017-05-30 18:57:18 +0300121 if (of_machine_is_compatible("fsl,imx6ul") ||
122 of_machine_is_compatible("fsl,imx6ull")) {
Bai Pinga35fc5a2015-09-11 23:41:05 +0800123 /*
124 * When changing pll1_sw_clk's parent to pll1_sys_clk,
125 * CPU may run at higher than 528MHz, this will lead to
126 * the system unstable if the voltage is lower than the
127 * voltage of 528MHz, so lower the CPU frequency to one
128 * half before changing CPU frequency.
129 */
Dong Aisheng2332bd02017-12-23 12:53:52 +0800130 clk_set_rate(clks[ARM].clk, (old_freq >> 1) * 1000);
131 clk_set_parent(clks[PLL1_SW].clk, clks[PLL1_SYS].clk);
132 if (freq_hz > clk_get_rate(clks[PLL2_PFD2_396M].clk))
133 clk_set_parent(clks[SECONDARY_SEL].clk,
134 clks[PLL2_BUS].clk);
Bai Pinga35fc5a2015-09-11 23:41:05 +0800135 else
Dong Aisheng2332bd02017-12-23 12:53:52 +0800136 clk_set_parent(clks[SECONDARY_SEL].clk,
137 clks[PLL2_PFD2_396M].clk);
138 clk_set_parent(clks[STEP].clk, clks[SECONDARY_SEL].clk);
139 clk_set_parent(clks[PLL1_SW].clk, clks[STEP].clk);
Anson Huang5028f5d2018-01-08 10:04:51 +0800140 if (freq_hz > clk_get_rate(clks[PLL2_BUS].clk)) {
141 clk_set_rate(clks[PLL1_SYS].clk, new_freq * 1000);
142 clk_set_parent(clks[PLL1_SW].clk, clks[PLL1_SYS].clk);
143 }
Bai Pinga35fc5a2015-09-11 23:41:05 +0800144 } else {
Dong Aisheng2332bd02017-12-23 12:53:52 +0800145 clk_set_parent(clks[STEP].clk, clks[PLL2_PFD2_396M].clk);
146 clk_set_parent(clks[PLL1_SW].clk, clks[STEP].clk);
147 if (freq_hz > clk_get_rate(clks[PLL2_PFD2_396M].clk)) {
148 clk_set_rate(clks[PLL1_SYS].clk, new_freq * 1000);
149 clk_set_parent(clks[PLL1_SW].clk, clks[PLL1_SYS].clk);
Leonard Crestezfded5fc2017-08-28 14:05:18 +0300150 } else {
151 /* pll1_sys needs to be enabled for divider rate change to work. */
152 pll1_sys_temp_enabled = true;
Dong Aisheng2332bd02017-12-23 12:53:52 +0800153 clk_prepare_enable(clks[PLL1_SYS].clk);
Bai Pinga35fc5a2015-09-11 23:41:05 +0800154 }
Shawn Guo1dd538f2013-02-04 05:46:29 +0000155 }
156
157 /* Ensure the arm clock divider is what we expect */
Dong Aisheng2332bd02017-12-23 12:53:52 +0800158 ret = clk_set_rate(clks[ARM].clk, new_freq * 1000);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000159 if (ret) {
160 dev_err(cpu_dev, "failed to set clock rate: %d\n", ret);
161 regulator_set_voltage_tol(arm_reg, volt_old, 0);
Viresh Kumard4019f02013-08-14 19:38:24 +0530162 return ret;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000163 }
164
Leonard Crestezfded5fc2017-08-28 14:05:18 +0300165 /* PLL1 is only needed until after ARM-PODF is set. */
166 if (pll1_sys_temp_enabled)
Dong Aisheng2332bd02017-12-23 12:53:52 +0800167 clk_disable_unprepare(clks[PLL1_SYS].clk);
Leonard Crestezfded5fc2017-08-28 14:05:18 +0300168
Shawn Guo1dd538f2013-02-04 05:46:29 +0000169 /* scaling down? scale voltage after frequency */
Viresh Kumard4019f02013-08-14 19:38:24 +0530170 if (new_freq < old_freq) {
Shawn Guo1dd538f2013-02-04 05:46:29 +0000171 ret = regulator_set_voltage_tol(arm_reg, volt, 0);
Viresh Kumar5a571c32013-06-19 11:18:20 +0530172 if (ret) {
Shawn Guo1dd538f2013-02-04 05:46:29 +0000173 dev_warn(cpu_dev,
174 "failed to scale vddarm down: %d\n", ret);
Viresh Kumar5a571c32013-06-19 11:18:20 +0530175 ret = 0;
176 }
Anson Huangb4573d1d2013-12-19 09:16:47 -0500177 ret = regulator_set_voltage_tol(soc_reg, imx6_soc_volt[index], 0);
178 if (ret) {
179 dev_warn(cpu_dev, "failed to scale vddsoc down: %d\n", ret);
180 ret = 0;
181 }
Anson Huang22d06282014-06-20 15:42:18 +0800182 if (!IS_ERR(pu_reg)) {
183 ret = regulator_set_voltage_tol(pu_reg, imx6_soc_volt[index], 0);
184 if (ret) {
185 dev_warn(cpu_dev, "failed to scale vddpu down: %d\n", ret);
186 ret = 0;
187 }
Shawn Guo1dd538f2013-02-04 05:46:29 +0000188 }
189 }
190
Viresh Kumard4019f02013-08-14 19:38:24 +0530191 return 0;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000192}
193
194static int imx6q_cpufreq_init(struct cpufreq_policy *policy)
195{
Leonard Crestez5aa15992017-04-04 20:04:12 +0300196 int ret;
197
Dong Aisheng2332bd02017-12-23 12:53:52 +0800198 policy->clk = clks[ARM].clk;
Leonard Crestez5aa15992017-04-04 20:04:12 +0300199 ret = cpufreq_generic_init(policy, freq_table, transition_latency);
Viresh Kumar8d768cd2018-02-26 10:38:44 +0530200 policy->suspend_freq = max_freq;
Leonard Crestez5aa15992017-04-04 20:04:12 +0300201
202 return ret;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000203}
204
Shawn Guo1dd538f2013-02-04 05:46:29 +0000205static struct cpufreq_driver imx6q_cpufreq_driver = {
Viresh Kumarae6b4272013-12-03 11:20:45 +0530206 .flags = CPUFREQ_NEED_INITIAL_FREQ_CHECK,
Viresh Kumar4f6ba382013-10-03 20:28:08 +0530207 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530208 .target_index = imx6q_set_target,
Viresh Kumar652ed952014-01-09 20:38:43 +0530209 .get = cpufreq_generic_get,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000210 .init = imx6q_cpufreq_init,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000211 .name = "imx6q-cpufreq",
Viresh Kumar4f6ba382013-10-03 20:28:08 +0530212 .attr = cpufreq_generic_attr,
Leonard Crestez5aa15992017-04-04 20:04:12 +0300213 .suspend = cpufreq_generic_suspend,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000214};
215
Fabio Estevam2b3d58a2017-09-30 12:16:46 -0300216#define OCOTP_CFG3 0x440
217#define OCOTP_CFG3_SPEED_SHIFT 16
218#define OCOTP_CFG3_SPEED_1P2GHZ 0x3
219#define OCOTP_CFG3_SPEED_996MHZ 0x2
220#define OCOTP_CFG3_SPEED_852MHZ 0x1
221
222static void imx6q_opp_check_speed_grading(struct device *dev)
223{
224 struct device_node *np;
225 void __iomem *base;
226 u32 val;
227
228 np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-ocotp");
229 if (!np)
230 return;
231
232 base = of_iomap(np, 0);
233 if (!base) {
234 dev_err(dev, "failed to map ocotp\n");
235 goto put_node;
236 }
237
238 /*
239 * SPEED_GRADING[1:0] defines the max speed of ARM:
240 * 2b'11: 1200000000Hz;
241 * 2b'10: 996000000Hz;
242 * 2b'01: 852000000Hz; -- i.MX6Q Only, exclusive with 996MHz.
243 * 2b'00: 792000000Hz;
244 * We need to set the max speed of ARM according to fuse map.
245 */
246 val = readl_relaxed(base + OCOTP_CFG3);
247 val >>= OCOTP_CFG3_SPEED_SHIFT;
248 val &= 0x3;
249
Fabio Estevam2b3d58a2017-09-30 12:16:46 -0300250 if (val < OCOTP_CFG3_SPEED_996MHZ)
251 if (dev_pm_opp_disable(dev, 996000000))
252 dev_warn(dev, "failed to disable 996MHz OPP\n");
Lucas Stachccc153a2017-12-11 14:19:00 +0100253
254 if (of_machine_is_compatible("fsl,imx6q") ||
255 of_machine_is_compatible("fsl,imx6qp")) {
Fabio Estevam2b3d58a2017-09-30 12:16:46 -0300256 if (val != OCOTP_CFG3_SPEED_852MHZ)
257 if (dev_pm_opp_disable(dev, 852000000))
258 dev_warn(dev, "failed to disable 852MHz OPP\n");
Lucas Stachccc153a2017-12-11 14:19:00 +0100259 if (val != OCOTP_CFG3_SPEED_1P2GHZ)
260 if (dev_pm_opp_disable(dev, 1200000000))
261 dev_warn(dev, "failed to disable 1.2GHz OPP\n");
Fabio Estevam2b3d58a2017-09-30 12:16:46 -0300262 }
263 iounmap(base);
264put_node:
265 of_node_put(np);
266}
267
Anson Huang5028f5d2018-01-08 10:04:51 +0800268#define OCOTP_CFG3_6UL_SPEED_696MHZ 0x2
Sébastien Szymanski0aa9abd2018-05-22 08:28:51 +0200269#define OCOTP_CFG3_6ULL_SPEED_792MHZ 0x2
270#define OCOTP_CFG3_6ULL_SPEED_900MHZ 0x3
Anson Huang5028f5d2018-01-08 10:04:51 +0800271
272static void imx6ul_opp_check_speed_grading(struct device *dev)
273{
274 struct device_node *np;
275 void __iomem *base;
276 u32 val;
277
278 np = of_find_compatible_node(NULL, NULL, "fsl,imx6ul-ocotp");
279 if (!np)
280 return;
281
282 base = of_iomap(np, 0);
283 if (!base) {
284 dev_err(dev, "failed to map ocotp\n");
285 goto put_node;
286 }
287
288 /*
289 * Speed GRADING[1:0] defines the max speed of ARM:
290 * 2b'00: Reserved;
291 * 2b'01: 528000000Hz;
Sébastien Szymanski0aa9abd2018-05-22 08:28:51 +0200292 * 2b'10: 696000000Hz on i.MX6UL, 792000000Hz on i.MX6ULL;
293 * 2b'11: 900000000Hz on i.MX6ULL only;
Anson Huang5028f5d2018-01-08 10:04:51 +0800294 * We need to set the max speed of ARM according to fuse map.
295 */
296 val = readl_relaxed(base + OCOTP_CFG3);
297 val >>= OCOTP_CFG3_SPEED_SHIFT;
298 val &= 0x3;
Sébastien Szymanski0aa9abd2018-05-22 08:28:51 +0200299
300 if (of_machine_is_compatible("fsl,imx6ul")) {
301 if (val != OCOTP_CFG3_6UL_SPEED_696MHZ)
302 if (dev_pm_opp_disable(dev, 696000000))
303 dev_warn(dev, "failed to disable 696MHz OPP\n");
304 }
305
306 if (of_machine_is_compatible("fsl,imx6ull")) {
307 if (val != OCOTP_CFG3_6ULL_SPEED_792MHZ)
308 if (dev_pm_opp_disable(dev, 792000000))
309 dev_warn(dev, "failed to disable 792MHz OPP\n");
310
311 if (val != OCOTP_CFG3_6ULL_SPEED_900MHZ)
312 if (dev_pm_opp_disable(dev, 900000000))
313 dev_warn(dev, "failed to disable 900MHz OPP\n");
314 }
315
Anson Huang5028f5d2018-01-08 10:04:51 +0800316 iounmap(base);
317put_node:
318 of_node_put(np);
319}
320
Shawn Guo1dd538f2013-02-04 05:46:29 +0000321static int imx6q_cpufreq_probe(struct platform_device *pdev)
322{
323 struct device_node *np;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500324 struct dev_pm_opp *opp;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000325 unsigned long min_volt, max_volt;
326 int num, ret;
Anson Huangb4573d1d2013-12-19 09:16:47 -0500327 const struct property *prop;
328 const __be32 *val;
329 u32 nr, i, j;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000330
Sudeep KarkadaNageshab494b482013-09-10 18:59:47 +0100331 cpu_dev = get_cpu_device(0);
332 if (!cpu_dev) {
333 pr_err("failed to get cpu0 device\n");
334 return -ENODEV;
335 }
Shawn Guo1dd538f2013-02-04 05:46:29 +0000336
Sudeep KarkadaNageshacdc58d62013-06-17 14:58:48 +0100337 np = of_node_get(cpu_dev->of_node);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000338 if (!np) {
339 dev_err(cpu_dev, "failed to find cpu0 node\n");
340 return -ENOENT;
341 }
342
Octavian Purdila3fafb4e2017-05-30 18:57:18 +0300343 if (of_machine_is_compatible("fsl,imx6ul") ||
Dong Aisheng2332bd02017-12-23 12:53:52 +0800344 of_machine_is_compatible("fsl,imx6ull"))
345 num_clks = IMX6UL_CPUFREQ_CLK_NUM;
346 else
347 num_clks = IMX6Q_CPUFREQ_CLK_NUM;
348
349 ret = clk_bulk_get(cpu_dev, num_clks, clks);
350 if (ret)
351 goto put_node;
Bai Pinga35fc5a2015-09-11 23:41:05 +0800352
Philipp Zabelf8269c12014-05-14 18:02:23 +0200353 arm_reg = regulator_get(cpu_dev, "arm");
Anson Huang22d06282014-06-20 15:42:18 +0800354 pu_reg = regulator_get_optional(cpu_dev, "pu");
Philipp Zabelf8269c12014-05-14 18:02:23 +0200355 soc_reg = regulator_get(cpu_dev, "soc");
Irina Tirdea54cad2f2017-04-04 20:04:11 +0300356 if (PTR_ERR(arm_reg) == -EPROBE_DEFER ||
357 PTR_ERR(soc_reg) == -EPROBE_DEFER ||
358 PTR_ERR(pu_reg) == -EPROBE_DEFER) {
359 ret = -EPROBE_DEFER;
360 dev_dbg(cpu_dev, "regulators not ready, defer\n");
361 goto put_reg;
362 }
Anson Huang22d06282014-06-20 15:42:18 +0800363 if (IS_ERR(arm_reg) || IS_ERR(soc_reg)) {
Shawn Guo1dd538f2013-02-04 05:46:29 +0000364 dev_err(cpu_dev, "failed to get regulators\n");
365 ret = -ENOENT;
Philipp Zabelf8269c12014-05-14 18:02:23 +0200366 goto put_reg;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000367 }
368
Fabio Estevam2b3d58a2017-09-30 12:16:46 -0300369 ret = dev_pm_opp_of_add_table(cpu_dev);
370 if (ret < 0) {
371 dev_err(cpu_dev, "failed to init OPP table: %d\n", ret);
372 goto put_reg;
373 }
374
Sébastien Szymanski0aa9abd2018-05-22 08:28:51 +0200375 if (of_machine_is_compatible("fsl,imx6ul") ||
376 of_machine_is_compatible("fsl,imx6ull"))
Anson Huang5028f5d2018-01-08 10:04:51 +0800377 imx6ul_opp_check_speed_grading(cpu_dev);
378 else
379 imx6q_opp_check_speed_grading(cpu_dev);
Fabio Estevam2b3d58a2017-09-30 12:16:46 -0300380
381 /* Because we have added the OPPs here, we must free them */
382 free_opp = true;
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500383 num = dev_pm_opp_get_opp_count(cpu_dev);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000384 if (num < 0) {
Fabio Estevam2b3d58a2017-09-30 12:16:46 -0300385 ret = num;
386 dev_err(cpu_dev, "no OPP table is found: %d\n", ret);
387 goto out_free_opp;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000388 }
389
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500390 ret = dev_pm_opp_init_cpufreq_table(cpu_dev, &freq_table);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000391 if (ret) {
392 dev_err(cpu_dev, "failed to init cpufreq table: %d\n", ret);
Christophe Jailleteafca852017-04-09 09:33:52 +0200393 goto out_free_opp;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000394 }
395
Anson Huangb4573d1d2013-12-19 09:16:47 -0500396 /* Make imx6_soc_volt array's size same as arm opp number */
Kees Cooka86854d2018-06-12 14:07:58 -0700397 imx6_soc_volt = devm_kcalloc(cpu_dev, num, sizeof(*imx6_soc_volt),
398 GFP_KERNEL);
Anson Huangb4573d1d2013-12-19 09:16:47 -0500399 if (imx6_soc_volt == NULL) {
400 ret = -ENOMEM;
401 goto free_freq_table;
402 }
403
404 prop = of_find_property(np, "fsl,soc-operating-points", NULL);
405 if (!prop || !prop->value)
406 goto soc_opp_out;
407
408 /*
409 * Each OPP is a set of tuples consisting of frequency and
410 * voltage like <freq-kHz vol-uV>.
411 */
412 nr = prop->length / sizeof(u32);
413 if (nr % 2 || (nr / 2) < num)
414 goto soc_opp_out;
415
416 for (j = 0; j < num; j++) {
417 val = prop->value;
418 for (i = 0; i < nr / 2; i++) {
419 unsigned long freq = be32_to_cpup(val++);
420 unsigned long volt = be32_to_cpup(val++);
421 if (freq_table[j].frequency == freq) {
422 imx6_soc_volt[soc_opp_count++] = volt;
423 break;
424 }
425 }
426 }
427
428soc_opp_out:
429 /* use fixed soc opp volt if no valid soc opp info found in dtb */
430 if (soc_opp_count != num) {
431 dev_warn(cpu_dev, "can NOT find valid fsl,soc-operating-points property in dtb, use default value!\n");
432 for (j = 0; j < num; j++)
433 imx6_soc_volt[j] = PU_SOC_VOLTAGE_NORMAL;
434 if (freq_table[num - 1].frequency * 1000 == FREQ_1P2_GHZ)
435 imx6_soc_volt[num - 1] = PU_SOC_VOLTAGE_HIGH;
436 }
437
Shawn Guo1dd538f2013-02-04 05:46:29 +0000438 if (of_property_read_u32(np, "clock-latency", &transition_latency))
439 transition_latency = CPUFREQ_ETERNAL;
440
441 /*
Anson Huangb4573d1d2013-12-19 09:16:47 -0500442 * Calculate the ramp time for max voltage change in the
443 * VDDSOC and VDDPU regulators.
444 */
445 ret = regulator_set_voltage_time(soc_reg, imx6_soc_volt[0], imx6_soc_volt[num - 1]);
446 if (ret > 0)
447 transition_latency += ret * 1000;
Anson Huang22d06282014-06-20 15:42:18 +0800448 if (!IS_ERR(pu_reg)) {
449 ret = regulator_set_voltage_time(pu_reg, imx6_soc_volt[0], imx6_soc_volt[num - 1]);
450 if (ret > 0)
451 transition_latency += ret * 1000;
452 }
Anson Huangb4573d1d2013-12-19 09:16:47 -0500453
454 /*
Shawn Guo1dd538f2013-02-04 05:46:29 +0000455 * OPP is maintained in order of increasing frequency, and
456 * freq_table initialised from OPP is therefore sorted in the
457 * same order.
458 */
Viresh Kumar8d768cd2018-02-26 10:38:44 +0530459 max_freq = freq_table[--num].frequency;
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500460 opp = dev_pm_opp_find_freq_exact(cpu_dev,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000461 freq_table[0].frequency * 1000, true);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500462 min_volt = dev_pm_opp_get_voltage(opp);
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530463 dev_pm_opp_put(opp);
Viresh Kumar8d768cd2018-02-26 10:38:44 +0530464 opp = dev_pm_opp_find_freq_exact(cpu_dev, max_freq * 1000, true);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500465 max_volt = dev_pm_opp_get_voltage(opp);
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530466 dev_pm_opp_put(opp);
467
Shawn Guo1dd538f2013-02-04 05:46:29 +0000468 ret = regulator_set_voltage_time(arm_reg, min_volt, max_volt);
469 if (ret > 0)
470 transition_latency += ret * 1000;
471
Shawn Guo1dd538f2013-02-04 05:46:29 +0000472 ret = cpufreq_register_driver(&imx6q_cpufreq_driver);
473 if (ret) {
474 dev_err(cpu_dev, "failed register driver: %d\n", ret);
475 goto free_freq_table;
476 }
477
478 of_node_put(np);
479 return 0;
480
481free_freq_table:
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500482 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
Viresh Kumarcc87b8a2014-11-25 16:04:23 +0530483out_free_opp:
484 if (free_opp)
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530485 dev_pm_opp_of_remove_table(cpu_dev);
Philipp Zabelf8269c12014-05-14 18:02:23 +0200486put_reg:
487 if (!IS_ERR(arm_reg))
488 regulator_put(arm_reg);
489 if (!IS_ERR(pu_reg))
490 regulator_put(pu_reg);
491 if (!IS_ERR(soc_reg))
492 regulator_put(soc_reg);
Dong Aisheng2332bd02017-12-23 12:53:52 +0800493
494 clk_bulk_put(num_clks, clks);
495put_node:
Shawn Guo1dd538f2013-02-04 05:46:29 +0000496 of_node_put(np);
Dong Aisheng2332bd02017-12-23 12:53:52 +0800497
Shawn Guo1dd538f2013-02-04 05:46:29 +0000498 return ret;
499}
500
501static int imx6q_cpufreq_remove(struct platform_device *pdev)
502{
503 cpufreq_unregister_driver(&imx6q_cpufreq_driver);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500504 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
Viresh Kumarcc87b8a2014-11-25 16:04:23 +0530505 if (free_opp)
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530506 dev_pm_opp_of_remove_table(cpu_dev);
Philipp Zabelf8269c12014-05-14 18:02:23 +0200507 regulator_put(arm_reg);
Anson Huang22d06282014-06-20 15:42:18 +0800508 if (!IS_ERR(pu_reg))
509 regulator_put(pu_reg);
Philipp Zabelf8269c12014-05-14 18:02:23 +0200510 regulator_put(soc_reg);
Dong Aisheng2332bd02017-12-23 12:53:52 +0800511
512 clk_bulk_put(num_clks, clks);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000513
514 return 0;
515}
516
517static struct platform_driver imx6q_cpufreq_platdrv = {
518 .driver = {
519 .name = "imx6q-cpufreq",
Shawn Guo1dd538f2013-02-04 05:46:29 +0000520 },
521 .probe = imx6q_cpufreq_probe,
522 .remove = imx6q_cpufreq_remove,
523};
524module_platform_driver(imx6q_cpufreq_platdrv);
525
Nicolas Chauvetd0404732018-01-30 10:55:26 +0100526MODULE_ALIAS("platform:imx6q-cpufreq");
Shawn Guo1dd538f2013-02-04 05:46:29 +0000527MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>");
528MODULE_DESCRIPTION("Freescale i.MX6Q cpufreq driver");
529MODULE_LICENSE("GPL");