Kconfig 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # Copyright (c) 2014-2015 Wind River Systems, Inc.
  2. # Copyright (c) 2016 Intel Corporation
  3. # SPDX-License-Identifier: Apache-2.0
  4. menu "Power Management"
  5. config SYS_POWER_MANAGEMENT
  6. bool "System Power management"
  7. select PM
  8. help
  9. This option is deprecated. Please use CONFIG_PM instead.
  10. menuconfig PM
  11. bool "System Power Management"
  12. depends on SYS_CLOCK_EXISTS && !HAS_NO_SYS_PM
  13. help
  14. This option enables the board to implement extra power management
  15. policies whenever the kernel becomes idle. The kernel informs the
  16. power management subsystem of the number of ticks until the next kernel
  17. timer is due to expire.
  18. if PM
  19. config PM_DEBUG
  20. bool "System Power Management debug hooks"
  21. help
  22. Enable System Power Management debugging hooks.
  23. source "subsys/pm/policy/Kconfig"
  24. module = PM
  25. module-str = System Power Management
  26. source "subsys/logging/Kconfig.template.log_config"
  27. endif # PM
  28. config HAS_NO_SYS_PM
  29. bool
  30. help
  31. This option blocks selection of PM. It can be selected in SOC
  32. targets where system power management is not supported, for example
  33. on support core of a multi-core device where SoC power management is
  34. the responsibility of a different core.
  35. config PM_DEVICE
  36. bool "Device power management"
  37. help
  38. This option enables the device power management interface. The
  39. interface consists of hook functions implemented by device drivers
  40. that get called by the power manager application when the system
  41. is going to suspend state or resuming from suspend state. This allows
  42. device drivers to do any necessary power management operations
  43. like turning off device clocks and peripherals. The device drivers
  44. may also save and restore states in these hook functions.
  45. config DEVICE_POWER_MANAGEMENT
  46. bool "Device Power Management"
  47. select PM_DEVICE
  48. help
  49. This option is deprecated, please use CONFIG_PM_DEVICE instead.
  50. config PM_DEVICE_RUNTIME
  51. bool "Runtime Device Power Management"
  52. depends on PM_DEVICE
  53. select POLL
  54. help
  55. Enable Runtime Power Management to save power. With device runtime PM
  56. enabled, devices can be suspended or resumed based on the device
  57. usage even while the CPU or system is running.
  58. endmenu