diff options
Diffstat (limited to 'drivers/thermal/Kconfig')
-rw-r--r-- | drivers/thermal/Kconfig | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig index 3ab2bd540b54..e1cb6bd75f60 100644 --- a/drivers/thermal/Kconfig +++ b/drivers/thermal/Kconfig | |||
@@ -19,6 +19,18 @@ config THERMAL_HWMON | |||
19 | depends on HWMON=y || HWMON=THERMAL | 19 | depends on HWMON=y || HWMON=THERMAL |
20 | default y | 20 | default y |
21 | 21 | ||
22 | config CPU_THERMAL | ||
23 | bool "generic cpu cooling support" | ||
24 | depends on THERMAL && CPU_FREQ | ||
25 | select CPU_FREQ_TABLE | ||
26 | help | ||
27 | This implements the generic cpu cooling mechanism through frequency | ||
28 | reduction, cpu hotplug and any other ways of reducing temperature. An | ||
29 | ACPI version of this already exists(drivers/acpi/processor_thermal.c). | ||
30 | This will be useful for platforms using the generic thermal interface | ||
31 | and not the ACPI interface. | ||
32 | If you want this support, you should say Y here. | ||
33 | |||
22 | config SPEAR_THERMAL | 34 | config SPEAR_THERMAL |
23 | bool "SPEAr thermal sensor driver" | 35 | bool "SPEAr thermal sensor driver" |
24 | depends on THERMAL | 36 | depends on THERMAL |
@@ -27,3 +39,19 @@ config SPEAR_THERMAL | |||
27 | help | 39 | help |
28 | Enable this to plug the SPEAr thermal sensor driver into the Linux | 40 | Enable this to plug the SPEAr thermal sensor driver into the Linux |
29 | thermal framework | 41 | thermal framework |
42 | |||
43 | config RCAR_THERMAL | ||
44 | tristate "Renesas R-Car thermal driver" | ||
45 | depends on THERMAL | ||
46 | depends on ARCH_SHMOBILE | ||
47 | help | ||
48 | Enable this to plug the R-Car thermal sensor driver into the Linux | ||
49 | thermal framework | ||
50 | |||
51 | config EXYNOS_THERMAL | ||
52 | tristate "Temperature sensor on Samsung EXYNOS" | ||
53 | depends on (ARCH_EXYNOS4 || ARCH_EXYNOS5) && THERMAL | ||
54 | select CPU_FREQ_TABLE | ||
55 | help | ||
56 | If you say yes here you get support for TMU (Thermal Managment | ||
57 | Unit) on SAMSUNG EXYNOS series of SoC. | ||