diff options
author | Sean Rhodes <sean@starlabs.systems> | 2023-09-06 10:16:32 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-09-08 12:45:35 +0000 |
commit | 9796d4ce4f09785e2081faf7565c79d9e34d71d9 (patch) | |
tree | ccb0df4a1eca1e348d6c11d160256013c0839537 | |
parent | 1e0d0a721ec5b2ba95a9d277cfd1db3a352746fd (diff) |
mb/starlabs/starbook/rpl: Enable the PD interrupt GPIO
Enable the PD interrupt GPIO, GPP_B11, so that HPD works when
Thunderbolt is disabled.
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: Ie37976d58921b7a12dff16d93d7ac9bdd92edbea
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77673
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
-rw-r--r-- | src/mainboard/starlabs/starbook/variants/rpl/gpio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/starlabs/starbook/variants/rpl/gpio.c b/src/mainboard/starlabs/starbook/variants/rpl/gpio.c index 4e09d1ed10..aba6dc8875 100644 --- a/src/mainboard/starlabs/starbook/variants/rpl/gpio.c +++ b/src/mainboard/starlabs/starbook/variants/rpl/gpio.c @@ -108,8 +108,8 @@ const struct pad_config gpio_table[] = { PAD_NC(GPP_B9, NONE), /* B10: Not Connected */ PAD_NC(GPP_B10, NONE), - /* B11: I2C PMC PD Interrupt Test Point 28 */ - PAD_NC(GPP_B11, NONE), + /* B11: I2C PMC PD Interrupt */ + PAD_CFG_NF(GPP_B11, NONE, DEEP, NF1), /* B12: PM SLP S0 */ PAD_CFG_NF(GPP_B12, NONE, DEEP, NF1), /* B13: PLT RST */ |