2014-12-22 12:35:05 +01:00
|
|
|
/* This linker script generated from xt-genldscripts.tpp for LSP . */
|
|
|
|
/* Linker Script for ld -N */
|
|
|
|
MEMORY
|
|
|
|
{
|
2015-10-05 08:53:23 +02:00
|
|
|
dport0_0_seg : org = 0x3FF00000, len = 0x10
|
|
|
|
dram0_0_seg : org = 0x3FFE8000, len = 0x14000
|
|
|
|
iram1_0_seg : org = 0x40100000, len = 0x8000
|
|
|
|
irom0_0_seg : org = 0x40210000, len = 0x80000
|
2014-12-22 12:35:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
PHDRS
|
|
|
|
{
|
|
|
|
dport0_0_phdr PT_LOAD;
|
|
|
|
dram0_0_phdr PT_LOAD;
|
|
|
|
dram0_0_bss_phdr PT_LOAD;
|
|
|
|
iram1_0_phdr PT_LOAD;
|
|
|
|
irom0_0_phdr PT_LOAD;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Default entry point: */
|
2015-06-23 07:38:52 +02:00
|
|
|
ENTRY(user_start_trampoline)
|
2015-10-05 08:53:23 +02:00
|
|
|
EXTERN(_DebugExceptionVector)
|
|
|
|
EXTERN(_DoubleExceptionVector)
|
|
|
|
EXTERN(_KernelExceptionVector)
|
|
|
|
EXTERN(_NMIExceptionVector)
|
|
|
|
EXTERN(_UserExceptionVector)
|
2014-12-22 12:35:05 +01:00
|
|
|
PROVIDE(_memmap_vecbase_reset = 0x40000000);
|
|
|
|
/* Various memory-map dependent cache attribute settings: */
|
|
|
|
_memmap_cacheattr_wb_base = 0x00000110;
|
|
|
|
_memmap_cacheattr_wt_base = 0x00000110;
|
|
|
|
_memmap_cacheattr_bp_base = 0x00000220;
|
|
|
|
_memmap_cacheattr_unused_mask = 0xFFFFF00F;
|
|
|
|
_memmap_cacheattr_wb_trapnull = 0x2222211F;
|
|
|
|
_memmap_cacheattr_wba_trapnull = 0x2222211F;
|
|
|
|
_memmap_cacheattr_wbna_trapnull = 0x2222211F;
|
|
|
|
_memmap_cacheattr_wt_trapnull = 0x2222211F;
|
|
|
|
_memmap_cacheattr_bp_trapnull = 0x2222222F;
|
|
|
|
_memmap_cacheattr_wb_strict = 0xFFFFF11F;
|
|
|
|
_memmap_cacheattr_wt_strict = 0xFFFFF11F;
|
|
|
|
_memmap_cacheattr_bp_strict = 0xFFFFF22F;
|
|
|
|
_memmap_cacheattr_wb_allvalid = 0x22222112;
|
|
|
|
_memmap_cacheattr_wt_allvalid = 0x22222112;
|
|
|
|
_memmap_cacheattr_bp_allvalid = 0x22222222;
|
|
|
|
PROVIDE(_memmap_cacheattr_reset = _memmap_cacheattr_wb_trapnull);
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
|
|
|
|
.dport0.rodata : ALIGN(4)
|
|
|
|
{
|
|
|
|
_dport0_rodata_start = ABSOLUTE(.);
|
|
|
|
*(.dport0.rodata)
|
|
|
|
*(.dport.rodata)
|
|
|
|
_dport0_rodata_end = ABSOLUTE(.);
|
|
|
|
} >dport0_0_seg :dport0_0_phdr
|
|
|
|
|
|
|
|
.dport0.literal : ALIGN(4)
|
|
|
|
{
|
|
|
|
_dport0_literal_start = ABSOLUTE(.);
|
|
|
|
*(.dport0.literal)
|
|
|
|
*(.dport.literal)
|
|
|
|
_dport0_literal_end = ABSOLUTE(.);
|
|
|
|
} >dport0_0_seg :dport0_0_phdr
|
|
|
|
|
|
|
|
.dport0.data : ALIGN(4)
|
|
|
|
{
|
|
|
|
_dport0_data_start = ABSOLUTE(.);
|
|
|
|
*(.dport0.data)
|
|
|
|
*(.dport.data)
|
|
|
|
_dport0_data_end = ABSOLUTE(.);
|
|
|
|
} >dport0_0_seg :dport0_0_phdr
|
|
|
|
|
Initial pass at switching to RTOS SDK.
This compiles, links, and starts the RTOS without crashing and burning.
Lua environment does not yet start due to the different task architecture.
Known pain points:
- task implementation needs to be rewritten for RTOS (next up on my TODO)
- secure espconn does not exist, all secure espconn stuff has been #if 0'd
- lwip now built from within the RTOS SDK, but does not appear to include
MDNS support. Investigation needed.
- there is no access to FRC1 NMI, not sure if we ever actually used that
however. Also #if 0'd out for now.
- new timing constraints introduced by the RTOS, all use of ets_delay_us()
and os_delay_us() needs to be reviewed (the tsl2561 driver in particular).
- even more confusion with ets_ vs os_ vs c_ vs non-prefixed versions.
In the long run everything should be switched to non-prefixed versions.
- system_set_os_print() not available, needs to be reimplemented
- all the RTOS rodata is loaded into RAM, as it apparently uses some
constants while the flash isn't mapped, so our exception handler can't
work its magic. This should be narrowed down to the minimum possible
at some point.
- with each task having its own stack in RTOS, we probably need change
flash-page buffers from the stack to the heap in a bunch of places.
A single, shared, page buffer *might* be possible if we limit ourselves
to running NodeMCU in a single task.
- there's a ton of junk in the sdk-overrides now; over time the core code
should be updated to not need those shims
2016-05-24 07:05:01 +02:00
|
|
|
.data : ALIGN(4)
|
|
|
|
{
|
|
|
|
_data_start = ABSOLUTE(.);
|
|
|
|
*(.data)
|
|
|
|
*(.data.*)
|
|
|
|
*(.gnu.linkonce.d.*)
|
|
|
|
*(.data1)
|
|
|
|
*(.sdata)
|
|
|
|
*(.sdata.*)
|
|
|
|
*(.gnu.linkonce.s.*)
|
|
|
|
*(.sdata2)
|
|
|
|
*(.sdata2.*)
|
|
|
|
*(.gnu.linkonce.s2.*)
|
|
|
|
*(.jcr)
|
|
|
|
_data_end = ABSOLUTE(.);
|
|
|
|
} >dram0_0_seg :dram0_0_phdr
|
|
|
|
|
2016-03-07 02:25:05 +01:00
|
|
|
.irom0.text : ALIGN(0x1000)
|
2015-01-05 03:09:51 +01:00
|
|
|
{
|
|
|
|
_irom0_text_start = ABSOLUTE(.);
|
2016-06-02 07:49:56 +02:00
|
|
|
|
|
|
|
/* To be able to suppress SDK printfs, we place all SDK code first, with
|
|
|
|
* a marker at the end that we can easily compare against. */
|
|
|
|
*/rtos-sdk/lib/lib*.a:*.o(.irom*)
|
|
|
|
_irom0_sdktext_end = ABSOLUTE(.);
|
|
|
|
|
2016-03-07 02:25:05 +01:00
|
|
|
*(.servercert.flash)
|
|
|
|
*(.clientcert.flash)
|
2015-01-05 03:09:51 +01:00
|
|
|
*(.irom0.literal .irom.literal .irom.text.literal .irom0.text .irom.text)
|
2015-01-09 08:58:39 +01:00
|
|
|
*(.literal.* .text.*)
|
2016-05-26 07:47:33 +02:00
|
|
|
*(.rodata*)
|
2015-10-05 08:53:23 +02:00
|
|
|
*(.sdk.version)
|
2015-10-08 04:33:15 +02:00
|
|
|
|
2015-12-16 06:04:58 +01:00
|
|
|
/* Link-time arrays containing the defs for the included modules */
|
|
|
|
. = ALIGN(4);
|
|
|
|
lua_libs = ABSOLUTE(.);
|
|
|
|
/* Allow either empty define or defined-to-1 to include the module */
|
2015-12-18 03:10:48 +01:00
|
|
|
KEEP(*(.lua_libs))
|
2015-12-16 06:04:58 +01:00
|
|
|
LONG(0) LONG(0) /* Null-terminate the array */
|
|
|
|
lua_rotable = ABSOLUTE(.);
|
2015-12-18 03:10:48 +01:00
|
|
|
KEEP(*(.lua_rotable))
|
2015-12-16 06:04:58 +01:00
|
|
|
LONG(0) LONG(0) /* Null-terminate the array */
|
|
|
|
|
2015-01-05 03:09:51 +01:00
|
|
|
_irom0_text_end = ABSOLUTE(.);
|
|
|
|
_flash_used_end = ABSOLUTE(.);
|
2016-03-07 02:25:05 +01:00
|
|
|
} >irom0_0_seg :irom0_0_phdr =0xffffffff
|
2015-01-05 03:09:51 +01:00
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
.rodata : ALIGN(4)
|
|
|
|
{
|
|
|
|
_rodata_start = ABSOLUTE(.);
|
Initial pass at switching to RTOS SDK.
This compiles, links, and starts the RTOS without crashing and burning.
Lua environment does not yet start due to the different task architecture.
Known pain points:
- task implementation needs to be rewritten for RTOS (next up on my TODO)
- secure espconn does not exist, all secure espconn stuff has been #if 0'd
- lwip now built from within the RTOS SDK, but does not appear to include
MDNS support. Investigation needed.
- there is no access to FRC1 NMI, not sure if we ever actually used that
however. Also #if 0'd out for now.
- new timing constraints introduced by the RTOS, all use of ets_delay_us()
and os_delay_us() needs to be reviewed (the tsl2561 driver in particular).
- even more confusion with ets_ vs os_ vs c_ vs non-prefixed versions.
In the long run everything should be switched to non-prefixed versions.
- system_set_os_print() not available, needs to be reimplemented
- all the RTOS rodata is loaded into RAM, as it apparently uses some
constants while the flash isn't mapped, so our exception handler can't
work its magic. This should be narrowed down to the minimum possible
at some point.
- with each task having its own stack in RTOS, we probably need change
flash-page buffers from the stack to the heap in a bunch of places.
A single, shared, page buffer *might* be possible if we limit ourselves
to running NodeMCU in a single task.
- there's a ton of junk in the sdk-overrides now; over time the core code
should be updated to not need those shims
2016-05-24 07:05:01 +02:00
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
*(.gnu.linkonce.r.*)
|
|
|
|
__XT_EXCEPTION_TABLE__ = ABSOLUTE(.);
|
|
|
|
*(.xt_except_table)
|
|
|
|
*(.gcc_except_table)
|
|
|
|
*(.gnu.linkonce.e.*)
|
|
|
|
*(.gnu.version_r)
|
|
|
|
*(.eh_frame)
|
|
|
|
/* C++ constructor and destructor tables, properly ordered: */
|
Initial pass at switching to RTOS SDK.
This compiles, links, and starts the RTOS without crashing and burning.
Lua environment does not yet start due to the different task architecture.
Known pain points:
- task implementation needs to be rewritten for RTOS (next up on my TODO)
- secure espconn does not exist, all secure espconn stuff has been #if 0'd
- lwip now built from within the RTOS SDK, but does not appear to include
MDNS support. Investigation needed.
- there is no access to FRC1 NMI, not sure if we ever actually used that
however. Also #if 0'd out for now.
- new timing constraints introduced by the RTOS, all use of ets_delay_us()
and os_delay_us() needs to be reviewed (the tsl2561 driver in particular).
- even more confusion with ets_ vs os_ vs c_ vs non-prefixed versions.
In the long run everything should be switched to non-prefixed versions.
- system_set_os_print() not available, needs to be reimplemented
- all the RTOS rodata is loaded into RAM, as it apparently uses some
constants while the flash isn't mapped, so our exception handler can't
work its magic. This should be narrowed down to the minimum possible
at some point.
- with each task having its own stack in RTOS, we probably need change
flash-page buffers from the stack to the heap in a bunch of places.
A single, shared, page buffer *might* be possible if we limit ourselves
to running NodeMCU in a single task.
- there's a ton of junk in the sdk-overrides now; over time the core code
should be updated to not need those shims
2016-05-24 07:05:01 +02:00
|
|
|
__init_array_start = ABSOLUTE(.);
|
2014-12-22 12:35:05 +01:00
|
|
|
KEEP (*crtbegin.o(.ctors))
|
|
|
|
KEEP (*(EXCLUDE_FILE (*crtend.o) .ctors))
|
|
|
|
KEEP (*(SORT(.ctors.*)))
|
|
|
|
KEEP (*(.ctors))
|
Initial pass at switching to RTOS SDK.
This compiles, links, and starts the RTOS without crashing and burning.
Lua environment does not yet start due to the different task architecture.
Known pain points:
- task implementation needs to be rewritten for RTOS (next up on my TODO)
- secure espconn does not exist, all secure espconn stuff has been #if 0'd
- lwip now built from within the RTOS SDK, but does not appear to include
MDNS support. Investigation needed.
- there is no access to FRC1 NMI, not sure if we ever actually used that
however. Also #if 0'd out for now.
- new timing constraints introduced by the RTOS, all use of ets_delay_us()
and os_delay_us() needs to be reviewed (the tsl2561 driver in particular).
- even more confusion with ets_ vs os_ vs c_ vs non-prefixed versions.
In the long run everything should be switched to non-prefixed versions.
- system_set_os_print() not available, needs to be reimplemented
- all the RTOS rodata is loaded into RAM, as it apparently uses some
constants while the flash isn't mapped, so our exception handler can't
work its magic. This should be narrowed down to the minimum possible
at some point.
- with each task having its own stack in RTOS, we probably need change
flash-page buffers from the stack to the heap in a bunch of places.
A single, shared, page buffer *might* be possible if we limit ourselves
to running NodeMCU in a single task.
- there's a ton of junk in the sdk-overrides now; over time the core code
should be updated to not need those shims
2016-05-24 07:05:01 +02:00
|
|
|
__init_array_end = ABSOLUTE(.);
|
2014-12-22 12:35:05 +01:00
|
|
|
KEEP (*crtbegin.o(.dtors))
|
|
|
|
KEEP (*(EXCLUDE_FILE (*crtend.o) .dtors))
|
|
|
|
KEEP (*(SORT(.dtors.*)))
|
|
|
|
KEEP (*(.dtors))
|
|
|
|
/* C++ exception handlers table: */
|
|
|
|
__XT_EXCEPTION_DESCS__ = ABSOLUTE(.);
|
|
|
|
*(.xt_except_desc)
|
|
|
|
*(.gnu.linkonce.h.*)
|
|
|
|
__XT_EXCEPTION_DESCS_END__ = ABSOLUTE(.);
|
|
|
|
*(.xt_except_desc_end)
|
|
|
|
*(.dynamic)
|
|
|
|
*(.gnu.version_d)
|
|
|
|
. = ALIGN(4); /* this table MUST be 4-byte aligned */
|
|
|
|
_bss_table_start = ABSOLUTE(.);
|
|
|
|
LONG(_bss_start)
|
|
|
|
LONG(_bss_end)
|
|
|
|
_bss_table_end = ABSOLUTE(.);
|
|
|
|
_rodata_end = ABSOLUTE(.);
|
|
|
|
} >dram0_0_seg :dram0_0_phdr
|
|
|
|
|
|
|
|
.bss ALIGN(8) (NOLOAD) : ALIGN(4)
|
|
|
|
{
|
|
|
|
. = ALIGN (8);
|
|
|
|
_bss_start = ABSOLUTE(.);
|
|
|
|
*(.dynsbss)
|
|
|
|
*(.sbss)
|
|
|
|
*(.sbss.*)
|
|
|
|
*(.gnu.linkonce.sb.*)
|
|
|
|
*(.scommon)
|
|
|
|
*(.sbss2)
|
|
|
|
*(.sbss2.*)
|
|
|
|
*(.gnu.linkonce.sb2.*)
|
|
|
|
*(.dynbss)
|
|
|
|
*(.bss)
|
|
|
|
*(.bss.*)
|
|
|
|
*(.gnu.linkonce.b.*)
|
|
|
|
*(COMMON)
|
|
|
|
. = ALIGN (8);
|
|
|
|
_bss_end = ABSOLUTE(.);
|
|
|
|
_heap_start = ABSOLUTE(.);
|
|
|
|
/* _stack_sentry = ALIGN(0x8); */
|
|
|
|
} >dram0_0_seg :dram0_0_bss_phdr
|
|
|
|
/* __stack = 0x3ffc8000; */
|
|
|
|
|
2015-10-05 08:53:23 +02:00
|
|
|
.text : ALIGN(4)
|
|
|
|
{
|
|
|
|
_stext = .;
|
|
|
|
_text_start = ABSOLUTE(.);
|
|
|
|
*(.UserEnter.text)
|
|
|
|
. = ALIGN(16);
|
|
|
|
*(.DebugExceptionVector.text)
|
|
|
|
. = ALIGN(16);
|
|
|
|
*(.NMIExceptionVector.text)
|
|
|
|
. = ALIGN(16);
|
|
|
|
*(.KernelExceptionVector.text)
|
|
|
|
LONG(0)
|
|
|
|
LONG(0)
|
|
|
|
LONG(0)
|
|
|
|
LONG(0)
|
|
|
|
. = ALIGN(16);
|
2016-05-26 07:19:20 +02:00
|
|
|
KEEP(*(.UserExceptionVectorOverride.text))
|
2015-10-05 08:53:23 +02:00
|
|
|
. = ALIGN(16);
|
|
|
|
*(.DoubleExceptionVector.text)
|
|
|
|
LONG(0)
|
|
|
|
LONG(0)
|
|
|
|
LONG(0)
|
|
|
|
LONG(0)
|
|
|
|
. = ALIGN (16);
|
2016-05-26 07:19:20 +02:00
|
|
|
KEEP(*(.UserExceptionVector.text))
|
2015-10-05 08:53:23 +02:00
|
|
|
*(.entry.text)
|
|
|
|
*(.init.literal)
|
|
|
|
*(.init)
|
|
|
|
*(.literal .text .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)
|
2015-10-06 09:23:25 +02:00
|
|
|
*(.iram0.text)
|
2015-10-05 08:53:23 +02:00
|
|
|
*(.fini.literal)
|
|
|
|
*(.fini)
|
|
|
|
*(.gnu.version)
|
|
|
|
_text_end = ABSOLUTE(.);
|
|
|
|
_etext = .;
|
|
|
|
} >iram1_0_seg :iram1_0_phdr
|
|
|
|
|
|
|
|
.lit4 : ALIGN(4)
|
|
|
|
{
|
|
|
|
_lit4_start = ABSOLUTE(.);
|
|
|
|
*(*.lit4)
|
|
|
|
*(.lit4.*)
|
|
|
|
*(.gnu.linkonce.lit4.*)
|
|
|
|
_lit4_end = ABSOLUTE(.);
|
|
|
|
} >iram1_0_seg :iram1_0_phdr
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* get ROM code address */
|
2015-10-07 03:02:49 +02:00
|
|
|
INCLUDE "eagle.rom.addr.v6.ld"
|