Kconfig 581 B

12345678910111213141516171819202122232425262728
  1. menuconfig RT_USING_THERMAL
  2. bool "Using Thermal Management device drivers"
  3. depends on RT_USING_DM
  4. default n
  5. if RT_USING_THERMAL
  6. comment "Thermal Sensors Drivers"
  7. endif
  8. if RT_USING_THERMAL
  9. osource "$(SOC_DM_THERMAL_DIR)/Kconfig"
  10. endif
  11. if RT_USING_THERMAL
  12. comment "Thermal Cool Drivers"
  13. endif
  14. config RT_THERMAL_COOL_PWM_FAN
  15. bool "PWM Fan"
  16. depends on RT_USING_THERMAL
  17. depends on RT_USING_PWM
  18. depends on RT_USING_REGULATOR
  19. depends on RT_USING_OFW
  20. default n
  21. if RT_USING_THERMAL
  22. osource "$(SOC_DM_THERMAL_COOL_DIR)/Kconfig"
  23. endif