-
Notifications
You must be signed in to change notification settings - Fork 180
Update pre-compiled ELFs using latest develop #320
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
6e5c9ff
Update pre-compiled ELFs using latest develop
will-v-pi 823da06
Use new include linker scripts for enc_bootloader
will-v-pi 8ba9d00
Update enc_bootloader SDK version requirement
will-v-pi 49dcf1a
Merge remote-tracking branch 'origin/develop' into develop-fixups
will-v-pi 3024f18
Update precompiled ELFs from latest develop
will-v-pi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Binary file not shown.
Binary file not shown.
This file contains hidden or 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,6 @@ | ||
| /* Store everything where it came from (ram/scratch) - no XIP_RAM or PSRAM */ | ||
|
|
||
| REGION_ALIAS("TEXT_STORE", RAM); | ||
| REGION_ALIAS("RAM_STORE", RAM); | ||
| REGION_ALIAS("SCRATCH_X_STORE", SCRATCH_X); | ||
| REGION_ALIAS("SCRATCH_Y_STORE", SCRATCH_Y); |
This file contains hidden or 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 @@ | ||
| /* Don't use PSRAM */ |
This file contains hidden or 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 @@ | ||
| /* Don't use XIP_RAM */ |
This file contains hidden or 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 @@ | ||
| /* Don't use XIP_RAM */ | ||
This file contains hidden or 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 @@ | ||
| /* Don't use PSRAM */ |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,263 +1,11 @@ | ||
| /* Based on GCC ARM embedded samples. | ||
| Defines the following symbols for use by code: | ||
| __exidx_start | ||
| __exidx_end | ||
| __etext | ||
| __data_start__ | ||
| __preinit_array_start | ||
| __preinit_array_end | ||
| __init_array_start | ||
| __init_array_end | ||
| __fini_array_start | ||
| __fini_array_end | ||
| __data_end__ | ||
| __bss_start__ | ||
| __bss_end__ | ||
| __end__ | ||
| end | ||
| __HeapLimit | ||
| __StackLimit | ||
| __StackTop | ||
| __stack (== StackTop) | ||
| */ | ||
| /* Heavily customised using overrides in memmap_enc_bootloader folder */ | ||
|
|
||
| MEMORY | ||
| { | ||
| RAM_START(rwx) : ORIGIN = 0x20080000, LENGTH = 0x44 | ||
| SCRATCH_X(rwx) : ORIGIN = 0x20080044, LENGTH = 0xfbc | ||
| SCRATCH_Y(rwx) : ORIGIN = 0x20081000, LENGTH = 0x800 | ||
| RAM(rwx) : ORIGIN = 0x20081800, LENGTH = 0x800 | ||
| } | ||
| INCLUDE "memmap_no_flash.incl" | ||
|
|
||
| ENTRY(_entry_point) | ||
| /* Extra assertions */ | ||
| ASSERT(__StackBottom >= __scratch_y_end__, "stack collision in scratch_y") | ||
| ASSERT(chaff==0x20081000, "Chaff array must be located at 0x20081000") | ||
|
|
||
| SECTIONS | ||
| { | ||
| .start : { | ||
| __logical_binary_start = .; | ||
| /* Vectors require 512-byte alignment on v8-M when >48 IRQs are used, | ||
| so we would waste RAM if the vector table were not at the | ||
| start. */ | ||
| KEEP (*(.vectors)) | ||
| KEEP (*(.binary_info_header)) | ||
| __binary_info_header_end = .; | ||
| KEEP (*(.embedded_block)) | ||
| __embedded_block_end = .; | ||
| } > RAM_START | ||
|
|
||
| .text : { | ||
| __text_start = .; | ||
| __reset_start = .; | ||
| KEEP (*(.reset)) | ||
| __reset_end = .; | ||
| *(.time_critical*) | ||
| *(.text*) | ||
| . = ALIGN(4); | ||
| *(.init) | ||
| *(.fini) | ||
| /* Pull all c'tors into .text */ | ||
| *crtbegin.o(.ctors) | ||
| *crtbegin?.o(.ctors) | ||
| *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors) | ||
| *(SORT(.ctors.*)) | ||
| *(.ctors) | ||
| /* Followed by destructors */ | ||
| *crtbegin.o(.dtors) | ||
| *crtbegin?.o(.dtors) | ||
| *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors) | ||
| *(SORT(.dtors.*)) | ||
| *(.dtors) | ||
|
|
||
| *(.eh_frame*) | ||
| } > RAM | ||
|
|
||
| .rodata : { | ||
| . = ALIGN(4); | ||
| *(.rodata*) | ||
| *(.srodata*) | ||
| . = ALIGN(4); | ||
| *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.flashdata*))) | ||
| . = ALIGN(4); | ||
| } > RAM | ||
|
|
||
| .ARM.extab : | ||
| { | ||
| *(.ARM.extab* .gnu.linkonce.armextab.*) | ||
| } > RAM | ||
|
|
||
| __exidx_start = .; | ||
| .ARM.exidx : | ||
| { | ||
| *(.ARM.exidx* .gnu.linkonce.armexidx.*) | ||
| } > RAM | ||
| __exidx_end = .; | ||
|
|
||
| /* Machine inspectable binary information */ | ||
| . = ALIGN(4); | ||
| __binary_info_start = .; | ||
| .binary_info : | ||
| { | ||
| KEEP(*(.binary_info.keep.*)) | ||
| *(.binary_info.*) | ||
| } > RAM | ||
| __binary_info_end = .; | ||
| . = ALIGN(4); | ||
|
|
||
| .data : { | ||
| __data_start__ = .; | ||
| *(vtable) | ||
| *(.data*) | ||
| *(.sdata*) | ||
|
|
||
| . = ALIGN(4); | ||
| *(.after_data.*) | ||
| . = ALIGN(4); | ||
| /* preinit data */ | ||
| PROVIDE_HIDDEN (__mutex_array_start = .); | ||
| KEEP(*(SORT(.mutex_array.*))) | ||
| KEEP(*(.mutex_array)) | ||
| PROVIDE_HIDDEN (__mutex_array_end = .); | ||
|
|
||
| /* We skip all the initializers as we need very little runtime, and preinit_array items | ||
| * are __used, so would never be garbage collected even if referenced | ||
| */ | ||
| . = ALIGN(4); | ||
| /* preinit data */ | ||
| /* PROVIDE_HIDDEN (__preinit_array_start = .); */ | ||
| /* KEEP(*(SORT(.preinit_array.*)))*/ | ||
| /* KEEP(*(.preinit_array))*/ | ||
| /* PROVIDE_HIDDEN (__preinit_array_end = .);*/ | ||
|
|
||
| . = ALIGN(4); | ||
| /* init data */ | ||
| /* PROVIDE_HIDDEN (__init_array_start = .);*/ | ||
| /* KEEP(*(SORT(.init_array.*)))*/ | ||
| /* KEEP(*(.init_array))*/ | ||
| /* PROVIDE_HIDDEN (__init_array_end = .);*/ | ||
|
|
||
| . = ALIGN(4); | ||
| /* finit data */ | ||
| /* PROVIDE_HIDDEN (__fini_array_start = .);*/ | ||
| /* *(SORT(.fini_array.*))*/ | ||
| /* *(.fini_array)*/ | ||
| /* PROVIDE_HIDDEN (__fini_array_end = .);*/ | ||
|
|
||
| *(.jcr) | ||
| . = ALIGN(4); | ||
| } > RAM | ||
|
|
||
| .tdata : { | ||
| . = ALIGN(4); | ||
| *(.tdata .tdata.* .gnu.linkonce.td.*) | ||
| /* All data end */ | ||
| __tdata_end = .; | ||
| } > RAM | ||
| PROVIDE(__data_end__ = .); | ||
|
|
||
| .uninitialized_data (NOLOAD): { | ||
| . = ALIGN(4); | ||
| *(.uninitialized_data*) | ||
| } > RAM | ||
| /* __etext is (for backwards compatibility) the name of the .data init source pointer (...) */ | ||
| __etext = LOADADDR(.data); | ||
|
|
||
| .tbss (NOLOAD) : { | ||
| . = ALIGN(4); | ||
| __bss_start__ = .; | ||
| __tls_base = .; | ||
| *(.tbss .tbss.* .gnu.linkonce.tb.*) | ||
| *(.tcommon) | ||
|
|
||
| __tls_end = .; | ||
| } > RAM | ||
|
|
||
| .bss (NOLOAD) : { | ||
| . = ALIGN(4); | ||
| __tbss_end = .; | ||
|
|
||
| *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.bss*))) | ||
| *(COMMON) | ||
| PROVIDE(__global_pointer$ = . + 2K); | ||
| *(.sbss*) | ||
| . = ALIGN(4); | ||
| __bss_end__ = .; | ||
| } > RAM | ||
|
|
||
| .heap (NOLOAD): | ||
| { | ||
| __end__ = .; | ||
| end = __end__; | ||
| KEEP(*(.heap*)) | ||
| } > RAM | ||
| /* historically on GCC sbrk was growing past __HeapLimit to __StackLimit, however | ||
| to be more compatible, we now set __HeapLimit explicitly to where the end of the heap is */ | ||
| __HeapLimit = ORIGIN(RAM) + LENGTH(RAM); | ||
|
|
||
| /* Start and end symbols must be word-aligned */ | ||
| .scratch_x : { | ||
| __scratch_x_start__ = .; | ||
| *(.scratch_x.*) | ||
| . = ALIGN(4); | ||
| __scratch_x_end__ = .; | ||
| } > SCRATCH_X | ||
| __scratch_x_source__ = LOADADDR(.scratch_x); | ||
|
|
||
| .scratch_y : { | ||
| __scratch_y_start__ = .; | ||
| *(.scratch_y.*) | ||
| . = ALIGN(4); | ||
| __scratch_y_end__ = .; | ||
| } > SCRATCH_Y | ||
| __scratch_y_source__ = LOADADDR(.scratch_y); | ||
|
|
||
| /* .stack*_dummy section doesn't contains any symbols. It is only | ||
| * used for linker to calculate size of stack sections, and assign | ||
| * values to stack symbols later | ||
| * | ||
| * stack1 section may be empty/missing if platform_launch_core1 is not used */ | ||
|
|
||
| /* by default we put core 0 stack at the end of scratch Y, so that if core 1 | ||
| * stack is not used then all of SCRATCH_X is free. | ||
| */ | ||
| .stack1_dummy (NOLOAD): | ||
| { | ||
| *(.stack1*) | ||
| } > SCRATCH_X | ||
| .stack_dummy (NOLOAD): | ||
| { | ||
| KEEP(*(.stack*)) | ||
| } > SCRATCH_Y | ||
|
|
||
| /* stack limit is poorly named, but historically is maximum heap ptr */ | ||
| __StackLimit = ORIGIN(RAM) + LENGTH(RAM); | ||
| __StackOneTop = ORIGIN(SCRATCH_X) + LENGTH(SCRATCH_X); | ||
| __StackTop = ORIGIN(SCRATCH_Y) + LENGTH(SCRATCH_Y); | ||
| __StackOneBottom = __StackOneTop - SIZEOF(.stack1_dummy); | ||
| __StackBottom = __StackTop - SIZEOF(.stack_dummy); | ||
| PROVIDE(__stack = __StackTop); | ||
| ASSERT(__StackBottom >= __scratch_y_end__, "stack collision in scratch_y") | ||
|
|
||
| /* picolibc and LLVM */ | ||
| PROVIDE (__heap_start = __end__); | ||
| PROVIDE (__heap_end = __HeapLimit); | ||
| PROVIDE( __tls_align = MAX(ALIGNOF(.tdata), ALIGNOF(.tbss)) ); | ||
| PROVIDE( __tls_size_align = (__tls_size + __tls_align - 1) & ~(__tls_align - 1)); | ||
| PROVIDE( __arm32_tls_tcb_offset = MAX(8, __tls_align) ); | ||
|
|
||
| /* llvm-libc */ | ||
| PROVIDE (_end = __end__); | ||
| PROVIDE (__llvm_libc_heap_limit = __HeapLimit); | ||
|
|
||
| /* Check if data + heap + stack exceeds RAM limit */ | ||
| ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed") | ||
|
|
||
| ASSERT( __binary_info_header_end - __logical_binary_start <= 1024, "Binary info must be in first 1024 bytes of the binary") | ||
| ASSERT( __embedded_block_end - __logical_binary_start <= 4096, "Embedded block must be in first 4096 bytes of the binary") | ||
|
|
||
| /* todo assert on extra code */ | ||
| ASSERT(chaff==0x20081000, "Chaff array must be located at 0x20081000") | ||
|
|
||
| /* Provide symbols for picotool */ | ||
| __enc_bootloader_start = ORIGIN(RAM_START); | ||
| __enc_bootloader_end = ORIGIN(RAM) + LENGTH(RAM); | ||
| } | ||
| /* Provide symbols for picotool */ | ||
| __enc_bootloader_start = ORIGIN(RAM_START); | ||
| __enc_bootloader_end = ORIGIN(RAM) + LENGTH(RAM); |
This file contains hidden or 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,8 @@ | ||
| /* Entirely custom memory regions - scratch and ram together for ease */ | ||
| MEMORY | ||
| { | ||
| RAM_START(rwx) : ORIGIN = 0x20080000, LENGTH = 0x44 | ||
| SCRATCH_X(rwx) : ORIGIN = 0x20080044, LENGTH = 0xfbc | ||
| SCRATCH_Y(rwx) : ORIGIN = 0x20081000, LENGTH = 0x800 | ||
|
lurch marked this conversation as resolved.
|
||
| RAM(rwx) : ORIGIN = 0x20081800, LENGTH = 0x800 | ||
| } | ||
This file contains hidden or 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 @@ | ||
| /* Empty - see memory_ram.incl */ |
48 changes: 48 additions & 0 deletions
48
enc_bootloader/memmap_enc_bootloader/section_no_flash_text.incl
This file contains hidden or 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,48 @@ | ||
| /* Custom text section, as .start and .text are split up | ||
| Defines the following symbols for use by code: | ||
| __logical_binary_start | ||
| __binary_info_header_end | ||
| __embedded_block_end | ||
| __text_start | ||
| __reset_start, __reset_end | ||
| */ | ||
|
|
||
| SECTIONS | ||
| { | ||
| .start : { | ||
| __logical_binary_start = .; | ||
| /* Vectors require 512-byte alignment on v8-M when >48 IRQs are used, | ||
| so we would waste RAM if the vector table were not at the | ||
| start. */ | ||
| KEEP (*(.vectors)) | ||
| KEEP (*(.binary_info_header)) | ||
| __binary_info_header_end = .; | ||
| KEEP (*(.embedded_block)) | ||
| __embedded_block_end = .; | ||
| } > RAM_START | ||
|
|
||
| .text : { | ||
| __text_start = .; | ||
| __reset_start = .; | ||
| KEEP (*(.reset)) | ||
| __reset_end = .; | ||
| *(.text*) | ||
| . = ALIGN(4); | ||
| *(.init) | ||
| *(.fini) | ||
| /* Pull all c'tors into .text */ | ||
| *crtbegin.o(.ctors) | ||
| *crtbegin?.o(.ctors) | ||
| *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors) | ||
| *(SORT(.ctors.*)) | ||
| *(.ctors) | ||
| /* Followed by destructors */ | ||
| *crtbegin.o(.dtors) | ||
| *crtbegin?.o(.dtors) | ||
| *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors) | ||
| *(SORT(.dtors.*)) | ||
| *(.dtors) | ||
|
|
||
| *(.eh_frame*) | ||
| } > RAM | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.