aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2020-07-21 21:48:27 -0700
committerFelix Held <felix-coreboot@felixheld.de>2020-07-23 14:10:50 +0000
commitac16650e0cad71905678bf9aecc2f78dd7da228d (patch)
tree1fa35ef867ade7d00eaba6c7472dfea0be415983 /src
parent6f48626a828e0bac32663fbab1eb43cd546449aa (diff)
mb/google/zork: Remove unnecessary PULL_UP from early_gpio_table
This change drops PULL_UP configured on pads in early_gpio table since these pads have external pulls. BUG=b:154351731 Change-Id: Id270e7b4f83dfa942655f513776a3b1c15c9678d Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43696 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/google/zork/variants/baseboard/gpio_baseboard_common.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mainboard/google/zork/variants/baseboard/gpio_baseboard_common.c b/src/mainboard/google/zork/variants/baseboard/gpio_baseboard_common.c
index a4e86487bd..0b658a4129 100644
--- a/src/mainboard/google/zork/variants/baseboard/gpio_baseboard_common.c
+++ b/src/mainboard/google/zork/variants/baseboard/gpio_baseboard_common.c
@@ -8,17 +8,17 @@
static const struct soc_amd_gpio early_gpio_table[] = {
/* H1_FCH_INT_ODL */
- PAD_INT(GPIO_3, PULL_UP, EDGE_LOW, STATUS),
+ PAD_INT(GPIO_3, PULL_NONE, EDGE_LOW, STATUS),
/* I2C3_SCL - H1 */
- PAD_NF(GPIO_19, I2C3_SCL, PULL_UP),
+ PAD_NF(GPIO_19, I2C3_SCL, PULL_NONE),
/* I2C3_SDA - H1 */
- PAD_NF(GPIO_20, I2C3_SDA, PULL_UP),
+ PAD_NF(GPIO_20, I2C3_SDA, PULL_NONE),
/* PCIE_RST0_L - Fixed timings */
PAD_NF(GPIO_26, PCIE_RST_L, PULL_NONE),
/* FCH_ESPI_EC_CS_L */
PAD_NF(GPIO_30, ESPI_CS_L, PULL_NONE),
- /* ESPI_ALERT_L (may be unused) */
- PAD_NF(GPIO_108, ESPI_ALERT_L, PULL_UP),
+ /* ESPI_ALERT_L */
+ PAD_NF(GPIO_108, ESPI_ALERT_L, PULL_NONE),
/* UART0_RXD - DEBUG */
PAD_NF(GPIO_136, UART0_RXD, PULL_NONE),
/* UART0_TXD - DEBUG */