summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Yilun Lin <yllin@chromium.org>2020-12-17 10:47:22 +0800
committerCommit Bot <commit-bot@chromium.org>2020-12-17 09:35:49 +0000
commit2cf881abe17a5f927479b9b197e4fbca7b80ae8e (patch)
treebc46684d59aac6761501a3c9e3f6643a3bd75cbd
parent201f1a5927cb6c18952d52378d28d128c91eafb6 (diff)
downloadchrome-ec-2cf881abe17a5f927479b9b197e4fbca7b80ae8e.tar.gz
asurada: do not disable AP_EC_WATCHDOG_L irq at boot
To correctly capture the signal. BUG=b:174109011 TEST=ensure EC receiving AP_EC_WATCHDOG_L signal when reboot in AP BRANCH=main Change-Id: Ibb96149ae8dc4c5c48f1deeb3508b0c50ddea09a Signed-off-by: Eric Yilun Lin <yllin@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2596563 Reviewed-by: Dino Li <Dino.Li@ite.com.tw> Reviewed-by: Ting Shen <phoenixshen@chromium.org>
-rw-r--r--board/asurada/board.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/board/asurada/board.c b/board/asurada/board.c
index 2132885542..aa143ce995 100644
--- a/board/asurada/board.c
+++ b/board/asurada/board.c
@@ -129,9 +129,7 @@ __override void board_hibernate_late(void)
const struct power_signal_info power_signal_list[] = {
{GPIO_PMIC_EC_PWRGD, POWER_SIGNAL_ACTIVE_HIGH, "PMIC_PWR_GOOD"},
{GPIO_AP_IN_SLEEP_L, POWER_SIGNAL_ACTIVE_LOW, "AP_IN_S3_L"},
- {GPIO_AP_EC_WATCHDOG_L,
- POWER_SIGNAL_ACTIVE_LOW | POWER_SIGNAL_DISABLE_AT_BOOT,
- "AP_WDT_ASSERTED"},
+ {GPIO_AP_EC_WATCHDOG_L, POWER_SIGNAL_ACTIVE_LOW, "AP_WDT_ASSERTED"},
};
BUILD_ASSERT(ARRAY_SIZE(power_signal_list) == POWER_SIGNAL_COUNT);