summaryrefslogtreecommitdiff
path: root/power
diff options
context:
space:
mode:
authorArchana Patni <archana.patni@intel.com>2016-02-02 19:29:05 +0530
committerchrome-bot <chrome-bot@chromium.org>2016-02-10 12:44:15 -0800
commit192806b8da1b8714f6bfcdc548a7e8e7866b8384 (patch)
tree7f9cce47f9eb35a2cd25af316dc63d945a75c53f /power
parent40018bb45ba8ab918f1c7c20f400046f8fad0be2 (diff)
downloadchrome-ec-192806b8da1b8714f6bfcdc548a7e8e7866b8384.tar.gz
skylake: set and clear wake masks in S0 <-> S0ix transitions
In the S0 <-> S3 transition, Coreboot sends EC messages to set/clear the wake masks when the SMI is invoked. For S0ix, EC sets and clears the wake mask via this patch. These functions are directly invoked from the state machine transition states. During S0ix entry, the wake mask for lid open is enabled. During S0ix exit, the wake mask for lid open is cleared. All pending events are also cleared BRANCH=none BUG=chrome-os-partner:48834 TEST=test lidopen in S0ix Signed-off-by: Archana Patni <archana.patni@intel.com> Signed-off-by: Subramony Sesha <subramony.sesha@intel.com> Change-Id: I52a15f502ef637f7b7e4b559820deecb831d818f Reviewed-on: https://chromium-review.googlesource.com/320190 Commit-Ready: Divya Jyothi <divya.jyothi@intel.com> Tested-by: Divya Jyothi <divya.jyothi@intel.com> Reviewed-by: Shawn N <shawnn@chromium.org>
Diffstat (limited to 'power')
-rw-r--r--power/skylake.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/power/skylake.c b/power/skylake.c
index d19a639f77..9b3b74c4bf 100644
--- a/power/skylake.c
+++ b/power/skylake.c
@@ -17,6 +17,7 @@
#include "task.h"
#include "util.h"
#include "wireless.h"
+#include "lpc.h"
/* Console output macros */
#define CPUTS(outstr) cputs(CC_CHIPSET, outstr)
@@ -351,6 +352,8 @@ static enum power_state _power_handle_state(enum power_state state)
/* call hooks before standby */
hook_notify(HOOK_CHIPSET_SUSPEND);
+ lpc_enable_wake_mask_for_lid_open();
+
/*
* Enable idle task deep sleep. Allow the low power idle task
* to go into deep sleep in S0ix.
@@ -361,6 +364,8 @@ static enum power_state _power_handle_state(enum power_state state)
case POWER_S0ixS0:
+ lpc_disable_wake_mask_for_lid_open();
+
/* Call hooks now that rails are up */
hook_notify(HOOK_CHIPSET_RESUME);