mb/google/ocelot/var/kodkod: Update gpio settings for NC pins

- Remove unused I2C3 pin configurations.
- Remove RST control. The ETU925 fingerprint module does not
  need to control the RST pin.

BUG=b:452542491, b:467835297
TEST=emerge-ocelot coreboot

Change-Id: Ib4db733187d1b15f89654b53c1cf98420d652546
Signed-off-by: Ian Feng <ian_feng@compal.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/90696
Reviewed-by: Pranava Y N <pranavayn@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Dtrain Hsu <dtrain_hsu@compal.corp-partner.google.com>
This commit is contained in:
Ian Feng 2026-01-08 10:44:53 +08:00 committed by Matt DeVillier
commit f4fe5514fe

View file

@ -125,8 +125,8 @@ static const struct pad_config gpio_table[] = {
PAD_NC(GPP_C13, NONE),
/* GPP_C14: NC */
PAD_NC(GPP_C14, NONE),
/* GPP_C15: SOC_FPS_RST# */
PAD_CFG_GPO_LOCK(GPP_C15, 1, LOCK_CONFIG),
/* GPP_C15: NC */
PAD_NC(GPP_C15, NONE),
/* GPP_C16: NC */
PAD_NC(GPP_C16, NONE),
/* GPP_C17: NC */
@ -279,10 +279,10 @@ static const struct pad_config gpio_table[] = {
PAD_NC(GPP_H04, NONE),
/* GPP_H05: NC */
PAD_NC(GPP_H05, NONE),
/* GPP_H06: SOC_I2C_3_SDA_iPCM */
PAD_CFG_NF(GPP_H06, NONE, DEEP, NF1),
/* GPP_H07: SOC_I2C_3_SCL_iPCM */
PAD_CFG_NF(GPP_H07, NONE, DEEP, NF1),
/* GPP_H06: NC */
PAD_NC(GPP_H06, NONE),
/* GPP_H07: NC */
PAD_NC(GPP_H07, NONE),
/* GPP_H08: UART_0_CRXD_DTXD */
PAD_CFG_NF(GPP_H08, NONE, DEEP, NF1),
/* GPP_H09: UART_0_CTXD_DRXD */
@ -372,10 +372,6 @@ static const struct pad_config gpio_table[] = {
static const struct pad_config early_gpio_table[] = {
/* GPP_B17: SOC_SPI_TPM_INT# */
PAD_CFG_GPI_APIC_LOCK(GPP_B17, NONE, LEVEL, INVERT, LOCK_CONFIG),
/* GPP_H06: SOC_I2C_3_SDA_iPCM */
PAD_CFG_NF(GPP_H06, NONE, DEEP, NF1),
/* GPP_H07: SOC_I2C_3_SCL_iPCM */
PAD_CFG_NF(GPP_H07, NONE, DEEP, NF1),
/* GPP_H08: UART_0_CRXD_DTXD */
PAD_CFG_NF(GPP_H08, NONE, DEEP, NF1),
/* GPP_H09: UART_0_CTXD_DRXD */
@ -392,8 +388,6 @@ static const struct pad_config romstage_gpio_table[] = {
PAD_CFG_NF(GPP_C00, NONE, DEEP, NF1),
/* GPP_C01: SPD_SOC_SMBDATA */
PAD_CFG_NF(GPP_C01, NONE, DEEP, NF1),
/* GPP_C15: FPS_RST_N */
PAD_CFG_GPO(GPP_C15, 0, PLTRST),
};
const struct pad_config *variant_gpio_table(size_t *num)