Kconfig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. select ARM_CPU_SUSPEND
  29. help
  30. Select this to enable cpuidle on Calxeda processors.
  31. config CPU_IDLE_ZYNQ
  32. bool "CPU Idle Driver for Xilinx Zynq processors"
  33. depends on ARCH_ZYNQ
  34. help
  35. Select this to enable cpuidle on Xilinx Zynq processors.
  36. config CPU_IDLE_BIG_LITTLE
  37. bool "Support for ARM big.LITTLE processors"
  38. depends on ARCH_VEXPRESS_TC2_PM
  39. select ARM_CPU_SUSPEND
  40. select CPU_IDLE_MULTIPLE_DRIVERS
  41. help
  42. Select this option to enable CPU idle driver for big.LITTLE based
  43. ARM systems. Driver manages CPUs coordination through MCPM and
  44. define different C-states for little and big cores through the
  45. multiple CPU idle drivers infrastructure.
  46. endif
  47. config ARCH_NEEDS_CPU_IDLE_COUPLED
  48. def_bool n