1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2012 Freescale Semiconductor, Inc.
5 * Copyright (C) 2014 Linaro.
6 * Viresh Kumar <viresh.kumar@linaro.org>
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 #include <linux/clk.h>
12 #include <linux/cpu.h>
13 #include <linux/cpufreq.h>
14 #include <linux/cpumask.h>
15 #include <linux/err.h>
16 #include <linux/list.h>
17 #include <linux/module.h>
19 #include <linux/pm_opp.h>
20 #include <linux/platform_device.h>
21 #include <linux/regulator/consumer.h>
22 #include <linux/slab.h>
23 #include <linux/thermal.h>
25 #include "cpufreq-dt.h"
28 struct list_head node;
31 struct device *cpu_dev;
32 struct cpufreq_frequency_table *freq_table;
33 bool have_static_opps;
37 static LIST_HEAD(priv_list);
39 static struct freq_attr *cpufreq_dt_attr[] = {
40 &cpufreq_freq_attr_scaling_available_freqs,
41 NULL, /* Extra space for boost-attr if required */
45 static struct private_data *cpufreq_dt_find_data(int cpu)
47 struct private_data *priv;
49 list_for_each_entry(priv, &priv_list, node) {
50 if (cpumask_test_cpu(cpu, priv->cpus))
57 static int set_target(struct cpufreq_policy *policy, unsigned int index)
59 struct private_data *priv = policy->driver_data;
60 unsigned long freq = policy->freq_table[index].frequency;
62 return dev_pm_opp_set_rate(priv->cpu_dev, freq * 1000);
66 * An earlier version of opp-v1 bindings used to name the regulator
67 * "cpu0-supply", we still need to handle that for backwards compatibility.
69 static const char *find_supply_name(struct device *dev)
71 struct device_node *np;
74 const char *name = NULL;
76 np = of_node_get(dev->of_node);
78 /* This must be valid for sure */
82 /* Try "cpu0" for older DTs */
84 pp = of_find_property(np, "cpu0-supply", NULL);
91 pp = of_find_property(np, "cpu-supply", NULL);
97 dev_dbg(dev, "no regulator for cpu%d\n", cpu);
103 static int cpufreq_init(struct cpufreq_policy *policy)
105 struct private_data *priv;
106 struct device *cpu_dev;
108 unsigned int transition_latency;
111 priv = cpufreq_dt_find_data(policy->cpu);
113 pr_err("failed to find data for cpu%d\n", policy->cpu);
116 cpu_dev = priv->cpu_dev;
118 cpu_clk = clk_get(cpu_dev, NULL);
119 if (IS_ERR(cpu_clk)) {
120 ret = PTR_ERR(cpu_clk);
121 dev_err(cpu_dev, "%s: failed to get clk: %d\n", __func__, ret);
125 transition_latency = dev_pm_opp_get_max_transition_latency(cpu_dev);
126 if (!transition_latency)
127 transition_latency = CPUFREQ_ETERNAL;
129 cpumask_copy(policy->cpus, priv->cpus);
130 policy->driver_data = priv;
131 policy->clk = cpu_clk;
132 policy->freq_table = priv->freq_table;
133 policy->suspend_freq = dev_pm_opp_get_suspend_opp_freq(cpu_dev) / 1000;
134 policy->cpuinfo.transition_latency = transition_latency;
135 policy->dvfs_possible_from_any_cpu = true;
137 /* Support turbo/boost mode */
138 if (policy_has_boost_freq(policy)) {
139 /* This gets disabled by core on driver unregister */
140 ret = cpufreq_enable_boost_support();
143 cpufreq_dt_attr[1] = &cpufreq_freq_attr_scaling_boost_freqs;
154 static int cpufreq_online(struct cpufreq_policy *policy)
156 /* We did light-weight tear down earlier, nothing to do here */
160 static int cpufreq_offline(struct cpufreq_policy *policy)
163 * Preserve policy->driver_data and don't free resources on light-weight
169 static int cpufreq_exit(struct cpufreq_policy *policy)
171 clk_put(policy->clk);
175 static struct cpufreq_driver dt_cpufreq_driver = {
176 .flags = CPUFREQ_NEED_INITIAL_FREQ_CHECK |
177 CPUFREQ_IS_COOLING_DEV,
178 .verify = cpufreq_generic_frequency_table_verify,
179 .target_index = set_target,
180 .get = cpufreq_generic_get,
181 .init = cpufreq_init,
182 .exit = cpufreq_exit,
183 .online = cpufreq_online,
184 .offline = cpufreq_offline,
185 .register_em = cpufreq_register_em_with_opp,
186 .name = "cpufreq-dt",
187 .attr = cpufreq_dt_attr,
188 .suspend = cpufreq_generic_suspend,
191 static int dt_cpufreq_early_init(struct device *dev, int cpu)
193 struct private_data *priv;
194 struct device *cpu_dev;
195 bool fallback = false;
196 const char *reg_name[] = { NULL, NULL };
199 /* Check if this CPU is already covered by some other policy */
200 if (cpufreq_dt_find_data(cpu))
203 cpu_dev = get_cpu_device(cpu);
205 return -EPROBE_DEFER;
207 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
211 if (!alloc_cpumask_var(&priv->cpus, GFP_KERNEL))
214 cpumask_set_cpu(cpu, priv->cpus);
215 priv->cpu_dev = cpu_dev;
218 * OPP layer will be taking care of regulators now, but it needs to know
219 * the name of the regulator first.
221 reg_name[0] = find_supply_name(cpu_dev);
223 priv->opp_token = dev_pm_opp_set_regulators(cpu_dev, reg_name);
224 if (priv->opp_token < 0) {
225 ret = dev_err_probe(cpu_dev, priv->opp_token,
226 "failed to set regulators\n");
231 /* Get OPP-sharing information from "operating-points-v2" bindings */
232 ret = dev_pm_opp_of_get_sharing_cpus(cpu_dev, priv->cpus);
238 * operating-points-v2 not supported, fallback to all CPUs share
239 * OPP for backward compatibility if the platform hasn't set
242 if (dev_pm_opp_get_sharing_cpus(cpu_dev, priv->cpus))
247 * Initialize OPP tables for all priv->cpus. They will be shared by
248 * all CPUs which have marked their CPUs shared with OPP bindings.
250 * For platforms not using operating-points-v2 bindings, we do this
251 * before updating priv->cpus. Otherwise, we will end up creating
252 * duplicate OPPs for the CPUs.
254 * OPPs might be populated at runtime, don't fail for error here unless
255 * it is -EPROBE_DEFER.
257 ret = dev_pm_opp_of_cpumask_add_table(priv->cpus);
259 priv->have_static_opps = true;
260 } else if (ret == -EPROBE_DEFER) {
265 * The OPP table must be initialized, statically or dynamically, by this
268 ret = dev_pm_opp_get_opp_count(cpu_dev);
270 dev_err(cpu_dev, "OPP table can't be empty\n");
276 cpumask_setall(priv->cpus);
277 ret = dev_pm_opp_set_sharing_cpus(cpu_dev, priv->cpus);
279 dev_err(cpu_dev, "%s: failed to mark OPPs as shared: %d\n",
283 ret = dev_pm_opp_init_cpufreq_table(cpu_dev, &priv->freq_table);
285 dev_err(cpu_dev, "failed to init cpufreq table: %d\n", ret);
289 list_add(&priv->node, &priv_list);
293 if (priv->have_static_opps)
294 dev_pm_opp_of_cpumask_remove_table(priv->cpus);
295 dev_pm_opp_put_regulators(priv->opp_token);
297 free_cpumask_var(priv->cpus);
301 static void dt_cpufreq_release(void)
303 struct private_data *priv, *tmp;
305 list_for_each_entry_safe(priv, tmp, &priv_list, node) {
306 dev_pm_opp_free_cpufreq_table(priv->cpu_dev, &priv->freq_table);
307 if (priv->have_static_opps)
308 dev_pm_opp_of_cpumask_remove_table(priv->cpus);
309 dev_pm_opp_put_regulators(priv->opp_token);
310 free_cpumask_var(priv->cpus);
311 list_del(&priv->node);
315 static int dt_cpufreq_probe(struct platform_device *pdev)
317 struct cpufreq_dt_platform_data *data = dev_get_platdata(&pdev->dev);
320 /* Request resources early so we can return in case of -EPROBE_DEFER */
321 for_each_possible_cpu(cpu) {
322 ret = dt_cpufreq_early_init(&pdev->dev, cpu);
328 if (data->have_governor_per_policy)
329 dt_cpufreq_driver.flags |= CPUFREQ_HAVE_GOVERNOR_PER_POLICY;
331 dt_cpufreq_driver.resume = data->resume;
333 dt_cpufreq_driver.suspend = data->suspend;
334 if (data->get_intermediate) {
335 dt_cpufreq_driver.target_intermediate = data->target_intermediate;
336 dt_cpufreq_driver.get_intermediate = data->get_intermediate;
340 ret = cpufreq_register_driver(&dt_cpufreq_driver);
342 dev_err(&pdev->dev, "failed register driver: %d\n", ret);
348 dt_cpufreq_release();
352 static int dt_cpufreq_remove(struct platform_device *pdev)
354 cpufreq_unregister_driver(&dt_cpufreq_driver);
355 dt_cpufreq_release();
359 static struct platform_driver dt_cpufreq_platdrv = {
361 .name = "cpufreq-dt",
363 .probe = dt_cpufreq_probe,
364 .remove = dt_cpufreq_remove,
366 module_platform_driver(dt_cpufreq_platdrv);
368 MODULE_ALIAS("platform:cpufreq-dt");
369 MODULE_AUTHOR("Viresh Kumar <viresh.kumar@linaro.org>");
370 MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>");
371 MODULE_DESCRIPTION("Generic cpufreq driver");
372 MODULE_LICENSE("GPL");