2017-06-18 16:38:11 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/*
|
|
|
|
* System Control and Power Interface (SCMI) based CPUFreq Interface driver
|
|
|
|
*
|
2021-03-16 20:48:37 +08:00
|
|
|
* Copyright (C) 2018-2021 ARM Ltd.
|
2017-06-18 16:38:11 +08:00
|
|
|
* Sudeep Holla <sudeep.holla@arm.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2020-11-10 19:10:40 +08:00
|
|
|
#include <linux/clk-provider.h>
|
2017-06-18 16:38:11 +08:00
|
|
|
#include <linux/cpu.h>
|
|
|
|
#include <linux/cpufreq.h>
|
|
|
|
#include <linux/cpumask.h>
|
2019-02-04 19:09:52 +08:00
|
|
|
#include <linux/energy_model.h>
|
2017-06-18 16:38:11 +08:00
|
|
|
#include <linux/export.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/pm_opp.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/scmi_protocol.h>
|
|
|
|
#include <linux/types.h>
|
2022-07-07 15:15:52 +08:00
|
|
|
#include <linux/units.h>
|
2017-06-18 16:38:11 +08:00
|
|
|
|
|
|
|
struct scmi_data {
|
|
|
|
int domain_id;
|
2021-08-10 14:54:36 +08:00
|
|
|
int nr_opp;
|
2017-06-18 16:38:11 +08:00
|
|
|
struct device *cpu_dev;
|
2021-08-10 14:54:36 +08:00
|
|
|
cpumask_var_t opp_shared_cpus;
|
2017-06-18 16:38:11 +08:00
|
|
|
};
|
|
|
|
|
2021-03-16 20:48:37 +08:00
|
|
|
static struct scmi_protocol_handle *ph;
|
|
|
|
static const struct scmi_perf_proto_ops *perf_ops;
|
2024-03-12 17:47:26 +08:00
|
|
|
static struct cpufreq_driver scmi_cpufreq_driver;
|
2017-06-18 16:38:11 +08:00
|
|
|
|
|
|
|
static unsigned int scmi_cpufreq_get_rate(unsigned int cpu)
|
|
|
|
{
|
|
|
|
struct cpufreq_policy *policy = cpufreq_cpu_get_raw(cpu);
|
|
|
|
struct scmi_data *priv = policy->driver_data;
|
|
|
|
unsigned long rate;
|
|
|
|
int ret;
|
|
|
|
|
2021-03-16 20:48:37 +08:00
|
|
|
ret = perf_ops->freq_get(ph, priv->domain_id, &rate, false);
|
2017-06-18 16:38:11 +08:00
|
|
|
if (ret)
|
|
|
|
return 0;
|
|
|
|
return rate / 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* perf_ops->freq_set is not a synchronous, the actual OPP change will
|
|
|
|
* happen asynchronously and can get notified if the events are
|
|
|
|
* subscribed for by the SCMI firmware
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
scmi_cpufreq_set_target(struct cpufreq_policy *policy, unsigned int index)
|
|
|
|
{
|
|
|
|
struct scmi_data *priv = policy->driver_data;
|
2019-01-09 18:42:36 +08:00
|
|
|
u64 freq = policy->freq_table[index].frequency;
|
2017-06-18 16:38:11 +08:00
|
|
|
|
2021-03-16 20:48:37 +08:00
|
|
|
return perf_ops->freq_set(ph, priv->domain_id, freq * 1000, false);
|
2017-06-18 16:38:11 +08:00
|
|
|
}
|
|
|
|
|
2017-07-20 21:43:07 +08:00
|
|
|
static unsigned int scmi_cpufreq_fast_switch(struct cpufreq_policy *policy,
|
|
|
|
unsigned int target_freq)
|
|
|
|
{
|
|
|
|
struct scmi_data *priv = policy->driver_data;
|
|
|
|
|
2021-03-16 20:48:37 +08:00
|
|
|
if (!perf_ops->freq_set(ph, priv->domain_id,
|
cpufreq: move invariance setter calls in cpufreq core
To properly scale its per-entity load-tracking signals, the task scheduler
needs to be given a frequency scale factor, i.e. some image of the current
frequency the CPU is running at. Currently, this scale can be computed
either by using counters (APERF/MPERF on x86, AMU on arm64), or by
piggy-backing on the frequency selection done by cpufreq.
For the latter, drivers have to explicitly set the scale factor
themselves, despite it being purely boiler-plate code: the required
information depends entirely on the kind of frequency switch callback
implemented by the driver, i.e. either of: target_index(), target(),
fast_switch() and setpolicy().
The fitness of those callbacks with regard to driving the Frequency
Invariance Engine (FIE) is studied below:
target_index()
==============
Documentation states that the chosen frequency "must be determined by
freq_table[index].frequency". It isn't clear if it *has* to be that
frequency, or if it can use that frequency value to do some computation
that ultimately leads to a different frequency selection. All drivers
go for the former, while the vexpress-spc-cpufreq has an atypical
implementation which is handled separately.
Therefore, the hook works on the assumption the core can use
freq_table[index].frequency.
target()
=======
This has been flagged as deprecated since:
commit 9c0ebcf78fde ("cpufreq: Implement light weight ->target_index() routine")
It also doesn't have that many users:
gx-suspmod.c:439: .target = cpufreq_gx_target,
s3c24xx-cpufreq.c:428: .target = s3c_cpufreq_target,
intel_pstate.c:2528: .target = intel_cpufreq_target,
cppc_cpufreq.c:401: .target = cppc_cpufreq_set_target,
cpufreq-nforce2.c:371: .target = nforce2_target,
sh-cpufreq.c:163: .target = sh_cpufreq_target,
pcc-cpufreq.c:573: .target = pcc_cpufreq_target,
Similarly to the path taken for target_index() calls in the cpufreq core
during a frequency change, all of the drivers above will mark the end of a
frequency change by a call to cpufreq_freq_transition_end().
Therefore, cpufreq_freq_transition_end() can be used as the location for
the arch_set_freq_scale() call to potentially inform the scheduler of the
frequency change.
This change maintains the previous functionality for the drivers that
implement the target_index() callback, while also adding support for the
few drivers that implement the deprecated target() callback.
fast_switch()
=============
This callback *has* to return the frequency that was selected.
setpolicy()
===========
This callback does not have any designated way of informing what was the
end choice. But there are only two drivers using setpolicy(), and none
of them have current FIE support:
drivers/cpufreq/longrun.c:281: .setpolicy = longrun_set_policy,
drivers/cpufreq/intel_pstate.c:2215: .setpolicy = intel_pstate_set_policy,
The intel_pstate is known to use counter-driven frequency invariance.
Conclusion
==========
Given that the significant majority of current FIE enabled drivers use
callbacks that lend themselves to triggering the setting of the FIE scale
factor in a generic way, move the invariance setter calls to cpufreq core.
As a result of setting the frequency scale factor in cpufreq core, after
callbacks that lend themselves to trigger it, remove this functionality
from the driver side.
To be noted that despite marking a successful frequency change, many
cpufreq drivers will consider the new frequency as the requested
frequency, although this is might not be the one granted by the hardware.
Therefore, the call to arch_set_freq_scale() is a "best effort" one, and
it is up to the architecture if the new frequency is used in the new
frequency scale factor setting (determined by the implementation of
arch_set_freq_scale()) or eventually used by the scheduler (determined
by the implementation of arch_scale_freq_capacity()). The architecture
is in a better position to decide if it has better methods to obtain
more accurate information regarding the current frequency and use that
information instead (for example, the use of counters).
Also, the implementation to arch_set_freq_scale() will now have to handle
error conditions (current frequency == 0) in order to prevent the
overhead in cpufreq core when the default arch_set_freq_scale()
implementation is used.
Signed-off-by: Ionela Voinescu <ionela.voinescu@arm.com>
Suggested-by: Valentin Schneider <valentin.schneider@arm.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2020-09-02 04:55:46 +08:00
|
|
|
target_freq * 1000, true))
|
2017-07-20 21:43:07 +08:00
|
|
|
return target_freq;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-08-25 19:26:23 +08:00
|
|
|
static int scmi_cpu_domain_id(struct device *cpu_dev)
|
|
|
|
{
|
2023-08-25 19:26:31 +08:00
|
|
|
struct device_node *np = cpu_dev->of_node;
|
|
|
|
struct of_phandle_args domain_id;
|
|
|
|
int index;
|
|
|
|
|
|
|
|
if (of_parse_phandle_with_args(np, "clocks", "#clock-cells", 0,
|
|
|
|
&domain_id)) {
|
|
|
|
/* Find the corresponding index for power-domain "perf". */
|
|
|
|
index = of_property_match_string(np, "power-domain-names",
|
|
|
|
"perf");
|
|
|
|
if (index < 0)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (of_parse_phandle_with_args(np, "power-domains",
|
|
|
|
"#power-domain-cells", index,
|
|
|
|
&domain_id))
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2023-08-25 19:26:23 +08:00
|
|
|
|
2023-08-25 19:26:31 +08:00
|
|
|
return domain_id.args[0];
|
2023-08-25 19:26:23 +08:00
|
|
|
}
|
|
|
|
|
2017-06-18 16:38:11 +08:00
|
|
|
static int
|
2023-08-25 19:26:26 +08:00
|
|
|
scmi_get_sharing_cpus(struct device *cpu_dev, int domain,
|
|
|
|
struct cpumask *cpumask)
|
2017-06-18 16:38:11 +08:00
|
|
|
{
|
2023-08-25 19:26:26 +08:00
|
|
|
int cpu, tdomain;
|
2017-06-18 16:38:11 +08:00
|
|
|
struct device *tcpu_dev;
|
|
|
|
|
|
|
|
for_each_possible_cpu(cpu) {
|
|
|
|
if (cpu == cpu_dev->id)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
tcpu_dev = get_cpu_device(cpu);
|
|
|
|
if (!tcpu_dev)
|
|
|
|
continue;
|
|
|
|
|
2023-08-25 19:26:23 +08:00
|
|
|
tdomain = scmi_cpu_domain_id(tcpu_dev);
|
2017-06-18 16:38:11 +08:00
|
|
|
if (tdomain == domain)
|
|
|
|
cpumask_set_cpu(cpu, cpumask);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-02-04 19:09:52 +08:00
|
|
|
static int __maybe_unused
|
2022-03-21 17:57:25 +08:00
|
|
|
scmi_get_cpu_power(struct device *cpu_dev, unsigned long *power,
|
|
|
|
unsigned long *KHz)
|
2019-02-04 19:09:52 +08:00
|
|
|
{
|
2022-07-07 15:15:55 +08:00
|
|
|
enum scmi_power_scale power_scale = perf_ops->power_scale_get(ph);
|
2019-02-04 19:09:52 +08:00
|
|
|
unsigned long Hz;
|
|
|
|
int ret, domain;
|
|
|
|
|
2023-08-25 19:26:23 +08:00
|
|
|
domain = scmi_cpu_domain_id(cpu_dev);
|
2019-02-04 19:09:52 +08:00
|
|
|
if (domain < 0)
|
|
|
|
return domain;
|
|
|
|
|
|
|
|
/* Get the power cost of the performance domain. */
|
|
|
|
Hz = *KHz * 1000;
|
2021-03-16 20:48:37 +08:00
|
|
|
ret = perf_ops->est_power_get(ph, domain, &Hz, power);
|
2019-02-04 19:09:52 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2022-07-07 15:15:55 +08:00
|
|
|
/* Convert the power to uW if it is mW (ignore bogoW) */
|
|
|
|
if (power_scale == SCMI_POWER_MILLIWATTS)
|
2022-07-07 15:15:52 +08:00
|
|
|
*power *= MICROWATT_PER_MILLIWATT;
|
|
|
|
|
2019-02-04 19:09:52 +08:00
|
|
|
/* The EM framework specifies the frequency in KHz. */
|
|
|
|
*KHz = Hz / 1000;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-22 21:57:01 +08:00
|
|
|
static int
|
|
|
|
scmi_get_rate_limit(u32 domain, bool has_fast_switch)
|
|
|
|
{
|
|
|
|
int ret, rate_limit;
|
|
|
|
|
|
|
|
if (has_fast_switch) {
|
|
|
|
/*
|
|
|
|
* Fast channels are used whenever available,
|
|
|
|
* so use their rate_limit value if populated.
|
|
|
|
*/
|
|
|
|
ret = perf_ops->fast_switch_rate_limit(ph, domain,
|
|
|
|
&rate_limit);
|
|
|
|
if (!ret && rate_limit)
|
|
|
|
return rate_limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = perf_ops->rate_limit_get(ph, domain, &rate_limit);
|
|
|
|
if (ret)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return rate_limit;
|
|
|
|
}
|
|
|
|
|
2024-03-12 17:47:26 +08:00
|
|
|
static struct freq_attr *scmi_cpufreq_hw_attr[] = {
|
|
|
|
&cpufreq_freq_attr_scaling_available_freqs,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2017-06-18 16:38:11 +08:00
|
|
|
static int scmi_cpufreq_init(struct cpufreq_policy *policy)
|
|
|
|
{
|
2023-08-25 19:26:24 +08:00
|
|
|
int ret, nr_opp, domain;
|
2017-06-18 16:38:11 +08:00
|
|
|
unsigned int latency;
|
|
|
|
struct device *cpu_dev;
|
|
|
|
struct scmi_data *priv;
|
|
|
|
struct cpufreq_frequency_table *freq_table;
|
|
|
|
|
|
|
|
cpu_dev = get_cpu_device(policy->cpu);
|
|
|
|
if (!cpu_dev) {
|
|
|
|
pr_err("failed to get cpu%d device\n", policy->cpu);
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2023-08-25 19:26:24 +08:00
|
|
|
domain = scmi_cpu_domain_id(cpu_dev);
|
|
|
|
if (domain < 0)
|
|
|
|
return domain;
|
|
|
|
|
2021-08-10 14:54:36 +08:00
|
|
|
priv = kzalloc(sizeof(*priv), GFP_KERNEL);
|
|
|
|
if (!priv)
|
2021-08-03 17:07:44 +08:00
|
|
|
return -ENOMEM;
|
2017-06-18 16:38:11 +08:00
|
|
|
|
2021-08-10 14:54:36 +08:00
|
|
|
if (!zalloc_cpumask_var(&priv->opp_shared_cpus, GFP_KERNEL)) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto out_free_priv;
|
|
|
|
}
|
|
|
|
|
2021-02-19 06:23:25 +08:00
|
|
|
/* Obtain CPUs that share SCMI performance controls */
|
2023-08-25 19:26:26 +08:00
|
|
|
ret = scmi_get_sharing_cpus(cpu_dev, domain, policy->cpus);
|
2017-06-18 16:38:11 +08:00
|
|
|
if (ret) {
|
|
|
|
dev_warn(cpu_dev, "failed to get sharing cpumask\n");
|
2021-02-19 06:23:25 +08:00
|
|
|
goto out_free_cpumask;
|
2017-06-18 16:38:11 +08:00
|
|
|
}
|
|
|
|
|
2021-02-19 06:23:25 +08:00
|
|
|
/*
|
|
|
|
* Obtain CPUs that share performance levels.
|
|
|
|
* The OPP 'sharing cpus' info may come from DT through an empty opp
|
|
|
|
* table and opp-shared.
|
|
|
|
*/
|
2021-08-10 14:54:36 +08:00
|
|
|
ret = dev_pm_opp_of_get_sharing_cpus(cpu_dev, priv->opp_shared_cpus);
|
2022-01-24 02:38:47 +08:00
|
|
|
if (ret || cpumask_empty(priv->opp_shared_cpus)) {
|
2021-02-19 06:23:25 +08:00
|
|
|
/*
|
|
|
|
* Either opp-table is not set or no opp-shared was found.
|
|
|
|
* Use the CPU mask from SCMI to designate CPUs sharing an OPP
|
|
|
|
* table.
|
|
|
|
*/
|
2021-08-10 14:54:36 +08:00
|
|
|
cpumask_copy(priv->opp_shared_cpus, policy->cpus);
|
2017-06-18 16:38:11 +08:00
|
|
|
}
|
|
|
|
|
2021-02-19 06:23:25 +08:00
|
|
|
/*
|
|
|
|
* A previous CPU may have marked OPPs as shared for a few CPUs, based on
|
|
|
|
* what OPP core provided. If the current CPU is part of those few, then
|
|
|
|
* there is no need to add OPPs again.
|
|
|
|
*/
|
2019-02-04 19:09:52 +08:00
|
|
|
nr_opp = dev_pm_opp_get_opp_count(cpu_dev);
|
|
|
|
if (nr_opp <= 0) {
|
2023-08-25 19:26:24 +08:00
|
|
|
ret = perf_ops->device_opps_add(ph, cpu_dev, domain);
|
2021-02-19 06:23:25 +08:00
|
|
|
if (ret) {
|
|
|
|
dev_warn(cpu_dev, "failed to add opps to the device\n");
|
|
|
|
goto out_free_cpumask;
|
|
|
|
}
|
|
|
|
|
|
|
|
nr_opp = dev_pm_opp_get_opp_count(cpu_dev);
|
|
|
|
if (nr_opp <= 0) {
|
|
|
|
dev_err(cpu_dev, "%s: No OPPs for this device: %d\n",
|
2021-05-07 03:09:48 +08:00
|
|
|
__func__, nr_opp);
|
2021-02-19 06:23:25 +08:00
|
|
|
|
|
|
|
ret = -ENODEV;
|
|
|
|
goto out_free_opp;
|
|
|
|
}
|
|
|
|
|
2021-08-10 14:54:36 +08:00
|
|
|
ret = dev_pm_opp_set_sharing_cpus(cpu_dev, priv->opp_shared_cpus);
|
2021-02-19 06:23:25 +08:00
|
|
|
if (ret) {
|
|
|
|
dev_err(cpu_dev, "%s: failed to mark OPPs as shared: %d\n",
|
|
|
|
__func__, ret);
|
|
|
|
|
|
|
|
goto out_free_opp;
|
|
|
|
}
|
|
|
|
|
2021-08-10 14:54:36 +08:00
|
|
|
priv->nr_opp = nr_opp;
|
2017-06-18 16:38:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = dev_pm_opp_init_cpufreq_table(cpu_dev, &freq_table);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(cpu_dev, "failed to init cpufreq table: %d\n", ret);
|
2021-08-10 14:54:36 +08:00
|
|
|
goto out_free_opp;
|
2017-06-18 16:38:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
priv->cpu_dev = cpu_dev;
|
2023-08-25 19:26:24 +08:00
|
|
|
priv->domain_id = domain;
|
2017-06-18 16:38:11 +08:00
|
|
|
|
|
|
|
policy->driver_data = priv;
|
2018-04-03 18:07:38 +08:00
|
|
|
policy->freq_table = freq_table;
|
2017-06-18 16:38:11 +08:00
|
|
|
|
|
|
|
/* SCMI allows DVFS request for any domain from any CPU */
|
|
|
|
policy->dvfs_possible_from_any_cpu = true;
|
|
|
|
|
2023-08-25 19:26:24 +08:00
|
|
|
latency = perf_ops->transition_latency_get(ph, domain);
|
2017-06-18 16:38:11 +08:00
|
|
|
if (!latency)
|
|
|
|
latency = CPUFREQ_ETERNAL;
|
|
|
|
|
|
|
|
policy->cpuinfo.transition_latency = latency;
|
|
|
|
|
2020-06-17 17:43:32 +08:00
|
|
|
policy->fast_switch_possible =
|
2023-08-25 19:26:24 +08:00
|
|
|
perf_ops->fast_switch_possible(ph, domain);
|
2019-02-04 19:09:52 +08:00
|
|
|
|
2024-02-22 21:57:01 +08:00
|
|
|
policy->transition_delay_us =
|
|
|
|
scmi_get_rate_limit(domain, policy->fast_switch_possible);
|
|
|
|
|
2024-03-12 17:47:26 +08:00
|
|
|
if (policy_has_boost_freq(policy)) {
|
|
|
|
ret = cpufreq_enable_boost_support();
|
|
|
|
if (ret) {
|
|
|
|
dev_warn(cpu_dev, "failed to enable boost: %d\n", ret);
|
|
|
|
goto out_free_opp;
|
|
|
|
} else {
|
|
|
|
scmi_cpufreq_hw_attr[1] = &cpufreq_freq_attr_scaling_boost_freqs;
|
|
|
|
scmi_cpufreq_driver.boost_enabled = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-18 16:38:11 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
out_free_opp:
|
2019-01-04 17:44:33 +08:00
|
|
|
dev_pm_opp_remove_all_dynamic(cpu_dev);
|
2017-06-18 16:38:11 +08:00
|
|
|
|
2021-02-19 06:23:25 +08:00
|
|
|
out_free_cpumask:
|
2021-08-10 14:54:36 +08:00
|
|
|
free_cpumask_var(priv->opp_shared_cpus);
|
|
|
|
|
|
|
|
out_free_priv:
|
|
|
|
kfree(priv);
|
2021-02-19 06:23:25 +08:00
|
|
|
|
2017-06-18 16:38:11 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int scmi_cpufreq_exit(struct cpufreq_policy *policy)
|
|
|
|
{
|
|
|
|
struct scmi_data *priv = policy->driver_data;
|
|
|
|
|
|
|
|
dev_pm_opp_free_cpufreq_table(priv->cpu_dev, &policy->freq_table);
|
2019-01-04 17:44:33 +08:00
|
|
|
dev_pm_opp_remove_all_dynamic(priv->cpu_dev);
|
2021-08-10 14:54:36 +08:00
|
|
|
free_cpumask_var(priv->opp_shared_cpus);
|
2019-02-17 00:31:48 +08:00
|
|
|
kfree(priv);
|
2017-06-18 16:38:11 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-08-10 14:54:36 +08:00
|
|
|
static void scmi_cpufreq_register_em(struct cpufreq_policy *policy)
|
|
|
|
{
|
|
|
|
struct em_data_callback em_cb = EM_DATA_CB(scmi_get_cpu_power);
|
2022-07-07 15:15:55 +08:00
|
|
|
enum scmi_power_scale power_scale = perf_ops->power_scale_get(ph);
|
2021-08-10 14:54:36 +08:00
|
|
|
struct scmi_data *priv = policy->driver_data;
|
2022-07-07 15:15:55 +08:00
|
|
|
bool em_power_scale = false;
|
2021-08-10 14:54:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This callback will be called for each policy, but we don't need to
|
|
|
|
* register with EM every time. Despite not being part of the same
|
|
|
|
* policy, some CPUs may still share their perf-domains, and a CPU from
|
|
|
|
* another policy may already have registered with EM on behalf of CPUs
|
|
|
|
* of this policy.
|
|
|
|
*/
|
|
|
|
if (!priv->nr_opp)
|
|
|
|
return;
|
|
|
|
|
2022-07-07 15:15:55 +08:00
|
|
|
if (power_scale == SCMI_POWER_MILLIWATTS
|
|
|
|
|| power_scale == SCMI_POWER_MICROWATTS)
|
|
|
|
em_power_scale = true;
|
|
|
|
|
2021-08-10 14:54:36 +08:00
|
|
|
em_dev_register_perf_domain(get_cpu_device(policy->cpu), priv->nr_opp,
|
|
|
|
&em_cb, priv->opp_shared_cpus,
|
2022-07-07 15:15:55 +08:00
|
|
|
em_power_scale);
|
2021-08-10 14:54:36 +08:00
|
|
|
}
|
|
|
|
|
2017-06-18 16:38:11 +08:00
|
|
|
static struct cpufreq_driver scmi_cpufreq_driver = {
|
|
|
|
.name = "scmi",
|
2021-02-02 12:55:11 +08:00
|
|
|
.flags = CPUFREQ_HAVE_GOVERNOR_PER_POLICY |
|
2019-01-29 12:55:14 +08:00
|
|
|
CPUFREQ_NEED_INITIAL_FREQ_CHECK |
|
|
|
|
CPUFREQ_IS_COOLING_DEV,
|
2017-06-18 16:38:11 +08:00
|
|
|
.verify = cpufreq_generic_frequency_table_verify,
|
2024-03-12 17:47:26 +08:00
|
|
|
.attr = scmi_cpufreq_hw_attr,
|
2017-06-18 16:38:11 +08:00
|
|
|
.target_index = scmi_cpufreq_set_target,
|
2017-07-20 21:43:07 +08:00
|
|
|
.fast_switch = scmi_cpufreq_fast_switch,
|
2017-06-18 16:38:11 +08:00
|
|
|
.get = scmi_cpufreq_get_rate,
|
|
|
|
.init = scmi_cpufreq_init,
|
|
|
|
.exit = scmi_cpufreq_exit,
|
2021-08-10 14:54:36 +08:00
|
|
|
.register_em = scmi_cpufreq_register_em,
|
2017-06-18 16:38:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int scmi_cpufreq_probe(struct scmi_device *sdev)
|
|
|
|
{
|
|
|
|
int ret;
|
2020-11-10 19:10:40 +08:00
|
|
|
struct device *dev = &sdev->dev;
|
2021-03-16 20:48:37 +08:00
|
|
|
const struct scmi_handle *handle;
|
2017-06-18 16:38:11 +08:00
|
|
|
|
|
|
|
handle = sdev->handle;
|
|
|
|
|
2021-03-16 20:48:37 +08:00
|
|
|
if (!handle)
|
2017-06-18 16:38:11 +08:00
|
|
|
return -ENODEV;
|
|
|
|
|
2021-03-16 20:48:37 +08:00
|
|
|
perf_ops = handle->devm_protocol_get(sdev, SCMI_PROTOCOL_PERF, &ph);
|
|
|
|
if (IS_ERR(perf_ops))
|
|
|
|
return PTR_ERR(perf_ops);
|
|
|
|
|
2020-11-20 18:12:52 +08:00
|
|
|
#ifdef CONFIG_COMMON_CLK
|
2020-11-10 19:10:40 +08:00
|
|
|
/* dummy clock provider as needed by OPP if clocks property is used */
|
2023-12-05 23:12:20 +08:00
|
|
|
if (of_property_present(dev->of_node, "#clock-cells")) {
|
|
|
|
ret = devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get, NULL);
|
|
|
|
if (ret)
|
|
|
|
return dev_err_probe(dev, ret, "%s: registering clock provider failed\n", __func__);
|
|
|
|
}
|
2020-11-20 18:12:52 +08:00
|
|
|
#endif
|
2020-11-10 19:10:40 +08:00
|
|
|
|
2017-06-18 16:38:11 +08:00
|
|
|
ret = cpufreq_register_driver(&scmi_cpufreq_driver);
|
|
|
|
if (ret) {
|
2020-11-20 18:12:52 +08:00
|
|
|
dev_err(dev, "%s: registering cpufreq failed, err: %d\n",
|
2017-06-18 16:38:11 +08:00
|
|
|
__func__, ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void scmi_cpufreq_remove(struct scmi_device *sdev)
|
|
|
|
{
|
|
|
|
cpufreq_unregister_driver(&scmi_cpufreq_driver);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct scmi_device_id scmi_id_table[] = {
|
2019-11-07 01:56:25 +08:00
|
|
|
{ SCMI_PROTOCOL_PERF, "cpufreq" },
|
2017-06-18 16:38:11 +08:00
|
|
|
{ },
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(scmi, scmi_id_table);
|
|
|
|
|
|
|
|
static struct scmi_driver scmi_cpufreq_drv = {
|
|
|
|
.name = "scmi-cpufreq",
|
|
|
|
.probe = scmi_cpufreq_probe,
|
|
|
|
.remove = scmi_cpufreq_remove,
|
|
|
|
.id_table = scmi_id_table,
|
|
|
|
};
|
|
|
|
module_scmi_driver(scmi_cpufreq_drv);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Sudeep Holla <sudeep.holla@arm.com>");
|
|
|
|
MODULE_DESCRIPTION("ARM SCMI CPUFreq interface driver");
|
|
|
|
MODULE_LICENSE("GPL v2");
|