summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Palatin <vpalatin@chromium.org>2012-10-11 08:50:57 -0700
committerGerrit <chrome-bot@google.com>2012-10-11 23:32:23 -0700
commit07aa700e92d90f5471494491ef2abe6e684ff07f (patch)
tree19b27e9b05e1aa00eebf7fccbe7202b77b4b65d9
parentd6f05e0d616e4004b0bb0404b6c8dbe9f9198db4 (diff)
downloadchrome-ec-07aa700e92d90f5471494491ef2abe6e684ff07f.tar.gz
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 <vpalatin@chromium.org> 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 <vpalatin@chromium.org> Tested-by: Vincent Palatin <vpalatin@chromium.org> Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
-rw-r--r--board/spring/board.c2
1 files changed, 1 insertions, 1 deletions
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},
};