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 opp_table
*opp_table
;
33 struct cpufreq_frequency_table
*freq_table
;
34 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
;
146 dev_pm_opp_of_register_em(cpu_dev
, policy
->cpus
);
156 static int cpufreq_online(struct cpufreq_policy
*policy
)
158 /* We did light-weight tear down earlier, nothing to do here */
162 static int cpufreq_offline(struct cpufreq_policy
*policy
)
165 * Preserve policy->driver_data and don't free resources on light-weight
171 static int cpufreq_exit(struct cpufreq_policy
*policy
)
173 clk_put(policy
->clk
);
177 static struct cpufreq_driver dt_cpufreq_driver
= {
178 .flags
= CPUFREQ_STICKY
| CPUFREQ_NEED_INITIAL_FREQ_CHECK
|
179 CPUFREQ_IS_COOLING_DEV
,
180 .verify
= cpufreq_generic_frequency_table_verify
,
181 .target_index
= set_target
,
182 .get
= cpufreq_generic_get
,
183 .init
= cpufreq_init
,
184 .exit
= cpufreq_exit
,
185 .online
= cpufreq_online
,
186 .offline
= cpufreq_offline
,
187 .name
= "cpufreq-dt",
188 .attr
= cpufreq_dt_attr
,
189 .suspend
= cpufreq_generic_suspend
,
192 static int dt_cpufreq_early_init(struct device
*dev
, int cpu
)
194 struct private_data
*priv
;
195 struct device
*cpu_dev
;
196 bool fallback
= false;
197 const char *reg_name
;
200 /* Check if this CPU is already covered by some other policy */
201 if (cpufreq_dt_find_data(cpu
))
204 cpu_dev
= get_cpu_device(cpu
);
206 return -EPROBE_DEFER
;
208 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
212 if (!alloc_cpumask_var(&priv
->cpus
, GFP_KERNEL
))
215 cpumask_set_cpu(cpu
, priv
->cpus
);
216 priv
->cpu_dev
= cpu_dev
;
219 * OPP layer will be taking care of regulators now, but it needs to know
220 * the name of the regulator first.
222 reg_name
= find_supply_name(cpu_dev
);
224 priv
->opp_table
= dev_pm_opp_set_regulators(cpu_dev
, ®_name
,
226 if (IS_ERR(priv
->opp_table
)) {
227 ret
= PTR_ERR(priv
->opp_table
);
228 if (ret
!= -EPROBE_DEFER
)
229 dev_err(cpu_dev
, "failed to set regulators: %d\n",
235 /* Get OPP-sharing information from "operating-points-v2" bindings */
236 ret
= dev_pm_opp_of_get_sharing_cpus(cpu_dev
, priv
->cpus
);
242 * operating-points-v2 not supported, fallback to all CPUs share
243 * OPP for backward compatibility if the platform hasn't set
246 if (dev_pm_opp_get_sharing_cpus(cpu_dev
, priv
->cpus
))
251 * Initialize OPP tables for all priv->cpus. They will be shared by
252 * all CPUs which have marked their CPUs shared with OPP bindings.
254 * For platforms not using operating-points-v2 bindings, we do this
255 * before updating priv->cpus. Otherwise, we will end up creating
256 * duplicate OPPs for the CPUs.
258 * OPPs might be populated at runtime, don't check for error here.
260 if (!dev_pm_opp_of_cpumask_add_table(priv
->cpus
))
261 priv
->have_static_opps
= true;
264 * The OPP table must be initialized, statically or dynamically, by this
267 ret
= dev_pm_opp_get_opp_count(cpu_dev
);
269 dev_err(cpu_dev
, "OPP table can't be empty\n");
275 cpumask_setall(priv
->cpus
);
276 ret
= dev_pm_opp_set_sharing_cpus(cpu_dev
, priv
->cpus
);
278 dev_err(cpu_dev
, "%s: failed to mark OPPs as shared: %d\n",
282 ret
= dev_pm_opp_init_cpufreq_table(cpu_dev
, &priv
->freq_table
);
284 dev_err(cpu_dev
, "failed to init cpufreq table: %d\n", ret
);
288 list_add(&priv
->node
, &priv_list
);
292 if (priv
->have_static_opps
)
293 dev_pm_opp_of_cpumask_remove_table(priv
->cpus
);
294 dev_pm_opp_put_regulators(priv
->opp_table
);
296 free_cpumask_var(priv
->cpus
);
300 static void dt_cpufreq_release(void)
302 struct private_data
*priv
, *tmp
;
304 list_for_each_entry_safe(priv
, tmp
, &priv_list
, node
) {
305 dev_pm_opp_free_cpufreq_table(priv
->cpu_dev
, &priv
->freq_table
);
306 if (priv
->have_static_opps
)
307 dev_pm_opp_of_cpumask_remove_table(priv
->cpus
);
308 dev_pm_opp_put_regulators(priv
->opp_table
);
309 free_cpumask_var(priv
->cpus
);
310 list_del(&priv
->node
);
314 static int dt_cpufreq_probe(struct platform_device
*pdev
)
316 struct cpufreq_dt_platform_data
*data
= dev_get_platdata(&pdev
->dev
);
319 /* Request resources early so we can return in case of -EPROBE_DEFER */
320 for_each_possible_cpu(cpu
) {
321 ret
= dt_cpufreq_early_init(&pdev
->dev
, cpu
);
327 if (data
->have_governor_per_policy
)
328 dt_cpufreq_driver
.flags
|= CPUFREQ_HAVE_GOVERNOR_PER_POLICY
;
330 dt_cpufreq_driver
.resume
= data
->resume
;
332 dt_cpufreq_driver
.suspend
= data
->suspend
;
333 if (data
->get_intermediate
) {
334 dt_cpufreq_driver
.target_intermediate
= data
->target_intermediate
;
335 dt_cpufreq_driver
.get_intermediate
= data
->get_intermediate
;
339 ret
= cpufreq_register_driver(&dt_cpufreq_driver
);
341 dev_err(&pdev
->dev
, "failed register driver: %d\n", ret
);
347 dt_cpufreq_release();
351 static int dt_cpufreq_remove(struct platform_device
*pdev
)
353 cpufreq_unregister_driver(&dt_cpufreq_driver
);
354 dt_cpufreq_release();
358 static struct platform_driver dt_cpufreq_platdrv
= {
360 .name
= "cpufreq-dt",
362 .probe
= dt_cpufreq_probe
,
363 .remove
= dt_cpufreq_remove
,
365 module_platform_driver(dt_cpufreq_platdrv
);
367 MODULE_ALIAS("platform:cpufreq-dt");
368 MODULE_AUTHOR("Viresh Kumar <viresh.kumar@linaro.org>");
369 MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>");
370 MODULE_DESCRIPTION("Generic cpufreq driver");
371 MODULE_LICENSE("GPL");