mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 06:12:08 +00:00
defa4c738a
Add cpufreq driver for Freescale e500mc, e5500 and e6500 SoCs which are capable of changing the CPU frequency dynamically Signed-off-by: Tang Yuantian <Yuantian.Tang@freescale.com> Signed-off-by: Li Yang <leoli@freescale.com> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
config CPU_FREQ_CBE
|
|
tristate "CBE frequency scaling"
|
|
depends on CBE_RAS && PPC_CELL
|
|
default m
|
|
help
|
|
This adds the cpufreq driver for Cell BE processors.
|
|
For details, take a look at <file:Documentation/cpu-freq/>.
|
|
If you don't have such processor, say N
|
|
|
|
config CPU_FREQ_CBE_PMI
|
|
bool "CBE frequency scaling using PMI interface"
|
|
depends on CPU_FREQ_CBE
|
|
default n
|
|
help
|
|
Select this, if you want to use the PMI interface to switch
|
|
frequencies. Using PMI, the processor will not only be able to run at
|
|
lower speed, but also at lower core voltage.
|
|
|
|
config CPU_FREQ_MAPLE
|
|
bool "Support for Maple 970FX Evaluation Board"
|
|
depends on PPC_MAPLE
|
|
select CPU_FREQ_TABLE
|
|
help
|
|
This adds support for frequency switching on Maple 970FX
|
|
Evaluation Board and compatible boards (IBM JS2x blades).
|
|
|
|
config PPC_CORENET_CPUFREQ
|
|
tristate "CPU frequency scaling driver for Freescale E500MC SoCs"
|
|
depends on PPC_E500MC && OF && COMMON_CLK
|
|
select CPU_FREQ_TABLE
|
|
select CLK_PPC_CORENET
|
|
help
|
|
This adds the CPUFreq driver support for Freescale e500mc,
|
|
e5500 and e6500 series SoCs which are capable of changing
|
|
the CPU's frequency dynamically.
|