Kconfig 712 B

123456789101112131415161718192021222324252627282930313233
  1. config CPU_IDLE
  2. bool "CPU idle PM support"
  3. default y if ACPI || PPC_PSERIES
  4. help
  5. CPU idle is a generic framework for supporting software-controlled
  6. idle processor power management. It includes modular cross-platform
  7. governors that can be swapped during runtime.
  8. If you're using an ACPI-enabled platform, you should say Y here.
  9. config CPU_IDLE_GOV_LADDER
  10. bool
  11. depends on CPU_IDLE
  12. default y
  13. config CPU_IDLE_GOV_MENU
  14. bool
  15. depends on CPU_IDLE && NO_HZ
  16. default y
  17. config ARCH_NEEDS_CPU_IDLE_COUPLED
  18. def_bool n
  19. if CPU_IDLE
  20. config CPU_IDLE_CALXEDA
  21. bool "CPU Idle Driver for Calxeda processors"
  22. depends on ARCH_HIGHBANK
  23. help
  24. Select this to enable cpuidle on Calxeda processors.
  25. endif