Kconfig 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. menuconfig CPU_IDLE
  2. bool "CPU idle PM support"
  3. default y if ACPI || PPC_PSERIES
  4. select CPU_IDLE_GOV_LADDER if (!NO_HZ && !NO_HZ_IDLE)
  5. select CPU_IDLE_GOV_MENU if (NO_HZ || NO_HZ_IDLE)
  6. help
  7. CPU idle is a generic framework for supporting software-controlled
  8. idle processor power management. It includes modular cross-platform
  9. governors that can be swapped during runtime.
  10. If you're using an ACPI-enabled platform, you should say Y here.
  11. if CPU_IDLE
  12. config CPU_IDLE_MULTIPLE_DRIVERS
  13. bool "Support multiple cpuidle drivers"
  14. default n
  15. help
  16. Allows the cpuidle framework to use different drivers for each CPU.
  17. This is useful if you have a system with different CPU latencies and
  18. states. If unsure say N.
  19. config CPU_IDLE_GOV_LADDER
  20. bool "Ladder governor (for periodic timer tick)"
  21. default y
  22. config CPU_IDLE_GOV_MENU
  23. bool "Menu governor (for tickless system)"
  24. default y
  25. config CPU_IDLE_CALXEDA
  26. bool "CPU Idle Driver for Calxeda processors"
  27. depends on ARCH_HIGHBANK
  28. help
  29. Select this to enable cpuidle on Calxeda processors.
  30. config CPU_IDLE_ZYNQ
  31. bool "CPU Idle Driver for Xilinx Zynq processors"
  32. depends on ARCH_ZYNQ
  33. help
  34. Select this to enable cpuidle on Xilinx Zynq processors.
  35. endif
  36. config ARCH_NEEDS_CPU_IDLE_COUPLED
  37. def_bool n