2019-05-19 12:07:45 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2008-01-17 07:51:08 +00:00
|
|
|
#
|
2020-02-29 20:45:27 +00:00
|
|
|
# Generic thermal drivers configuration
|
2008-01-17 07:51:08 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig THERMAL
|
2020-02-29 20:45:27 +00:00
|
|
|
bool "Thermal drivers"
|
2008-01-17 07:51:08 +00:00
|
|
|
help
|
2020-02-29 20:45:27 +00:00
|
|
|
Thermal drivers offer a generic mechanism for
|
2008-01-17 07:51:08 +00:00
|
|
|
thermal management. Usually it's made up of one or more thermal
|
2020-02-29 20:45:27 +00:00
|
|
|
zones and cooling devices.
|
2008-02-07 21:55:08 +00:00
|
|
|
Each thermal zone contains its own temperature, trip points,
|
2020-02-29 20:45:27 +00:00
|
|
|
and cooling devices.
|
|
|
|
All platforms with ACPI or Open Firmware thermal support can use
|
|
|
|
this driver.
|
2019-04-02 16:12:44 +00:00
|
|
|
If you want this support, you should say Y here.
|
2008-06-24 17:38:56 +00:00
|
|
|
|
2012-11-15 01:16:20 +00:00
|
|
|
if THERMAL
|
|
|
|
|
2020-07-07 09:01:57 +00:00
|
|
|
config THERMAL_NETLINK
|
|
|
|
bool "Thermal netlink management"
|
|
|
|
depends on NET
|
|
|
|
help
|
|
|
|
The thermal framework has a netlink interface to do thermal
|
|
|
|
zones discovery, temperature readings and events such as
|
|
|
|
trip point crossed, cooling device update or governor
|
|
|
|
change. It is recommended to enable the feature.
|
|
|
|
|
2018-04-02 10:56:25 +00:00
|
|
|
config THERMAL_STATISTICS
|
|
|
|
bool "Thermal state transition statistics"
|
|
|
|
help
|
|
|
|
Export thermal state transition statistics information through sysfs.
|
|
|
|
|
|
|
|
If in doubt, say N.
|
|
|
|
|
2017-04-18 04:29:59 +00:00
|
|
|
config THERMAL_EMERGENCY_POWEROFF_DELAY_MS
|
|
|
|
int "Emergency poweroff delay in milli-seconds"
|
|
|
|
default 0
|
|
|
|
help
|
|
|
|
Thermal subsystem will issue a graceful shutdown when
|
|
|
|
critical temperatures are reached using orderly_poweroff(). In
|
|
|
|
case of failure of an orderly_poweroff(), the thermal emergency
|
|
|
|
poweroff kicks in after a delay has elapsed and shuts down the system.
|
|
|
|
This config is number of milliseconds to delay before emergency
|
|
|
|
poweroff kicks in. Similarly to the critical trip point,
|
|
|
|
the delay should be carefully profiled so as to give adequate
|
|
|
|
time for orderly_poweroff() to finish on regular execution.
|
|
|
|
If set to 0 emergency poweroff will not be supported.
|
|
|
|
|
|
|
|
In doubt, leave as 0.
|
|
|
|
|
2008-06-24 17:38:56 +00:00
|
|
|
config THERMAL_HWMON
|
2011-07-28 20:48:40 +00:00
|
|
|
bool
|
2013-07-03 19:14:28 +00:00
|
|
|
prompt "Expose thermal sensors as hwmon device"
|
2008-06-24 17:38:56 +00:00
|
|
|
depends on HWMON=y || HWMON=THERMAL
|
2011-07-28 20:48:40 +00:00
|
|
|
default y
|
2013-07-03 19:14:28 +00:00
|
|
|
help
|
|
|
|
In case a sensor is registered with the thermal
|
|
|
|
framework, this option will also register it
|
|
|
|
as a hwmon. The sensor will then have the common
|
|
|
|
hwmon sysfs interface.
|
|
|
|
|
|
|
|
Say 'Y' here if you want all thermal sensors to
|
|
|
|
have hwmon sysfs interface too.
|
2012-03-21 19:55:03 +00:00
|
|
|
|
2013-07-03 19:35:39 +00:00
|
|
|
config THERMAL_OF
|
|
|
|
bool
|
|
|
|
prompt "APIs to parse thermal data out of device tree"
|
|
|
|
depends on OF
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
This options provides helpers to add the support to
|
|
|
|
read and parse thermal data definitions out of the
|
|
|
|
device tree blob.
|
|
|
|
|
|
|
|
Say 'Y' here if you need to build thermal infrastructure
|
|
|
|
based on device tree.
|
|
|
|
|
2015-03-03 10:43:03 +00:00
|
|
|
config THERMAL_WRITABLE_TRIPS
|
|
|
|
bool "Enable writable trip points"
|
|
|
|
help
|
|
|
|
This option allows the system integrator to choose whether
|
|
|
|
trip temperatures can be changed from userspace. The
|
|
|
|
writable trips need to be specified when setting up the
|
|
|
|
thermal zone but the choice here takes precedence.
|
|
|
|
|
|
|
|
Say 'Y' here if you would like to allow userspace tools to
|
|
|
|
change trip temperatures.
|
|
|
|
|
2012-11-15 01:16:20 +00:00
|
|
|
choice
|
|
|
|
prompt "Default Thermal governor"
|
|
|
|
default THERMAL_DEFAULT_GOV_STEP_WISE
|
|
|
|
help
|
|
|
|
This option sets which thermal governor shall be loaded at
|
|
|
|
startup. If in doubt, select 'step_wise'.
|
|
|
|
|
|
|
|
config THERMAL_DEFAULT_GOV_STEP_WISE
|
|
|
|
bool "step_wise"
|
2013-02-08 12:33:42 +00:00
|
|
|
select THERMAL_GOV_STEP_WISE
|
2012-11-15 01:16:20 +00:00
|
|
|
help
|
|
|
|
Use the step_wise governor as default. This throttles the
|
|
|
|
devices one step at a time.
|
|
|
|
|
|
|
|
config THERMAL_DEFAULT_GOV_FAIR_SHARE
|
|
|
|
bool "fair_share"
|
2013-02-08 12:33:42 +00:00
|
|
|
select THERMAL_GOV_FAIR_SHARE
|
2012-11-15 01:16:20 +00:00
|
|
|
help
|
|
|
|
Use the fair_share governor as default. This throttles the
|
|
|
|
devices based on their 'contribution' to a zone. The
|
|
|
|
contribution should be provided through platform data.
|
|
|
|
|
|
|
|
config THERMAL_DEFAULT_GOV_USER_SPACE
|
|
|
|
bool "user_space"
|
2013-02-08 12:33:42 +00:00
|
|
|
select THERMAL_GOV_USER_SPACE
|
2012-11-15 01:16:20 +00:00
|
|
|
help
|
|
|
|
Select this if you want to let the user space manage the
|
2013-09-08 21:58:53 +00:00
|
|
|
platform thermals.
|
2012-11-15 01:16:20 +00:00
|
|
|
|
2015-03-02 17:17:19 +00:00
|
|
|
config THERMAL_DEFAULT_GOV_POWER_ALLOCATOR
|
|
|
|
bool "power_allocator"
|
2019-11-13 10:53:13 +00:00
|
|
|
depends on THERMAL_GOV_POWER_ALLOCATOR
|
2015-03-02 17:17:19 +00:00
|
|
|
help
|
|
|
|
Select this if you want to control temperature based on
|
|
|
|
system and device power allocation. This governor can only
|
|
|
|
operate on cooling devices that implement the power API.
|
|
|
|
|
2012-11-15 01:16:20 +00:00
|
|
|
endchoice
|
|
|
|
|
2013-02-08 12:33:42 +00:00
|
|
|
config THERMAL_GOV_FAIR_SHARE
|
2012-11-15 01:16:20 +00:00
|
|
|
bool "Fair-share thermal governor"
|
|
|
|
help
|
|
|
|
Enable this to manage platform thermals using fair-share governor.
|
|
|
|
|
2013-02-08 12:33:42 +00:00
|
|
|
config THERMAL_GOV_STEP_WISE
|
2012-11-15 01:16:20 +00:00
|
|
|
bool "Step_wise thermal governor"
|
|
|
|
help
|
|
|
|
Enable this to manage platform thermals using a simple linear
|
2013-09-27 18:20:33 +00:00
|
|
|
governor.
|
2012-11-15 01:16:20 +00:00
|
|
|
|
2014-07-22 15:37:13 +00:00
|
|
|
config THERMAL_GOV_BANG_BANG
|
|
|
|
bool "Bang Bang thermal governor"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Enable this to manage platform thermals using bang bang governor.
|
|
|
|
|
|
|
|
Say 'Y' here if you want to use two point temperature regulation
|
|
|
|
used for fans without throttling. Some fan drivers depend on this
|
|
|
|
governor to be enabled (e.g. acerhdf).
|
|
|
|
|
2013-02-08 12:33:42 +00:00
|
|
|
config THERMAL_GOV_USER_SPACE
|
2012-11-15 01:16:20 +00:00
|
|
|
bool "User_space thermal governor"
|
|
|
|
help
|
|
|
|
Enable this to let the user space manage the platform thermals.
|
|
|
|
|
2015-03-02 17:17:19 +00:00
|
|
|
config THERMAL_GOV_POWER_ALLOCATOR
|
|
|
|
bool "Power allocator thermal governor"
|
2019-10-30 15:14:51 +00:00
|
|
|
depends on ENERGY_MODEL
|
2015-03-02 17:17:19 +00:00
|
|
|
help
|
|
|
|
Enable this to manage platform thermals by dynamically
|
|
|
|
allocating and limiting power to devices.
|
|
|
|
|
2012-08-16 11:41:40 +00:00
|
|
|
config CPU_THERMAL
|
2019-04-02 16:12:49 +00:00
|
|
|
bool "Generic cpu cooling support"
|
2013-09-12 23:26:45 +00:00
|
|
|
depends on THERMAL_OF
|
2019-12-04 15:39:27 +00:00
|
|
|
help
|
|
|
|
Enable the CPU cooling features. If the system has no active
|
|
|
|
cooling device available, this option allows to use the CPU
|
|
|
|
as a cooling device.
|
|
|
|
|
|
|
|
if CPU_THERMAL
|
|
|
|
|
|
|
|
config CPU_FREQ_THERMAL
|
|
|
|
bool "CPU frequency cooling device"
|
|
|
|
depends on CPU_FREQ
|
|
|
|
default y
|
2012-08-16 11:41:40 +00:00
|
|
|
help
|
|
|
|
This implements the generic cpu cooling mechanism through frequency
|
2013-04-17 17:12:10 +00:00
|
|
|
reduction. An ACPI version of this already exists
|
|
|
|
(drivers/acpi/processor_thermal.c).
|
2012-08-16 11:41:40 +00:00
|
|
|
This will be useful for platforms using the generic thermal interface
|
|
|
|
and not the ACPI interface.
|
2013-04-17 17:12:10 +00:00
|
|
|
|
2019-12-19 22:53:16 +00:00
|
|
|
config CPU_IDLE_THERMAL
|
|
|
|
bool "CPU idle cooling device"
|
|
|
|
depends on IDLE_INJECT
|
|
|
|
help
|
|
|
|
This implements the CPU cooling mechanism through
|
|
|
|
idle injection. This will throttle the CPU by injecting
|
|
|
|
idle cycle.
|
2019-12-04 15:39:27 +00:00
|
|
|
endif
|
2012-08-16 11:41:40 +00:00
|
|
|
|
2015-09-10 17:09:30 +00:00
|
|
|
config DEVFREQ_THERMAL
|
|
|
|
bool "Generic device cooling support"
|
|
|
|
depends on PM_DEVFREQ
|
|
|
|
depends on PM_OPP
|
|
|
|
help
|
|
|
|
This implements the generic devfreq cooling mechanism through
|
|
|
|
frequency reduction for devices using devfreq.
|
|
|
|
|
|
|
|
This will throttle the device by limiting the maximum allowed DVFS
|
|
|
|
frequency corresponding to the cooling level.
|
|
|
|
|
|
|
|
In order to use the power extensions of the cooling device,
|
|
|
|
devfreq should use the simple_ondemand governor.
|
|
|
|
|
2014-01-06 13:04:18 +00:00
|
|
|
If you want this support, you should say Y here.
|
|
|
|
|
2013-02-04 00:30:15 +00:00
|
|
|
config THERMAL_EMULATION
|
|
|
|
bool "Thermal emulation mode support"
|
|
|
|
help
|
|
|
|
Enable this option to make a emul_temp sysfs node in thermal zone
|
|
|
|
directory to support temperature emulation. With emulation sysfs node,
|
|
|
|
user can manually input temperature and test the different trip
|
|
|
|
threshold behaviour for simulation purpose.
|
|
|
|
|
2013-03-26 21:38:34 +00:00
|
|
|
WARNING: Be careful while enabling this option on production systems,
|
|
|
|
because userland can easily disable the thermal policy by simply
|
|
|
|
flooding this sysfs node with low temperature values.
|
|
|
|
|
2019-04-11 10:22:48 +00:00
|
|
|
config THERMAL_MMIO
|
|
|
|
tristate "Generic Thermal MMIO driver"
|
|
|
|
depends on OF || COMPILE_TEST
|
2019-04-29 09:47:36 +00:00
|
|
|
depends on HAS_IOMEM
|
2019-04-11 10:22:48 +00:00
|
|
|
help
|
|
|
|
This option enables the generic thermal MMIO driver that will use
|
|
|
|
memory-mapped reads to get the temperature. Any HW/System that
|
|
|
|
allows temperature reading by a single memory-mapped reading, be it
|
|
|
|
register or shared memory, is a potential candidate to work with this
|
|
|
|
driver.
|
|
|
|
|
2015-05-20 11:16:37 +00:00
|
|
|
config HISI_THERMAL
|
|
|
|
tristate "Hisilicon thermal driver"
|
2016-08-31 08:50:16 +00:00
|
|
|
depends on ARCH_HISI || COMPILE_TEST
|
2016-03-04 01:03:59 +00:00
|
|
|
depends on HAS_IOMEM
|
2016-08-31 08:50:16 +00:00
|
|
|
depends on OF
|
|
|
|
default y
|
2015-05-20 11:16:37 +00:00
|
|
|
help
|
|
|
|
Enable this to plug hisilicon's thermal sensor driver into the Linux
|
|
|
|
thermal framework. cpufreq is used as the cooling device to throttle
|
|
|
|
CPUs when the passive trip is crossed.
|
|
|
|
|
2013-06-24 06:30:44 +00:00
|
|
|
config IMX_THERMAL
|
|
|
|
tristate "Temperature sensor driver for Freescale i.MX SoCs"
|
2018-11-21 05:49:36 +00:00
|
|
|
depends on ARCH_MXC || COMPILE_TEST
|
2017-09-18 20:48:16 +00:00
|
|
|
depends on NVMEM || !NVMEM
|
2013-06-24 06:30:44 +00:00
|
|
|
depends on MFD_SYSCON
|
|
|
|
depends on OF
|
|
|
|
help
|
|
|
|
Support for Temperature Monitor (TEMPMON) found on Freescale i.MX SoCs.
|
|
|
|
It supports one critical trip point and one passive trip point. The
|
|
|
|
cpufreq is used as the cooling device to throttle CPUs when the
|
|
|
|
passive trip is crossed.
|
|
|
|
|
2020-02-22 00:08:50 +00:00
|
|
|
config IMX_SC_THERMAL
|
|
|
|
tristate "Temperature sensor driver for NXP i.MX SoCs with System Controller"
|
2020-03-03 08:04:44 +00:00
|
|
|
depends on IMX_SCU
|
2020-02-22 00:08:50 +00:00
|
|
|
depends on OF
|
|
|
|
help
|
|
|
|
Support for Temperature Monitor (TEMPMON) found on NXP i.MX SoCs with
|
|
|
|
system controller inside, Linux kernel has to communicate with system
|
|
|
|
controller via MU (message unit) IPC to get temperature from thermal
|
|
|
|
sensor. It supports one critical trip point and one
|
|
|
|
passive trip point for each thermal sensor.
|
|
|
|
|
2020-02-29 03:44:20 +00:00
|
|
|
config IMX8MM_THERMAL
|
|
|
|
tristate "Temperature sensor driver for Freescale i.MX8MM SoC"
|
2020-03-06 15:37:37 +00:00
|
|
|
depends on ARCH_MXC || COMPILE_TEST
|
2020-02-29 03:44:20 +00:00
|
|
|
depends on OF
|
|
|
|
help
|
|
|
|
Support for Thermal Monitoring Unit (TMU) found on Freescale i.MX8MM SoC.
|
|
|
|
It supports one critical trip point and one passive trip point. The
|
|
|
|
cpufreq is used as the cooling device to throttle CPUs when the passive
|
|
|
|
trip is crossed.
|
|
|
|
|
2020-04-07 05:51:14 +00:00
|
|
|
config K3_THERMAL
|
|
|
|
tristate "Texas Instruments K3 thermal support"
|
|
|
|
depends on ARCH_K3 || COMPILE_TEST
|
|
|
|
help
|
|
|
|
If you say yes here you get thermal support for the Texas Instruments
|
|
|
|
K3 SoC family. The current chip supported is:
|
|
|
|
- AM654
|
|
|
|
|
|
|
|
This includes temperature reading functionality.
|
|
|
|
|
2016-08-23 08:20:27 +00:00
|
|
|
config MAX77620_THERMAL
|
|
|
|
tristate "Temperature sensor driver for Maxim MAX77620 PMIC"
|
|
|
|
depends on MFD_MAX77620
|
|
|
|
depends on OF
|
|
|
|
help
|
|
|
|
Support for die junction temperature warning alarm for Maxim
|
|
|
|
Semiconductor PMIC MAX77620 device. Device generates two alarm
|
|
|
|
interrupts when PMIC die temperature cross the threshold of
|
|
|
|
120 degC and 140 degC.
|
|
|
|
|
2016-06-30 03:08:38 +00:00
|
|
|
config QORIQ_THERMAL
|
|
|
|
tristate "QorIQ Thermal Monitoring Unit"
|
2020-05-07 11:29:55 +00:00
|
|
|
depends on THERMAL_OF && HAS_IOMEM
|
|
|
|
depends on PPC_E500MC || SOC_LS1021A || ARCH_LAYERSCAPE || (ARCH_MXC && ARM64) || COMPILE_TEST
|
2020-03-03 08:46:41 +00:00
|
|
|
select REGMAP_MMIO
|
2016-06-30 03:08:38 +00:00
|
|
|
help
|
|
|
|
Support for Thermal Monitoring Unit (TMU) found on QorIQ platforms.
|
|
|
|
It supports one critical trip point and one passive trip point. The
|
|
|
|
cpufreq is used as the cooling device to throttle CPUs when the
|
|
|
|
passive trip is crossed.
|
|
|
|
|
2012-03-21 19:55:03 +00:00
|
|
|
config SPEAR_THERMAL
|
2016-01-25 16:44:11 +00:00
|
|
|
tristate "SPEAr thermal sensor driver"
|
2015-09-10 03:42:01 +00:00
|
|
|
depends on PLAT_SPEAR || COMPILE_TEST
|
2016-03-04 01:03:59 +00:00
|
|
|
depends on HAS_IOMEM
|
2012-05-29 18:18:51 +00:00
|
|
|
depends on OF
|
2012-03-21 19:55:03 +00:00
|
|
|
help
|
|
|
|
Enable this to plug the SPEAr thermal sensor driver into the Linux
|
2013-09-27 18:20:33 +00:00
|
|
|
thermal framework.
|
2012-07-21 00:53:48 +00:00
|
|
|
|
2019-12-19 17:28:17 +00:00
|
|
|
config SUN8I_THERMAL
|
|
|
|
tristate "Allwinner sun8i thermal driver"
|
|
|
|
depends on ARCH_SUNXI || COMPILE_TEST
|
|
|
|
depends on HAS_IOMEM
|
|
|
|
depends on NVMEM
|
|
|
|
depends on OF
|
|
|
|
depends on RESET_CONTROLLER
|
|
|
|
help
|
|
|
|
Support for the sun8i thermal sensor driver into the Linux thermal
|
|
|
|
framework.
|
|
|
|
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
|
|
module will be called sun8i-thermal.
|
|
|
|
|
2014-11-24 04:58:59 +00:00
|
|
|
config ROCKCHIP_THERMAL
|
|
|
|
tristate "Rockchip thermal driver"
|
2015-09-10 03:43:57 +00:00
|
|
|
depends on ARCH_ROCKCHIP || COMPILE_TEST
|
2014-11-24 04:58:59 +00:00
|
|
|
depends on RESET_CONTROLLER
|
2016-03-04 01:03:59 +00:00
|
|
|
depends on HAS_IOMEM
|
2014-11-24 04:58:59 +00:00
|
|
|
help
|
|
|
|
Rockchip thermal driver provides support for Temperature sensor
|
|
|
|
ADC (TS-ADC) found on Rockchip SoCs. It supports one critical
|
|
|
|
trip point. Cpufreq is used as the cooling device and will throttle
|
|
|
|
CPUs when the Temperature crosses the passive trip point.
|
|
|
|
|
2012-07-21 00:53:48 +00:00
|
|
|
config RCAR_THERMAL
|
|
|
|
tristate "Renesas R-Car thermal driver"
|
2016-03-02 02:04:26 +00:00
|
|
|
depends on ARCH_RENESAS || COMPILE_TEST
|
2014-01-27 08:40:58 +00:00
|
|
|
depends on HAS_IOMEM
|
2012-07-21 00:53:48 +00:00
|
|
|
help
|
|
|
|
Enable this to plug the R-Car thermal sensor driver into the Linux
|
2013-09-27 18:20:33 +00:00
|
|
|
thermal framework.
|
2012-08-16 11:41:41 +00:00
|
|
|
|
2016-12-22 10:38:21 +00:00
|
|
|
config RCAR_GEN3_THERMAL
|
2020-09-17 15:21:41 +00:00
|
|
|
tristate "Renesas R-Car Gen3 and RZ/G2 thermal driver"
|
2016-12-22 10:38:21 +00:00
|
|
|
depends on ARCH_RENESAS || COMPILE_TEST
|
|
|
|
depends on HAS_IOMEM
|
|
|
|
depends on OF
|
|
|
|
help
|
2020-09-17 15:21:41 +00:00
|
|
|
Enable this to plug the R-Car Gen3 or RZ/G2 thermal sensor driver into
|
|
|
|
the Linux thermal framework.
|
2016-12-22 10:38:21 +00:00
|
|
|
|
2021-11-30 15:57:57 +00:00
|
|
|
config RZG2L_THERMAL
|
|
|
|
tristate "Renesas RZ/G2L thermal driver"
|
|
|
|
depends on ARCH_RENESAS || COMPILE_TEST
|
|
|
|
depends on HAS_IOMEM
|
|
|
|
depends on OF
|
|
|
|
help
|
|
|
|
Enable this to plug the RZ/G2L thermal sensor driver into the Linux
|
|
|
|
thermal framework.
|
|
|
|
|
2013-02-06 06:35:24 +00:00
|
|
|
config KIRKWOOD_THERMAL
|
|
|
|
tristate "Temperature sensor on Marvell Kirkwood SoCs"
|
2015-09-10 03:44:46 +00:00
|
|
|
depends on MACH_KIRKWOOD || COMPILE_TEST
|
2016-03-04 01:03:59 +00:00
|
|
|
depends on HAS_IOMEM
|
2013-02-06 06:35:24 +00:00
|
|
|
depends on OF
|
|
|
|
help
|
|
|
|
Support for the Kirkwood thermal sensor driver into the Linux thermal
|
|
|
|
framework. Only kirkwood 88F6282 and 88F6283 have this sensor.
|
|
|
|
|
2013-02-06 06:35:26 +00:00
|
|
|
config DOVE_THERMAL
|
|
|
|
tristate "Temperature sensor on Marvell Dove SoCs"
|
2015-09-10 03:45:25 +00:00
|
|
|
depends on ARCH_DOVE || MACH_DOVE || COMPILE_TEST
|
2016-03-04 01:03:59 +00:00
|
|
|
depends on HAS_IOMEM
|
2013-02-06 06:35:26 +00:00
|
|
|
depends on OF
|
|
|
|
help
|
|
|
|
Support for the Dove thermal sensor driver in the Linux thermal
|
|
|
|
framework.
|
|
|
|
|
2012-11-15 10:56:42 +00:00
|
|
|
config DB8500_THERMAL
|
2016-01-25 16:44:12 +00:00
|
|
|
tristate "DB8500 thermal management"
|
2019-08-28 13:03:18 +00:00
|
|
|
depends on MFD_DB8500_PRCMU && OF
|
2012-11-15 10:56:42 +00:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
Adds DB8500 thermal management implementation according to the thermal
|
|
|
|
management framework. A thermal zone with several trip points will be
|
|
|
|
created. Cooling devices can be bound to the trip points to cool this
|
|
|
|
thermal zone if trip points reached.
|
|
|
|
|
2013-04-02 01:37:41 +00:00
|
|
|
config ARMADA_THERMAL
|
2017-12-22 16:14:10 +00:00
|
|
|
tristate "Marvell EBU Armada SoCs thermal management"
|
2015-09-10 03:48:00 +00:00
|
|
|
depends on ARCH_MVEBU || COMPILE_TEST
|
2016-03-04 01:03:59 +00:00
|
|
|
depends on HAS_IOMEM
|
2013-04-02 01:37:41 +00:00
|
|
|
depends on OF
|
|
|
|
help
|
|
|
|
Enable this option if you want to have support for thermal management
|
2017-12-22 16:14:10 +00:00
|
|
|
controller present in Marvell EBU Armada SoCs (370,375,XP,38x,7K,8K).
|
2013-04-02 01:37:41 +00:00
|
|
|
|
2017-03-28 14:43:33 +00:00
|
|
|
config DA9062_THERMAL
|
|
|
|
tristate "DA9062/DA9061 Dialog Semiconductor thermal driver"
|
|
|
|
depends on MFD_DA9062 || COMPILE_TEST
|
|
|
|
depends on OF
|
|
|
|
help
|
|
|
|
Enable this for the Dialog Semiconductor thermal sensor driver.
|
|
|
|
This will report PMIC junction over-temperature for one thermal trip
|
|
|
|
zone.
|
|
|
|
Compatible with the DA9062 and DA9061 PMICs.
|
|
|
|
|
2015-11-30 11:42:32 +00:00
|
|
|
config MTK_THERMAL
|
|
|
|
tristate "Temperature sensor driver for mediatek SoCs"
|
|
|
|
depends on ARCH_MEDIATEK || COMPILE_TEST
|
2016-03-08 21:32:48 +00:00
|
|
|
depends on HAS_IOMEM
|
2016-04-19 16:44:23 +00:00
|
|
|
depends on NVMEM || NVMEM=n
|
2016-04-14 13:15:20 +00:00
|
|
|
depends on RESET_CONTROLLER
|
2015-11-30 11:42:32 +00:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
Enable this option if you want to have support for thermal management
|
|
|
|
controller present in Mediatek SoCs
|
|
|
|
|
2019-10-04 09:01:09 +00:00
|
|
|
config AMLOGIC_THERMAL
|
|
|
|
tristate "Amlogic Thermal Support"
|
|
|
|
default ARCH_MESON
|
|
|
|
depends on OF && ARCH_MESON
|
|
|
|
help
|
|
|
|
If you say yes here you get support for Amlogic Thermal
|
|
|
|
for G12 SoC Family.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called amlogic_thermal.
|
|
|
|
|
2018-12-07 06:55:26 +00:00
|
|
|
menu "Intel thermal drivers"
|
|
|
|
depends on X86 || X86_INTEL_QUARK || COMPILE_TEST
|
|
|
|
source "drivers/thermal/intel/Kconfig"
|
|
|
|
endmenu
|
|
|
|
|
2017-04-03 15:48:29 +00:00
|
|
|
menu "Broadcom thermal drivers"
|
2019-01-03 08:55:33 +00:00
|
|
|
depends on ARCH_BCM || ARCH_BRCMSTB || ARCH_BCM2835 || ARCH_BCM_IPROC || \
|
|
|
|
COMPILE_TEST
|
2017-04-03 15:48:29 +00:00
|
|
|
source "drivers/thermal/broadcom/Kconfig"
|
|
|
|
endmenu
|
|
|
|
|
2013-05-15 15:46:00 +00:00
|
|
|
menu "Texas Instruments thermal drivers"
|
2015-09-10 04:13:41 +00:00
|
|
|
depends on ARCH_HAS_BANDGAP || COMPILE_TEST
|
2016-03-04 01:03:59 +00:00
|
|
|
depends on HAS_IOMEM
|
2013-05-15 15:46:00 +00:00
|
|
|
source "drivers/thermal/ti-soc-thermal/Kconfig"
|
|
|
|
endmenu
|
2013-06-17 22:31:26 +00:00
|
|
|
|
2013-06-24 10:50:22 +00:00
|
|
|
menu "Samsung thermal drivers"
|
2015-09-10 03:53:35 +00:00
|
|
|
depends on ARCH_EXYNOS || COMPILE_TEST
|
2013-06-24 10:50:22 +00:00
|
|
|
source "drivers/thermal/samsung/Kconfig"
|
|
|
|
endmenu
|
|
|
|
|
2014-06-05 15:06:55 +00:00
|
|
|
menu "STMicroelectronics thermal drivers"
|
2018-10-05 10:08:46 +00:00
|
|
|
depends on (ARCH_STI || ARCH_STM32) && OF
|
2014-06-05 15:06:55 +00:00
|
|
|
source "drivers/thermal/st/Kconfig"
|
|
|
|
endmenu
|
|
|
|
|
2016-03-29 10:29:11 +00:00
|
|
|
source "drivers/thermal/tegra/Kconfig"
|
|
|
|
|
2016-04-19 07:22:01 +00:00
|
|
|
config GENERIC_ADC_THERMAL
|
|
|
|
tristate "Generic ADC based thermal sensor"
|
|
|
|
depends on IIO
|
|
|
|
help
|
|
|
|
This enabled a thermal sysfs driver for the temperature sensor
|
|
|
|
which is connected to the General Purpose ADC. The ADC channel
|
|
|
|
is read via IIO framework and the channel information is provided
|
|
|
|
to this driver. This driver reports the temperature by reading ADC
|
|
|
|
channel and converts it to temperature based on lookup table.
|
|
|
|
|
2016-05-05 08:51:39 +00:00
|
|
|
menu "Qualcomm thermal drivers"
|
|
|
|
depends on (ARCH_QCOM && OF) || COMPILE_TEST
|
|
|
|
source "drivers/thermal/qcom/Kconfig"
|
|
|
|
endmenu
|
|
|
|
|
2017-08-01 08:04:51 +00:00
|
|
|
config UNIPHIER_THERMAL
|
|
|
|
tristate "Socionext UniPhier thermal driver"
|
|
|
|
depends on ARCH_UNIPHIER || COMPILE_TEST
|
|
|
|
depends on THERMAL_OF && MFD_SYSCON
|
|
|
|
help
|
|
|
|
Enable this to plug in UniPhier on-chip PVT thermal driver into the
|
|
|
|
thermal framework. The driver supports CPU thermal zone temperature
|
|
|
|
reporting and a couple of trip points.
|
2020-02-18 08:10:28 +00:00
|
|
|
|
|
|
|
config SPRD_THERMAL
|
|
|
|
tristate "Temperature sensor on Spreadtrum SoCs"
|
|
|
|
depends on ARCH_SPRD || COMPILE_TEST
|
|
|
|
help
|
|
|
|
Support for the Spreadtrum thermal sensor driver in the Linux thermal
|
|
|
|
framework.
|
2020-06-24 16:15:27 +00:00
|
|
|
|
|
|
|
config KHADAS_MCU_FAN_THERMAL
|
|
|
|
tristate "Khadas MCU controller FAN cooling support"
|
|
|
|
depends on OF || COMPILE_TEST
|
|
|
|
depends on MFD_KHADAS_MCU
|
|
|
|
select MFD_CORE
|
|
|
|
select REGMAP
|
|
|
|
help
|
|
|
|
If you say yes here you get support for the FAN controlled
|
|
|
|
by the Microcontroller found on the Khadas VIM boards.
|
|
|
|
|
2012-11-15 01:16:20 +00:00
|
|
|
endif
|