summaryrefslogtreecommitdiff
path: root/power
diff options
context:
space:
mode:
authorNicolas Boichat <drinkcat@chromium.org>2018-08-30 15:59:14 +0800
committerchrome-bot <chrome-bot@chromium.org>2018-08-31 11:20:03 -0700
commit096f04f03ade187dabb277363e66aa5fe5326881 (patch)
treee2ea603408eda5cf0c7c7892e5adae4f47cf1fe6 /power
parent148c28c9f61a1d9633ef3570670c64f1acc76d64 (diff)
downloadchrome-ec-096f04f03ade187dabb277363e66aa5fe5326881.tar.gz
power/mt8183: Keep PMIC_WATCHDOG_L low in S5/S3
Instead of pulsing the watchdog to PMIC, keep it low in S5/G3. This avoids leaking power from EC to PMIC in S5/G3, when the PMIC is off. BRANCH=none BUG=b:113559677 TEST=In G3, pp1800_ec_mw power consumption drops from ~23mW to <1mW. Change-Id: I37bc8e5e6954834e1ae2bc1206919f342273b888 Signed-off-by: Nicolas Boichat <drinkcat@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1195300 Reviewed-by: Yilun Lin <yllin@chromium.org>
Diffstat (limited to 'power')
-rw-r--r--power/mt8183.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/power/mt8183.c b/power/mt8183.c
index 4522efcd02..b3416c0a70 100644
--- a/power/mt8183.c
+++ b/power/mt8183.c
@@ -63,6 +63,8 @@ BUILD_ASSERT(GPIO_COUNT < 256);
*/
static const struct power_seq_op s5s3_power_seq[] = {
+ /* Release PMIC watchdog. */
+ { GPIO_PMIC_WATCHDOG_L, 1, 0 },
{ GPIO_PP3300_S3_EN, 1, 2 },
{ GPIO_PP1800_S3_EN, 1, 2 },
/* Turn on AP. */
@@ -85,9 +87,8 @@ static const struct power_seq_op s3s5_power_seq[] = {
{ GPIO_AP_SYS_RST_L, 0, 0 },
{ GPIO_PP1800_S3_EN, 0, 2 },
{ GPIO_PP3300_S3_EN, 0, 2 },
- /* Pulse watchdog to PMIC (there may be a 1.6ms debounce) */
+ /* Assert watchdog to PMIC (there may be a 1.6ms debounce) */
{ GPIO_PMIC_WATCHDOG_L, 0, 3 },
- { GPIO_PMIC_WATCHDOG_L, 1, 0 },
};
static int forcing_shutdown;