1# PECI configuration options 2 3# Copyright (c) 2020 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6menuconfig PECI 7 bool "Platform Environment Control Interface (PECI) drivers" 8 help 9 Include PECI drivers in system config. 10 11if PECI 12 13source "drivers/peci/Kconfig.xec" 14source "drivers/peci/Kconfig.it8xxx2" 15source "drivers/peci/Kconfig.npcx" 16 17module = PECI 18module-str = peci 19source "subsys/logging/Kconfig.template.log_config" 20 21config PECI_INIT_PRIORITY 22 int "PECI driver init priority" 23 default 40 24 help 25 PECI device driver initialization priority. 26 There isn't any critical component relying on this priority at 27 the moment. 28 29config PECI_INTERRUPT_DRIVEN 30 bool "PECI driver interrupt support" 31 help 32 This is an option to be enabled by individual peci driver 33 to indicate that the driver and hardware supports interrupts. 34 35endif # PECI 36