diff options
author | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-01-17 14:05:49 -0800 |
---|---|---|
committer | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-01-29 11:00:26 -0800 |
commit | 15bb22f7ed93038a2e7256726b27bf0e45cb4dfe (patch) | |
tree | 27eddfadf4714ef761ab1bc91c56e83888a81ed0 /bsp/coreip-e31 | |
parent | f11a6b466c02ed41632a32ecb60850147ed6680f (diff) |
Regen BSPs for separate stacks and heaps
Signed-off-by: Nathaniel Graff <nathaniel.graff@sifive.com>
Diffstat (limited to 'bsp/coreip-e31')
-rw-r--r-- | bsp/coreip-e31/mee.lds | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/bsp/coreip-e31/mee.lds b/bsp/coreip-e31/mee.lds index 538291d..08c0ccf 100644 --- a/bsp/coreip-e31/mee.lds +++ b/bsp/coreip-e31/mee.lds @@ -20,6 +20,7 @@ PHDRS SECTIONS { __stack_size = DEFINED(__stack_size) ? __stack_size : 0x400; + __heap_size = DEFINED(__heap_size) ? __heap_size : 0x400; .init : @@ -199,18 +200,25 @@ SECTIONS PROVIDE( _end = . ); PROVIDE( end = . ); PROVIDE( mee_segment_bss_target_end = . ); - PROVIDE( mee_segment_heap_target_start = . ); .stack : { - . = ALIGN(8); - . += __stack_size; + PROVIDE(mee_segment_stack_begin = .); + . = __stack_size; PROVIDE( _sp = . ); - PROVIDE( _heap_end = . ); PROVIDE(mee_segment_stack_end = .); } >ram AT>ram :ram + .heap : + { + PROVIDE( mee_segment_heap_target_start = . ); + . = __heap_size; + PROVIDE( mee_segment_heap_target_end = . ); + PROVIDE( _heap_end = . ); + } >ram AT>ram :ram + + } |