-
Notifications
You must be signed in to change notification settings - Fork 318
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
platform: imx93_a55: handle linker additions at SOF level
SOF requires some additions to the Zephyr linker script. This should be handled inside SOF instead of Zephyr. Since 3f2790b89ca5 ("soc: imx93: remove custom linker script") removes the custom linker script from Zephyr, this means the custom SOF linker sections will have to be handled on SOF side. This also includes a Zephyr hash bump to 3f2790b89ca5, which brings the following (potentially) relevant patches: 3f2790b89ca5 soc: imx93: remove custom linker script d389c95935c5 soc: intel_adsp: ace: Configurable SRAM retention mode and cleanup be041b14fe51 Intel: ADSP: move HPSRAM mask into assembly Signed-off-by: Laurentiu Mihalcea <laurentiu.mihalcea@nxp.com>
- Loading branch information
1 parent
7dd2d7f
commit 54ad8d1
Showing
4 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
SECTION_PROLOGUE(.static_uuid_entries,,) | ||
{ | ||
*(*.static_uuids) | ||
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION) | ||
|
||
SECTION_PROLOGUE(.static_log_entries,,) | ||
{ | ||
*(*.static_log*) | ||
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION) | ||
|
||
SECTION_PROLOGUE(.fw_metadata,,) | ||
{ | ||
KEEP (*(*.fw_metadata)) | ||
. = ALIGN(16); | ||
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
_trace_ctx_start = ABSOLUTE(.); | ||
*(.trace_ctx) | ||
_trace_ctx_end = ABSOLUTE(.); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters