summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuncan Laurie <dlaurie@chromium.org>2013-05-10 09:27:56 -0700
committerChromeBot <chrome-bot@google.com>2013-05-13 11:26:04 -0700
commit7e24fdb4b119edd513e0ec7a0a81ca0dab3455dd (patch)
tree1c9273d4a57d97c4ddc538dece2507aa716e9696
parentf10abeb19fd74573ddb7ceb582906a765a9be60b (diff)
downloadchrome-ec-7e24fdb4b119edd513e0ec7a0a81ca0dab3455dd.tar.gz
slippy: Make EC_RCIN_L pin output and high by default
This is causing the host to reset because this pin is going low when it is left as open drain, despite having a 3.3V pullup. BUG=chrome-os-partner:19355 BRANCH=none TEST=manual: boot on slippy without RCIN# causing reset Change-Id: I59e9316e85ce618edc84c7dd988d70ea4de1e71a Signed-off-by: Duncan Laurie <dlaurie@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/50836
-rw-r--r--board/slippy/board.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/slippy/board.c b/board/slippy/board.c
index aa77c2e5e4..d49b95c72b 100644
--- a/board/slippy/board.c
+++ b/board/slippy/board.c
@@ -95,7 +95,7 @@ const struct gpio_info gpio_list[GPIO_COUNT] = {
{"PCH_NMI_L", LM4_GPIO_F, (1<<2), GPIO_OUT_HIGH, NULL},
{"PCH_PWRBTN_L", LM4_GPIO_H, (1<<0), GPIO_OUT_HIGH, NULL},
{"PCH_PWROK", LM4_GPIO_F, (1<<5), GPIO_OUT_LOW, NULL},
- {"PCH_RCIN_L", LM4_GPIO_L, (1<<6), GPIO_HI_Z, NULL},
+ {"PCH_RCIN_L", LM4_GPIO_L, (1<<6), GPIO_OUT_HIGH, NULL},
{"PCH_RSMRST_L", LM4_GPIO_F, (1<<1), GPIO_OUT_LOW, NULL},
{"PCH_SMI_L", LM4_GPIO_F, (1<<4), GPIO_OUT_HIGH, NULL},
{"TOUCHSCREEN_RESET_L", LM4_GPIO_N, (1<<7), GPIO_OUT_LOW, NULL},