summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaisuke Nojiri <dnojiri@chromium.org>2017-05-24 16:24:03 -0700
committerchrome-bot <chrome-bot@chromium.org>2017-05-24 22:07:15 -0700
commitc78562ff602bd3026c02267650c020d61c87cee2 (patch)
treea7998d6ee8d7ffdc0e5691128086afb182410913
parentabb8be8b64e3341e49dfc3be031a7e372126f37b (diff)
downloadchrome-ec-c78562ff602bd3026c02267650c020d61c87cee2.tar.gz
Fizz: Power on ethernet port
This patch sets GPIO_LAN_PWR_EN to output/high to power on the ethernet port at start. BUG=b:37646105 BRANCH=none TEST=Measured V3P3A_LAN is 3.3V. Change-Id: I9629a72d1ffefd1ca2aeb8d2d1f5d74a953d7e58 Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/514622 Reviewed-by: Duncan Laurie <dlaurie@google.com>
-rw-r--r--board/fizz/gpio.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/fizz/gpio.inc b/board/fizz/gpio.inc
index a73f3745e1..00937e4341 100644
--- a/board/fizz/gpio.inc
+++ b/board/fizz/gpio.inc
@@ -41,7 +41,7 @@ GPIO(ENTERING_RW, PIN(7, 6), GPIO_OUTPUT) /* EC Entering RW */
GPIO(PMIC_INT_L, PIN(6, 0), GPIO_INPUT) /* PMIC interrupt */
/* Fizz specific pins */
-GPIO(LAN_PWR_EN, PIN(8, 3), GPIO_INPUT) /* Ethernet power enabled */
+GPIO(LAN_PWR_EN, PIN(8, 3), GPIO_OUT_HIGH) /* Ethernet power enabled */
GPIO(RECOVERY_L, PIN(8, 2), GPIO_INPUT) /* Recovery button */
GPIO(PWR_RED_LED, PIN(8, 0), GPIO_OUT_HIGH) /* Power Red LED */
GPIO(PWR_GRN_LED, PIN(B, 7), GPIO_OUT_HIGH) /* Power Green LED */