diff options
author | Jenny TC <jenny.tc@intel.com> | 2017-10-27 17:39:22 +0530 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-01-17 17:10:44 +0000 |
commit | 7e687b84b212bef4444e7b2703f794bab0d86bb0 (patch) | |
tree | 1f00c20a1da2271907e1e4ce197d97a0ab96d730 /src/mainboard/google/poppy | |
parent | 1dfc2c3e54468f52bd7f2b204758bac2625a36e6 (diff) | |
download | coreboot-7e687b84b212bef4444e7b2703f794bab0d86bb0.tar.xz |
mb/google/poppy: Set S0ix lazy wake mask
Enable S0ix wake mask programming from coreboot using unified host event
programming interface. Lazy s0ix wake mask helps to configure s0ix wake
mask during boot and EC sets the wake mask during S0ix entry.
BRANCH=none
BUG=b:63969337
TEST=verify masks with ec hostevent command on S0,S3,S5 and S0ix
Change-Id: I65173104fce258d03956bbb0e80073c47fe80fab
Signed-off-by: Jenny TC <jenny.tc@intel.com>
Reviewed-on: https://review.coreboot.org/21086
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/mainboard/google/poppy')
-rw-r--r-- | src/mainboard/google/poppy/ec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainboard/google/poppy/ec.c b/src/mainboard/google/poppy/ec.c index ef1d55c2c7..7b9b9a7b33 100644 --- a/src/mainboard/google/poppy/ec.c +++ b/src/mainboard/google/poppy/ec.c @@ -25,6 +25,7 @@ void mainboard_ec_init(void) .sci_events = MAINBOARD_EC_SCI_EVENTS, .s3_wake_events = MAINBOARD_EC_S3_WAKE_EVENTS, .s5_wake_events = MAINBOARD_EC_S5_WAKE_EVENTS, + .s0ix_wake_events = MAINBOARD_EC_S0IX_WAKE_EVENTS, }; google_chromeec_events_init(&info, acpi_is_wakeup_s3()); |