diff options
author | Jack Rosenthal <jrosenth@chromium.org> | 2019-07-08 12:45:11 -0600 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2019-07-09 00:00:07 +0000 |
commit | 20ffd77737b40e1092bd4c37d220ffee2c6d0a0c (patch) | |
tree | e18aba203a3e85a8770f0ef1a17df9c30c2a4d8a /chip | |
parent | c0e948d8da9fa3013ff3ab3572b96edaeb553b69 (diff) | |
download | chrome-ec-20ffd77737b40e1092bd4c37d220ffee2c6d0a0c.tar.gz |
Revert "ish: enter ISH ROM during reset prep"
This reverts commit 58f535e8c175311d866d4c1dd2d283d69230e9c5.
Now that b:136265450 has an actual fix landed, we need to revert this
workaround to reduce power usage when the system is off.
BUG=b:136265450
BRANCH=R76,master
TEST=press 'shut down' on normally failed DUT, observe ISH come alive
at next boot multiple times
Change-Id: I623249dfcb697a055378ca721721f346b01b7a8e
Signed-off-by: Jack Rosenthal <jrosenth@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1691116
Reviewed-by: Jett Rink <jettrink@chromium.org>
Commit-Queue: Jett Rink <jettrink@chromium.org>
Diffstat (limited to 'chip')
-rw-r--r-- | chip/ish/power_mgt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chip/ish/power_mgt.c b/chip/ish/power_mgt.c index dbcbfeea61..470dfd2573 100644 --- a/chip/ish/power_mgt.c +++ b/chip/ish/power_mgt.c @@ -674,7 +674,7 @@ static void reset_prep_isr(void) IOAPIC_EOI_REG = ISH_RESET_PREP_VEC; LAPIC_EOI_REG = 0x0; - ish_mia_reset(); + system_reset(0); __builtin_unreachable(); } |