summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortonycwlin <tonycwlin@google.com>2018-08-16 16:51:53 +0800
committerchrome-bot <chrome-bot@chromium.org>2018-08-16 13:14:47 -0700
commit94d06cd5f92e163fca391529509f85909ed65ac6 (patch)
treee812da6f8a49ab492efd528251205e70b2795477
parent7ef6291e33c31388652e66ebf0f96ec6d836d528 (diff)
downloadchrome-ec-94d06cd5f92e163fca391529509f85909ed65ac6.tar.gz
kukui: Set AP_SYS_RST_L to GPIO_OUT_LOW instead of ODR
AP_SYS_RST_L should be able to drive high to MT8183's SYSRSTB pin. The reset map is in link for reference. (https://drive.google.com/file/d/1pR6PZGHA2QLAWjSNHoIema4WmtpOuXyR/view) BUG=b:112678658 BRANCH=none TEST=make flash_ec BOARD=kukui -j Signed-off-by: tonycwlin <tonycwlin@google.com> Change-Id: I02018114d5c3dbdcd1f840cbb7712c80d2b6c90e Reviewed-on: https://chromium-review.googlesource.com/1177419 Commit-Ready: Tony Lin <tonycwlin@google.com> Tested-by: Tony Lin <tonycwlin@google.com> Reviewed-by: Yilun Lin <yllin@chromium.org>
-rw-r--r--board/kukui/gpio.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/kukui/gpio.inc b/board/kukui/gpio.inc
index 954f9bee7a..4449c1f52d 100644
--- a/board/kukui/gpio.inc
+++ b/board/kukui/gpio.inc
@@ -50,7 +50,7 @@ GPIO(PP1800_S3_EN, PIN(C, 7), GPIO_OUT_LOW)
GPIO(PP3300_S3_EN, PIN(A, 8), GPIO_OUT_LOW)
/* Reset pins */
-GPIO(AP_SYS_RST_L, PIN(C, 11), GPIO_ODR_LOW)
+GPIO(AP_SYS_RST_L, PIN(C, 11), GPIO_OUT_LOW)
GPIO(PMIC_WATCHDOG_L, PIN(C, 3), GPIO_OUT_HIGH)
GPIO(PMIC_EN_ODL, PIN(C, 10), GPIO_ODR_HIGH)
GPIO(PMIC_FORCE_RESET, PIN(A, 2), GPIO_OUT_LOW)