summaryrefslogtreecommitdiff
path: root/core/cortex-m0/ec.lds.S
diff options
context:
space:
mode:
authorDiana Z <dzigterman@chromium.org>2020-09-16 15:44:48 -0600
committerCommit Bot <commit-bot@chromium.org>2021-03-18 23:18:33 +0000
commit4a1591bb8a08b65baf394c96d6860a1c0561f729 (patch)
treeeb72f63cfde298575d18ddb74acae46c3ca27b4c /core/cortex-m0/ec.lds.S
parent3f940a5e45a8db587efff0721d4038c59cb702e3 (diff)
downloadchrome-ec-4a1591bb8a08b65baf394c96d6860a1c0561f729.tar.gz
Hooks: Add HOOK_CHIPSET_HARD_OFF
Add a new hook called HOOK_CHIPSET_HARD_OFF which is called upon entry to the G3 power state. BRANCH=None BUG=b:166787955,b:167996216,chromium:1045209 TEST=make -j buildall, runs on waddledee with no linking errors Signed-off-by: Diana Z <dzigterman@chromium.org> Change-Id: If260207910d882d17aeb766c9e99a7a6099006c7 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2415171 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-by: Aseda Aboagye <aaboagye@chromium.org>
Diffstat (limited to 'core/cortex-m0/ec.lds.S')
-rw-r--r--core/cortex-m0/ec.lds.S4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/cortex-m0/ec.lds.S b/core/cortex-m0/ec.lds.S
index 1241638361..f6023aa322 100644
--- a/core/cortex-m0/ec.lds.S
+++ b/core/cortex-m0/ec.lds.S
@@ -135,6 +135,10 @@ SECTIONS
KEEP(*(.rodata.HOOK_CHIPSET_SHUTDOWN_COMPLETE))
__hooks_chipset_shutdown_complete_end = .;
+ __hooks_chipset_hard_off = .;
+ KEEP(*(.rodata.HOOK_CHIPSET_HARD_OFF))
+ __hooks_chipset_hard_off_end = .;
+
__hooks_chipset_reset = .;
KEEP(*(.rodata.HOOK_CHIPSET_RESET))
__hooks_chipset_reset_end = .;