diff options
author | Eran Mitrani <mitrani@google.com> | 2024-01-29 16:50:46 -0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-01-31 10:35:57 +0000 |
commit | 3138faa7cf1b91e0b56ad0b1be6260cf4251a284 (patch) | |
tree | f2e62cb9fcf10e509ed82305a82e610b5b4709b7 /src/mainboard/google | |
parent | bfb11bec3b3fec638adf864a9b9b2cff6671fed8 (diff) |
mb/google/rex/variants/deku: correct GPIO E08 and E22 configuration
GPP_E08 and GPP_E22 were set incorrectly previously.
This CL corrects these settings according to schematics.
BUG=b:305793886
TEST=Built FW image correctly.
Signed-off-by: Eran Mitrani <mitrani@google.com>
Change-Id: I8e427350e1ee564f9d6566bdfe1f42c92c87a711
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80238
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/rex/variants/deku/gpio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/google/rex/variants/deku/gpio.c b/src/mainboard/google/rex/variants/deku/gpio.c index 7648f81c13..ba5bc1780c 100644 --- a/src/mainboard/google/rex/variants/deku/gpio.c +++ b/src/mainboard/google/rex/variants/deku/gpio.c @@ -206,8 +206,8 @@ static const struct pad_config gpio_table[] = { PAD_NC(GPP_E06, NONE), /* GPP_E07 : net NC is not present in the given design */ PAD_NC(GPP_E07, NONE), - /* GPP_E08 : [] ==> SOC_GPP_E08 */ - PAD_NC(GPP_E08, NONE), + /* GPP_E08 : [] ==> USB_C0_AUX_DC_N */ + PAD_CFG_NF(GPP_E08, NONE, DEEP, NF6), /* GPP_E09 : [] ==> USB_C_OC_ODL */ PAD_CFG_NF_LOCK(GPP_E09, NONE, NF1, LOCK_CONFIG), /* GPP_E10 : net NC is not present in the given design */ @@ -226,8 +226,8 @@ static const struct pad_config gpio_table[] = { PAD_NC(GPP_E16, NONE), /* GPP_E17 : net NC is not present in the given design */ PAD_NC(GPP_E17, NONE), - /* GPP_E22 : net NC is not present in the given design */ - PAD_NC(GPP_E22, NONE), + /* GPP_E22 : [] ==> USB_C0_AUX_DC_P */ + PAD_CFG_NF(GPP_E22, NONE, DEEP, NF6), /* GPP_F00 : [] ==> CNV_BRI_DT_R */ PAD_CFG_NF_IOSTANDBY_IGNORE(GPP_F00, NONE, DEEP, NF1), |