zephyr/drivers/peci/Kconfig
Jose Alberto Meza 55e6b294f2 drivers: peci: Add PECI driver for microchip XEC family
Add PECI driver that support PECI API.

Signed-off-by: Jose Alberto Meza <jose.a.meza.arellano@intel.com>
2020-03-13 18:53:04 +02:00

34 lines
741 B
Plaintext

# PECI configuration options
# Copyright (c) 2020 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
menuconfig PECI
bool "PECI Driver"
help
Include PECI drivers in system config.
if PECI
source "drivers/peci/Kconfig.xec"
module = PECI
module-str = peci
source "subsys/logging/Kconfig.template.log_config"
config PECI_INIT_PRIORITY
int "PECI driver init priority"
default 40
help
PECI device driver initialization priority.
There isn't any critical component relying on this priority at
the moment.
endif # PECI
config PECI_INTERRUPT_DRIVEN
bool "PECI driver interrupt support"
help
This is an option to be enabled by individual peci driver
to indicate that the driver and hardware supports interrupts.