mei: fix KDoc documentation formatting
[linux/fpc-iii.git] / drivers / cpuidle / Kconfig
blob32748c36c477099cf00344b3410dd8c2331b9404
1 menu "CPU Idle"
3 config CPU_IDLE
4         bool "CPU idle PM support"
5         default y if ACPI || PPC_PSERIES
6         select CPU_IDLE_GOV_LADDER if (!NO_HZ && !NO_HZ_IDLE)
7         select CPU_IDLE_GOV_MENU if (NO_HZ || NO_HZ_IDLE)
8         help
9           CPU idle is a generic framework for supporting software-controlled
10           idle processor power management.  It includes modular cross-platform
11           governors that can be swapped during runtime.
13           If you're using an ACPI-enabled platform, you should say Y here.
15 if CPU_IDLE
17 config CPU_IDLE_MULTIPLE_DRIVERS
18         bool
20 config CPU_IDLE_GOV_LADDER
21         bool "Ladder governor (for periodic timer tick)"
22         default y
24 config CPU_IDLE_GOV_MENU
25         bool "Menu governor (for tickless system)"
26         default y
28 menu "ARM CPU Idle Drivers"
29 depends on ARM
30 source "drivers/cpuidle/Kconfig.arm"
31 endmenu
33 menu "MIPS CPU Idle Drivers"
34 depends on MIPS
35 source "drivers/cpuidle/Kconfig.mips"
36 endmenu
38 menu "POWERPC CPU Idle Drivers"
39 depends on PPC
40 source "drivers/cpuidle/Kconfig.powerpc"
41 endmenu
43 endif
45 config ARCH_NEEDS_CPU_IDLE_COUPLED
46         def_bool n
47 endmenu