2023-10-13 17:10:56 +02:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2023-11-24 16:36:57 +01:00
|
|
|
config THERMAL_GOVERNOR_STEP_WISE
|
|
|
|
bool "Enable step wise governor"
|
|
|
|
default y
|
|
|
|
---help---
|
|
|
|
Enable step wise governor.
|
|
|
|
|
2023-11-07 13:09:01 +01:00
|
|
|
config THERMAL_CDEV_CPUFREQ
|
|
|
|
bool "Thermal cpufreq cooling device"
|
|
|
|
default n
|
|
|
|
depends on CPUFREQ
|
|
|
|
---help---
|
|
|
|
Enable thermal cpufreq cooling device.
|
|
|
|
|
2023-11-07 13:10:19 +01:00
|
|
|
config THERMAL_PROCFS
|
|
|
|
bool "Thermal PROCFS support"
|
|
|
|
default n
|
|
|
|
depends on FS_PROCFS
|
|
|
|
---help---
|
|
|
|
Enable thermal procfs.
|
|
|
|
|
2023-10-13 17:10:56 +02:00
|
|
|
endif # THERMAL
|