blob: ef1fa8145419cd1d2aa277f3dd20c9645e698203 [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>
Nishanth Menone4db1c72013-09-19 16:03:52 -050015#include <linux/pm_opp.h>
Shawn Guo1dd538f2013-02-04 05:46:29 +000016#include <linux/platform_device.h>
17#include <linux/regulator/consumer.h>
18
19#define PU_SOC_VOLTAGE_NORMAL 1250000
20#define PU_SOC_VOLTAGE_HIGH 1275000
21#define FREQ_1P2_GHZ 1200000000
22
23static struct regulator *arm_reg;
24static struct regulator *pu_reg;
25static struct regulator *soc_reg;
26
27static struct clk *arm_clk;
28static struct clk *pll1_sys_clk;
29static struct clk *pll1_sw_clk;
30static struct clk *step_clk;
31static struct clk *pll2_pfd2_396m_clk;
32
Bai Pinga35fc5a2015-09-11 23:41:05 +080033/* clk used by i.MX6UL */
34static struct clk *pll2_bus_clk;
35static struct clk *secondary_sel_clk;
36
Shawn Guo1dd538f2013-02-04 05:46:29 +000037static struct device *cpu_dev;
Viresh Kumarcc87b8a2014-11-25 16:04:23 +053038static bool free_opp;
Shawn Guo1dd538f2013-02-04 05:46:29 +000039static struct cpufreq_frequency_table *freq_table;
40static unsigned int transition_latency;
41
Anson Huangb4573d1d2013-12-19 09:16:47 -050042static u32 *imx6_soc_volt;
43static u32 soc_opp_count;
44
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +053045static int imx6q_set_target(struct cpufreq_policy *policy, unsigned int index)
Shawn Guo1dd538f2013-02-04 05:46:29 +000046{
Nishanth Menon47d43ba2013-09-19 16:03:51 -050047 struct dev_pm_opp *opp;
Shawn Guo1dd538f2013-02-04 05:46:29 +000048 unsigned long freq_hz, volt, volt_old;
Viresh Kumard4019f02013-08-14 19:38:24 +053049 unsigned int old_freq, new_freq;
Shawn Guo1dd538f2013-02-04 05:46:29 +000050 int ret;
51
Viresh Kumard4019f02013-08-14 19:38:24 +053052 new_freq = freq_table[index].frequency;
53 freq_hz = new_freq * 1000;
54 old_freq = clk_get_rate(arm_clk) / 1000;
Shawn Guo1dd538f2013-02-04 05:46:29 +000055
Shawn Guo1dd538f2013-02-04 05:46:29 +000056 rcu_read_lock();
Nishanth Menon5d4879c2013-09-19 16:03:50 -050057 opp = dev_pm_opp_find_freq_ceil(cpu_dev, &freq_hz);
Shawn Guo1dd538f2013-02-04 05:46:29 +000058 if (IS_ERR(opp)) {
59 rcu_read_unlock();
60 dev_err(cpu_dev, "failed to find OPP for %ld\n", freq_hz);
61 return PTR_ERR(opp);
62 }
63
Nishanth Menon5d4879c2013-09-19 16:03:50 -050064 volt = dev_pm_opp_get_voltage(opp);
Shawn Guo1dd538f2013-02-04 05:46:29 +000065 rcu_read_unlock();
66 volt_old = regulator_get_voltage(arm_reg);
67
68 dev_dbg(cpu_dev, "%u MHz, %ld mV --> %u MHz, %ld mV\n",
Viresh Kumard4019f02013-08-14 19:38:24 +053069 old_freq / 1000, volt_old / 1000,
70 new_freq / 1000, volt / 1000);
Viresh Kumar5a571c32013-06-19 11:18:20 +053071
Shawn Guo1dd538f2013-02-04 05:46:29 +000072 /* scaling up? scale voltage before frequency */
Viresh Kumard4019f02013-08-14 19:38:24 +053073 if (new_freq > old_freq) {
Anson Huang22d06282014-06-20 15:42:18 +080074 if (!IS_ERR(pu_reg)) {
75 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 }
Anson Huangb4573d1d2013-12-19 09:16:47 -050080 }
81 ret = regulator_set_voltage_tol(soc_reg, imx6_soc_volt[index], 0);
82 if (ret) {
83 dev_err(cpu_dev, "failed to scale vddsoc up: %d\n", ret);
84 return ret;
85 }
Shawn Guo1dd538f2013-02-04 05:46:29 +000086 ret = regulator_set_voltage_tol(arm_reg, volt, 0);
87 if (ret) {
88 dev_err(cpu_dev,
89 "failed to scale vddarm up: %d\n", ret);
Viresh Kumard4019f02013-08-14 19:38:24 +053090 return ret;
Shawn Guo1dd538f2013-02-04 05:46:29 +000091 }
Shawn Guo1dd538f2013-02-04 05:46:29 +000092 }
93
94 /*
95 * The setpoints are selected per PLL/PDF frequencies, so we need to
96 * reprogram PLL for frequency scaling. The procedure of reprogramming
97 * PLL1 is as below.
Bai Pinga35fc5a2015-09-11 23:41:05 +080098 * For i.MX6UL, it has a secondary clk mux, the cpu frequency change
99 * flow is slightly different from other i.MX6 OSC.
100 * The cpu frequeny change flow for i.MX6(except i.MX6UL) is as below:
Shawn Guo1dd538f2013-02-04 05:46:29 +0000101 * - Enable pll2_pfd2_396m_clk and reparent pll1_sw_clk to it
102 * - Reprogram pll1_sys_clk and reparent pll1_sw_clk back to it
103 * - Disable pll2_pfd2_396m_clk
104 */
Bai Pinga35fc5a2015-09-11 23:41:05 +0800105 if (of_machine_is_compatible("fsl,imx6ul")) {
106 /*
107 * When changing pll1_sw_clk's parent to pll1_sys_clk,
108 * CPU may run at higher than 528MHz, this will lead to
109 * the system unstable if the voltage is lower than the
110 * voltage of 528MHz, so lower the CPU frequency to one
111 * half before changing CPU frequency.
112 */
113 clk_set_rate(arm_clk, (old_freq >> 1) * 1000);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000114 clk_set_parent(pll1_sw_clk, pll1_sys_clk);
Bai Pinga35fc5a2015-09-11 23:41:05 +0800115 if (freq_hz > clk_get_rate(pll2_pfd2_396m_clk))
116 clk_set_parent(secondary_sel_clk, pll2_bus_clk);
117 else
118 clk_set_parent(secondary_sel_clk, pll2_pfd2_396m_clk);
119 clk_set_parent(step_clk, secondary_sel_clk);
120 clk_set_parent(pll1_sw_clk, step_clk);
121 } else {
122 clk_set_parent(step_clk, pll2_pfd2_396m_clk);
123 clk_set_parent(pll1_sw_clk, step_clk);
124 if (freq_hz > clk_get_rate(pll2_pfd2_396m_clk)) {
125 clk_set_rate(pll1_sys_clk, new_freq * 1000);
126 clk_set_parent(pll1_sw_clk, pll1_sys_clk);
127 }
Shawn Guo1dd538f2013-02-04 05:46:29 +0000128 }
129
130 /* Ensure the arm clock divider is what we expect */
Viresh Kumard4019f02013-08-14 19:38:24 +0530131 ret = clk_set_rate(arm_clk, new_freq * 1000);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000132 if (ret) {
133 dev_err(cpu_dev, "failed to set clock rate: %d\n", ret);
134 regulator_set_voltage_tol(arm_reg, volt_old, 0);
Viresh Kumard4019f02013-08-14 19:38:24 +0530135 return ret;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000136 }
137
138 /* scaling down? scale voltage after frequency */
Viresh Kumard4019f02013-08-14 19:38:24 +0530139 if (new_freq < old_freq) {
Shawn Guo1dd538f2013-02-04 05:46:29 +0000140 ret = regulator_set_voltage_tol(arm_reg, volt, 0);
Viresh Kumar5a571c32013-06-19 11:18:20 +0530141 if (ret) {
Shawn Guo1dd538f2013-02-04 05:46:29 +0000142 dev_warn(cpu_dev,
143 "failed to scale vddarm down: %d\n", ret);
Viresh Kumar5a571c32013-06-19 11:18:20 +0530144 ret = 0;
145 }
Anson Huangb4573d1d2013-12-19 09:16:47 -0500146 ret = regulator_set_voltage_tol(soc_reg, imx6_soc_volt[index], 0);
147 if (ret) {
148 dev_warn(cpu_dev, "failed to scale vddsoc down: %d\n", ret);
149 ret = 0;
150 }
Anson Huang22d06282014-06-20 15:42:18 +0800151 if (!IS_ERR(pu_reg)) {
152 ret = regulator_set_voltage_tol(pu_reg, imx6_soc_volt[index], 0);
153 if (ret) {
154 dev_warn(cpu_dev, "failed to scale vddpu down: %d\n", ret);
155 ret = 0;
156 }
Shawn Guo1dd538f2013-02-04 05:46:29 +0000157 }
158 }
159
Viresh Kumard4019f02013-08-14 19:38:24 +0530160 return 0;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000161}
162
163static int imx6q_cpufreq_init(struct cpufreq_policy *policy)
164{
Viresh Kumar652ed952014-01-09 20:38:43 +0530165 policy->clk = arm_clk;
Viresh Kumar17922dd2013-10-03 20:29:14 +0530166 return cpufreq_generic_init(policy, freq_table, transition_latency);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000167}
168
Shawn Guo1dd538f2013-02-04 05:46:29 +0000169static struct cpufreq_driver imx6q_cpufreq_driver = {
Viresh Kumarae6b4272013-12-03 11:20:45 +0530170 .flags = CPUFREQ_NEED_INITIAL_FREQ_CHECK,
Viresh Kumar4f6ba382013-10-03 20:28:08 +0530171 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530172 .target_index = imx6q_set_target,
Viresh Kumar652ed952014-01-09 20:38:43 +0530173 .get = cpufreq_generic_get,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000174 .init = imx6q_cpufreq_init,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000175 .name = "imx6q-cpufreq",
Viresh Kumar4f6ba382013-10-03 20:28:08 +0530176 .attr = cpufreq_generic_attr,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000177};
178
179static int imx6q_cpufreq_probe(struct platform_device *pdev)
180{
181 struct device_node *np;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500182 struct dev_pm_opp *opp;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000183 unsigned long min_volt, max_volt;
184 int num, ret;
Anson Huangb4573d1d2013-12-19 09:16:47 -0500185 const struct property *prop;
186 const __be32 *val;
187 u32 nr, i, j;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000188
Sudeep KarkadaNageshab494b482013-09-10 18:59:47 +0100189 cpu_dev = get_cpu_device(0);
190 if (!cpu_dev) {
191 pr_err("failed to get cpu0 device\n");
192 return -ENODEV;
193 }
Shawn Guo1dd538f2013-02-04 05:46:29 +0000194
Sudeep KarkadaNageshacdc58d62013-06-17 14:58:48 +0100195 np = of_node_get(cpu_dev->of_node);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000196 if (!np) {
197 dev_err(cpu_dev, "failed to find cpu0 node\n");
198 return -ENOENT;
199 }
200
Philipp Zabelf8269c12014-05-14 18:02:23 +0200201 arm_clk = clk_get(cpu_dev, "arm");
202 pll1_sys_clk = clk_get(cpu_dev, "pll1_sys");
203 pll1_sw_clk = clk_get(cpu_dev, "pll1_sw");
204 step_clk = clk_get(cpu_dev, "step");
205 pll2_pfd2_396m_clk = clk_get(cpu_dev, "pll2_pfd2_396m");
Shawn Guo1dd538f2013-02-04 05:46:29 +0000206 if (IS_ERR(arm_clk) || IS_ERR(pll1_sys_clk) || IS_ERR(pll1_sw_clk) ||
207 IS_ERR(step_clk) || IS_ERR(pll2_pfd2_396m_clk)) {
208 dev_err(cpu_dev, "failed to get clocks\n");
209 ret = -ENOENT;
Philipp Zabelf8269c12014-05-14 18:02:23 +0200210 goto put_clk;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000211 }
212
Bai Pinga35fc5a2015-09-11 23:41:05 +0800213 if (of_machine_is_compatible("fsl,imx6ul")) {
214 pll2_bus_clk = clk_get(cpu_dev, "pll2_bus");
215 secondary_sel_clk = clk_get(cpu_dev, "secondary_sel");
216 if (IS_ERR(pll2_bus_clk) || IS_ERR(secondary_sel_clk)) {
217 dev_err(cpu_dev, "failed to get clocks specific to imx6ul\n");
218 ret = -ENOENT;
219 goto put_clk;
220 }
221 }
222
Philipp Zabelf8269c12014-05-14 18:02:23 +0200223 arm_reg = regulator_get(cpu_dev, "arm");
Anson Huang22d06282014-06-20 15:42:18 +0800224 pu_reg = regulator_get_optional(cpu_dev, "pu");
Philipp Zabelf8269c12014-05-14 18:02:23 +0200225 soc_reg = regulator_get(cpu_dev, "soc");
Anson Huang22d06282014-06-20 15:42:18 +0800226 if (IS_ERR(arm_reg) || IS_ERR(soc_reg)) {
Shawn Guo1dd538f2013-02-04 05:46:29 +0000227 dev_err(cpu_dev, "failed to get regulators\n");
228 ret = -ENOENT;
Philipp Zabelf8269c12014-05-14 18:02:23 +0200229 goto put_reg;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000230 }
231
John Tobias20b7cbe2013-12-19 22:56:28 -0800232 /*
233 * We expect an OPP table supplied by platform.
234 * Just, incase the platform did not supply the OPP
235 * table, it will try to get it.
236 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500237 num = dev_pm_opp_get_opp_count(cpu_dev);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000238 if (num < 0) {
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530239 ret = dev_pm_opp_of_add_table(cpu_dev);
John Tobias20b7cbe2013-12-19 22:56:28 -0800240 if (ret < 0) {
241 dev_err(cpu_dev, "failed to init OPP table: %d\n", ret);
Philipp Zabelf8269c12014-05-14 18:02:23 +0200242 goto put_reg;
John Tobias20b7cbe2013-12-19 22:56:28 -0800243 }
244
Viresh Kumarcc87b8a2014-11-25 16:04:23 +0530245 /* Because we have added the OPPs here, we must free them */
246 free_opp = true;
247
John Tobias20b7cbe2013-12-19 22:56:28 -0800248 num = dev_pm_opp_get_opp_count(cpu_dev);
249 if (num < 0) {
250 ret = num;
251 dev_err(cpu_dev, "no OPP table is found: %d\n", ret);
Viresh Kumarcc87b8a2014-11-25 16:04:23 +0530252 goto out_free_opp;
John Tobias20b7cbe2013-12-19 22:56:28 -0800253 }
Shawn Guo1dd538f2013-02-04 05:46:29 +0000254 }
255
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500256 ret = dev_pm_opp_init_cpufreq_table(cpu_dev, &freq_table);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000257 if (ret) {
258 dev_err(cpu_dev, "failed to init cpufreq table: %d\n", ret);
Philipp Zabelf8269c12014-05-14 18:02:23 +0200259 goto put_reg;
Shawn Guo1dd538f2013-02-04 05:46:29 +0000260 }
261
Anson Huangb4573d1d2013-12-19 09:16:47 -0500262 /* Make imx6_soc_volt array's size same as arm opp number */
263 imx6_soc_volt = devm_kzalloc(cpu_dev, sizeof(*imx6_soc_volt) * num, GFP_KERNEL);
264 if (imx6_soc_volt == NULL) {
265 ret = -ENOMEM;
266 goto free_freq_table;
267 }
268
269 prop = of_find_property(np, "fsl,soc-operating-points", NULL);
270 if (!prop || !prop->value)
271 goto soc_opp_out;
272
273 /*
274 * Each OPP is a set of tuples consisting of frequency and
275 * voltage like <freq-kHz vol-uV>.
276 */
277 nr = prop->length / sizeof(u32);
278 if (nr % 2 || (nr / 2) < num)
279 goto soc_opp_out;
280
281 for (j = 0; j < num; j++) {
282 val = prop->value;
283 for (i = 0; i < nr / 2; i++) {
284 unsigned long freq = be32_to_cpup(val++);
285 unsigned long volt = be32_to_cpup(val++);
286 if (freq_table[j].frequency == freq) {
287 imx6_soc_volt[soc_opp_count++] = volt;
288 break;
289 }
290 }
291 }
292
293soc_opp_out:
294 /* use fixed soc opp volt if no valid soc opp info found in dtb */
295 if (soc_opp_count != num) {
296 dev_warn(cpu_dev, "can NOT find valid fsl,soc-operating-points property in dtb, use default value!\n");
297 for (j = 0; j < num; j++)
298 imx6_soc_volt[j] = PU_SOC_VOLTAGE_NORMAL;
299 if (freq_table[num - 1].frequency * 1000 == FREQ_1P2_GHZ)
300 imx6_soc_volt[num - 1] = PU_SOC_VOLTAGE_HIGH;
301 }
302
Shawn Guo1dd538f2013-02-04 05:46:29 +0000303 if (of_property_read_u32(np, "clock-latency", &transition_latency))
304 transition_latency = CPUFREQ_ETERNAL;
305
306 /*
Anson Huangb4573d1d2013-12-19 09:16:47 -0500307 * Calculate the ramp time for max voltage change in the
308 * VDDSOC and VDDPU regulators.
309 */
310 ret = regulator_set_voltage_time(soc_reg, imx6_soc_volt[0], imx6_soc_volt[num - 1]);
311 if (ret > 0)
312 transition_latency += ret * 1000;
Anson Huang22d06282014-06-20 15:42:18 +0800313 if (!IS_ERR(pu_reg)) {
314 ret = regulator_set_voltage_time(pu_reg, imx6_soc_volt[0], imx6_soc_volt[num - 1]);
315 if (ret > 0)
316 transition_latency += ret * 1000;
317 }
Anson Huangb4573d1d2013-12-19 09:16:47 -0500318
319 /*
Shawn Guo1dd538f2013-02-04 05:46:29 +0000320 * OPP is maintained in order of increasing frequency, and
321 * freq_table initialised from OPP is therefore sorted in the
322 * same order.
323 */
324 rcu_read_lock();
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500325 opp = dev_pm_opp_find_freq_exact(cpu_dev,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000326 freq_table[0].frequency * 1000, true);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500327 min_volt = dev_pm_opp_get_voltage(opp);
328 opp = dev_pm_opp_find_freq_exact(cpu_dev,
Shawn Guo1dd538f2013-02-04 05:46:29 +0000329 freq_table[--num].frequency * 1000, true);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500330 max_volt = dev_pm_opp_get_voltage(opp);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000331 rcu_read_unlock();
332 ret = regulator_set_voltage_time(arm_reg, min_volt, max_volt);
333 if (ret > 0)
334 transition_latency += ret * 1000;
335
Shawn Guo1dd538f2013-02-04 05:46:29 +0000336 ret = cpufreq_register_driver(&imx6q_cpufreq_driver);
337 if (ret) {
338 dev_err(cpu_dev, "failed register driver: %d\n", ret);
339 goto free_freq_table;
340 }
341
342 of_node_put(np);
343 return 0;
344
345free_freq_table:
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500346 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
Viresh Kumarcc87b8a2014-11-25 16:04:23 +0530347out_free_opp:
348 if (free_opp)
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530349 dev_pm_opp_of_remove_table(cpu_dev);
Philipp Zabelf8269c12014-05-14 18:02:23 +0200350put_reg:
351 if (!IS_ERR(arm_reg))
352 regulator_put(arm_reg);
353 if (!IS_ERR(pu_reg))
354 regulator_put(pu_reg);
355 if (!IS_ERR(soc_reg))
356 regulator_put(soc_reg);
357put_clk:
358 if (!IS_ERR(arm_clk))
359 clk_put(arm_clk);
360 if (!IS_ERR(pll1_sys_clk))
361 clk_put(pll1_sys_clk);
362 if (!IS_ERR(pll1_sw_clk))
363 clk_put(pll1_sw_clk);
364 if (!IS_ERR(step_clk))
365 clk_put(step_clk);
366 if (!IS_ERR(pll2_pfd2_396m_clk))
367 clk_put(pll2_pfd2_396m_clk);
Bai Pinga35fc5a2015-09-11 23:41:05 +0800368 if (!IS_ERR(pll2_bus_clk))
369 clk_put(pll2_bus_clk);
370 if (!IS_ERR(secondary_sel_clk))
371 clk_put(secondary_sel_clk);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000372 of_node_put(np);
373 return ret;
374}
375
376static int imx6q_cpufreq_remove(struct platform_device *pdev)
377{
378 cpufreq_unregister_driver(&imx6q_cpufreq_driver);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500379 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
Viresh Kumarcc87b8a2014-11-25 16:04:23 +0530380 if (free_opp)
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530381 dev_pm_opp_of_remove_table(cpu_dev);
Philipp Zabelf8269c12014-05-14 18:02:23 +0200382 regulator_put(arm_reg);
Anson Huang22d06282014-06-20 15:42:18 +0800383 if (!IS_ERR(pu_reg))
384 regulator_put(pu_reg);
Philipp Zabelf8269c12014-05-14 18:02:23 +0200385 regulator_put(soc_reg);
386 clk_put(arm_clk);
387 clk_put(pll1_sys_clk);
388 clk_put(pll1_sw_clk);
389 clk_put(step_clk);
390 clk_put(pll2_pfd2_396m_clk);
Bai Pinga35fc5a2015-09-11 23:41:05 +0800391 clk_put(pll2_bus_clk);
392 clk_put(secondary_sel_clk);
Shawn Guo1dd538f2013-02-04 05:46:29 +0000393
394 return 0;
395}
396
397static struct platform_driver imx6q_cpufreq_platdrv = {
398 .driver = {
399 .name = "imx6q-cpufreq",
Shawn Guo1dd538f2013-02-04 05:46:29 +0000400 },
401 .probe = imx6q_cpufreq_probe,
402 .remove = imx6q_cpufreq_remove,
403};
404module_platform_driver(imx6q_cpufreq_platdrv);
405
406MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>");
407MODULE_DESCRIPTION("Freescale i.MX6Q cpufreq driver");
408MODULE_LICENSE("GPL");