Kconfig 723 B

123456789101112131415161718192021222324252627282930
  1. menuconfig RT_USING_REGULATOR
  2. bool "Using Voltage and Current Regulator"
  3. select RT_USING_ADT
  4. select RT_USING_ADT_REF
  5. depends on RT_USING_DM
  6. default n
  7. config RT_REGULATOR_FIXED
  8. bool "Fixed regulator support"
  9. depends on RT_USING_REGULATOR
  10. depends on RT_USING_PIN
  11. depends on RT_USING_PINCTRL
  12. default y
  13. config RT_REGULATOR_GPIO
  14. bool "GPIO regulator support"
  15. depends on RT_USING_REGULATOR
  16. depends on RT_USING_PIN
  17. default y
  18. config RT_REGULATOR_SCMI
  19. bool "SCMI regulator support"
  20. depends on RT_USING_REGULATOR
  21. depends on RT_USING_OFW
  22. depends on RT_FIRMWARE_ARM_SCMI
  23. default n
  24. if RT_USING_REGULATOR
  25. osource "$(SOC_DM_REGULATOR_DIR)/Kconfig"
  26. endif