diff options
author | Caveh Jalali <caveh@chromium.org> | 2019-02-01 18:14:25 -0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-02-05 13:25:56 +0000 |
commit | 5aba3a2c06be6e35f14a2358b5d673b0e684015d (patch) | |
tree | e20a545f176ae135821f542eed2cfb9705cdb4a5 | |
parent | 8b400b8c64bb42e479a4f9666cc0fb0ba9428af7 (diff) | |
download | coreboot-5aba3a2c06be6e35f14a2358b5d673b0e684015d.tar.xz |
mb/google/poppy/variants/atlas: config GPP_D1 as no-connect
This reconfigures the GPP_D1 GPIO pin as a no-connect. It really
doesn't go anywhere today or on previous revs of the board.
BUG=b:110614620
BRANCH=none
TEST=atlas still boots
Change-Id: Iea53cf909f8f060c4e0f14e8b4ad579b838b7caa
Signed-off-by: Caveh Jalali <caveh@chromium.org>
Reviewed-on: https://review.coreboot.org/c/31210
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
-rw-r--r-- | src/mainboard/google/poppy/variants/atlas/gpio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/poppy/variants/atlas/gpio.c b/src/mainboard/google/poppy/variants/atlas/gpio.c index 5a76d83ea9..372c66a5a0 100644 --- a/src/mainboard/google/poppy/variants/atlas/gpio.c +++ b/src/mainboard/google/poppy/variants/atlas/gpio.c @@ -160,8 +160,8 @@ static const struct pad_config gpio_table[] = { /* D0 : SPI1_CS# ==> NC */ PAD_CFG_NC(GPP_D0), - /* D1 : SPI1_CLK ==> TRACKPAD_RESET_1V8_ODL */ - PAD_CFG_GPO(GPP_D1, 0, DEEP), + /* D1 : SPI1_CLK ==> NC */ + PAD_CFG_NC(GPP_D1), /* D2 : SPI1_MISO ==> NC */ PAD_CFG_NC(GPP_D2), /* D3 : SPI1_MOSI ==> NC */ |