From 7e24fdb4b119edd513e0ec7a0a81ca0dab3455dd Mon Sep 17 00:00:00 2001 From: Duncan Laurie Date: Fri, 10 May 2013 09:27:56 -0700 Subject: 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 Reviewed-on: https://gerrit.chromium.org/gerrit/50836 --- board/slippy/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}, -- cgit v1.2.1