-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LLEXT: add support for detached executable sections
With this commit functions can be marked to be placed in custom sections, e.g. by adding __attribute__((section(".text.dram"))) to them. Those sections will then become "detached," i.e. they won't be linked into the main address space of the module. Instead they will be linked at a low address, after which Zephyr LLEXT linked will prepare them to be used at their original location, e.g. in DRAM. This commit modifies the SOF LLEXT link helper to use low addresses for linking of such sections. Signed-off-by: Guennadi Liakhovetski <[email protected]>
- Loading branch information
Showing
1 changed file
with
40 additions
and
7 deletions.
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