From 07aa700e92d90f5471494491ef2abe6e684ff07f Mon Sep 17 00:00:00 2001 From: Vincent Palatin Date: Thu, 11 Oct 2012 08:50:57 -0700 Subject: [PATCH] spring: enable USB boost charger by default Needed for easy power on until we have the full USB charge state machine. note: the GPIO name ILIM_1500 is somewhat misleading, it is connected to the enable pin of the TPS43060 Signed-off-by: Vincent Palatin BUG=chrome-os-partner:14319 TEST=manual : plug the board and press servo power button, see the AP rails coming up. Change-Id: I93421d1581065bcc1e7be07086e74d11d1e1ec56 Reviewed-on: https://gerrit.chromium.org/gerrit/35271 Commit-Ready: Vincent Palatin Tested-by: Vincent Palatin Reviewed-by: Vincent Palatin --- board/spring/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/spring/board.c b/board/spring/board.c index 9b52f48552..d6608aa7a9 100644 --- a/board/spring/board.c +++ b/board/spring/board.c @@ -93,7 +93,7 @@ const struct gpio_info gpio_list[GPIO_COUNT] = { {"KB_OUT10", GPIO_C, (1<<5), GPIO_KB_OUTPUT, NULL}, {"KB_OUT11", GPIO_C, (1<<6), GPIO_KB_OUTPUT, NULL}, {"KB_OUT12", GPIO_C, (1<<7), GPIO_KB_OUTPUT, NULL}, - {"ILIM_1500", GPIO_B, (1<<3), GPIO_OUT_LOW, NULL}, + {"ILIM_1500", GPIO_B, (1<<3), GPIO_OUT_HIGH, NULL}, {"ILIM_500", GPIO_B, (1<<4), GPIO_OUT_LOW, NULL}, };