Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. config RT_USING_PM
  2. bool "Using Power Management device drivers"
  3. default n
  4. if RT_USING_PM
  5. config PM_TICKLESS_THRESHOLD_TIME
  6. int "PM tickless threashold time"
  7. default 2
  8. config PM_USING_CUSTOM_CONFIG
  9. bool "PM using custom pm config"
  10. default n
  11. config PM_ENABLE_DEBUG
  12. bool "PM Enable Debug"
  13. default n
  14. config PM_ENABLE_SUSPEND_SLEEP_MODE
  15. bool "PM Device suspend change sleep mode"
  16. default n
  17. config PM_ENABLE_THRESHOLD_SLEEP_MODE
  18. bool "PM using threshold time change sleep mode"
  19. default n
  20. if PM_ENABLE_THRESHOLD_SLEEP_MODE
  21. config PM_LIGHT_THRESHOLD_TIME
  22. int "PM light mode threashold time"
  23. default 5
  24. config PM_DEEP_THRESHOLD_TIME
  25. int "PM deep mode threashold time"
  26. default 20
  27. config PM_STANDBY_THRESHOLD_TIME
  28. int "PM standby mode threashold time"
  29. default 100
  30. endif
  31. endif