summaryrefslogtreecommitdiff
path: root/board/waddledee/gpio.inc
diff options
context:
space:
mode:
authorAseda Aboagye <aaboagye@google.com>2020-03-18 14:14:50 -0700
committerCommit Bot <commit-bot@chromium.org>2020-03-26 21:38:13 +0000
commitd63416a81bb8a978cd57e8b52275af907f4e1527 (patch)
treef2cf29cc2486da8517922d329a997be5cf2ede32 /board/waddledee/gpio.inc
parentf257b119931beaf722f0245b3b44a96c9a3836a1 (diff)
downloadchrome-ec-d63416a81bb8a978cd57e8b52275af907f4e1527.tar.gz
dedede: Make EC_MKBP_INT_L open drain
This commit changes EC_MKBP_INT_L to be an open-drain output. The AP firmware will also be configured to apply an internal pull-up to allow this configuration to work. BUG=b:151680590 BRANCH=None TEST=Build and flash waddledoo with modified AP FW that sets internal pull-up, verify that EC_MKBP_INT_L is asserted when the AP shuts down and is de-asserted when the AP turns on. Signed-off-by: Aseda Aboagye <aaboagye@google.com> Change-Id: I76a772f88ab8af1a9c7c699e5922eb86b926ae86 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2109117 Commit-Queue: Aseda Aboagye <aaboagye@chromium.org> Tested-by: Aseda Aboagye <aaboagye@chromium.org> Reviewed-by: Karthikeyan Ramasubramanian <kramasub@chromium.org> Auto-Submit: Aseda Aboagye <aaboagye@chromium.org>
Diffstat (limited to 'board/waddledee/gpio.inc')
-rw-r--r--board/waddledee/gpio.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/waddledee/gpio.inc b/board/waddledee/gpio.inc
index 3ad7190941..7e36810de8 100644
--- a/board/waddledee/gpio.inc
+++ b/board/waddledee/gpio.inc
@@ -88,7 +88,7 @@ GPIO(USB_C0_FRS, PIN(C, 4), GPIO_OUT_LOW)
GPIO(HDMI_SEL_L, PIN(C, 6), GPIO_OUT_HIGH)
/* MKBP event synchronization */
-GPIO(EC_AP_MKBP_INT_L, PIN(L, 5), GPIO_OUT_HIGH)
+GPIO(EC_AP_MKBP_INT_L, PIN(L, 5), GPIO_ODR_HIGH)
/* Misc pins which will run to the I/O board */
GPIO(EC_SUB_IO_1_1, PIN(L, 3), GPIO_INPUT)