nuttx/drivers/thermal/Kconfig
wangjianyu3 b30f866f80 Thermal: Add procfs file nodes
Signed-off-by: wangjianyu3 <wangjianyu3@xiaomi.com>
2024-09-23 08:57:29 +08:00

41 lines
787 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
menuconfig THERMAL
bool "Thermal framework"
default n
---help---
Enable thermal framework.
if THERMAL
config THERMAL_DEFAULT_GOVERNOR
string "Thermal default governor name"
default "step_wise"
---help---
Default governor name.
config THERMAL_GOVERNOR_STEP_WISE
bool "Enable step wise governor"
default y
---help---
Enable step wise governor.
config THERMAL_CDEV_CPUFREQ
bool "Thermal cpufreq cooling device"
default n
depends on CPUFREQ
---help---
Enable thermal cpufreq cooling device.
config THERMAL_PROCFS
bool "Thermal PROCFS support"
default n
depends on FS_PROCFS
---help---
Enable thermal procfs.
endif # THERMAL