Kconfig 1.0 KB
Newer Older
1
menu "CPU Idle"
2

3
config CPU_IDLE
4
	bool "CPU idle PM support"
5
	default y if ACPI || PPC_PSERIES
6 7
	select CPU_IDLE_GOV_LADDER if (!NO_HZ && !NO_HZ_IDLE)
	select CPU_IDLE_GOV_MENU if (NO_HZ || NO_HZ_IDLE)
8 9 10 11 12
	help
	  CPU idle is a generic framework for supporting software-controlled
	  idle processor power management.  It includes modular cross-platform
	  governors that can be swapped during runtime.

13
	  If you're using an ACPI-enabled platform, you should say Y here.
14

15 16
if CPU_IDLE

D
Daniel Lezcano 已提交
17
config CPU_IDLE_MULTIPLE_DRIVERS
18
        bool
D
Daniel Lezcano 已提交
19

20
config CPU_IDLE_GOV_LADDER
21
	bool "Ladder governor (for periodic timer tick)"
22 23 24
	default y

config CPU_IDLE_GOV_MENU
25
	bool "Menu governor (for tickless system)"
26
	default y
27

28 29 30 31
menu "ARM CPU Idle Drivers"
depends on ARM
source "drivers/cpuidle/Kconfig.arm"
endmenu
M
Michal Simek 已提交
32

33 34 35 36 37
menu "MIPS CPU Idle Drivers"
depends on MIPS
source "drivers/cpuidle/Kconfig.mips"
endmenu

38 39 40 41 42
menu "POWERPC CPU Idle Drivers"
depends on PPC
source "drivers/cpuidle/Kconfig.powerpc"
endmenu

43
endif
44 45 46

config ARCH_NEEDS_CPU_IDLE_COUPLED
	def_bool n
47
endmenu