1
0
Fork 0
alistair23-linux/Documentation/cpu-freq
Viresh Kumar 9c0ebcf78f cpufreq: Implement light weight ->target_index() routine
Currently, the prototype of cpufreq_drivers target routines is:

int target(struct cpufreq_policy *policy, unsigned int target_freq,
		unsigned int relation);

And most of the drivers call cpufreq_frequency_table_target() to get a valid
index of their frequency table which is closest to the target_freq. And they
don't use target_freq and relation after that.

So, it makes sense to just do this work in cpufreq core before calling
cpufreq_frequency_table_target() and simply pass index instead. But this can be
done only with drivers which expose their frequency table with cpufreq core. For
others we need to stick with the old prototype of target() until those drivers
are converted to expose frequency tables.

This patch implements the new light weight prototype for target_index() routine.
It looks like this:

int target_index(struct cpufreq_policy *policy, unsigned int index);

CPUFreq core will call cpufreq_frequency_table_target() before calling this
routine and pass index to it. Because CPUFreq core now requires to call routines
present in freq_table.c CONFIG_CPU_FREQ_TABLE must be enabled all the time.

This also marks target() interface as deprecated. So, that new drivers avoid
using it. And Documentation is updated accordingly.

It also converts existing .target() to newly defined light weight
.target_index() routine for many driver.

Acked-by: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Acked-by: Jesper Nilsson <jesper.nilsson@axis.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Russell King <linux@arm.linux.org.uk>
Acked-by: David S. Miller <davem@davemloft.net>
Tested-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rjw@rjwysocki.net>
2013-10-25 22:42:24 +02:00
..
amd-powernow.txt Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
boost.txt acpi-cpufreq: Add support for disabling dynamic overclocking 2012-09-09 22:05:12 +02:00
core.txt [CPUFREQ] Documentation fix 2006-10-15 19:57:10 -04:00
cpu-drivers.txt cpufreq: Implement light weight ->target_index() routine 2013-10-25 22:42:24 +02:00
cpufreq-nforce2.txt Fix typos in /Documentation : Misc 2006-11-30 05:21:10 +01:00
cpufreq-stats.txt misc doc and kconfig typos 2007-05-09 08:58:15 +02:00
governors.txt cpufreq: Implement light weight ->target_index() routine 2013-10-25 22:42:24 +02:00
index.txt [CPUFREQ] correct broken links and email addresses 2008-10-09 13:52:40 -04:00
pcc-cpufreq.txt [CPUFREQ] Processor Clocking Control interface driver 2010-01-13 10:55:16 -05:00
user-guide.txt cpufreq: Update Documentation for cpus and related_cpus 2013-02-02 00:01:16 +01:00