1 # SPDX-License-Identifier: GPL-2.0-only
2 
3 menuconfig PECI
4 	tristate "PECI support"
5 	help
6 	  The Platform Environment Control Interface (PECI) is an interface
7 	  that provides a communication channel to Intel processors and
8 	  chipset components from external monitoring or control devices.
9 
10 	  If you are building a Baseboard Management Controller (BMC) kernel
11 	  for Intel platform say Y here and also to the specific driver for
12 	  your adapter(s) below. If unsure say N.
13 
14 	  This support is also available as a module. If so, the module
15 	  will be called peci.
16 
17 if PECI
18 
19 config PECI_CPU
20 	tristate "PECI CPU"
21 	select AUXILIARY_BUS
22 	help
23 	  This option enables peci-cpu driver for Intel processors. It is
24 	  responsible for creating auxiliary devices that can subsequently
25 	  be used by other drivers in order to perform various
26 	  functionalities such as e.g. temperature monitoring.
27 
28 	  Additional drivers must be enabled in order to use the functionality
29 	  of the device.
30 
31 	  This driver can also be built as a module. If so, the module
32 	  will be called peci-cpu.
33 
34 source "drivers/peci/controller/Kconfig"
35 
36 endif # PECI
37