1## SPDX-License-Identifier: GPL-2.0-only 2 3config SOC_INTEL_COMMON_BLOCK_THERMAL 4 bool 5 default n 6 help 7 This option allows to configure PCH thermal registers for supported PCH. 8 9config SOC_INTEL_COMMON_BLOCK_THERMAL_PCI_DEV 10 bool 11 default n 12 select SOC_INTEL_COMMON_BLOCK_THERMAL 13 help 14 This option allows to configure PCH thermal registers using Thermal PCI device 15 for chipsets till Ice Lake PCH. 16 17config SOC_INTEL_COMMON_BLOCK_THERMAL_BEHIND_PMC 18 bool 19 default n 20 depends on !SOC_INTEL_COMMON_BLOCK_THERMAL_PCI_DEV 21 select SOC_INTEL_COMMON_BLOCK_THERMAL 22 help 23 This option allows to configure PCH thermal registers using PMC PWRMBASE 24 for chipsets since Tiger Lake PCH. 25