mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
61fff05790
PD#SWPL-103829 Problem: there are words spelling error Solution: correct spelling mistakes Verify: local scan Change-Id: Ifc0bf977d64ceed2ae67a3235077fc9d4c734f0e Signed-off-by: Liming Xue <liming.xue@amlogic.com>
71 lines
2.1 KiB
Plaintext
71 lines
2.1 KiB
Plaintext
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
|
|
menu "Amlogic Thermal and Cooling devices"
|
|
|
|
config AMLOGIC_AMLOGIC_THERMAL
|
|
tristate "Amlogic temperature sensor Support"
|
|
depends on THERMAL && AMLOGIC_SECMON
|
|
default n
|
|
help
|
|
Thermal sensor low level support for thermal
|
|
This driver parse thermal config data from device tree files.
|
|
And register each cooling device for thermal framework.
|
|
|
|
If you want this support, you should say Y here.
|
|
|
|
config AMLOGIC_COOLDEV
|
|
tristate "Amlogic cooling devices Support"
|
|
default n
|
|
help
|
|
This implements the all cooling devices
|
|
This will be useful for platforms using the generic thermal interface
|
|
and not the ACPI interface.
|
|
|
|
If you want this support, you should say Y here.
|
|
|
|
config AMLOGIC_CPUCORE_THERMAL
|
|
tristate "generic cpu core cooling support"
|
|
depends on AMLOGIC_COOLDEV
|
|
default n
|
|
help
|
|
This implements the generic cpu cooling mechanism through reduce cpu core numbers
|
|
This will be useful for platforms using the generic thermal interface
|
|
and not the ACPI interface.
|
|
|
|
If you want this support, you should say Y here.
|
|
|
|
config AMLOGIC_GPU_THERMAL
|
|
tristate "generic gpu cooling support"
|
|
depends on AMLOGIC_COOLDEV
|
|
default n
|
|
help
|
|
This implements the generic gpu cooling mechanism through frequency reduction
|
|
This will be useful for platformas using the generic thermal interface
|
|
and not the ACPI interface.
|
|
|
|
If you want this support, you should say Y here.
|
|
|
|
config AMLOGIC_GPUCORE_THERMAL
|
|
tristate "generic gpu core cooling support"
|
|
depends on AMLOGIC_COOLDEV
|
|
default n
|
|
help
|
|
This implements the generic gpu cooling mechanism through reduce gpu core numbers.
|
|
This will be useful for platforms using the generic thermal interface
|
|
and not the ACPI interface.
|
|
|
|
If you want this support, you should say Y here.
|
|
|
|
config AMLOGIC_DDR_THERMAL
|
|
tristate "generic ddr cooling support"
|
|
depends on AMLOGIC_COOLDEV
|
|
default n
|
|
help
|
|
This implements change the ddr reflash rate.
|
|
This will be useful for platforms using the generic thermal interface
|
|
and not the ACPI interface.
|
|
|
|
If you want this support, you should say Y here.
|
|
|
|
endmenu
|