brintos

brintos / linux-shallow public Read only

0
0
Text · 1.1 KiB · 89872ad Raw
37 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2 3menuconfig PECI4	tristate "PECI support"5	help6	  The Platform Environment Control Interface (PECI) is an interface7	  that provides a communication channel to Intel processors and8	  chipset components from external monitoring or control devices.9 10	  If you are building a Baseboard Management Controller (BMC) kernel11	  for Intel platform say Y here and also to the specific driver for12	  your adapter(s) below. If unsure say N.13 14	  This support is also available as a module. If so, the module15	  will be called peci.16 17if PECI18 19config PECI_CPU20	tristate "PECI CPU"21	select AUXILIARY_BUS22	help23	  This option enables peci-cpu driver for Intel processors. It is24	  responsible for creating auxiliary devices that can subsequently25	  be used by other drivers in order to perform various26	  functionalities such as e.g. temperature monitoring.27 28	  Additional drivers must be enabled in order to use the functionality29	  of the device.30 31	  This driver can also be built as a module. If so, the module32	  will be called peci-cpu.33 34source "drivers/peci/controller/Kconfig"35 36endif # PECI37