summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/cezanne/gpio.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2020-07-03 00:24:28 +0300
committerFelix Held <felix-coreboot@felixheld.de>2021-04-08 16:47:27 +0000
commitde7262f82cdc1a7c868dbc9ca41e186e885eb2ba (patch)
treee8fe2e84070eb60d8baeeea7e0a2e17c8c4dfba3 /src/soc/amd/cezanne/gpio.c
parentf8e440cadf4f332c676fddafd0357ecc07de5a4c (diff)
downloadcoreboot-de7262f82cdc1a7c868dbc9ca41e186e885eb2ba.tar.gz
coreboot-de7262f82cdc1a7c868dbc9ca41e186e885eb2ba.tar.bz2
coreboot-de7262f82cdc1a7c868dbc9ca41e186e885eb2ba.zip
soc/amd: remove special GPIO_2 override soc_gpio_hook
This override was added to have the SCI mapping configured if GPIO was used as WAKE_L pin. This however didn't set up the SCI level and trigger information, so it likely never worked as intended. Change-Id: I44661f05c8f517ece88714c625603579731d174b Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43049 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/soc/amd/cezanne/gpio.c')
-rw-r--r--src/soc/amd/cezanne/gpio.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/soc/amd/cezanne/gpio.c b/src/soc/amd/cezanne/gpio.c
index e1f504639d15..f2a59e04972b 100644
--- a/src/soc/amd/cezanne/gpio.c
+++ b/src/soc/amd/cezanne/gpio.c
@@ -1,10 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <amdblocks/gpio_banks.h>
-#include <amdblocks/acpimmio.h>
-#include <amdblocks/smi.h>
#include <soc/gpio.h>
-#include <soc/smi.h>
#include <types.h>
/* see the IOMUX function table for the mapping from GPIO number to GEVENT number */
@@ -40,10 +37,3 @@ void soc_get_gpio_event_table(const struct soc_amd_event **table, size_t *items)
*table = gpio_event_table;
*items = ARRAY_SIZE(gpio_event_table);
}
-
-void soc_gpio_hook(uint8_t gpio, uint8_t mux)
-{
- /* Always program Gevent when WAKE_L_AGPIO2 is configured as WAKE_L */
- if ((gpio == 2) && !(mux & AMD_GPIO_MUX_MASK))
- soc_route_sci(GPIO_2_EVENT);
-}