summaryrefslogtreecommitdiff
path: root/core
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
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')
-rw-r--r--core/cortex-m/ec.lds.S4
-rw-r--r--core/cortex-m0/ec.lds.S4
-rw-r--r--core/host/host_exe.lds4
-rw-r--r--core/minute-ia/ec.lds.S4
-rw-r--r--core/nds32/ec.lds.S4
-rw-r--r--core/riscv-rv32i/ec.lds.S4
6 files changed, 24 insertions, 0 deletions
diff --git a/core/cortex-m/ec.lds.S b/core/cortex-m/ec.lds.S
index 9a23a419f6..85bc9ea5cb 100644
--- a/core/cortex-m/ec.lds.S
+++ b/core/cortex-m/ec.lds.S
@@ -261,6 +261,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 = .;
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 = .;
diff --git a/core/host/host_exe.lds b/core/host/host_exe.lds
index fbf7b56351..ab8d352ecc 100644
--- a/core/host/host_exe.lds
+++ b/core/host/host_exe.lds
@@ -65,6 +65,10 @@ SECTIONS {
*(.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 = .;
*(.rodata.HOOK_CHIPSET_RESET)
__hooks_chipset_reset_end = .;
diff --git a/core/minute-ia/ec.lds.S b/core/minute-ia/ec.lds.S
index 2463c6d397..dc61699fed 100644
--- a/core/minute-ia/ec.lds.S
+++ b/core/minute-ia/ec.lds.S
@@ -102,6 +102,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 = .;
diff --git a/core/nds32/ec.lds.S b/core/nds32/ec.lds.S
index 1d35041fea..c10e3e82f7 100644
--- a/core/nds32/ec.lds.S
+++ b/core/nds32/ec.lds.S
@@ -131,6 +131,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 = .;
diff --git a/core/riscv-rv32i/ec.lds.S b/core/riscv-rv32i/ec.lds.S
index d2bb3ba353..109fe7c579 100644
--- a/core/riscv-rv32i/ec.lds.S
+++ b/core/riscv-rv32i/ec.lds.S
@@ -178,6 +178,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 = .;