Revert "Revert "driver core: Set fw_devlink to "permissive" behavior by default""
[linux-2.6-microblaze.git] / drivers / thermal / Kconfig
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # Generic thermal drivers configuration
4 #
5
6 menuconfig THERMAL
7         bool "Thermal drivers"
8         help
9           Thermal drivers offer a generic mechanism for
10           thermal management. Usually it's made up of one or more thermal
11           zones and cooling devices.
12           Each thermal zone contains its own temperature, trip points,
13           and cooling devices.
14           All platforms with ACPI or Open Firmware thermal support can use
15           this driver.
16           If you want this support, you should say Y here.
17
18 if THERMAL
19
20 config THERMAL_STATISTICS
21         bool "Thermal state transition statistics"
22         help
23           Export thermal state transition statistics information through sysfs.
24
25           If in doubt, say N.
26
27 config THERMAL_EMERGENCY_POWEROFF_DELAY_MS
28         int "Emergency poweroff delay in milli-seconds"
29         default 0
30         help
31           Thermal subsystem will issue a graceful shutdown when
32           critical temperatures are reached using orderly_poweroff(). In
33           case of failure of an orderly_poweroff(), the thermal emergency
34           poweroff kicks in after a delay has elapsed and shuts down the system.
35           This config is number of milliseconds to delay before emergency
36           poweroff kicks in. Similarly to the critical trip point,
37           the delay should be carefully profiled so as to give adequate
38           time for orderly_poweroff() to finish on regular execution.
39           If set to 0 emergency poweroff will not be supported.
40
41           In doubt, leave as 0.
42
43 config THERMAL_HWMON
44         bool
45         prompt "Expose thermal sensors as hwmon device"
46         depends on HWMON=y || HWMON=THERMAL
47         default y
48         help
49           In case a sensor is registered with the thermal
50           framework, this option will also register it
51           as a hwmon. The sensor will then have the common
52           hwmon sysfs interface.
53
54           Say 'Y' here if you want all thermal sensors to
55           have hwmon sysfs interface too.
56
57 config THERMAL_OF
58         bool
59         prompt "APIs to parse thermal data out of device tree"
60         depends on OF
61         default y
62         help
63           This options provides helpers to add the support to
64           read and parse thermal data definitions out of the
65           device tree blob.
66
67           Say 'Y' here if you need to build thermal infrastructure
68           based on device tree.
69
70 config THERMAL_WRITABLE_TRIPS
71         bool "Enable writable trip points"
72         help
73           This option allows the system integrator to choose whether
74           trip temperatures can be changed from userspace. The
75           writable trips need to be specified when setting up the
76           thermal zone but the choice here takes precedence.
77
78           Say 'Y' here if you would like to allow userspace tools to
79           change trip temperatures.
80
81 choice
82         prompt "Default Thermal governor"
83         default THERMAL_DEFAULT_GOV_STEP_WISE
84         help
85           This option sets which thermal governor shall be loaded at
86           startup. If in doubt, select 'step_wise'.
87
88 config THERMAL_DEFAULT_GOV_STEP_WISE
89         bool "step_wise"
90         select THERMAL_GOV_STEP_WISE
91         help
92           Use the step_wise governor as default. This throttles the
93           devices one step at a time.
94
95 config THERMAL_DEFAULT_GOV_FAIR_SHARE
96         bool "fair_share"
97         select THERMAL_GOV_FAIR_SHARE
98         help
99           Use the fair_share governor as default. This throttles the
100           devices based on their 'contribution' to a zone. The
101           contribution should be provided through platform data.
102
103 config THERMAL_DEFAULT_GOV_USER_SPACE
104         bool "user_space"
105         select THERMAL_GOV_USER_SPACE
106         help
107           Select this if you want to let the user space manage the
108           platform thermals.
109
110 config THERMAL_DEFAULT_GOV_POWER_ALLOCATOR
111         bool "power_allocator"
112         depends on THERMAL_GOV_POWER_ALLOCATOR
113         help
114           Select this if you want to control temperature based on
115           system and device power allocation. This governor can only
116           operate on cooling devices that implement the power API.
117
118 endchoice
119
120 config THERMAL_GOV_FAIR_SHARE
121         bool "Fair-share thermal governor"
122         help
123           Enable this to manage platform thermals using fair-share governor.
124
125 config THERMAL_GOV_STEP_WISE
126         bool "Step_wise thermal governor"
127         help
128           Enable this to manage platform thermals using a simple linear
129           governor.
130
131 config THERMAL_GOV_BANG_BANG
132         bool "Bang Bang thermal governor"
133         default n
134         help
135           Enable this to manage platform thermals using bang bang governor.
136
137           Say 'Y' here if you want to use two point temperature regulation
138           used for fans without throttling.  Some fan drivers depend on this
139           governor to be enabled (e.g. acerhdf).
140
141 config THERMAL_GOV_USER_SPACE
142         bool "User_space thermal governor"
143         help
144           Enable this to let the user space manage the platform thermals.
145
146 config THERMAL_GOV_POWER_ALLOCATOR
147         bool "Power allocator thermal governor"
148         depends on ENERGY_MODEL
149         help
150           Enable this to manage platform thermals by dynamically
151           allocating and limiting power to devices.
152
153 config CPU_THERMAL
154         bool "Generic cpu cooling support"
155         depends on THERMAL_OF
156         help
157           Enable the CPU cooling features. If the system has no active
158           cooling device available, this option allows to use the CPU
159           as a cooling device.
160
161 if CPU_THERMAL
162
163 config CPU_FREQ_THERMAL
164         bool "CPU frequency cooling device"
165         depends on CPU_FREQ
166         default y
167         help
168           This implements the generic cpu cooling mechanism through frequency
169           reduction. An ACPI version of this already exists
170           (drivers/acpi/processor_thermal.c).
171           This will be useful for platforms using the generic thermal interface
172           and not the ACPI interface.
173
174 config CPU_IDLE_THERMAL
175         bool "CPU idle cooling device"
176         depends on IDLE_INJECT
177         help
178           This implements the CPU cooling mechanism through
179           idle injection. This will throttle the CPU by injecting
180           idle cycle.
181 endif
182
183 config CLOCK_THERMAL
184         bool "Generic clock cooling support"
185         depends on COMMON_CLK
186         depends on PM_OPP
187         help
188           This entry implements the generic clock cooling mechanism through
189           frequency clipping. Typically used to cool off co-processors. The
190           device that is configured to use this cooling mechanism will be
191           controlled to reduce clock frequency whenever temperature is high.
192
193 config DEVFREQ_THERMAL
194         bool "Generic device cooling support"
195         depends on PM_DEVFREQ
196         depends on PM_OPP
197         help
198           This implements the generic devfreq cooling mechanism through
199           frequency reduction for devices using devfreq.
200
201           This will throttle the device by limiting the maximum allowed DVFS
202           frequency corresponding to the cooling level.
203
204           In order to use the power extensions of the cooling device,
205           devfreq should use the simple_ondemand governor.
206
207           If you want this support, you should say Y here.
208
209 config THERMAL_EMULATION
210         bool "Thermal emulation mode support"
211         help
212           Enable this option to make a emul_temp sysfs node in thermal zone
213           directory to support temperature emulation. With emulation sysfs node,
214           user can manually input temperature and test the different trip
215           threshold behaviour for simulation purpose.
216
217           WARNING: Be careful while enabling this option on production systems,
218           because userland can easily disable the thermal policy by simply
219           flooding this sysfs node with low temperature values.
220
221 config THERMAL_MMIO
222         tristate "Generic Thermal MMIO driver"
223         depends on OF || COMPILE_TEST
224         depends on HAS_IOMEM
225         help
226           This option enables the generic thermal MMIO driver that will use
227           memory-mapped reads to get the temperature.  Any HW/System that
228           allows temperature reading by a single memory-mapped reading, be it
229           register or shared memory, is a potential candidate to work with this
230           driver.
231
232 config HISI_THERMAL
233         tristate "Hisilicon thermal driver"
234         depends on ARCH_HISI || COMPILE_TEST
235         depends on HAS_IOMEM
236         depends on OF
237         default y
238         help
239           Enable this to plug hisilicon's thermal sensor driver into the Linux
240           thermal framework. cpufreq is used as the cooling device to throttle
241           CPUs when the passive trip is crossed.
242
243 config IMX_THERMAL
244         tristate "Temperature sensor driver for Freescale i.MX SoCs"
245         depends on ARCH_MXC || COMPILE_TEST
246         depends on NVMEM || !NVMEM
247         depends on MFD_SYSCON
248         depends on OF
249         help
250           Support for Temperature Monitor (TEMPMON) found on Freescale i.MX SoCs.
251           It supports one critical trip point and one passive trip point.  The
252           cpufreq is used as the cooling device to throttle CPUs when the
253           passive trip is crossed.
254
255 config IMX_SC_THERMAL
256         tristate "Temperature sensor driver for NXP i.MX SoCs with System Controller"
257         depends on IMX_SCU
258         depends on OF
259         help
260           Support for Temperature Monitor (TEMPMON) found on NXP i.MX SoCs with
261           system controller inside, Linux kernel has to communicate with system
262           controller via MU (message unit) IPC to get temperature from thermal
263           sensor. It supports one critical trip point and one
264           passive trip point for each thermal sensor.
265
266 config IMX8MM_THERMAL
267         tristate "Temperature sensor driver for Freescale i.MX8MM SoC"
268         depends on ARCH_MXC || COMPILE_TEST
269         depends on OF
270         help
271           Support for Thermal Monitoring Unit (TMU) found on Freescale i.MX8MM SoC.
272           It supports one critical trip point and one passive trip point. The
273           cpufreq is used as the cooling device to throttle CPUs when the passive
274           trip is crossed.
275
276 config MAX77620_THERMAL
277         tristate "Temperature sensor driver for Maxim MAX77620 PMIC"
278         depends on MFD_MAX77620
279         depends on OF
280         help
281           Support for die junction temperature warning alarm for Maxim
282           Semiconductor PMIC MAX77620 device. Device generates two alarm
283           interrupts when PMIC die temperature cross the threshold of
284           120 degC and 140 degC.
285
286 config QORIQ_THERMAL
287         tristate "QorIQ Thermal Monitoring Unit"
288         depends on THERMAL_OF
289         depends on HAS_IOMEM
290         select REGMAP_MMIO
291         help
292           Support for Thermal Monitoring Unit (TMU) found on QorIQ platforms.
293           It supports one critical trip point and one passive trip point. The
294           cpufreq is used as the cooling device to throttle CPUs when the
295           passive trip is crossed.
296
297 config SPEAR_THERMAL
298         tristate "SPEAr thermal sensor driver"
299         depends on PLAT_SPEAR || COMPILE_TEST
300         depends on HAS_IOMEM
301         depends on OF
302         help
303           Enable this to plug the SPEAr thermal sensor driver into the Linux
304           thermal framework.
305
306 config SUN8I_THERMAL
307         tristate "Allwinner sun8i thermal driver"
308         depends on ARCH_SUNXI || COMPILE_TEST
309         depends on HAS_IOMEM
310         depends on NVMEM
311         depends on OF
312         depends on RESET_CONTROLLER
313         help
314           Support for the sun8i thermal sensor driver into the Linux thermal
315           framework.
316
317           To compile this driver as a module, choose M here: the
318           module will be called sun8i-thermal.
319
320 config ROCKCHIP_THERMAL
321         tristate "Rockchip thermal driver"
322         depends on ARCH_ROCKCHIP || COMPILE_TEST
323         depends on RESET_CONTROLLER
324         depends on HAS_IOMEM
325         help
326           Rockchip thermal driver provides support for Temperature sensor
327           ADC (TS-ADC) found on Rockchip SoCs. It supports one critical
328           trip point. Cpufreq is used as the cooling device and will throttle
329           CPUs when the Temperature crosses the passive trip point.
330
331 config RCAR_THERMAL
332         tristate "Renesas R-Car thermal driver"
333         depends on ARCH_RENESAS || COMPILE_TEST
334         depends on HAS_IOMEM
335         help
336           Enable this to plug the R-Car thermal sensor driver into the Linux
337           thermal framework.
338
339 config RCAR_GEN3_THERMAL
340         tristate "Renesas R-Car Gen3 thermal driver"
341         depends on ARCH_RENESAS || COMPILE_TEST
342         depends on HAS_IOMEM
343         depends on OF
344         help
345           Enable this to plug the R-Car Gen3 thermal sensor driver into the Linux
346           thermal framework.
347
348 config KIRKWOOD_THERMAL
349         tristate "Temperature sensor on Marvell Kirkwood SoCs"
350         depends on MACH_KIRKWOOD || COMPILE_TEST
351         depends on HAS_IOMEM
352         depends on OF
353         help
354           Support for the Kirkwood thermal sensor driver into the Linux thermal
355           framework. Only kirkwood 88F6282 and 88F6283 have this sensor.
356
357 config DOVE_THERMAL
358         tristate "Temperature sensor on Marvell Dove SoCs"
359         depends on ARCH_DOVE || MACH_DOVE || COMPILE_TEST
360         depends on HAS_IOMEM
361         depends on OF
362         help
363           Support for the Dove thermal sensor driver in the Linux thermal
364           framework.
365
366 config DB8500_THERMAL
367         tristate "DB8500 thermal management"
368         depends on MFD_DB8500_PRCMU && OF
369         default y
370         help
371           Adds DB8500 thermal management implementation according to the thermal
372           management framework. A thermal zone with several trip points will be
373           created. Cooling devices can be bound to the trip points to cool this
374           thermal zone if trip points reached.
375
376 config ARMADA_THERMAL
377         tristate "Marvell EBU Armada SoCs thermal management"
378         depends on ARCH_MVEBU || COMPILE_TEST
379         depends on HAS_IOMEM
380         depends on OF
381         help
382           Enable this option if you want to have support for thermal management
383           controller present in Marvell EBU Armada SoCs (370,375,XP,38x,7K,8K).
384
385 config DA9062_THERMAL
386         tristate "DA9062/DA9061 Dialog Semiconductor thermal driver"
387         depends on MFD_DA9062 || COMPILE_TEST
388         depends on OF
389         help
390           Enable this for the Dialog Semiconductor thermal sensor driver.
391           This will report PMIC junction over-temperature for one thermal trip
392           zone.
393           Compatible with the DA9062 and DA9061 PMICs.
394
395 config MTK_THERMAL
396         tristate "Temperature sensor driver for mediatek SoCs"
397         depends on ARCH_MEDIATEK || COMPILE_TEST
398         depends on HAS_IOMEM
399         depends on NVMEM || NVMEM=n
400         depends on RESET_CONTROLLER
401         default y
402         help
403           Enable this option if you want to have support for thermal management
404           controller present in Mediatek SoCs
405
406 config AMLOGIC_THERMAL
407         tristate "Amlogic Thermal Support"
408         default ARCH_MESON
409         depends on OF && ARCH_MESON
410         help
411           If you say yes here you get support for Amlogic Thermal
412           for G12 SoC Family.
413
414           This driver can also be built as a module. If so, the module will
415           be called amlogic_thermal.
416
417 menu "Intel thermal drivers"
418 depends on X86 || X86_INTEL_QUARK || COMPILE_TEST
419 source "drivers/thermal/intel/Kconfig"
420 endmenu
421
422 menu "Broadcom thermal drivers"
423 depends on ARCH_BCM || ARCH_BRCMSTB || ARCH_BCM2835 || ARCH_BCM_IPROC || \
424                 COMPILE_TEST
425 source "drivers/thermal/broadcom/Kconfig"
426 endmenu
427
428 menu "Texas Instruments thermal drivers"
429 depends on ARCH_HAS_BANDGAP || COMPILE_TEST
430 depends on HAS_IOMEM
431 source "drivers/thermal/ti-soc-thermal/Kconfig"
432 endmenu
433
434 menu "Samsung thermal drivers"
435 depends on ARCH_EXYNOS || COMPILE_TEST
436 source "drivers/thermal/samsung/Kconfig"
437 endmenu
438
439 menu "STMicroelectronics thermal drivers"
440 depends on (ARCH_STI || ARCH_STM32) && OF
441 source "drivers/thermal/st/Kconfig"
442 endmenu
443
444 config TANGO_THERMAL
445         tristate "Tango thermal management"
446         depends on ARCH_TANGO || COMPILE_TEST
447         help
448           Enable the Tango thermal driver, which supports the primitive
449           temperature sensor embedded in Tango chips since the SMP8758.
450           This sensor only generates a 1-bit signal to indicate whether
451           the die temperature exceeds a programmable threshold.
452
453 source "drivers/thermal/tegra/Kconfig"
454
455 config GENERIC_ADC_THERMAL
456         tristate "Generic ADC based thermal sensor"
457         depends on IIO
458         help
459           This enabled a thermal sysfs driver for the temperature sensor
460           which is connected to the General Purpose ADC. The ADC channel
461           is read via IIO framework and the channel information is provided
462           to this driver. This driver reports the temperature by reading ADC
463           channel and converts it to temperature based on lookup table.
464
465 menu "Qualcomm thermal drivers"
466 depends on (ARCH_QCOM && OF) || COMPILE_TEST
467 source "drivers/thermal/qcom/Kconfig"
468 endmenu
469
470 config ZX2967_THERMAL
471         tristate "Thermal sensors on zx2967 SoC"
472         depends on ARCH_ZX || COMPILE_TEST
473         help
474           Enable the zx2967 thermal sensors driver, which supports
475           the primitive temperature sensor embedded in zx2967 SoCs.
476           This sensor generates the real time die temperature.
477
478 config UNIPHIER_THERMAL
479         tristate "Socionext UniPhier thermal driver"
480         depends on ARCH_UNIPHIER || COMPILE_TEST
481         depends on THERMAL_OF && MFD_SYSCON
482         help
483           Enable this to plug in UniPhier on-chip PVT thermal driver into the
484           thermal framework. The driver supports CPU thermal zone temperature
485           reporting and a couple of trip points.
486
487 config SPRD_THERMAL
488         tristate "Temperature sensor on Spreadtrum SoCs"
489         depends on ARCH_SPRD || COMPILE_TEST
490         help
491           Support for the Spreadtrum thermal sensor driver in the Linux thermal
492           framework.
493 endif