summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRachel Nancollas <rachelsn@google.com>2017-11-17 18:52:20 -0800
committerchrome-bot <chrome-bot@chromium.org>2017-12-14 15:27:01 -0800
commitcb3a155b9045aa2ce4fe21a4ce95ae41463ed003 (patch)
tree66fa389a00f50eb12846eb902edca1b8a1bf5ee3
parent27c01992fc80d92aa96f34a3a382b0e7dae9498a (diff)
downloadchrome-ec-cb3a155b9045aa2ce4fe21a4ce95ae41463ed003.tar.gz
meowth: fixed EN_PP3300_WLAN and USB_PD_RST_L states
In gpio.inc, fixed EN_PP3300_WLAN so it's always high since CNVi requires PP3300_WLAN power up at the same time as PP3300_A. Also, fixed USB_PD_RST_L to be an OD output. BUG=b:69139536 BRANCH=none TEST=make BOARD=meowth and BOARD=zoombini runs with no errors Change-Id: I3c2a4e7ca7b1ab5f9122d17324822dc5e61e70a8 Signed-off-by: Rachel Nancollas <rachelsn@google.com> Reviewed-on: https://chromium-review.googlesource.com/778120 Commit-Ready: Aseda Aboagye <aaboagye@chromium.org> Tested-by: Aseda Aboagye <aaboagye@chromium.org> Reviewed-by: Aseda Aboagye <aaboagye@chromium.org>
-rw-r--r--board/zoombini/gpio.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/zoombini/gpio.inc b/board/zoombini/gpio.inc
index d4280e8579..7b04a0651a 100644
--- a/board/zoombini/gpio.inc
+++ b/board/zoombini/gpio.inc
@@ -156,7 +156,7 @@ GPIO_INT(VOLUME_DOWN_L, PIN(6, 3), GPIO_INT_BOTH | GPIO_PULL_UP, button_interr
GPIO(EN_PP3300_DSW, PIN(8, 2), GPIO_OUT_LOW)
GPIO(EN_PP5000, PIN(7, 3), GPIO_OUT_LOW)
GPIO(EN_PP1800_U, PIN(A, 0), GPIO_OUT_LOW)
-GPIO(EN_PP3300_WLAN, PIN(8, 3), GPIO_INPUT)
+GPIO(EN_PP3300_WLAN, PIN(8, 3), GPIO_OUT_HIGH)
GPIO(ENTERING_RW, PIN(E, 1), GPIO_OUT_LOW)
GPIO(CCD_MODE_ODL, PIN(E, 3), GPIO_INPUT) /* Case Closed Debug mode. */
@@ -187,7 +187,7 @@ GPIO(I2C7_SCL, PIN(B, 3), GPIO_INPUT)
GPIO(I2C7_SDA, PIN(B, 2), GPIO_INPUT)
GPIO(BAT_PRESENT_L, PIN(E, 5), GPIO_INPUT)
-GPIO(USB_PD_RST_L, PIN(6, 2), GPIO_INPUT)
+GPIO(USB_PD_RST_L, PIN(6, 2), GPIO_ODR_HIGH)
GPIO(BOARD_VERSION1, PIN(9, 6), GPIO_INPUT)
GPIO(BOARD_VERSION2, PIN(9, 3), GPIO_INPUT)