Kconfig 752 B

12345678910111213141516171819202122232425262728293031
  1. # SPDX-License-Identifier: Apache-2.0
  2. choice
  3. prompt "Idle State Power Management Policy"
  4. help
  5. Select the idle state power management policy.
  6. config PM_POLICY_RESIDENCY
  7. bool "PM Policy based on CPU residency"
  8. select PM_POLICY_RESIDENCY_DEFAULT
  9. help
  10. Select this option for PM policy based on CPU residencies.
  11. config PM_POLICY_DUMMY
  12. bool "Dummy PM Policy for testing purposes"
  13. help
  14. Dummy PM Policy which simply returns next PM state in a loop.
  15. This policy is used for testing purposes only.
  16. config PM_POLICY_APP
  17. bool "Application PM Policy"
  18. help
  19. When this option is selected, the application must provide PM policy.
  20. endchoice
  21. config PM_POLICY_RESIDENCY_DEFAULT
  22. bool
  23. help
  24. Use the default residency policy implementation