Kconfig 717 B

12345678910111213141516171819202122232425262728293031323334
  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. config RT_THERMAL_SCMI
  9. bool "ARM SCMI interface"
  10. depends on RT_USING_THERMAL
  11. depends on RT_FIRMWARE_ARM_SCMI
  12. default n
  13. if RT_USING_THERMAL
  14. osource "$(SOC_DM_THERMAL_DIR)/Kconfig"
  15. endif
  16. if RT_USING_THERMAL
  17. comment "Thermal Cool Drivers"
  18. endif
  19. config RT_THERMAL_COOL_PWM_FAN
  20. bool "PWM Fan"
  21. depends on RT_USING_THERMAL
  22. depends on RT_USING_PWM
  23. depends on RT_USING_REGULATOR
  24. depends on RT_USING_OFW
  25. default n
  26. if RT_USING_THERMAL
  27. osource "$(SOC_DM_THERMAL_COOL_DIR)/Kconfig"
  28. endif