cpufreq: ap806: fix possible object reference leak
[linux-2.6-block.git] / drivers / cpufreq / imx6q-cpufreq.c
CommitLineData
1dd538f0
SG
1/*
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>
b494b48d 10#include <linux/cpu.h>
1dd538f0 11#include <linux/cpufreq.h>
1dd538f0
SG
12#include <linux/err.h>
13#include <linux/module.h>
2733fb0d 14#include <linux/nvmem-consumer.h>
1dd538f0 15#include <linux/of.h>
2b3d58a3 16#include <linux/of_address.h>
e4db1c74 17#include <linux/pm_opp.h>
1dd538f0
SG
18#include <linux/platform_device.h>
19#include <linux/regulator/consumer.h>
20
21#define PU_SOC_VOLTAGE_NORMAL 1250000
22#define PU_SOC_VOLTAGE_HIGH 1275000
23#define FREQ_1P2_GHZ 1200000000
24
25static struct regulator *arm_reg;
26static struct regulator *pu_reg;
27static struct regulator *soc_reg;
28
2332bd04
DA
29enum IMX6_CPUFREQ_CLKS {
30 ARM,
31 PLL1_SYS,
32 STEP,
33 PLL1_SW,
34 PLL2_PFD2_396M,
35 /* MX6UL requires two more clks */
36 PLL2_BUS,
37 SECONDARY_SEL,
38};
39#define IMX6Q_CPUFREQ_CLK_NUM 5
40#define IMX6UL_CPUFREQ_CLK_NUM 7
41
42static int num_clks;
43static struct clk_bulk_data clks[] = {
44 { .id = "arm" },
45 { .id = "pll1_sys" },
46 { .id = "step" },
47 { .id = "pll1_sw" },
48 { .id = "pll2_pfd2_396m" },
49 { .id = "pll2_bus" },
50 { .id = "secondary_sel" },
51};
a35fc5a3 52
1dd538f0 53static struct device *cpu_dev;
cc87b8a8 54static bool free_opp;
1dd538f0 55static struct cpufreq_frequency_table *freq_table;
8d768cdc 56static unsigned int max_freq;
1dd538f0
SG
57static unsigned int transition_latency;
58
b4573d1d
AH
59static u32 *imx6_soc_volt;
60static u32 soc_opp_count;
61
9c0ebcf7 62static int imx6q_set_target(struct cpufreq_policy *policy, unsigned int index)
1dd538f0 63{
47d43ba7 64 struct dev_pm_opp *opp;
1dd538f0 65 unsigned long freq_hz, volt, volt_old;
d4019f0a 66 unsigned int old_freq, new_freq;
fded5fc8 67 bool pll1_sys_temp_enabled = false;
1dd538f0
SG
68 int ret;
69
d4019f0a
VK
70 new_freq = freq_table[index].frequency;
71 freq_hz = new_freq * 1000;
2332bd04 72 old_freq = clk_get_rate(clks[ARM].clk) / 1000;
1dd538f0 73
5d4879cd 74 opp = dev_pm_opp_find_freq_ceil(cpu_dev, &freq_hz);
1dd538f0 75 if (IS_ERR(opp)) {
1dd538f0
SG
76 dev_err(cpu_dev, "failed to find OPP for %ld\n", freq_hz);
77 return PTR_ERR(opp);
78 }
79
5d4879cd 80 volt = dev_pm_opp_get_voltage(opp);
8a31d9d9
VK
81 dev_pm_opp_put(opp);
82
1dd538f0
SG
83 volt_old = regulator_get_voltage(arm_reg);
84
85 dev_dbg(cpu_dev, "%u MHz, %ld mV --> %u MHz, %ld mV\n",
d4019f0a
VK
86 old_freq / 1000, volt_old / 1000,
87 new_freq / 1000, volt / 1000);
5a571c35 88
1dd538f0 89 /* scaling up? scale voltage before frequency */
d4019f0a 90 if (new_freq > old_freq) {
22d0628a
AH
91 if (!IS_ERR(pu_reg)) {
92 ret = regulator_set_voltage_tol(pu_reg, imx6_soc_volt[index], 0);
93 if (ret) {
94 dev_err(cpu_dev, "failed to scale vddpu up: %d\n", ret);
95 return ret;
96 }
b4573d1d
AH
97 }
98 ret = regulator_set_voltage_tol(soc_reg, imx6_soc_volt[index], 0);
99 if (ret) {
100 dev_err(cpu_dev, "failed to scale vddsoc up: %d\n", ret);
101 return ret;
102 }
1dd538f0
SG
103 ret = regulator_set_voltage_tol(arm_reg, volt, 0);
104 if (ret) {
105 dev_err(cpu_dev,
106 "failed to scale vddarm up: %d\n", ret);
d4019f0a 107 return ret;
1dd538f0 108 }
1dd538f0
SG
109 }
110
111 /*
112 * The setpoints are selected per PLL/PDF frequencies, so we need to
113 * reprogram PLL for frequency scaling. The procedure of reprogramming
114 * PLL1 is as below.
a35fc5a3
BP
115 * For i.MX6UL, it has a secondary clk mux, the cpu frequency change
116 * flow is slightly different from other i.MX6 OSC.
117 * The cpu frequeny change flow for i.MX6(except i.MX6UL) is as below:
1dd538f0
SG
118 * - Enable pll2_pfd2_396m_clk and reparent pll1_sw_clk to it
119 * - Reprogram pll1_sys_clk and reparent pll1_sw_clk back to it
120 * - Disable pll2_pfd2_396m_clk
121 */
3fafb4e7
OP
122 if (of_machine_is_compatible("fsl,imx6ul") ||
123 of_machine_is_compatible("fsl,imx6ull")) {
a35fc5a3
BP
124 /*
125 * When changing pll1_sw_clk's parent to pll1_sys_clk,
126 * CPU may run at higher than 528MHz, this will lead to
127 * the system unstable if the voltage is lower than the
128 * voltage of 528MHz, so lower the CPU frequency to one
129 * half before changing CPU frequency.
130 */
2332bd04
DA
131 clk_set_rate(clks[ARM].clk, (old_freq >> 1) * 1000);
132 clk_set_parent(clks[PLL1_SW].clk, clks[PLL1_SYS].clk);
133 if (freq_hz > clk_get_rate(clks[PLL2_PFD2_396M].clk))
134 clk_set_parent(clks[SECONDARY_SEL].clk,
135 clks[PLL2_BUS].clk);
a35fc5a3 136 else
2332bd04
DA
137 clk_set_parent(clks[SECONDARY_SEL].clk,
138 clks[PLL2_PFD2_396M].clk);
139 clk_set_parent(clks[STEP].clk, clks[SECONDARY_SEL].clk);
140 clk_set_parent(clks[PLL1_SW].clk, clks[STEP].clk);
5028f5d2
AH
141 if (freq_hz > clk_get_rate(clks[PLL2_BUS].clk)) {
142 clk_set_rate(clks[PLL1_SYS].clk, new_freq * 1000);
143 clk_set_parent(clks[PLL1_SW].clk, clks[PLL1_SYS].clk);
144 }
a35fc5a3 145 } else {
2332bd04
DA
146 clk_set_parent(clks[STEP].clk, clks[PLL2_PFD2_396M].clk);
147 clk_set_parent(clks[PLL1_SW].clk, clks[STEP].clk);
148 if (freq_hz > clk_get_rate(clks[PLL2_PFD2_396M].clk)) {
149 clk_set_rate(clks[PLL1_SYS].clk, new_freq * 1000);
150 clk_set_parent(clks[PLL1_SW].clk, clks[PLL1_SYS].clk);
fded5fc8
LC
151 } else {
152 /* pll1_sys needs to be enabled for divider rate change to work. */
153 pll1_sys_temp_enabled = true;
2332bd04 154 clk_prepare_enable(clks[PLL1_SYS].clk);
a35fc5a3 155 }
1dd538f0
SG
156 }
157
158 /* Ensure the arm clock divider is what we expect */
2332bd04 159 ret = clk_set_rate(clks[ARM].clk, new_freq * 1000);
1dd538f0 160 if (ret) {
6ef28a04
AH
161 int ret1;
162
1dd538f0 163 dev_err(cpu_dev, "failed to set clock rate: %d\n", ret);
6ef28a04
AH
164 ret1 = regulator_set_voltage_tol(arm_reg, volt_old, 0);
165 if (ret1)
166 dev_warn(cpu_dev,
167 "failed to restore vddarm voltage: %d\n", ret1);
d4019f0a 168 return ret;
1dd538f0
SG
169 }
170
fded5fc8
LC
171 /* PLL1 is only needed until after ARM-PODF is set. */
172 if (pll1_sys_temp_enabled)
2332bd04 173 clk_disable_unprepare(clks[PLL1_SYS].clk);
fded5fc8 174
1dd538f0 175 /* scaling down? scale voltage after frequency */
d4019f0a 176 if (new_freq < old_freq) {
1dd538f0 177 ret = regulator_set_voltage_tol(arm_reg, volt, 0);
58ad4e61 178 if (ret)
1dd538f0
SG
179 dev_warn(cpu_dev,
180 "failed to scale vddarm down: %d\n", ret);
b4573d1d 181 ret = regulator_set_voltage_tol(soc_reg, imx6_soc_volt[index], 0);
58ad4e61 182 if (ret)
b4573d1d 183 dev_warn(cpu_dev, "failed to scale vddsoc down: %d\n", ret);
22d0628a
AH
184 if (!IS_ERR(pu_reg)) {
185 ret = regulator_set_voltage_tol(pu_reg, imx6_soc_volt[index], 0);
58ad4e61 186 if (ret)
22d0628a 187 dev_warn(cpu_dev, "failed to scale vddpu down: %d\n", ret);
1dd538f0
SG
188 }
189 }
190
d4019f0a 191 return 0;
1dd538f0
SG
192}
193
194static int imx6q_cpufreq_init(struct cpufreq_policy *policy)
195{
5aa1599f
LC
196 int ret;
197
2332bd04 198 policy->clk = clks[ARM].clk;
5aa1599f 199 ret = cpufreq_generic_init(policy, freq_table, transition_latency);
8d768cdc 200 policy->suspend_freq = max_freq;
3ad63a6b 201 dev_pm_opp_of_register_em(policy->cpus);
5aa1599f
LC
202
203 return ret;
1dd538f0
SG
204}
205
1dd538f0 206static struct cpufreq_driver imx6q_cpufreq_driver = {
4b498869
AK
207 .flags = CPUFREQ_NEED_INITIAL_FREQ_CHECK |
208 CPUFREQ_IS_COOLING_DEV,
4f6ba385 209 .verify = cpufreq_generic_frequency_table_verify,
9c0ebcf7 210 .target_index = imx6q_set_target,
652ed95d 211 .get = cpufreq_generic_get,
1dd538f0 212 .init = imx6q_cpufreq_init,
1dd538f0 213 .name = "imx6q-cpufreq",
4f6ba385 214 .attr = cpufreq_generic_attr,
5aa1599f 215 .suspend = cpufreq_generic_suspend,
1dd538f0
SG
216};
217
2b3d58a3
FE
218#define OCOTP_CFG3 0x440
219#define OCOTP_CFG3_SPEED_SHIFT 16
220#define OCOTP_CFG3_SPEED_1P2GHZ 0x3
221#define OCOTP_CFG3_SPEED_996MHZ 0x2
222#define OCOTP_CFG3_SPEED_852MHZ 0x1
223
224static void imx6q_opp_check_speed_grading(struct device *dev)
225{
226 struct device_node *np;
227 void __iomem *base;
228 u32 val;
229
230 np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-ocotp");
231 if (!np)
232 return;
233
234 base = of_iomap(np, 0);
235 if (!base) {
236 dev_err(dev, "failed to map ocotp\n");
237 goto put_node;
238 }
239
240 /*
241 * SPEED_GRADING[1:0] defines the max speed of ARM:
242 * 2b'11: 1200000000Hz;
243 * 2b'10: 996000000Hz;
244 * 2b'01: 852000000Hz; -- i.MX6Q Only, exclusive with 996MHz.
245 * 2b'00: 792000000Hz;
246 * We need to set the max speed of ARM according to fuse map.
247 */
248 val = readl_relaxed(base + OCOTP_CFG3);
249 val >>= OCOTP_CFG3_SPEED_SHIFT;
250 val &= 0x3;
251
2b3d58a3
FE
252 if (val < OCOTP_CFG3_SPEED_996MHZ)
253 if (dev_pm_opp_disable(dev, 996000000))
254 dev_warn(dev, "failed to disable 996MHz OPP\n");
ccc153a6
LS
255
256 if (of_machine_is_compatible("fsl,imx6q") ||
257 of_machine_is_compatible("fsl,imx6qp")) {
2b3d58a3
FE
258 if (val != OCOTP_CFG3_SPEED_852MHZ)
259 if (dev_pm_opp_disable(dev, 852000000))
260 dev_warn(dev, "failed to disable 852MHz OPP\n");
ccc153a6
LS
261 if (val != OCOTP_CFG3_SPEED_1P2GHZ)
262 if (dev_pm_opp_disable(dev, 1200000000))
263 dev_warn(dev, "failed to disable 1.2GHz OPP\n");
2b3d58a3
FE
264 }
265 iounmap(base);
266put_node:
267 of_node_put(np);
268}
269
5028f5d2 270#define OCOTP_CFG3_6UL_SPEED_696MHZ 0x2
0aa9abd4
SS
271#define OCOTP_CFG3_6ULL_SPEED_792MHZ 0x2
272#define OCOTP_CFG3_6ULL_SPEED_900MHZ 0x3
5028f5d2 273
2733fb0d 274static int imx6ul_opp_check_speed_grading(struct device *dev)
5028f5d2 275{
5028f5d2 276 u32 val;
2733fb0d 277 int ret = 0;
5028f5d2 278
2733fb0d
AH
279 if (of_find_property(dev->of_node, "nvmem-cells", NULL)) {
280 ret = nvmem_cell_read_u32(dev, "speed_grade", &val);
281 if (ret)
282 return ret;
283 } else {
284 struct device_node *np;
285 void __iomem *base;
286
287 np = of_find_compatible_node(NULL, NULL, "fsl,imx6ul-ocotp");
288 if (!np)
289 return -ENOENT;
290
291 base = of_iomap(np, 0);
292 of_node_put(np);
293 if (!base) {
294 dev_err(dev, "failed to map ocotp\n");
295 return -EFAULT;
296 }
5028f5d2 297
2733fb0d
AH
298 val = readl_relaxed(base + OCOTP_CFG3);
299 iounmap(base);
5028f5d2
AH
300 }
301
302 /*
303 * Speed GRADING[1:0] defines the max speed of ARM:
304 * 2b'00: Reserved;
305 * 2b'01: 528000000Hz;
0aa9abd4
SS
306 * 2b'10: 696000000Hz on i.MX6UL, 792000000Hz on i.MX6ULL;
307 * 2b'11: 900000000Hz on i.MX6ULL only;
5028f5d2
AH
308 * We need to set the max speed of ARM according to fuse map.
309 */
5028f5d2
AH
310 val >>= OCOTP_CFG3_SPEED_SHIFT;
311 val &= 0x3;
0aa9abd4
SS
312
313 if (of_machine_is_compatible("fsl,imx6ul")) {
314 if (val != OCOTP_CFG3_6UL_SPEED_696MHZ)
315 if (dev_pm_opp_disable(dev, 696000000))
316 dev_warn(dev, "failed to disable 696MHz OPP\n");
317 }
318
319 if (of_machine_is_compatible("fsl,imx6ull")) {
320 if (val != OCOTP_CFG3_6ULL_SPEED_792MHZ)
321 if (dev_pm_opp_disable(dev, 792000000))
322 dev_warn(dev, "failed to disable 792MHz OPP\n");
323
324 if (val != OCOTP_CFG3_6ULL_SPEED_900MHZ)
325 if (dev_pm_opp_disable(dev, 900000000))
326 dev_warn(dev, "failed to disable 900MHz OPP\n");
327 }
328
2733fb0d 329 return ret;
5028f5d2
AH
330}
331
1dd538f0
SG
332static int imx6q_cpufreq_probe(struct platform_device *pdev)
333{
334 struct device_node *np;
47d43ba7 335 struct dev_pm_opp *opp;
1dd538f0
SG
336 unsigned long min_volt, max_volt;
337 int num, ret;
b4573d1d
AH
338 const struct property *prop;
339 const __be32 *val;
340 u32 nr, i, j;
1dd538f0 341
b494b48d
SK
342 cpu_dev = get_cpu_device(0);
343 if (!cpu_dev) {
344 pr_err("failed to get cpu0 device\n");
345 return -ENODEV;
346 }
1dd538f0 347
cdc58d60 348 np = of_node_get(cpu_dev->of_node);
1dd538f0
SG
349 if (!np) {
350 dev_err(cpu_dev, "failed to find cpu0 node\n");
351 return -ENOENT;
352 }
353
3fafb4e7 354 if (of_machine_is_compatible("fsl,imx6ul") ||
2332bd04
DA
355 of_machine_is_compatible("fsl,imx6ull"))
356 num_clks = IMX6UL_CPUFREQ_CLK_NUM;
357 else
358 num_clks = IMX6Q_CPUFREQ_CLK_NUM;
359
360 ret = clk_bulk_get(cpu_dev, num_clks, clks);
361 if (ret)
362 goto put_node;
a35fc5a3 363
f8269c19 364 arm_reg = regulator_get(cpu_dev, "arm");
22d0628a 365 pu_reg = regulator_get_optional(cpu_dev, "pu");
f8269c19 366 soc_reg = regulator_get(cpu_dev, "soc");
54cad2fc
IT
367 if (PTR_ERR(arm_reg) == -EPROBE_DEFER ||
368 PTR_ERR(soc_reg) == -EPROBE_DEFER ||
369 PTR_ERR(pu_reg) == -EPROBE_DEFER) {
370 ret = -EPROBE_DEFER;
371 dev_dbg(cpu_dev, "regulators not ready, defer\n");
372 goto put_reg;
373 }
22d0628a 374 if (IS_ERR(arm_reg) || IS_ERR(soc_reg)) {
1dd538f0
SG
375 dev_err(cpu_dev, "failed to get regulators\n");
376 ret = -ENOENT;
f8269c19 377 goto put_reg;
1dd538f0
SG
378 }
379
2b3d58a3
FE
380 ret = dev_pm_opp_of_add_table(cpu_dev);
381 if (ret < 0) {
382 dev_err(cpu_dev, "failed to init OPP table: %d\n", ret);
383 goto put_reg;
384 }
20b7cbe2 385
0aa9abd4 386 if (of_machine_is_compatible("fsl,imx6ul") ||
2733fb0d
AH
387 of_machine_is_compatible("fsl,imx6ull")) {
388 ret = imx6ul_opp_check_speed_grading(cpu_dev);
2733fb0d 389 if (ret) {
cccf6ae5
AH
390 if (ret == -EPROBE_DEFER)
391 return ret;
392
2733fb0d
AH
393 dev_err(cpu_dev, "failed to read ocotp: %d\n",
394 ret);
395 return ret;
396 }
397 } else {
5028f5d2 398 imx6q_opp_check_speed_grading(cpu_dev);
2733fb0d 399 }
cc87b8a8 400
2b3d58a3
FE
401 /* Because we have added the OPPs here, we must free them */
402 free_opp = true;
403 num = dev_pm_opp_get_opp_count(cpu_dev);
404 if (num < 0) {
405 ret = num;
406 dev_err(cpu_dev, "no OPP table is found: %d\n", ret);
407 goto out_free_opp;
1dd538f0
SG
408 }
409
5d4879cd 410 ret = dev_pm_opp_init_cpufreq_table(cpu_dev, &freq_table);
1dd538f0
SG
411 if (ret) {
412 dev_err(cpu_dev, "failed to init cpufreq table: %d\n", ret);
eafca851 413 goto out_free_opp;
1dd538f0
SG
414 }
415
b4573d1d 416 /* Make imx6_soc_volt array's size same as arm opp number */
a86854d0
KC
417 imx6_soc_volt = devm_kcalloc(cpu_dev, num, sizeof(*imx6_soc_volt),
418 GFP_KERNEL);
b4573d1d
AH
419 if (imx6_soc_volt == NULL) {
420 ret = -ENOMEM;
421 goto free_freq_table;
422 }
423
424 prop = of_find_property(np, "fsl,soc-operating-points", NULL);
425 if (!prop || !prop->value)
426 goto soc_opp_out;
427
428 /*
429 * Each OPP is a set of tuples consisting of frequency and
430 * voltage like <freq-kHz vol-uV>.
431 */
432 nr = prop->length / sizeof(u32);
433 if (nr % 2 || (nr / 2) < num)
434 goto soc_opp_out;
435
436 for (j = 0; j < num; j++) {
437 val = prop->value;
438 for (i = 0; i < nr / 2; i++) {
439 unsigned long freq = be32_to_cpup(val++);
440 unsigned long volt = be32_to_cpup(val++);
441 if (freq_table[j].frequency == freq) {
442 imx6_soc_volt[soc_opp_count++] = volt;
443 break;
444 }
445 }
446 }
447
448soc_opp_out:
449 /* use fixed soc opp volt if no valid soc opp info found in dtb */
450 if (soc_opp_count != num) {
451 dev_warn(cpu_dev, "can NOT find valid fsl,soc-operating-points property in dtb, use default value!\n");
452 for (j = 0; j < num; j++)
453 imx6_soc_volt[j] = PU_SOC_VOLTAGE_NORMAL;
454 if (freq_table[num - 1].frequency * 1000 == FREQ_1P2_GHZ)
455 imx6_soc_volt[num - 1] = PU_SOC_VOLTAGE_HIGH;
456 }
457
1dd538f0
SG
458 if (of_property_read_u32(np, "clock-latency", &transition_latency))
459 transition_latency = CPUFREQ_ETERNAL;
460
b4573d1d
AH
461 /*
462 * Calculate the ramp time for max voltage change in the
463 * VDDSOC and VDDPU regulators.
464 */
465 ret = regulator_set_voltage_time(soc_reg, imx6_soc_volt[0], imx6_soc_volt[num - 1]);
466 if (ret > 0)
467 transition_latency += ret * 1000;
22d0628a
AH
468 if (!IS_ERR(pu_reg)) {
469 ret = regulator_set_voltage_time(pu_reg, imx6_soc_volt[0], imx6_soc_volt[num - 1]);
470 if (ret > 0)
471 transition_latency += ret * 1000;
472 }
b4573d1d 473
1dd538f0
SG
474 /*
475 * OPP is maintained in order of increasing frequency, and
476 * freq_table initialised from OPP is therefore sorted in the
477 * same order.
478 */
8d768cdc 479 max_freq = freq_table[--num].frequency;
5d4879cd 480 opp = dev_pm_opp_find_freq_exact(cpu_dev,
1dd538f0 481 freq_table[0].frequency * 1000, true);
5d4879cd 482 min_volt = dev_pm_opp_get_voltage(opp);
8a31d9d9 483 dev_pm_opp_put(opp);
8d768cdc 484 opp = dev_pm_opp_find_freq_exact(cpu_dev, max_freq * 1000, true);
5d4879cd 485 max_volt = dev_pm_opp_get_voltage(opp);
8a31d9d9
VK
486 dev_pm_opp_put(opp);
487
1dd538f0
SG
488 ret = regulator_set_voltage_time(arm_reg, min_volt, max_volt);
489 if (ret > 0)
490 transition_latency += ret * 1000;
491
1dd538f0
SG
492 ret = cpufreq_register_driver(&imx6q_cpufreq_driver);
493 if (ret) {
494 dev_err(cpu_dev, "failed register driver: %d\n", ret);
495 goto free_freq_table;
496 }
497
498 of_node_put(np);
499 return 0;
500
501free_freq_table:
5d4879cd 502 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
cc87b8a8
VK
503out_free_opp:
504 if (free_opp)
8f8d37b2 505 dev_pm_opp_of_remove_table(cpu_dev);
f8269c19
PZ
506put_reg:
507 if (!IS_ERR(arm_reg))
508 regulator_put(arm_reg);
509 if (!IS_ERR(pu_reg))
510 regulator_put(pu_reg);
511 if (!IS_ERR(soc_reg))
512 regulator_put(soc_reg);
2332bd04
DA
513
514 clk_bulk_put(num_clks, clks);
515put_node:
1dd538f0 516 of_node_put(np);
2332bd04 517
1dd538f0
SG
518 return ret;
519}
520
521static int imx6q_cpufreq_remove(struct platform_device *pdev)
522{
523 cpufreq_unregister_driver(&imx6q_cpufreq_driver);
5d4879cd 524 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
cc87b8a8 525 if (free_opp)
8f8d37b2 526 dev_pm_opp_of_remove_table(cpu_dev);
f8269c19 527 regulator_put(arm_reg);
22d0628a
AH
528 if (!IS_ERR(pu_reg))
529 regulator_put(pu_reg);
f8269c19 530 regulator_put(soc_reg);
2332bd04
DA
531
532 clk_bulk_put(num_clks, clks);
1dd538f0
SG
533
534 return 0;
535}
536
537static struct platform_driver imx6q_cpufreq_platdrv = {
538 .driver = {
539 .name = "imx6q-cpufreq",
1dd538f0
SG
540 },
541 .probe = imx6q_cpufreq_probe,
542 .remove = imx6q_cpufreq_remove,
543};
544module_platform_driver(imx6q_cpufreq_platdrv);
545
d0404738 546MODULE_ALIAS("platform:imx6q-cpufreq");
1dd538f0
SG
547MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>");
548MODULE_DESCRIPTION("Freescale i.MX6Q cpufreq driver");
549MODULE_LICENSE("GPL");