diff options
author | Sean Rhodes <sean@starlabs.systems> | 2023-09-06 10:15:05 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-09-08 12:45:15 +0000 |
commit | 1e0d0a721ec5b2ba95a9d277cfd1db3a352746fd (patch) | |
tree | ceabcdd64c77c4d18a1e48c37d345d5d557cc5df /src/mainboard | |
parent | 59453aa7637bc16c03f7bf947e5d7b8f1589214a (diff) |
mb/starlabs/starbook/rpl: Correct GPP_A19
A19 was incorrectly labelled as TCP0 HPD. It is not connected
so configure it accordingly.
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: I5aea723c2e8c0758d413bbc4bfd0ce92b22d0c87
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77672
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/mainboard')
-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 8df0a17c18..4e09d1ed10 100644 --- a/src/mainboard/starlabs/starbook/variants/rpl/gpio.c +++ b/src/mainboard/starlabs/starbook/variants/rpl/gpio.c @@ -74,8 +74,8 @@ const struct pad_config gpio_table[] = { PAD_NC(GPP_A17, NONE), /* A18: DDI B DP HPD */ PAD_CFG_NF(GPP_A18, NONE, DEEP, NF1), - /* A19: TCP0 HPD */ - PAD_CFG_NF(GPP_A19, NONE, PLTRST, NF1), + /* A19: Not Connected */ + PAD_NC(GPP_A19, NONE), /* A20: Test Point 44 */ PAD_NC(GPP_A20, NONE), /* A21: Fingerprint Reader Interrupt */ |