aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/cpufreq/Kconfig1
-rw-r--r--drivers/cpufreq/cpufreq.c31
-rw-r--r--include/linux/cpufreq.h3
3 files changed, 35 insertions, 0 deletions
diff --git a/drivers/cpufreq/Kconfig b/drivers/cpufreq/Kconfig
index 534fcb825153..2d06754f4a04 100644
--- a/drivers/cpufreq/Kconfig
+++ b/drivers/cpufreq/Kconfig
@@ -2,6 +2,7 @@ menu "CPU Frequency scaling"
2 2
3config CPU_FREQ 3config CPU_FREQ
4 bool "CPU Frequency scaling" 4 bool "CPU Frequency scaling"
5 select CPU_FREQ_TABLE
5 help 6 help
6 CPU Frequency scaling allows you to change the clock speed of 7 CPU Frequency scaling allows you to change the clock speed of
7 CPUs on the fly. This is a nice method to save power, because 8 CPUs on the fly. This is a nice method to save power, because
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
index f033adf06eaf..985f325adc4f 100644
--- a/drivers/cpufreq/cpufreq.c
+++ b/drivers/cpufreq/cpufreq.c
@@ -181,6 +181,37 @@ u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
181} 181}
182EXPORT_SYMBOL_GPL(get_cpu_idle_time); 182EXPORT_SYMBOL_GPL(get_cpu_idle_time);
183 183
184/*
185 * This is a generic cpufreq init() routine which can be used by cpufreq
186 * drivers of SMP systems. It will do following:
187 * - validate & show freq table passed
188 * - set policies transition latency
189 * - policy->cpus with all possible CPUs
190 */
191int cpufreq_generic_init(struct cpufreq_policy *policy,
192 struct cpufreq_frequency_table *table,
193 unsigned int transition_latency)
194{
195 int ret;
196
197 ret = cpufreq_table_validate_and_show(policy, table);
198 if (ret) {
199 pr_err("%s: invalid frequency table: %d\n", __func__, ret);
200 return ret;
201 }
202
203 policy->cpuinfo.transition_latency = transition_latency;
204
205 /*
206 * The driver only supports the SMP configuartion where all processors
207 * share the clock and voltage and clock.
208 */
209 cpumask_setall(policy->cpus);
210
211 return 0;
212}
213EXPORT_SYMBOL_GPL(cpufreq_generic_init);
214
184struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu) 215struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
185{ 216{
186 struct cpufreq_policy *policy = NULL; 217 struct cpufreq_policy *policy = NULL;
diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h
index 36ccd0bf1304..0aba2a6cadaf 100644
--- a/include/linux/cpufreq.h
+++ b/include/linux/cpufreq.h
@@ -424,6 +424,9 @@ void cpufreq_frequency_table_put_attr(unsigned int cpu);
424int cpufreq_table_validate_and_show(struct cpufreq_policy *policy, 424int cpufreq_table_validate_and_show(struct cpufreq_policy *policy,
425 struct cpufreq_frequency_table *table); 425 struct cpufreq_frequency_table *table);
426 426
427int cpufreq_generic_init(struct cpufreq_policy *policy,
428 struct cpufreq_frequency_table *table,
429 unsigned int transition_latency);
427static inline int cpufreq_generic_exit(struct cpufreq_policy *policy) 430static inline int cpufreq_generic_exit(struct cpufreq_policy *policy)
428{ 431{
429 cpufreq_frequency_table_put_attr(policy->cpu); 432 cpufreq_frequency_table_put_attr(policy->cpu);