mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-20 19:50:44 +00:00
In npcx7 series, all of them support the Intel Enhanced Serial Peripheral Interface (eSPI) Revision 1.0. This specification provides a path for migrating host sub-devices via LPC to a lower pin count, higher bandwidth bus. In addition to Host communication via the peripheral channel, it provides virtual wires support, out-of-band communication, and device mastering option over the Chipset SPI flash. Becisdes introducing eSPI device in npcx7, this CL also includes: 1. Add eSPI device tree declarations. 2. Add npcx7-espi-vws-map.dtsi to present the relationship between eSPI Virtual-Wire signals, eSPI registers, and wake-up input sources. 3. Zephyr eSPI api implementation. 4, Add OOB (Out of Band tunneled SMBus) support. 5. Add configuration files for eSPI test suites. Signed-off-by: Mulin Chao <MLChao@nuvoton.com>
32 lines
672 B
Plaintext
32 lines
672 B
Plaintext
# NPCX eSPI driver configuration options
|
|
|
|
# Copyright (c) 2020 Nuvoton Technology Corporation.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config ESPI_NPCX
|
|
bool "Nuvoton NPCX embedd controller (EC) ESPI driver"
|
|
depends on SOC_FAMILY_NPCX
|
|
help
|
|
This option enables the Intel Enhanced Serial Peripheral Interface
|
|
(eSPI) for NPCX family of processors.
|
|
|
|
# The default value 'y' for the existing options if ESPI_NPCX is selected.
|
|
if ESPI_NPCX
|
|
|
|
config ESPI_OOB_CHANNEL
|
|
default y
|
|
|
|
config ESPI_PERIPHERAL_8042_KBC
|
|
default y
|
|
|
|
config ESPI_PERIPHERAL_HOST_IO
|
|
default y
|
|
|
|
config ESPI_PERIPHERAL_DEBUG_PORT_80
|
|
default y
|
|
|
|
config ESPI_PERIPHERAL_UART
|
|
default y
|
|
|
|
endif #ESPI_NPCX
|