Kconfig 1.1 KB

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