summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2016-03-30 12:26:01 -0700
committerchrome-bot <chrome-bot@chromium.org>2016-03-30 20:38:13 -0700
commit70378b86b4e5682b70a8145c9679e250280d6f14 (patch)
tree3dc7dbf91224facdeb36b6555028a78b2a59bc20 /include
parent55af6cc418c83c504f20145f075de645ff12aab6 (diff)
downloadchrome-ec-70378b86b4e5682b70a8145c9679e250280d6f14.tar.gz
Cr50: Include low-power exit triggers in reset causes
Some of the reset causes are found in another register when resuming from a low-power state. We know we'll need to distinguish among them eventually, so we might as well decode them now. BUG=chrome-os-partner:49955 BRANCH=none TEST=make buildall; test on Cr50 I forced the system into deep sleep and observed that the reset cause is accurately recorded on resume. Doing that requires a fair amount of hacks and manual effort, and can't happen by accident. Future CLs will make use of this. The current, normal behavior is completely unaffected. Change-Id: I5a7b19dee8bff1ff1703fbbcc84cff4e374cf872 Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/336314 Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'include')
-rw-r--r--include/system.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/system.h b/include/system.h
index b47cbac240..6c8bbea06d 100644
--- a/include/system.h
+++ b/include/system.h
@@ -28,6 +28,7 @@
#define RESET_FLAG_AP_OFF (1 << 12) /* Do not power on AP */
#define RESET_FLAG_PRESERVED (1 << 13) /* Some reset flags preserved from
* previous boot */
+#define RESET_FLAG_USB_RESUME (1 << 14) /* USB resume triggered wake */
/* Per chip implementation to save raw RESET_FLAG_ flags. */
void chip_save_reset_flags(int flags);