1 // SPDX-License-Identifier: GPL-2.0
3 * Versatile Express SPC CPUFreq Interface driver
5 * Copyright (C) 2013 - 2019 ARM Ltd.
6 * Sudeep Holla <sudeep.holla@arm.com>
8 * Copyright (C) 2013 Linaro.
9 * Viresh Kumar <viresh.kumar@linaro.org>
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/clk.h>
15 #include <linux/cpu.h>
16 #include <linux/cpufreq.h>
17 #include <linux/cpumask.h>
18 #include <linux/device.h>
19 #include <linux/module.h>
20 #include <linux/mutex.h>
21 #include <linux/of_platform.h>
22 #include <linux/platform_device.h>
23 #include <linux/pm_opp.h>
24 #include <linux/slab.h>
25 #include <linux/topology.h>
26 #include <linux/types.h>
28 /* Currently we support only two clusters */
31 #define MAX_CLUSTERS 2
33 #ifdef CONFIG_BL_SWITCHER
34 #include <asm/bL_switcher.h>
35 static bool bL_switching_enabled;
36 #define is_bL_switching_enabled() bL_switching_enabled
37 #define set_switching_enabled(x) (bL_switching_enabled = (x))
39 #define is_bL_switching_enabled() false
40 #define set_switching_enabled(x) do { } while (0)
41 #define bL_switch_request(...) do { } while (0)
42 #define bL_switcher_put_enabled() do { } while (0)
43 #define bL_switcher_get_enabled() do { } while (0)
46 #define ACTUAL_FREQ(cluster, freq) ((cluster == A7_CLUSTER) ? freq << 1 : freq)
47 #define VIRT_FREQ(cluster, freq) ((cluster == A7_CLUSTER) ? freq >> 1 : freq)
49 static struct clk *clk[MAX_CLUSTERS];
50 static struct cpufreq_frequency_table *freq_table[MAX_CLUSTERS + 1];
51 static atomic_t cluster_usage[MAX_CLUSTERS + 1];
53 static unsigned int clk_big_min; /* (Big) clock frequencies */
54 static unsigned int clk_little_max; /* Maximum clock frequency (Little) */
56 static DEFINE_PER_CPU(unsigned int, physical_cluster);
57 static DEFINE_PER_CPU(unsigned int, cpu_last_req_freq);
59 static struct mutex cluster_lock[MAX_CLUSTERS];
61 static inline int raw_cpu_to_cluster(int cpu)
63 return topology_physical_package_id(cpu);
66 static inline int cpu_to_cluster(int cpu)
68 return is_bL_switching_enabled() ?
69 MAX_CLUSTERS : raw_cpu_to_cluster(cpu);
72 static unsigned int find_cluster_maxfreq(int cluster)
75 u32 max_freq = 0, cpu_freq;
77 for_each_online_cpu(j) {
78 cpu_freq = per_cpu(cpu_last_req_freq, j);
80 if (cluster == per_cpu(physical_cluster, j) &&
88 static unsigned int clk_get_cpu_rate(unsigned int cpu)
90 u32 cur_cluster = per_cpu(physical_cluster, cpu);
91 u32 rate = clk_get_rate(clk[cur_cluster]) / 1000;
93 /* For switcher we use virtual A7 clock rates */
94 if (is_bL_switching_enabled())
95 rate = VIRT_FREQ(cur_cluster, rate);
100 static unsigned int ve_spc_cpufreq_get_rate(unsigned int cpu)
102 if (is_bL_switching_enabled())
103 return per_cpu(cpu_last_req_freq, cpu);
105 return clk_get_cpu_rate(cpu);
109 ve_spc_cpufreq_set_rate(u32 cpu, u32 old_cluster, u32 new_cluster, u32 rate)
111 u32 new_rate, prev_rate;
113 bool bLs = is_bL_switching_enabled();
115 mutex_lock(&cluster_lock[new_cluster]);
118 prev_rate = per_cpu(cpu_last_req_freq, cpu);
119 per_cpu(cpu_last_req_freq, cpu) = rate;
120 per_cpu(physical_cluster, cpu) = new_cluster;
122 new_rate = find_cluster_maxfreq(new_cluster);
123 new_rate = ACTUAL_FREQ(new_cluster, new_rate);
128 ret = clk_set_rate(clk[new_cluster], new_rate * 1000);
131 * FIXME: clk_set_rate hasn't returned an error here however it
132 * may be that clk_change_rate failed due to hardware or
133 * firmware issues and wasn't able to report that due to the
134 * current design of the clk core layer. To work around this
135 * problem we will read back the clock rate and check it is
136 * correct. This needs to be removed once clk core is fixed.
138 if (clk_get_rate(clk[new_cluster]) != new_rate * 1000)
144 per_cpu(cpu_last_req_freq, cpu) = prev_rate;
145 per_cpu(physical_cluster, cpu) = old_cluster;
148 mutex_unlock(&cluster_lock[new_cluster]);
153 mutex_unlock(&cluster_lock[new_cluster]);
155 /* Recalc freq for old cluster when switching clusters */
156 if (old_cluster != new_cluster) {
158 bL_switch_request(cpu, new_cluster);
160 mutex_lock(&cluster_lock[old_cluster]);
162 /* Set freq of old cluster if there are cpus left on it */
163 new_rate = find_cluster_maxfreq(old_cluster);
164 new_rate = ACTUAL_FREQ(old_cluster, new_rate);
167 clk_set_rate(clk[old_cluster], new_rate * 1000)) {
168 pr_err("%s: clk_set_rate failed: %d, old cluster: %d\n",
169 __func__, ret, old_cluster);
171 mutex_unlock(&cluster_lock[old_cluster]);
177 /* Set clock frequency */
178 static int ve_spc_cpufreq_set_target(struct cpufreq_policy *policy,
181 u32 cpu = policy->cpu, cur_cluster, new_cluster, actual_cluster;
182 unsigned int freqs_new;
184 cur_cluster = cpu_to_cluster(cpu);
185 new_cluster = actual_cluster = per_cpu(physical_cluster, cpu);
187 freqs_new = freq_table[cur_cluster][index].frequency;
189 if (is_bL_switching_enabled()) {
190 if (actual_cluster == A15_CLUSTER && freqs_new < clk_big_min)
191 new_cluster = A7_CLUSTER;
192 else if (actual_cluster == A7_CLUSTER &&
193 freqs_new > clk_little_max)
194 new_cluster = A15_CLUSTER;
197 return ve_spc_cpufreq_set_rate(cpu, actual_cluster, new_cluster,
201 static inline u32 get_table_count(struct cpufreq_frequency_table *table)
205 for (count = 0; table[count].frequency != CPUFREQ_TABLE_END; count++)
211 /* get the minimum frequency in the cpufreq_frequency_table */
212 static inline u32 get_table_min(struct cpufreq_frequency_table *table)
214 struct cpufreq_frequency_table *pos;
217 cpufreq_for_each_entry(pos, table)
218 if (pos->frequency < min_freq)
219 min_freq = pos->frequency;
223 /* get the maximum frequency in the cpufreq_frequency_table */
224 static inline u32 get_table_max(struct cpufreq_frequency_table *table)
226 struct cpufreq_frequency_table *pos;
229 cpufreq_for_each_entry(pos, table)
230 if (pos->frequency > max_freq)
231 max_freq = pos->frequency;
235 static bool search_frequency(struct cpufreq_frequency_table *table, int size,
240 for (count = 0; count < size; count++) {
241 if (table[count].frequency == freq)
248 static int merge_cluster_tables(void)
250 int i, j, k = 0, count = 1;
251 struct cpufreq_frequency_table *table;
253 for (i = 0; i < MAX_CLUSTERS; i++)
254 count += get_table_count(freq_table[i]);
256 table = kcalloc(count, sizeof(*table), GFP_KERNEL);
260 freq_table[MAX_CLUSTERS] = table;
262 /* Add in reverse order to get freqs in increasing order */
263 for (i = MAX_CLUSTERS - 1; i >= 0; i--, count = k) {
264 for (j = 0; freq_table[i][j].frequency != CPUFREQ_TABLE_END;
266 if (i == A15_CLUSTER &&
267 search_frequency(table, count, freq_table[i][j].frequency))
268 continue; /* skip duplicates */
269 table[k++].frequency =
270 VIRT_FREQ(i, freq_table[i][j].frequency);
274 table[k].driver_data = k;
275 table[k].frequency = CPUFREQ_TABLE_END;
280 static void _put_cluster_clk_and_freq_table(struct device *cpu_dev,
281 const struct cpumask *cpumask)
283 u32 cluster = raw_cpu_to_cluster(cpu_dev->id);
285 if (!freq_table[cluster])
288 clk_put(clk[cluster]);
289 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table[cluster]);
292 static void put_cluster_clk_and_freq_table(struct device *cpu_dev,
293 const struct cpumask *cpumask)
295 u32 cluster = cpu_to_cluster(cpu_dev->id);
298 if (atomic_dec_return(&cluster_usage[cluster]))
301 if (cluster < MAX_CLUSTERS)
302 return _put_cluster_clk_and_freq_table(cpu_dev, cpumask);
304 for_each_present_cpu(i) {
305 struct device *cdev = get_cpu_device(i);
310 _put_cluster_clk_and_freq_table(cdev, cpumask);
313 /* free virtual table */
314 kfree(freq_table[cluster]);
317 static int _get_cluster_clk_and_freq_table(struct device *cpu_dev,
318 const struct cpumask *cpumask)
320 u32 cluster = raw_cpu_to_cluster(cpu_dev->id);
323 if (freq_table[cluster])
327 * platform specific SPC code must initialise the opp table
328 * so just check if the OPP count is non-zero
330 ret = dev_pm_opp_get_opp_count(cpu_dev) <= 0;
334 ret = dev_pm_opp_init_cpufreq_table(cpu_dev, &freq_table[cluster]);
338 clk[cluster] = clk_get(cpu_dev, NULL);
339 if (!IS_ERR(clk[cluster]))
342 dev_err(cpu_dev, "%s: Failed to get clk for cpu: %d, cluster: %d\n",
343 __func__, cpu_dev->id, cluster);
344 ret = PTR_ERR(clk[cluster]);
345 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table[cluster]);
348 dev_err(cpu_dev, "%s: Failed to get data for cluster: %d\n", __func__,
353 static int get_cluster_clk_and_freq_table(struct device *cpu_dev,
354 const struct cpumask *cpumask)
356 u32 cluster = cpu_to_cluster(cpu_dev->id);
359 if (atomic_inc_return(&cluster_usage[cluster]) != 1)
362 if (cluster < MAX_CLUSTERS) {
363 ret = _get_cluster_clk_and_freq_table(cpu_dev, cpumask);
365 atomic_dec(&cluster_usage[cluster]);
370 * Get data for all clusters and fill virtual cluster with a merge of
373 for_each_present_cpu(i) {
374 struct device *cdev = get_cpu_device(i);
379 ret = _get_cluster_clk_and_freq_table(cdev, cpumask);
384 ret = merge_cluster_tables();
388 /* Assuming 2 cluster, set clk_big_min and clk_little_max */
389 clk_big_min = get_table_min(freq_table[A15_CLUSTER]);
390 clk_little_max = VIRT_FREQ(A7_CLUSTER,
391 get_table_max(freq_table[A7_CLUSTER]));
396 for_each_present_cpu(i) {
397 struct device *cdev = get_cpu_device(i);
402 _put_cluster_clk_and_freq_table(cdev, cpumask);
405 atomic_dec(&cluster_usage[cluster]);
410 /* Per-CPU initialization */
411 static int ve_spc_cpufreq_init(struct cpufreq_policy *policy)
413 u32 cur_cluster = cpu_to_cluster(policy->cpu);
414 struct device *cpu_dev;
417 cpu_dev = get_cpu_device(policy->cpu);
419 pr_err("%s: failed to get cpu%d device\n", __func__,
424 if (cur_cluster < MAX_CLUSTERS) {
427 dev_pm_opp_get_sharing_cpus(cpu_dev, policy->cpus);
429 for_each_cpu(cpu, policy->cpus)
430 per_cpu(physical_cluster, cpu) = cur_cluster;
432 /* Assumption: during init, we are always running on A15 */
433 per_cpu(physical_cluster, policy->cpu) = A15_CLUSTER;
436 ret = get_cluster_clk_and_freq_table(cpu_dev, policy->cpus);
440 policy->freq_table = freq_table[cur_cluster];
441 policy->cpuinfo.transition_latency = 1000000; /* 1 ms */
443 if (is_bL_switching_enabled())
444 per_cpu(cpu_last_req_freq, policy->cpu) =
445 clk_get_cpu_rate(policy->cpu);
447 dev_info(cpu_dev, "%s: CPU %d initialized\n", __func__, policy->cpu);
451 static int ve_spc_cpufreq_exit(struct cpufreq_policy *policy)
453 struct device *cpu_dev;
455 cpu_dev = get_cpu_device(policy->cpu);
457 pr_err("%s: failed to get cpu%d device\n", __func__,
462 put_cluster_clk_and_freq_table(cpu_dev, policy->related_cpus);
466 static struct cpufreq_driver ve_spc_cpufreq_driver = {
467 .name = "vexpress-spc",
468 .flags = CPUFREQ_HAVE_GOVERNOR_PER_POLICY |
469 CPUFREQ_NEED_INITIAL_FREQ_CHECK,
470 .verify = cpufreq_generic_frequency_table_verify,
471 .target_index = ve_spc_cpufreq_set_target,
472 .get = ve_spc_cpufreq_get_rate,
473 .init = ve_spc_cpufreq_init,
474 .exit = ve_spc_cpufreq_exit,
475 .register_em = cpufreq_register_em_with_opp,
476 .attr = cpufreq_generic_attr,
479 #ifdef CONFIG_BL_SWITCHER
480 static int bL_cpufreq_switcher_notifier(struct notifier_block *nfb,
481 unsigned long action, void *_arg)
483 pr_debug("%s: action: %ld\n", __func__, action);
486 case BL_NOTIFY_PRE_ENABLE:
487 case BL_NOTIFY_PRE_DISABLE:
488 cpufreq_unregister_driver(&ve_spc_cpufreq_driver);
491 case BL_NOTIFY_POST_ENABLE:
492 set_switching_enabled(true);
493 cpufreq_register_driver(&ve_spc_cpufreq_driver);
496 case BL_NOTIFY_POST_DISABLE:
497 set_switching_enabled(false);
498 cpufreq_register_driver(&ve_spc_cpufreq_driver);
508 static struct notifier_block bL_switcher_notifier = {
509 .notifier_call = bL_cpufreq_switcher_notifier,
512 static int __bLs_register_notifier(void)
514 return bL_switcher_register_notifier(&bL_switcher_notifier);
517 static int __bLs_unregister_notifier(void)
519 return bL_switcher_unregister_notifier(&bL_switcher_notifier);
522 static int __bLs_register_notifier(void) { return 0; }
523 static int __bLs_unregister_notifier(void) { return 0; }
526 static int ve_spc_cpufreq_probe(struct platform_device *pdev)
530 set_switching_enabled(bL_switcher_get_enabled());
532 for (i = 0; i < MAX_CLUSTERS; i++)
533 mutex_init(&cluster_lock[i]);
535 if (!is_bL_switching_enabled())
536 ve_spc_cpufreq_driver.flags |= CPUFREQ_IS_COOLING_DEV;
538 ret = cpufreq_register_driver(&ve_spc_cpufreq_driver);
540 pr_info("%s: Failed registering platform driver: %s, err: %d\n",
541 __func__, ve_spc_cpufreq_driver.name, ret);
543 ret = __bLs_register_notifier();
545 cpufreq_unregister_driver(&ve_spc_cpufreq_driver);
547 pr_info("%s: Registered platform driver: %s\n",
548 __func__, ve_spc_cpufreq_driver.name);
551 bL_switcher_put_enabled();
555 static int ve_spc_cpufreq_remove(struct platform_device *pdev)
557 bL_switcher_get_enabled();
558 __bLs_unregister_notifier();
559 cpufreq_unregister_driver(&ve_spc_cpufreq_driver);
560 bL_switcher_put_enabled();
561 pr_info("%s: Un-registered platform driver: %s\n", __func__,
562 ve_spc_cpufreq_driver.name);
566 static struct platform_driver ve_spc_cpufreq_platdrv = {
568 .name = "vexpress-spc-cpufreq",
570 .probe = ve_spc_cpufreq_probe,
571 .remove = ve_spc_cpufreq_remove,
573 module_platform_driver(ve_spc_cpufreq_platdrv);
575 MODULE_ALIAS("platform:vexpress-spc-cpufreq");
576 MODULE_AUTHOR("Viresh Kumar <viresh.kumar@linaro.org>");
577 MODULE_AUTHOR("Sudeep Holla <sudeep.holla@arm.com>");
578 MODULE_DESCRIPTION("Vexpress SPC ARM big LITTLE cpufreq driver");
579 MODULE_LICENSE("GPL v2");