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