2 * System Control and Power Interface (SCPI) based CPUFreq Interface driver
4 * It provides necessary ops to arm_big_little cpufreq driver.
6 * Copyright (C) 2015 ARM Ltd.
7 * Sudeep Holla <sudeep.holla@arm.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
13 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
14 * kind, whether express or implied; without even the implied warranty
15 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
19 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21 #include <linux/clk.h>
22 #include <linux/cpu.h>
23 #include <linux/cpufreq.h>
24 #include <linux/cpumask.h>
25 #include <linux/export.h>
26 #include <linux/module.h>
27 #include <linux/of_platform.h>
28 #include <linux/pm_opp.h>
29 #include <linux/scpi_protocol.h>
30 #include <linux/slab.h>
31 #include <linux/types.h>
35 struct device *cpu_dev;
38 static struct scpi_ops *scpi_ops;
40 static unsigned int scpi_cpufreq_get_rate(unsigned int cpu)
42 struct cpufreq_policy *policy = cpufreq_cpu_get_raw(cpu);
43 struct scpi_data *priv = policy->driver_data;
44 unsigned long rate = clk_get_rate(priv->clk);
50 scpi_cpufreq_set_target(struct cpufreq_policy *policy, unsigned int index)
52 unsigned long freq = policy->freq_table[index].frequency;
53 struct scpi_data *priv = policy->driver_data;
54 u64 rate = freq * 1000;
57 ret = clk_set_rate(priv->clk, rate);
62 if (clk_get_rate(priv->clk) != rate)
65 arch_set_freq_scale(policy->related_cpus, freq,
66 policy->cpuinfo.max_freq);
72 scpi_get_sharing_cpus(struct device *cpu_dev, struct cpumask *cpumask)
74 int cpu, domain, tdomain;
75 struct device *tcpu_dev;
77 domain = scpi_ops->device_domain_id(cpu_dev);
81 for_each_possible_cpu(cpu) {
82 if (cpu == cpu_dev->id)
85 tcpu_dev = get_cpu_device(cpu);
89 tdomain = scpi_ops->device_domain_id(tcpu_dev);
90 if (tdomain == domain)
91 cpumask_set_cpu(cpu, cpumask);
97 static int scpi_cpufreq_init(struct cpufreq_policy *policy)
100 unsigned int latency;
101 struct device *cpu_dev;
102 struct scpi_data *priv;
103 struct cpufreq_frequency_table *freq_table;
105 cpu_dev = get_cpu_device(policy->cpu);
107 pr_err("failed to get cpu%d device\n", policy->cpu);
111 ret = scpi_ops->add_opps_to_device(cpu_dev);
113 dev_warn(cpu_dev, "failed to add opps to the device\n");
117 ret = scpi_get_sharing_cpus(cpu_dev, policy->cpus);
119 dev_warn(cpu_dev, "failed to get sharing cpumask\n");
123 ret = dev_pm_opp_set_sharing_cpus(cpu_dev, policy->cpus);
125 dev_err(cpu_dev, "%s: failed to mark OPPs as shared: %d\n",
130 ret = dev_pm_opp_get_opp_count(cpu_dev);
132 dev_dbg(cpu_dev, "OPP table is not ready, deferring probe\n");
137 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
143 ret = dev_pm_opp_init_cpufreq_table(cpu_dev, &freq_table);
145 dev_err(cpu_dev, "failed to init cpufreq table: %d\n", ret);
149 priv->cpu_dev = cpu_dev;
150 priv->clk = clk_get(cpu_dev, NULL);
151 if (IS_ERR(priv->clk)) {
152 dev_err(cpu_dev, "%s: Failed to get clk for cpu: %d\n",
153 __func__, cpu_dev->id);
154 ret = PTR_ERR(priv->clk);
155 goto out_free_cpufreq_table;
158 policy->driver_data = priv;
159 policy->freq_table = freq_table;
161 /* scpi allows DVFS request for any domain from any CPU */
162 policy->dvfs_possible_from_any_cpu = true;
164 latency = scpi_ops->get_transition_latency(cpu_dev);
166 latency = CPUFREQ_ETERNAL;
168 policy->cpuinfo.transition_latency = latency;
170 policy->fast_switch_possible = false;
172 dev_pm_opp_of_register_em(policy->cpus);
176 out_free_cpufreq_table:
177 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
181 dev_pm_opp_remove_all_dynamic(cpu_dev);
186 static int scpi_cpufreq_exit(struct cpufreq_policy *policy)
188 struct scpi_data *priv = policy->driver_data;
191 dev_pm_opp_free_cpufreq_table(priv->cpu_dev, &policy->freq_table);
192 dev_pm_opp_remove_all_dynamic(priv->cpu_dev);
198 static struct cpufreq_driver scpi_cpufreq_driver = {
199 .name = "scpi-cpufreq",
200 .flags = CPUFREQ_STICKY | CPUFREQ_HAVE_GOVERNOR_PER_POLICY |
201 CPUFREQ_NEED_INITIAL_FREQ_CHECK |
202 CPUFREQ_IS_COOLING_DEV,
203 .verify = cpufreq_generic_frequency_table_verify,
204 .attr = cpufreq_generic_attr,
205 .get = scpi_cpufreq_get_rate,
206 .init = scpi_cpufreq_init,
207 .exit = scpi_cpufreq_exit,
208 .target_index = scpi_cpufreq_set_target,
211 static int scpi_cpufreq_probe(struct platform_device *pdev)
215 scpi_ops = get_scpi_ops();
219 ret = cpufreq_register_driver(&scpi_cpufreq_driver);
221 dev_err(&pdev->dev, "%s: registering cpufreq failed, err: %d\n",
226 static int scpi_cpufreq_remove(struct platform_device *pdev)
228 cpufreq_unregister_driver(&scpi_cpufreq_driver);
233 static struct platform_driver scpi_cpufreq_platdrv = {
235 .name = "scpi-cpufreq",
237 .probe = scpi_cpufreq_probe,
238 .remove = scpi_cpufreq_remove,
240 module_platform_driver(scpi_cpufreq_platdrv);
242 MODULE_AUTHOR("Sudeep Holla <sudeep.holla@arm.com>");
243 MODULE_DESCRIPTION("ARM SCPI CPUFreq interface driver");
244 MODULE_LICENSE("GPL v2");