2021-11-06 05:24:45 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2024-02-12 00:51:25 -05:00
|
|
|
#include "ld.common"
|
|
|
|
|
2021-11-06 05:24:45 -04:00
|
|
|
/* Default entry point */
|
|
|
|
ENTRY(call_start_cpu0);
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
.iram0.text :
|
|
|
|
{
|
|
|
|
_iram_start = ABSOLUTE(.);
|
|
|
|
/* Vectors go to start of IRAM */
|
|
|
|
ASSERT(ABSOLUTE(.) % 0x100 == 0, "vector address must be 256 byte aligned");
|
2023-08-14 03:44:24 -04:00
|
|
|
KEEP(*(.exception_vectors_table.text));
|
2021-11-06 05:24:45 -04:00
|
|
|
KEEP(*(.exception_vectors.text));
|
|
|
|
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(4, _invalid_pc_placeholder)
|
2021-11-06 05:24:45 -04:00
|
|
|
|
|
|
|
/* Code marked as running out of IRAM */
|
|
|
|
_iram_text_start = ABSOLUTE(.);
|
|
|
|
|
|
|
|
mapping[iram0_text]
|
|
|
|
|
|
|
|
} > iram0_0_seg
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This section is required to skip .iram0.text area because iram0_0_seg and
|
|
|
|
* dram0_0_seg reflect the same address space on different buses.
|
|
|
|
*/
|
|
|
|
.dram0.dummy (NOLOAD):
|
|
|
|
{
|
|
|
|
. = ORIGIN(dram0_0_seg) + _iram_end - _iram_start;
|
|
|
|
} > dram0_0_seg
|
|
|
|
|
2023-10-08 04:08:47 -04:00
|
|
|
/**
|
2024-03-05 10:27:43 -05:00
|
|
|
* This section MUST be placed at the beginning of the DRAM0, which will be
|
|
|
|
* released along with iram0_bt.text when Bluetooth is no longer in use.
|
2023-10-08 04:08:47 -04:00
|
|
|
*/
|
|
|
|
.dram0.bt.data :
|
2021-11-06 05:24:45 -04:00
|
|
|
{
|
|
|
|
_data_start = ABSOLUTE(.);
|
2023-10-08 04:08:47 -04:00
|
|
|
mapping[dram0_bt_data]
|
|
|
|
} > dram0_0_seg
|
|
|
|
|
|
|
|
.dram0.bt.bss (NOLOAD) :
|
|
|
|
{
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(8, _bss_bt_start)
|
|
|
|
|
2023-10-08 04:08:47 -04:00
|
|
|
mapping[dram0_bt_bss]
|
2024-03-05 10:27:43 -05:00
|
|
|
|
2023-10-08 04:08:47 -04:00
|
|
|
_bss_bt_end = ABSOLUTE(.);
|
|
|
|
} > dram0_0_seg
|
|
|
|
|
|
|
|
.dram0.data :
|
|
|
|
{
|
2021-11-06 05:24:45 -04:00
|
|
|
*(.gnu.linkonce.d.*)
|
|
|
|
*(.data1)
|
|
|
|
__global_pointer$ = . + 0x800;
|
|
|
|
*(.sdata)
|
|
|
|
*(.sdata.*)
|
|
|
|
*(.gnu.linkonce.s.*)
|
|
|
|
*(.gnu.linkonce.s2.*)
|
|
|
|
*(.jcr)
|
|
|
|
|
|
|
|
mapping[dram0_data]
|
|
|
|
|
|
|
|
_data_end = ABSOLUTE(.);
|
|
|
|
} > dram0_0_seg
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This section holds data that should not be initialized at power up.
|
|
|
|
* The section located in Internal SRAM memory region. The macro _NOINIT
|
|
|
|
* can be used as attribute to place data into this section.
|
|
|
|
* See the "esp_attr.h" file for more information.
|
|
|
|
*/
|
|
|
|
.noinit (NOLOAD):
|
|
|
|
{
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(4, _noinit_start)
|
|
|
|
|
2021-11-06 05:24:45 -04:00
|
|
|
*(.noinit .noinit.*)
|
2024-03-05 10:27:43 -05:00
|
|
|
|
|
|
|
ALIGNED_SYMBOL(4, _noinit_end)
|
2021-11-06 05:24:45 -04:00
|
|
|
} > dram0_0_seg
|
|
|
|
|
|
|
|
/* Shared RAM */
|
|
|
|
.dram0.bss (NOLOAD) :
|
|
|
|
{
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(8, _bss_start)
|
2021-11-06 05:24:45 -04:00
|
|
|
|
2024-03-05 10:27:43 -05:00
|
|
|
/**
|
|
|
|
* ldgen places all bss-related data to mapping[dram0_bss]
|
|
|
|
* (See components/esp_system/app.lf).
|
|
|
|
*/
|
2021-11-06 05:24:45 -04:00
|
|
|
mapping[dram0_bss]
|
|
|
|
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(8, _bss_end)
|
2021-11-06 05:24:45 -04:00
|
|
|
} > dram0_0_seg
|
|
|
|
|
2024-03-05 10:27:43 -05:00
|
|
|
ASSERT(((_bss_end - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)),
|
|
|
|
"DRAM segment data does not fit.")
|
2021-11-06 05:24:45 -04:00
|
|
|
|
|
|
|
.flash.text :
|
|
|
|
{
|
|
|
|
_stext = .;
|
2024-03-05 10:27:43 -05:00
|
|
|
/**
|
|
|
|
* Mark the start of flash.text.
|
|
|
|
* This can be used by the MMU driver to maintain the virtual address.
|
|
|
|
*/
|
|
|
|
_instruction_reserved_start = ABSOLUTE(.);
|
2021-11-06 05:24:45 -04:00
|
|
|
_text_start = ABSOLUTE(.);
|
|
|
|
|
|
|
|
mapping[flash_text]
|
|
|
|
|
2024-03-05 10:27:43 -05:00
|
|
|
*(.stub)
|
|
|
|
*(.gnu.linkonce.t.*)
|
|
|
|
*(.gnu.warning)
|
2021-11-06 05:24:45 -04:00
|
|
|
*(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */
|
2024-03-05 10:27:43 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* CPU will try to prefetch up to 16 bytes of of instructions.
|
|
|
|
* This means that any configuration (e.g. MMU, PMS) must allow
|
|
|
|
* safe access to up to 16 bytes after the last real instruction, add
|
|
|
|
* dummy bytes to ensure this
|
|
|
|
*/
|
2021-11-06 05:24:45 -04:00
|
|
|
. += _esp_flash_mmap_prefetch_pad_size;
|
|
|
|
|
|
|
|
_text_end = ABSOLUTE(.);
|
2024-03-05 10:27:43 -05:00
|
|
|
/**
|
|
|
|
* Mark the flash.text end.
|
|
|
|
* This can be used for MMU driver to maintain virtual address.
|
|
|
|
*/
|
|
|
|
_instruction_reserved_end = ABSOLUTE(.);
|
2021-11-06 05:24:45 -04:00
|
|
|
_etext = .;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Similar to _iram_start, this symbol goes here so it is
|
|
|
|
* resolved by addr2line in preference to the first symbol in
|
|
|
|
* the flash.text segment.
|
|
|
|
*/
|
|
|
|
_flash_cache_start = ABSOLUTE(0);
|
|
|
|
} > default_code_seg
|
|
|
|
|
|
|
|
/**
|
2024-03-05 10:27:43 -05:00
|
|
|
* Dummy section represents the .flash.text section but in default_rodata_seg.
|
2022-02-25 13:23:58 -05:00
|
|
|
* Thus, it must have its alignment and (at least) its size.
|
2021-11-06 05:24:45 -04:00
|
|
|
*/
|
|
|
|
.flash_rodata_dummy (NOLOAD):
|
|
|
|
{
|
|
|
|
_flash_rodata_dummy_start = .;
|
2024-03-05 10:27:43 -05:00
|
|
|
|
|
|
|
. = ALIGN(ALIGNOF(.flash.text)) + SIZEOF(.flash.text);
|
|
|
|
|
|
|
|
/* Add alignment of MMU page size + 0x20 bytes for the mapping header. */
|
|
|
|
. = ALIGN(_esp_mmu_page_size) + 0x20;
|
2021-11-06 05:24:45 -04:00
|
|
|
} > default_rodata_seg
|
|
|
|
|
|
|
|
.flash.appdesc : ALIGN(0x10)
|
|
|
|
{
|
2024-03-05 10:27:43 -05:00
|
|
|
/**
|
|
|
|
* Mark flash.rodata start.
|
|
|
|
* This can be used for mmu driver to maintain virtual address
|
|
|
|
*/
|
|
|
|
_rodata_reserved_start = ABSOLUTE(.);
|
2021-11-06 05:24:45 -04:00
|
|
|
_rodata_start = ABSOLUTE(.);
|
|
|
|
|
2024-03-05 10:27:43 -05:00
|
|
|
/* !DO NOT PUT ANYTHING BEFORE THIS! */
|
|
|
|
|
|
|
|
/* Should be the first. App version info. */
|
|
|
|
*(.rodata_desc .rodata_desc.*)
|
|
|
|
/* Should be the second. Custom app version info. */
|
|
|
|
*(.rodata_custom_desc .rodata_custom_desc.*)
|
2021-11-06 05:24:45 -04:00
|
|
|
|
2024-03-05 10:27:43 -05:00
|
|
|
/**
|
|
|
|
* Create an empty gap within this section. Thanks to this, the end of this
|
2021-11-06 05:24:45 -04:00
|
|
|
* section will match .flash.rodata's begin address. Thus, both sections
|
2024-03-05 10:27:43 -05:00
|
|
|
* will be merged when creating the final bin image.
|
|
|
|
*/
|
2021-11-06 05:24:45 -04:00
|
|
|
. = ALIGN(ALIGNOF(.flash.rodata));
|
2024-02-12 00:51:25 -05:00
|
|
|
} > default_rodata_seg
|
|
|
|
ASSERT_SECTIONS_GAP(.flash.appdesc, .flash.rodata)
|
2021-11-06 05:24:45 -04:00
|
|
|
|
|
|
|
.flash.rodata : ALIGN(0x10)
|
|
|
|
{
|
|
|
|
_flash_rodata_start = ABSOLUTE(.);
|
|
|
|
|
|
|
|
mapping[flash_rodata]
|
|
|
|
|
|
|
|
*(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */
|
|
|
|
*(.gnu.linkonce.r.*)
|
|
|
|
*(.rodata1)
|
|
|
|
*(.gcc_except_table .gcc_except_table.*)
|
|
|
|
*(.gnu.linkonce.e.*)
|
2024-03-05 10:27:43 -05:00
|
|
|
/**
|
|
|
|
* C++ constructor tables.
|
2021-11-06 05:24:45 -04:00
|
|
|
*
|
2024-03-05 10:27:43 -05:00
|
|
|
* Excluding crtbegin.o/crtend.o since IDF doesn't use the toolchain crt.
|
|
|
|
*
|
|
|
|
* RISC-V gcc is configured with --enable-initfini-array so it emits
|
|
|
|
* .init_array section instead. But the init_priority sections will be
|
|
|
|
* sorted for iteration in ascending order during startup.
|
|
|
|
* The rest of the init_array sections is sorted for iteration in descending
|
|
|
|
* order during startup, however. Hence a different section is generated for
|
|
|
|
* the init_priority functions which is iterated in ascending order during
|
|
|
|
* startup. The corresponding code can be found in startup.c.
|
2021-11-06 05:24:45 -04:00
|
|
|
*/
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(4, __init_priority_array_start)
|
2021-11-06 05:24:45 -04:00
|
|
|
KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .init_array.*))
|
|
|
|
__init_priority_array_end = ABSOLUTE(.);
|
2024-03-05 10:27:43 -05:00
|
|
|
|
|
|
|
ALIGNED_SYMBOL(4, __init_array_start)
|
2021-11-06 05:24:45 -04:00
|
|
|
KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .init_array))
|
|
|
|
__init_array_end = ABSOLUTE(.);
|
2024-03-05 10:27:43 -05:00
|
|
|
|
2021-11-06 05:24:45 -04:00
|
|
|
/* Addresses of memory regions reserved via SOC_RESERVE_MEMORY_REGION() */
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(4, soc_reserved_memory_region_start)
|
2021-11-06 05:24:45 -04:00
|
|
|
KEEP (*(.reserved_memory_address))
|
|
|
|
soc_reserved_memory_region_end = ABSOLUTE(.);
|
2024-03-05 10:27:43 -05:00
|
|
|
|
2022-05-17 17:42:54 -04:00
|
|
|
/* System init functions registered via ESP_SYSTEM_INIT_FN */
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(4, _esp_system_init_fn_array_start)
|
2022-05-17 17:42:54 -04:00
|
|
|
KEEP (*(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*)))
|
|
|
|
_esp_system_init_fn_array_end = ABSOLUTE(.);
|
2024-03-05 10:27:43 -05:00
|
|
|
|
2021-11-06 05:24:45 -04:00
|
|
|
_rodata_end = ABSOLUTE(.);
|
2024-03-05 10:27:43 -05:00
|
|
|
. = ALIGN(ALIGNOF(.eh_frame_hdr));
|
2024-02-12 00:51:25 -05:00
|
|
|
} > default_rodata_seg
|
2024-03-05 10:27:43 -05:00
|
|
|
ASSERT_SECTIONS_GAP(.flash.rodata, .eh_frame_hdr)
|
2024-02-12 00:51:25 -05:00
|
|
|
|
2024-03-05 10:27:43 -05:00
|
|
|
.eh_frame_hdr :
|
2024-02-12 00:51:25 -05:00
|
|
|
{
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(4, __eh_frame_hdr)
|
|
|
|
|
|
|
|
KEEP (*(.eh_frame_hdr))
|
|
|
|
|
|
|
|
__eh_frame_hdr_end = ABSOLUTE(.);
|
2022-06-22 06:05:09 -04:00
|
|
|
. = ALIGN(ALIGNOF(.eh_frame));
|
|
|
|
} > default_rodata_seg
|
2024-03-05 10:27:43 -05:00
|
|
|
ASSERT_SECTIONS_GAP(.eh_frame_hdr, .eh_frame)
|
2022-06-22 06:05:09 -04:00
|
|
|
|
2024-03-05 10:27:43 -05:00
|
|
|
.eh_frame :
|
2022-06-22 06:05:09 -04:00
|
|
|
{
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(4, __eh_frame)
|
|
|
|
|
2022-06-22 06:05:09 -04:00
|
|
|
KEEP (*(.eh_frame))
|
2024-03-05 10:27:43 -05:00
|
|
|
/**
|
|
|
|
* As we are not linking with crtend.o, which includes the CIE terminator
|
|
|
|
* (see __FRAME_END__ in libgcc sources), it is manually provided here.
|
|
|
|
*/
|
|
|
|
LONG(0);
|
|
|
|
|
2022-06-22 06:05:09 -04:00
|
|
|
__eh_frame_end = ABSOLUTE(.);
|
2024-03-05 10:27:43 -05:00
|
|
|
. = ALIGN(ALIGNOF(.flash.tdata));
|
2022-06-22 06:05:09 -04:00
|
|
|
} > default_rodata_seg
|
2024-03-05 10:27:43 -05:00
|
|
|
ASSERT_SECTIONS_GAP(.eh_frame, .flash.tdata)
|
2022-06-22 06:05:09 -04:00
|
|
|
|
2024-03-05 10:27:43 -05:00
|
|
|
.flash.tdata :
|
2022-06-22 06:05:09 -04:00
|
|
|
{
|
2024-03-05 10:27:43 -05:00
|
|
|
_thread_local_data_start = ABSOLUTE(.);
|
|
|
|
|
|
|
|
*(.tdata .tdata.* .gnu.linkonce.td.*)
|
|
|
|
|
|
|
|
. = ALIGN(ALIGNOF(.flash.tbss));
|
|
|
|
_thread_local_data_end = ABSOLUTE(.);
|
2021-11-06 05:24:45 -04:00
|
|
|
} > default_rodata_seg
|
2024-03-05 10:27:43 -05:00
|
|
|
ASSERT_SECTIONS_GAP(.flash.tdata, .flash.tbss)
|
|
|
|
|
|
|
|
.flash.tbss (NOLOAD) :
|
|
|
|
{
|
|
|
|
_thread_local_bss_start = ABSOLUTE(.);
|
2021-11-06 05:24:45 -04:00
|
|
|
|
2024-03-05 10:27:43 -05:00
|
|
|
*(.tbss .tbss.* .gnu.linkonce.tb.*)
|
|
|
|
*(.tcommon .tcommon.*)
|
|
|
|
|
|
|
|
_thread_local_bss_end = ABSOLUTE(.);
|
|
|
|
} > default_rodata_seg
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This section contains all the rodata that is not used
|
|
|
|
* at runtime, helping to avoid an increase in binary size.
|
|
|
|
*/
|
2021-11-06 05:24:45 -04:00
|
|
|
.flash.rodata_noload (NOLOAD) :
|
|
|
|
{
|
2024-03-05 10:27:43 -05:00
|
|
|
/**
|
|
|
|
* This symbol marks the end of flash.rodata. It can be utilized by the MMU
|
|
|
|
* driver to maintain the virtual address.
|
|
|
|
* NOLOAD rodata may not be included in this section.
|
|
|
|
*/
|
|
|
|
_rodata_reserved_end = ADDR(.flash.tbss);
|
|
|
|
|
2021-11-06 05:24:45 -04:00
|
|
|
mapping[rodata_noload]
|
|
|
|
} > default_rodata_seg
|
|
|
|
|
|
|
|
/* Marks the end of IRAM code segment */
|
|
|
|
.iram0.text_end (NOLOAD) :
|
|
|
|
{
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(4, _iram_text_end)
|
2021-11-06 05:24:45 -04:00
|
|
|
} > iram0_0_seg
|
|
|
|
|
|
|
|
.iram0.data :
|
|
|
|
{
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(16, _iram_data_start)
|
2021-11-06 05:24:45 -04:00
|
|
|
|
|
|
|
mapping[iram0_data]
|
|
|
|
|
|
|
|
_iram_data_end = ABSOLUTE(.);
|
|
|
|
} > iram0_0_seg
|
|
|
|
|
|
|
|
.iram0.bss (NOLOAD) :
|
|
|
|
{
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(16, _iram_bss_start)
|
2021-11-06 05:24:45 -04:00
|
|
|
|
|
|
|
mapping[iram0_bss]
|
|
|
|
|
|
|
|
_iram_bss_end = ABSOLUTE(.);
|
2023-10-08 04:08:47 -04:00
|
|
|
} > iram0_0_seg
|
|
|
|
|
|
|
|
/**
|
2024-03-05 10:27:43 -05:00
|
|
|
* This section needs to be placed at the end of the IRAM0, which will be
|
|
|
|
* released along with dram0_bt_data and dram0_bt_bss when Bluetooth is no
|
|
|
|
* longer in use.
|
2023-10-08 04:08:47 -04:00
|
|
|
*/
|
|
|
|
.iram0.bt.text :
|
|
|
|
{
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(16, _iram_bt_text_start)
|
|
|
|
|
2023-10-08 04:08:47 -04:00
|
|
|
mapping[iram0_bt_text]
|
|
|
|
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(16, _iram_end)
|
2021-11-06 05:24:45 -04:00
|
|
|
} > iram0_0_seg
|
|
|
|
|
2024-03-05 10:27:43 -05:00
|
|
|
/* Marks the end of data, bss and possibly rodata */
|
2021-11-06 05:24:45 -04:00
|
|
|
.dram0.heap_start (NOLOAD) :
|
|
|
|
{
|
2024-03-05 10:27:43 -05:00
|
|
|
ALIGNED_SYMBOL(16, _heap_start)
|
2021-11-06 05:24:45 -04:00
|
|
|
} > dram0_0_seg
|
2024-03-05 10:27:43 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Discarding .rela.* sections results in the following mapping:
|
|
|
|
* .rela.text.* -> .text.*
|
|
|
|
* .rela.data.* -> .data.*
|
|
|
|
* And so forth...
|
|
|
|
*/
|
|
|
|
/DISCARD/ : { *(.rela.*) }
|
2021-11-06 05:24:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ASSERT(((_iram_end - ORIGIN(iram0_0_seg)) <= LENGTH(iram0_0_seg)),
|
|
|
|
"IRAM0 segment data does not fit.")
|
|
|
|
|
|
|
|
ASSERT(((_heap_start - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)),
|
|
|
|
"DRAM segment data does not fit.")
|