From 570c654db777bd59714150de1684815c53d83e22 Mon Sep 17 00:00:00 2001 From: Raul E Rangel Date: Fri, 9 Apr 2021 14:03:37 -0600 Subject: lib/espi_debug: Add espi_show_slave_peripheral_channel_configuration Prints out the following: eSPI Slave Peripheral configuration: Peripheral Channel Maximum Read Request Size: 64 bytes Peripheral Channel Maximum Payload Size Selected: 64 bytes Peripheral Channel Maximum Payload Size Supported: 64 bytes Bus master: disabled Peripheral Channel: ready Peripheral Channel: enabled BUG=none TEST=boot guybrush Signed-off-by: Raul E Rangel Change-Id: I7d598ee4f0f9d8ec0b37767e6a5a70288be2cb86 Reviewed-on: https://review.coreboot.org/c/coreboot/+/52225 Tested-by: build bot (Jenkins) Reviewed-by: Marshall Dawson --- src/include/espi.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/include') diff --git a/src/include/espi.h b/src/include/espi.h index 4be8543173..851b0d972a 100644 --- a/src/include/espi.h +++ b/src/include/espi.h @@ -230,8 +230,10 @@ #if CONFIG(ESPI_DEBUG) void espi_show_slave_general_configuration(uint32_t config); +void espi_show_slave_peripheral_channel_configuration(uint32_t config); #else -static void espi_show_slave_general_configuration(uint32_t config) {} +static inline void espi_show_slave_general_configuration(uint32_t config) {} +static inline void espi_show_slave_peripheral_channel_configuration(uint32_t config) {} #endif static inline bool espi_slave_supports_quad_io(uint32_t gen_caps) -- cgit v1.2.3