summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAyo Wu <ayowu@google.com>2018-08-17 15:12:35 +0800
committerchrome-bot <chrome-bot@chromium.org>2018-08-20 03:27:39 -0700
commit2127ff7e90508d74a975dfe2ec7663d44821a02a (patch)
tree6d3030794d8707ff186dc3ab7cfe1a0a198f2d68
parent28433e8bae44a39550e69f6b891444db246126e9 (diff)
downloadchrome-ec-2127ff7e90508d74a975dfe2ec7663d44821a02a.tar.gz
kukui: PMIC_WATCHDOG_L should follow status of PMIC_WATCHDOG_L
BUG=b:112741115 BRANCH=none TEST=make flash_ec BOARD=kukui -j TEST=waveform in b:112741115 Change-Id: I53798356714289276a5fdaed9f6190a247a1db7d Signed-off-by: Ayo Wu <ayowu@google.com> Reviewed-on: https://chromium-review.googlesource.com/1179494 Commit-Ready: Nicolas Boichat <drinkcat@chromium.org> Tested-by: Nicolas Boichat <drinkcat@chromium.org> Reviewed-by: Nicolas Boichat <drinkcat@chromium.org>
-rw-r--r--board/kukui/gpio.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/kukui/gpio.inc b/board/kukui/gpio.inc
index 4449c1f52d..ec9b6f343b 100644
--- a/board/kukui/gpio.inc
+++ b/board/kukui/gpio.inc
@@ -28,7 +28,7 @@ GPIO_INT(PMIC_EC_RESETB, PIN(B, 7), GPIO_INT_BOTH | GPIO_PULL_DOWN,
power_signal_interrupt)
GPIO_INT(WARM_RESET_REQ, PIN(A, 3), GPIO_INT_RISING | GPIO_PULL_DOWN,
warm_reset_request_interrupt)
-GPIO_INT(AP_EC_WATCHDOG_L, PIN(C, 2), GPIO_INT_FALLING,
+GPIO_INT(AP_EC_WATCHDOG_L, PIN(C, 2), GPIO_INT_BOTH,
ap_watchdog_interrupt)
#ifdef SECTION_IS_RW
@@ -51,7 +51,7 @@ GPIO(PP3300_S3_EN, PIN(A, 8), GPIO_OUT_LOW)
/* Reset pins */
GPIO(AP_SYS_RST_L, PIN(C, 11), GPIO_OUT_LOW)
-GPIO(PMIC_WATCHDOG_L, PIN(C, 3), GPIO_OUT_HIGH)
+GPIO(PMIC_WATCHDOG_L, PIN(C, 3), GPIO_OUT_LOW)
GPIO(PMIC_EN_ODL, PIN(C, 10), GPIO_ODR_HIGH)
GPIO(PMIC_FORCE_RESET, PIN(A, 2), GPIO_OUT_LOW)
GPIO(MT6370_RST_L, PIN(F, 0), GPIO_OUT_LOW)