summaryrefslogtreecommitdiff
path: root/board/rambi
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2013-10-29 11:30:50 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2013-10-30 01:04:43 +0000
commit8eacb8ffe21dbadb963d9cd9be958c8678346591 (patch)
tree5acc16857bed37b00ca823384257a526ec3bf64e /board/rambi
parent497e29254286a8bf8858e3a5e5495cc098f119a4 (diff)
downloadchrome-ec-8eacb8ffe21dbadb963d9cd9be958c8678346591.tar.gz
rambi: Enable PP5000 at boot
Due to power topology, PP5000 needs to be enabled as soon after PP3300_DSW as possible. Since PP3300_DSW is what powers the EC, the EC needs to turn on PP5000 by default and leave it on. BUG=chrome-os-partner:23673 BRANCH=none TEST=reboot ap-off (this boots the EC without doing AP power sequencing) gpioget -> shows PP5000_EN=1, PP5000_GOOD=1 Change-Id: I5d493877d330b2543a493f8a2f3411003d5964ca Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/174989 Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'board/rambi')
-rw-r--r--board/rambi/board.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/board/rambi/board.c b/board/rambi/board.c
index 3b8247a5cc..845797139b 100644
--- a/board/rambi/board.c
+++ b/board/rambi/board.c
@@ -86,7 +86,11 @@ const struct gpio_info gpio_list[] = {
{"PP3300_DX_EN", LM4_GPIO_J, (1<<2), GPIO_OUT_LOW, NULL},
{"PP3300_LTE_EN", LM4_GPIO_D, (1<<2), GPIO_OUT_LOW, NULL},
{"PP3300_WLAN_EN", LM4_GPIO_J, (1<<0), GPIO_OUT_LOW, NULL},
- {"PP5000_EN", LM4_GPIO_H, (1<<7), GPIO_OUT_LOW, NULL},
+ /*
+ * TODO(crosbug.com/p/23673): PP5000_EN should default to GPIO_OUT_LOW
+ * once issues with Rev.1 boards are fixed.
+ */
+ {"PP5000_EN", LM4_GPIO_H, (1<<7), GPIO_OUT_HIGH, NULL},
{"PPSX_EN", LM4_GPIO_L, (1<<6), GPIO_OUT_LOW, NULL},
{"SUSP_VR_EN", LM4_GPIO_C, (1<<7), GPIO_OUT_LOW, NULL},
{"TOUCHSCREEN_RESET_L", LM4_GPIO_N, (1<<7), GPIO_OUT_LOW, NULL},