diff options
author | Eran Mitrani <mitrani@google.com> | 2023-12-11 15:04:37 -0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-12-20 14:14:02 +0000 |
commit | 2dfce0fd94cdad6b7b60c8c54dd8ed8438eb613e (patch) | |
tree | 15816381ec4c15fb376cbcd19ed0830c301fd810 | |
parent | 83775d151dbc10cf1f21e038902ac7503dba43fe (diff) |
mb/google/rex/variants/deku: correct GPIO configuration
GPP_B02 and GPP_B03 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: Id62f15f7a77ac43c72cc6b2645816d6c87133a0e
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79457
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
-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 94c06e8dd8..7648f81c13 100644 --- a/src/mainboard/google/rex/variants/deku/gpio.c +++ b/src/mainboard/google/rex/variants/deku/gpio.c @@ -49,10 +49,10 @@ static const struct pad_config gpio_table[] = { PAD_NC(GPP_B00, NONE), /* GPP_B01 : [] ==> BT_DISABLE_L */ PAD_CFG_GPO(GPP_B01, 1, DEEP), - /* GPP_B02 : [] ==> SOC_ISH_I2C_SDA */ - PAD_CFG_NF_LOCK(GPP_B02, NONE, NF3, LOCK_CONFIG), - /* GPP_B03 : [] ==> SOC_ISH_I2C_SCL */ - PAD_CFG_NF_LOCK(GPP_B03, NONE, NF3, LOCK_CONFIG), + /* GPP_B02 : net NC is not present in the given design */ + PAD_NC(GPP_B02, NONE), + /* GPP_B03 : net NC is not present in the given design */ + PAD_NC(GPP_B03, NONE), /* GPP_B04 : [GPP_B04_STRAP] ==> Component NC */ PAD_NC(GPP_B04, NONE), /* GPP_B05 : net NC is not present in the given design */ |