blob: 3957de801ae8260770051bc07a0fc391ea45c9c1 [file] [log] [blame]
Shawn Guo95ceafd2012-09-06 07:09:11 +00001/*
2 * Copyright (C) 2012 Freescale Semiconductor, Inc.
3 *
Viresh Kumar748c8762014-08-28 11:22:24 +05304 * Copyright (C) 2014 Linaro.
5 * Viresh Kumar <viresh.kumar@linaro.org>
6 *
Shawn Guo95ceafd2012-09-06 07:09:11 +00007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
14#include <linux/clk.h>
Sudeep KarkadaNageshae1825b22013-09-10 18:59:46 +010015#include <linux/cpu.h>
Eduardo Valentin77cff592013-07-15 09:09:14 -040016#include <linux/cpu_cooling.h>
Shawn Guo95ceafd2012-09-06 07:09:11 +000017#include <linux/cpufreq.h>
Eduardo Valentin77cff592013-07-15 09:09:14 -040018#include <linux/cpumask.h>
Shawn Guo95ceafd2012-09-06 07:09:11 +000019#include <linux/err.h>
20#include <linux/module.h>
21#include <linux/of.h>
Nishanth Menone4db1c72013-09-19 16:03:52 -050022#include <linux/pm_opp.h>
Shawn Guo5553f9e2013-01-30 14:27:49 +000023#include <linux/platform_device.h>
Shawn Guo95ceafd2012-09-06 07:09:11 +000024#include <linux/regulator/consumer.h>
25#include <linux/slab.h>
Eduardo Valentin77cff592013-07-15 09:09:14 -040026#include <linux/thermal.h>
Shawn Guo95ceafd2012-09-06 07:09:11 +000027
Viresh Kumard2f31f12014-08-28 11:22:28 +053028struct private_data {
29 struct device *cpu_dev;
Viresh Kumard2f31f12014-08-28 11:22:28 +053030 struct thermal_cooling_device *cdev;
Viresh Kumar050794a2016-02-09 10:30:43 +053031 const char *reg_name;
Viresh Kumard2f31f12014-08-28 11:22:28 +053032};
Shawn Guo95ceafd2012-09-06 07:09:11 +000033
Bartlomiej Zolnierkiewicz21c36d32015-08-07 13:59:16 +020034static struct freq_attr *cpufreq_dt_attr[] = {
35 &cpufreq_freq_attr_scaling_available_freqs,
36 NULL, /* Extra space for boost-attr if required */
37 NULL,
38};
39
Viresh Kumarbbcf0712014-09-09 19:58:03 +053040static int set_target(struct cpufreq_policy *policy, unsigned int index)
Shawn Guo95ceafd2012-09-06 07:09:11 +000041{
Viresh Kumard2f31f12014-08-28 11:22:28 +053042 struct private_data *priv = policy->driver_data;
Shawn Guo95ceafd2012-09-06 07:09:11 +000043
Viresh Kumar78c3ba52016-02-09 10:30:46 +053044 return dev_pm_opp_set_rate(priv->cpu_dev,
45 policy->freq_table[index].frequency * 1000);
Shawn Guo95ceafd2012-09-06 07:09:11 +000046}
47
Viresh Kumar050794a2016-02-09 10:30:43 +053048/*
49 * An earlier version of opp-v1 bindings used to name the regulator
50 * "cpu0-supply", we still need to handle that for backwards compatibility.
51 */
Viresh Kumardf2c8ec2016-02-09 10:30:47 +053052static const char *find_supply_name(struct device *dev)
Viresh Kumar050794a2016-02-09 10:30:43 +053053{
Viresh Kumardf2c8ec2016-02-09 10:30:47 +053054 struct device_node *np;
Viresh Kumar050794a2016-02-09 10:30:43 +053055 struct property *pp;
56 int cpu = dev->id;
Viresh Kumardf2c8ec2016-02-09 10:30:47 +053057 const char *name = NULL;
58
59 np = of_node_get(dev->of_node);
60
61 /* This must be valid for sure */
62 if (WARN_ON(!np))
63 return NULL;
Viresh Kumar050794a2016-02-09 10:30:43 +053064
65 /* Try "cpu0" for older DTs */
66 if (!cpu) {
67 pp = of_find_property(np, "cpu0-supply", NULL);
Viresh Kumardf2c8ec2016-02-09 10:30:47 +053068 if (pp) {
69 name = "cpu0";
70 goto node_put;
71 }
Viresh Kumar050794a2016-02-09 10:30:43 +053072 }
73
74 pp = of_find_property(np, "cpu-supply", NULL);
Viresh Kumardf2c8ec2016-02-09 10:30:47 +053075 if (pp) {
76 name = "cpu";
77 goto node_put;
78 }
Viresh Kumar050794a2016-02-09 10:30:43 +053079
80 dev_dbg(dev, "no regulator for cpu%d\n", cpu);
Viresh Kumardf2c8ec2016-02-09 10:30:47 +053081node_put:
82 of_node_put(np);
83 return name;
Viresh Kumar050794a2016-02-09 10:30:43 +053084}
85
Viresh Kumardd02a3d2016-02-09 10:30:48 +053086static int resources_available(void)
Shawn Guo95ceafd2012-09-06 07:09:11 +000087{
Viresh Kumard2f31f12014-08-28 11:22:28 +053088 struct device *cpu_dev;
89 struct regulator *cpu_reg;
90 struct clk *cpu_clk;
91 int ret = 0;
Viresh Kumardd02a3d2016-02-09 10:30:48 +053092 const char *name;
Shawn Guo95ceafd2012-09-06 07:09:11 +000093
Viresh Kumardd02a3d2016-02-09 10:30:48 +053094 cpu_dev = get_cpu_device(0);
Sudeep KarkadaNageshae1825b22013-09-10 18:59:46 +010095 if (!cpu_dev) {
Viresh Kumardd02a3d2016-02-09 10:30:48 +053096 pr_err("failed to get cpu0 device\n");
Sudeep KarkadaNageshae1825b22013-09-10 18:59:46 +010097 return -ENODEV;
98 }
Paolo Pisatif5c3ef22013-03-28 09:24:29 +000099
Viresh Kumardd02a3d2016-02-09 10:30:48 +0530100 cpu_clk = clk_get(cpu_dev, NULL);
101 ret = PTR_ERR_OR_ZERO(cpu_clk);
102 if (ret) {
103 /*
104 * If cpu's clk node is present, but clock is not yet
105 * registered, we should try defering probe.
106 */
107 if (ret == -EPROBE_DEFER)
108 dev_dbg(cpu_dev, "clock not ready, retry\n");
109 else
110 dev_err(cpu_dev, "failed to get clock: %d\n", ret);
Viresh Kumar2d2c5e02014-08-28 11:22:29 +0530111
Viresh Kumardd02a3d2016-02-09 10:30:48 +0530112 return ret;
113 }
114
115 clk_put(cpu_clk);
116
117 name = find_supply_name(cpu_dev);
118 /* Platform doesn't require regulator */
119 if (!name)
120 return 0;
121
122 cpu_reg = regulator_get_optional(cpu_dev, name);
Arnd Bergmannb331bc22016-01-25 16:45:48 +0100123 ret = PTR_ERR_OR_ZERO(cpu_reg);
124 if (ret) {
Nishanth Menonfc31d6f2013-05-01 13:38:12 +0000125 /*
Viresh Kumar95b61052014-08-28 11:22:30 +0530126 * If cpu's regulator supply node is present, but regulator is
Nishanth Menonfc31d6f2013-05-01 13:38:12 +0000127 * not yet registered, we should try defering probe.
128 */
Viresh Kumar48a86242014-08-28 11:22:26 +0530129 if (ret == -EPROBE_DEFER)
Viresh Kumardd02a3d2016-02-09 10:30:48 +0530130 dev_dbg(cpu_dev, "cpu0 regulator not ready, retry\n");
Viresh Kumar48a86242014-08-28 11:22:26 +0530131 else
Viresh Kumardd02a3d2016-02-09 10:30:48 +0530132 dev_dbg(cpu_dev, "no regulator for cpu0: %d\n", ret);
133
134 return ret;
Viresh Kumard2f31f12014-08-28 11:22:28 +0530135 }
Viresh Kumar48a86242014-08-28 11:22:26 +0530136
Viresh Kumardd02a3d2016-02-09 10:30:48 +0530137 regulator_put(cpu_reg);
138 return 0;
Viresh Kumard2f31f12014-08-28 11:22:28 +0530139}
140
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530141static int cpufreq_init(struct cpufreq_policy *policy)
Viresh Kumard2f31f12014-08-28 11:22:28 +0530142{
143 struct cpufreq_frequency_table *freq_table;
Viresh Kumard2f31f12014-08-28 11:22:28 +0530144 struct private_data *priv;
145 struct device *cpu_dev;
Viresh Kumard2f31f12014-08-28 11:22:28 +0530146 struct clk *cpu_clk;
Bartlomiej Zolnierkiewicz953ba9f2015-09-08 18:41:03 +0200147 struct dev_pm_opp *suspend_opp;
Viresh Kumard2f31f12014-08-28 11:22:28 +0530148 unsigned int transition_latency;
Viresh Kumar1530b992016-04-27 08:52:24 +0530149 bool fallback = false;
Viresh Kumar050794a2016-02-09 10:30:43 +0530150 const char *name;
Viresh Kumard2f31f12014-08-28 11:22:28 +0530151 int ret;
152
Viresh Kumardd02a3d2016-02-09 10:30:48 +0530153 cpu_dev = get_cpu_device(policy->cpu);
154 if (!cpu_dev) {
155 pr_err("failed to get cpu%d device\n", policy->cpu);
156 return -ENODEV;
157 }
158
159 cpu_clk = clk_get(cpu_dev, NULL);
160 if (IS_ERR(cpu_clk)) {
161 ret = PTR_ERR(cpu_clk);
162 dev_err(cpu_dev, "%s: failed to get clk: %d\n", __func__, ret);
Viresh Kumard2f31f12014-08-28 11:22:28 +0530163 return ret;
164 }
165
Viresh Kumar2e02d872015-07-29 16:23:10 +0530166 /* Get OPP-sharing information from "operating-points-v2" bindings */
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530167 ret = dev_pm_opp_of_get_sharing_cpus(cpu_dev, policy->cpus);
Viresh Kumar2e02d872015-07-29 16:23:10 +0530168 if (ret) {
Viresh Kumar1530b992016-04-27 08:52:24 +0530169 if (ret != -ENOENT)
170 goto out_put_clk;
171
Viresh Kumar2e02d872015-07-29 16:23:10 +0530172 /*
173 * operating-points-v2 not supported, fallback to old method of
Viresh Kumar1530b992016-04-27 08:52:24 +0530174 * finding shared-OPPs for backward compatibility if the
175 * platform hasn't set sharing CPUs.
Viresh Kumar2e02d872015-07-29 16:23:10 +0530176 */
Viresh Kumar1530b992016-04-27 08:52:24 +0530177 if (dev_pm_opp_get_sharing_cpus(cpu_dev, policy->cpus))
178 fallback = true;
Viresh Kumar2e02d872015-07-29 16:23:10 +0530179 }
180
181 /*
Viresh Kumar050794a2016-02-09 10:30:43 +0530182 * OPP layer will be taking care of regulators now, but it needs to know
183 * the name of the regulator first.
184 */
Viresh Kumardf2c8ec2016-02-09 10:30:47 +0530185 name = find_supply_name(cpu_dev);
Viresh Kumar050794a2016-02-09 10:30:43 +0530186 if (name) {
187 ret = dev_pm_opp_set_regulator(cpu_dev, name);
188 if (ret) {
189 dev_err(cpu_dev, "Failed to set regulator for cpu%d: %d\n",
190 policy->cpu, ret);
Viresh Kumardd02a3d2016-02-09 10:30:48 +0530191 goto out_put_clk;
Viresh Kumar050794a2016-02-09 10:30:43 +0530192 }
193 }
194
195 /*
Viresh Kumar2e02d872015-07-29 16:23:10 +0530196 * Initialize OPP tables for all policy->cpus. They will be shared by
197 * all CPUs which have marked their CPUs shared with OPP bindings.
198 *
199 * For platforms not using operating-points-v2 bindings, we do this
200 * before updating policy->cpus. Otherwise, we will end up creating
201 * duplicate OPPs for policy->cpus.
202 *
203 * OPPs might be populated at runtime, don't check for error here
204 */
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530205 dev_pm_opp_of_cpumask_add_table(policy->cpus);
Viresh Kumar2e02d872015-07-29 16:23:10 +0530206
Viresh Kumar7d5d0c82015-09-02 14:36:48 +0530207 /*
208 * But we need OPP table to function so if it is not there let's
209 * give platform code chance to provide it for us.
210 */
211 ret = dev_pm_opp_get_opp_count(cpu_dev);
212 if (ret <= 0) {
Viresh Kumar896d6a42016-02-09 10:30:40 +0530213 dev_dbg(cpu_dev, "OPP table is not ready, deferring probe\n");
Viresh Kumar7d5d0c82015-09-02 14:36:48 +0530214 ret = -EPROBE_DEFER;
215 goto out_free_opp;
216 }
217
Viresh Kumar1530b992016-04-27 08:52:24 +0530218 if (fallback) {
Viresh Kumareb969242016-04-27 08:52:26 +0530219 cpumask_setall(policy->cpus);
Viresh Kumar2e02d872015-07-29 16:23:10 +0530220
221 /*
222 * OPP tables are initialized only for policy->cpu, do it for
223 * others as well.
224 */
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530225 ret = dev_pm_opp_set_sharing_cpus(cpu_dev, policy->cpus);
Viresh Kumar8bc86282015-09-02 14:36:49 +0530226 if (ret)
227 dev_err(cpu_dev, "%s: failed to mark OPPs as shared: %d\n",
228 __func__, ret);
Viresh Kumar2e02d872015-07-29 16:23:10 +0530229 }
Shawn Guo95ceafd2012-09-06 07:09:11 +0000230
Viresh Kumard2f31f12014-08-28 11:22:28 +0530231 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
232 if (!priv) {
233 ret = -ENOMEM;
Viresh Kumar2f0f6092014-11-25 16:04:21 +0530234 goto out_free_opp;
Viresh Kumard2f31f12014-08-28 11:22:28 +0530235 }
236
Viresh Kumar050794a2016-02-09 10:30:43 +0530237 priv->reg_name = name;
Shawn Guo95ceafd2012-09-06 07:09:11 +0000238
Lucas Stach045ee452014-10-24 15:05:55 +0200239 ret = dev_pm_opp_init_cpufreq_table(cpu_dev, &freq_table);
240 if (ret) {
Viresh Kumar896d6a42016-02-09 10:30:40 +0530241 dev_err(cpu_dev, "failed to init cpufreq table: %d\n", ret);
Lucas Stach045ee452014-10-24 15:05:55 +0200242 goto out_free_priv;
243 }
244
Viresh Kumard2f31f12014-08-28 11:22:28 +0530245 priv->cpu_dev = cpu_dev;
Viresh Kumard2f31f12014-08-28 11:22:28 +0530246 policy->driver_data = priv;
Viresh Kumard2f31f12014-08-28 11:22:28 +0530247 policy->clk = cpu_clk;
Bartlomiej Zolnierkiewicz953ba9f2015-09-08 18:41:03 +0200248
249 rcu_read_lock();
250 suspend_opp = dev_pm_opp_get_suspend_opp(cpu_dev);
251 if (suspend_opp)
252 policy->suspend_freq = dev_pm_opp_get_freq(suspend_opp) / 1000;
253 rcu_read_unlock();
254
Thomas Petazzoni34e5a522014-10-19 11:30:28 +0200255 ret = cpufreq_table_validate_and_show(policy, freq_table);
256 if (ret) {
257 dev_err(cpu_dev, "%s: invalid frequency table: %d\n", __func__,
258 ret);
Viresh Kumar9a004422014-11-27 06:07:52 +0530259 goto out_free_cpufreq_table;
Thomas Petazzoni34e5a522014-10-19 11:30:28 +0200260 }
261
Viresh Kumard15fa862015-07-29 16:23:11 +0530262 /* Support turbo/boost mode */
263 if (policy_has_boost_freq(policy)) {
264 /* This gets disabled by core on driver unregister */
265 ret = cpufreq_enable_boost_support();
266 if (ret)
267 goto out_free_cpufreq_table;
Bartlomiej Zolnierkiewicz21c36d32015-08-07 13:59:16 +0200268 cpufreq_dt_attr[1] = &cpufreq_freq_attr_scaling_boost_freqs;
Viresh Kumard15fa862015-07-29 16:23:11 +0530269 }
270
Viresh Kumar755b8882016-02-09 10:30:45 +0530271 transition_latency = dev_pm_opp_get_max_transition_latency(cpu_dev);
272 if (!transition_latency)
273 transition_latency = CPUFREQ_ETERNAL;
274
Thomas Petazzoni34e5a522014-10-19 11:30:28 +0200275 policy->cpuinfo.transition_latency = transition_latency;
276
Shawn Guo95ceafd2012-09-06 07:09:11 +0000277 return 0;
278
Viresh Kumar9a004422014-11-27 06:07:52 +0530279out_free_cpufreq_table:
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500280 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
Lucas Stach045ee452014-10-24 15:05:55 +0200281out_free_priv:
282 kfree(priv);
Viresh Kumar2f0f6092014-11-25 16:04:21 +0530283out_free_opp:
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530284 dev_pm_opp_of_cpumask_remove_table(policy->cpus);
Viresh Kumar050794a2016-02-09 10:30:43 +0530285 if (name)
286 dev_pm_opp_put_regulator(cpu_dev);
Viresh Kumardd02a3d2016-02-09 10:30:48 +0530287out_put_clk:
Viresh Kumard2f31f12014-08-28 11:22:28 +0530288 clk_put(cpu_clk);
Viresh Kumard2f31f12014-08-28 11:22:28 +0530289
290 return ret;
291}
292
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530293static int cpufreq_exit(struct cpufreq_policy *policy)
Viresh Kumard2f31f12014-08-28 11:22:28 +0530294{
295 struct private_data *priv = policy->driver_data;
296
Markus Elfring17ad13b2015-02-03 19:21:21 +0100297 cpufreq_cooling_unregister(priv->cdev);
Viresh Kumard2f31f12014-08-28 11:22:28 +0530298 dev_pm_opp_free_cpufreq_table(priv->cpu_dev, &policy->freq_table);
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530299 dev_pm_opp_of_cpumask_remove_table(policy->related_cpus);
Viresh Kumar050794a2016-02-09 10:30:43 +0530300 if (priv->reg_name)
301 dev_pm_opp_put_regulator(priv->cpu_dev);
302
Viresh Kumard2f31f12014-08-28 11:22:28 +0530303 clk_put(policy->clk);
Viresh Kumard2f31f12014-08-28 11:22:28 +0530304 kfree(priv);
305
306 return 0;
307}
308
Viresh Kumar9a004422014-11-27 06:07:52 +0530309static void cpufreq_ready(struct cpufreq_policy *policy)
310{
311 struct private_data *priv = policy->driver_data;
312 struct device_node *np = of_node_get(priv->cpu_dev->of_node);
313
314 if (WARN_ON(!np))
315 return;
316
317 /*
318 * For now, just loading the cooling device;
319 * thermal DT code takes care of matching them.
320 */
321 if (of_find_property(np, "#cooling-cells", NULL)) {
Punit Agrawalf8fa8ae2015-11-17 12:06:22 +0000322 u32 power_coefficient = 0;
323
324 of_property_read_u32(np, "dynamic-power-coefficient",
325 &power_coefficient);
326
327 priv->cdev = of_cpufreq_power_cooling_register(np,
328 policy->related_cpus, power_coefficient, NULL);
Viresh Kumar9a004422014-11-27 06:07:52 +0530329 if (IS_ERR(priv->cdev)) {
330 dev_err(priv->cpu_dev,
331 "running cpufreq without cooling device: %ld\n",
332 PTR_ERR(priv->cdev));
333
334 priv->cdev = NULL;
335 }
336 }
337
338 of_node_put(np);
339}
340
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530341static struct cpufreq_driver dt_cpufreq_driver = {
Viresh Kumard2f31f12014-08-28 11:22:28 +0530342 .flags = CPUFREQ_STICKY | CPUFREQ_NEED_INITIAL_FREQ_CHECK,
343 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530344 .target_index = set_target,
Viresh Kumard2f31f12014-08-28 11:22:28 +0530345 .get = cpufreq_generic_get,
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530346 .init = cpufreq_init,
347 .exit = cpufreq_exit,
Viresh Kumar9a004422014-11-27 06:07:52 +0530348 .ready = cpufreq_ready,
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530349 .name = "cpufreq-dt",
Bartlomiej Zolnierkiewicz21c36d32015-08-07 13:59:16 +0200350 .attr = cpufreq_dt_attr,
Bartlomiej Zolnierkiewicz953ba9f2015-09-08 18:41:03 +0200351 .suspend = cpufreq_generic_suspend,
Viresh Kumard2f31f12014-08-28 11:22:28 +0530352};
353
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530354static int dt_cpufreq_probe(struct platform_device *pdev)
Viresh Kumard2f31f12014-08-28 11:22:28 +0530355{
Viresh Kumard2f31f12014-08-28 11:22:28 +0530356 int ret;
357
358 /*
359 * All per-cluster (CPUs sharing clock/voltages) initialization is done
360 * from ->init(). In probe(), we just need to make sure that clk and
361 * regulators are available. Else defer probe and retry.
362 *
363 * FIXME: Is checking this only for CPU0 sufficient ?
364 */
Viresh Kumardd02a3d2016-02-09 10:30:48 +0530365 ret = resources_available();
Viresh Kumard2f31f12014-08-28 11:22:28 +0530366 if (ret)
367 return ret;
368
Thomas Petazzoni34e5a522014-10-19 11:30:28 +0200369 dt_cpufreq_driver.driver_data = dev_get_platdata(&pdev->dev);
370
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530371 ret = cpufreq_register_driver(&dt_cpufreq_driver);
Viresh Kumard2f31f12014-08-28 11:22:28 +0530372 if (ret)
Viresh Kumardd02a3d2016-02-09 10:30:48 +0530373 dev_err(&pdev->dev, "failed register driver: %d\n", ret);
Viresh Kumard2f31f12014-08-28 11:22:28 +0530374
Shawn Guo95ceafd2012-09-06 07:09:11 +0000375 return ret;
376}
Shawn Guo5553f9e2013-01-30 14:27:49 +0000377
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530378static int dt_cpufreq_remove(struct platform_device *pdev)
Shawn Guo5553f9e2013-01-30 14:27:49 +0000379{
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530380 cpufreq_unregister_driver(&dt_cpufreq_driver);
Shawn Guo5553f9e2013-01-30 14:27:49 +0000381 return 0;
382}
383
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530384static struct platform_driver dt_cpufreq_platdrv = {
Shawn Guo5553f9e2013-01-30 14:27:49 +0000385 .driver = {
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530386 .name = "cpufreq-dt",
Shawn Guo5553f9e2013-01-30 14:27:49 +0000387 },
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530388 .probe = dt_cpufreq_probe,
389 .remove = dt_cpufreq_remove,
Shawn Guo5553f9e2013-01-30 14:27:49 +0000390};
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530391module_platform_driver(dt_cpufreq_platdrv);
Shawn Guo95ceafd2012-09-06 07:09:11 +0000392
Felipe Balbi07949bf2015-05-08 14:57:30 -0500393MODULE_ALIAS("platform:cpufreq-dt");
Viresh Kumar748c8762014-08-28 11:22:24 +0530394MODULE_AUTHOR("Viresh Kumar <viresh.kumar@linaro.org>");
Shawn Guo95ceafd2012-09-06 07:09:11 +0000395MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>");
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530396MODULE_DESCRIPTION("Generic cpufreq driver");
Shawn Guo95ceafd2012-09-06 07:09:11 +0000397MODULE_LICENSE("GPL");