aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDietmar Eggemann <dietmar.eggemann@arm.com>2017-09-26 12:41:07 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2017-10-02 20:37:53 -0400
commite7d5459dfaf613799915e901189d296bdc7534f9 (patch)
tree9d428eea59ddbe05521c342f10c5ea5ad0688b41
parent5408211a8f290ace85147858f4e05e18b942f489 (diff)
cpufreq: provide default frequency-invariance setter function
Frequency-invariant accounting support based on the ratio of current frequency and maximum supported frequency is an optional feature an arch can implement. Since there are cpufreq drivers (e.g. cpufreq-dt) which can be build for different arch's a default implementation of the frequency-invariance setter function arch_set_freq_scale() is needed. This default implementation is an empty weak function which will be overwritten by a strong function in case the arch provides one. The setter function passes the cpumask of related (to the frequency change) cpus (online and offline cpus), the (new) current frequency and the maximum supported frequency. Signed-off-by: Dietmar Eggemann <dietmar.eggemann@arm.com> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/cpufreq/cpufreq.c6
-rw-r--r--include/linux/cpufreq.h3
2 files changed, 9 insertions, 0 deletions
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
index ea43b147a7fe..41d148af7748 100644
--- a/drivers/cpufreq/cpufreq.c
+++ b/drivers/cpufreq/cpufreq.c
@@ -161,6 +161,12 @@ u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
161} 161}
162EXPORT_SYMBOL_GPL(get_cpu_idle_time); 162EXPORT_SYMBOL_GPL(get_cpu_idle_time);
163 163
164__weak void arch_set_freq_scale(struct cpumask *cpus, unsigned long cur_freq,
165 unsigned long max_freq)
166{
167}
168EXPORT_SYMBOL_GPL(arch_set_freq_scale);
169
164/* 170/*
165 * This is a generic cpufreq init() routine which can be used by cpufreq 171 * This is a generic cpufreq init() routine which can be used by cpufreq
166 * drivers of SMP systems. It will do following: 172 * drivers of SMP systems. It will do following:
diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h
index 537ff842ff73..28734ee185a7 100644
--- a/include/linux/cpufreq.h
+++ b/include/linux/cpufreq.h
@@ -919,6 +919,9 @@ static inline bool policy_has_boost_freq(struct cpufreq_policy *policy)
919 919
920extern unsigned int arch_freq_get_on_cpu(int cpu); 920extern unsigned int arch_freq_get_on_cpu(int cpu);
921 921
922extern void arch_set_freq_scale(struct cpumask *cpus, unsigned long cur_freq,
923 unsigned long max_freq);
924
922/* the following are really really optional */ 925/* the following are really really optional */
923extern struct freq_attr cpufreq_freq_attr_scaling_available_freqs; 926extern struct freq_attr cpufreq_freq_attr_scaling_available_freqs;
924extern struct freq_attr cpufreq_freq_attr_scaling_boost_freqs; 927extern struct freq_attr cpufreq_freq_attr_scaling_boost_freqs;