diff options
Diffstat (limited to 'drivers/cpufreq/Kconfig')
-rw-r--r-- | drivers/cpufreq/Kconfig | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/drivers/cpufreq/Kconfig b/drivers/cpufreq/Kconfig index cbcb21e32771..a1488f58f6ca 100644 --- a/drivers/cpufreq/Kconfig +++ b/drivers/cpufreq/Kconfig | |||
@@ -205,10 +205,99 @@ depends on ARM | |||
205 | source "drivers/cpufreq/Kconfig.arm" | 205 | source "drivers/cpufreq/Kconfig.arm" |
206 | endmenu | 206 | endmenu |
207 | 207 | ||
208 | menu "AVR32 CPU frequency scaling drivers" | ||
209 | depends on AVR32 | ||
210 | |||
211 | config AVR32_AT32AP_CPUFREQ | ||
212 | bool "CPU frequency driver for AT32AP" | ||
213 | depends on PLATFORM_AT32AP | ||
214 | default n | ||
215 | help | ||
216 | This enables the CPU frequency driver for AT32AP processors. | ||
217 | If in doubt, say N. | ||
218 | |||
219 | endmenu | ||
220 | |||
221 | menu "CPUFreq processor drivers" | ||
222 | depends on IA64 | ||
223 | |||
224 | config IA64_ACPI_CPUFREQ | ||
225 | tristate "ACPI Processor P-States driver" | ||
226 | select CPU_FREQ_TABLE | ||
227 | depends on ACPI_PROCESSOR | ||
228 | help | ||
229 | This driver adds a CPUFreq driver which utilizes the ACPI | ||
230 | Processor Performance States. | ||
231 | |||
232 | For details, take a look at <file:Documentation/cpu-freq/>. | ||
233 | |||
234 | If in doubt, say N. | ||
235 | |||
236 | endmenu | ||
237 | |||
238 | menu "MIPS CPUFreq processor drivers" | ||
239 | depends on MIPS | ||
240 | |||
241 | config LOONGSON2_CPUFREQ | ||
242 | tristate "Loongson2 CPUFreq Driver" | ||
243 | select CPU_FREQ_TABLE | ||
244 | help | ||
245 | This option adds a CPUFreq driver for loongson processors which | ||
246 | support software configurable cpu frequency. | ||
247 | |||
248 | Loongson2F and it's successors support this feature. | ||
249 | |||
250 | For details, take a look at <file:Documentation/cpu-freq/>. | ||
251 | |||
252 | If in doubt, say N. | ||
253 | |||
254 | endmenu | ||
255 | |||
208 | menu "PowerPC CPU frequency scaling drivers" | 256 | menu "PowerPC CPU frequency scaling drivers" |
209 | depends on PPC32 || PPC64 | 257 | depends on PPC32 || PPC64 |
210 | source "drivers/cpufreq/Kconfig.powerpc" | 258 | source "drivers/cpufreq/Kconfig.powerpc" |
211 | endmenu | 259 | endmenu |
212 | 260 | ||
261 | menu "SPARC CPU frequency scaling drivers" | ||
262 | depends on SPARC64 | ||
263 | config SPARC_US3_CPUFREQ | ||
264 | tristate "UltraSPARC-III CPU Frequency driver" | ||
265 | select CPU_FREQ_TABLE | ||
266 | help | ||
267 | This adds the CPUFreq driver for UltraSPARC-III processors. | ||
268 | |||
269 | For details, take a look at <file:Documentation/cpu-freq>. | ||
270 | |||
271 | If in doubt, say N. | ||
272 | |||
273 | config SPARC_US2E_CPUFREQ | ||
274 | tristate "UltraSPARC-IIe CPU Frequency driver" | ||
275 | select CPU_FREQ_TABLE | ||
276 | help | ||
277 | This adds the CPUFreq driver for UltraSPARC-IIe processors. | ||
278 | |||
279 | For details, take a look at <file:Documentation/cpu-freq>. | ||
280 | |||
281 | If in doubt, say N. | ||
282 | endmenu | ||
283 | |||
284 | menu "SH CPU Frequency scaling" | ||
285 | depends on SUPERH | ||
286 | config SH_CPU_FREQ | ||
287 | tristate "SuperH CPU Frequency driver" | ||
288 | select CPU_FREQ_TABLE | ||
289 | help | ||
290 | This adds the cpufreq driver for SuperH. Any CPU that supports | ||
291 | clock rate rounding through the clock framework can use this | ||
292 | driver. While it will make the kernel slightly larger, this is | ||
293 | harmless for CPUs that don't support rate rounding. The driver | ||
294 | will also generate a notice in the boot log before disabling | ||
295 | itself if the CPU in question is not capable of rate rounding. | ||
296 | |||
297 | For details, take a look at <file:Documentation/cpu-freq>. | ||
298 | |||
299 | If unsure, say N. | ||
300 | endmenu | ||
301 | |||
213 | endif | 302 | endif |
214 | endmenu | 303 | endmenu |