diff options
author | Eran Mitrani <mitrani@google.com> | 2024-02-15 16:58:51 -0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-02-26 19:51:14 +0000 |
commit | e3df5714cd4021df5eaa02e393332f998b45c6dd (patch) | |
tree | db9d387a91b881bf24b0ac4b713ec14abb4b45b0 | |
parent | 6fe59ccf89dccb8ce9d36cb6e083488239d37cc1 (diff) |
mb/google/rex/var/deku: Correct GPIO F19/F20 to not connected
GPP_F19 and GPP_F20 sre set incorrectly previously. Change them to not
connected according to schematics.
BUG=b:305793886
TEST=Built FW image correctly.
Change-Id: Ifb6da1f8696f44cb47be3d1de83c55e62b12a9e9
Signed-off-by: Eran Mitrani <mitrani@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80569
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: Eric Lai <ericllai@google.com>
-rw-r--r-- | src/mainboard/google/rex/variants/deku/gpio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/rex/variants/deku/gpio.c b/src/mainboard/google/rex/variants/deku/gpio.c index 9aa5900941..1c5e629f56 100644 --- a/src/mainboard/google/rex/variants/deku/gpio.c +++ b/src/mainboard/google/rex/variants/deku/gpio.c @@ -264,9 +264,9 @@ static const struct pad_config gpio_table[] = { /* GPP_F18 : net NC is not present in the given design */ PAD_NC(GPP_F18, NONE), /* GPP_F19 : [GPP_F19_STRAP] ==> Component NC */ - PAD_CFG_NF(GPP_F19, NONE, DEEP, NF1), + PAD_NC(GPP_F19, NONE), /* GPP_F20 : [GPP_F20_STRAP] ==> Component NC */ - PAD_CFG_NF(GPP_F20, NONE, DEEP, NF1), + PAD_NC(GPP_F20, NONE), /* GPP_F21 : [GPP_F21_STRAP] ==> Component NC */ PAD_NC(GPP_F21, NONE), /* GPP_F22 : [] ==> GPP_F22_ISH_GP8A */ |