From 546e0935436876ce5b1083d6e5ef9a33bb8c861d Mon Sep 17 00:00:00 2001 From: Cliff Huang Date: Thu, 19 Jan 2023 21:38:56 -0800 Subject: soc/intel/common/gpio: Add function to read GPIO TX value This function reads out the current value set to output for a GPIO pin. Ex: GPP_E0 is set to output int e0_val; e0_val = gpio_tx_get(GPP_E0); Signed-off-by: Cliff Huang Change-Id: Ib02b9ab50d378eb163d91aed1576428b49cec2cf Reviewed-on: https://review.coreboot.org/c/coreboot/+/72127 Reviewed-by: Anil Kumar K Tested-by: build bot (Jenkins) Reviewed-by: Bora Guvendik --- src/include/gpio.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/include/gpio.h') diff --git a/src/include/gpio.h b/src/include/gpio.h index daf602977d..9fe854be26 100644 --- a/src/include/gpio.h +++ b/src/include/gpio.h @@ -14,6 +14,7 @@ _Static_assert(sizeof(gpio_t) <= sizeof(u32), "gpio_t doesn't fit in lb_gpio"); /* The following functions must be implemented by SoC/board code. */ int gpio_get(gpio_t gpio); +int gpio_tx_get(gpio_t gpio); void gpio_set(gpio_t gpio, int value); void gpio_input_pulldown(gpio_t gpio); void gpio_input_pullup(gpio_t gpio); -- cgit v1.2.3