| /* |
| * Copyright (c) 2023 Espressif Systems (Shanghai) Co., Ltd. |
| * SPDX-License-Identifier: Apache-2.0 |
| */ |
| |
| /** |
| * @file |
| * @brief Linker command/script file |
| * |
| * Linker script for the esp32c3 platform. |
| */ |
| |
| #include <zephyr/devicetree.h> |
| #include <zephyr/linker/sections.h> |
| #include <zephyr/linker/linker-defs.h> |
| #include <zephyr/linker/linker-tool.h> |
| |
| #ifdef CONFIG_XIP |
| #error "ESP32C3 bootloader cannot use XIP" |
| #endif /* CONFIG_XIP */ |
| |
| /* Disable all romable LMA */ |
| #udef GROUP_DATA_LINK_IN |
| #define GROUP_DATA_LINK_IN(vregion, lregion) > vregion |
| |
| #define RAMABLE_REGION dram_seg |
| #define RODATA_REGION dram_seg |
| |
| #define IRAM_REGION iram_seg |
| #define IRAM_LOADER_REGION iram_loader_seg |
| |
| #define ROMABLE_REGION dram_seg |
| #define IROM_SEG_ALIGN 0x4 |
| |
| /* Global symbols required for espressif hal build */ |
| MEMORY |
| { |
| iram_seg (RX) : org = 0x403CA000, len = 0x6000 |
| iram_loader_seg (RX) : org = 0x403D0000, len = 0x4000 |
| dram_seg (RW) : org = 0x3FCD8000, len = 0x8000 |
| |
| #ifdef CONFIG_GEN_ISR_TABLES |
| IDT_LIST(RW): org = 0x3ebfe010, len = 0x2000 |
| #endif |
| } |
| |
| /* Default entry point: */ |
| ENTRY(CONFIG_KERNEL_ENTRY) |
| |
| SECTIONS |
| { |
| SECTION_PROLOGUE(_RODATA_SECTION_NAME,,) |
| { |
| _rodata_start = ABSOLUTE(.); |
| |
| *(.rodata_desc .rodata_desc.*) |
| *(.rodata_custom_desc .rodata_custom_desc.*) |
| |
| __rodata_region_start = .; |
| |
| . = ALIGN(4); |
| #include <snippets-rodata.ld> |
| . = ALIGN(4); |
| |
| *(.rodata) |
| *(.rodata.*) |
| *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */ |
| *(.gnu.linkonce.r.*) |
| *(.rodata1) |
| __XT_EXCEPTION_TABLE_ = ABSOLUTE(.); |
| *(.xt_except_table) |
| *(.gcc_except_table .gcc_except_table.*) |
| *(.gnu.linkonce.e.*) |
| *(.gnu.version_r) |
| . = (. + 3) & ~ 3; |
| __eh_frame = ABSOLUTE(.); |
| KEEP(*(.eh_frame)) |
| . = (. + 7) & ~ 3; |
| |
| /* 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) |
| __rodata_region_end = .; |
| _rodata_end = ABSOLUTE(.); |
| /* Literals are also RO data. */ |
| _lit4_start = ABSOLUTE(.); |
| *(*.lit4) |
| *(.lit4.*) |
| *(.gnu.linkonce.lit4.*) |
| _lit4_end = ABSOLUTE(.); |
| . = ALIGN(4); |
| _thread_local_start = ABSOLUTE(.); |
| *(.tdata) |
| *(.tdata.*) |
| *(.tbss) |
| *(.tbss.*) |
| *(.srodata) |
| *(.srodata.*) |
| *(.rodata) |
| *(.rodata.*) |
| *(.rodata_wlog) |
| *(.rodata_wlog*) |
| _thread_local_end = ABSOLUTE(.); |
| /* _rodata_reserved_end = ABSOLUTE(.); */ |
| . = ALIGN(4); |
| } GROUP_DATA_LINK_IN(RODATA_REGION, ROMABLE_REGION) |
| |
| #include <zephyr/linker/common-rom/common-rom-cpp.ld> |
| #include <zephyr/linker/common-rom/common-rom-kernel-devices.ld> |
| #include <zephyr/linker/common-rom/common-rom-debug.ld> |
| #include <zephyr/linker/common-rom/common-rom-misc.ld> |
| |
| #include <snippets-sections.ld> |
| |
| .dram0.data : |
| { |
| . = ALIGN(4); |
| __data_start = ABSOLUTE(.); |
| *(.data) |
| *(.data.*) |
| *(.gnu.linkonce.d.*) |
| *(.data1) |
| #ifdef CONFIG_RISCV_GP |
| __global_pointer$ = . + 0x800; |
| #endif /* CONFIG_RISCV_GP */ |
| *(.sdata) |
| *(.sdata.*) |
| *(.gnu.linkonce.s.*) |
| *(.sdata2) |
| *(.sdata2.*) |
| *(.gnu.linkonce.s2.*) |
| |
| KEEP(*(.jcr)) |
| *(.dram1 .dram1.*) |
| . = ALIGN(4); |
| } GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION) |
| |
| #include <zephyr/linker/cplusplus-rom.ld> |
| #include <zephyr/linker/thread-local-storage.ld> |
| #include <snippets-data-sections.ld> |
| #include <zephyr/linker/common-ram.ld> |
| #include <snippets-ram-sections.ld> |
| #include <zephyr/linker/cplusplus-ram.ld> |
| |
| #include <zephyr/linker/common-rom/common-rom-logging.ld> |
| |
| .dram0.end : |
| { |
| . = ALIGN(4); |
| #include <snippets-rwdata.ld> |
| . = ALIGN(4); |
| _end = ABSOLUTE(.); |
| __data_end = ABSOLUTE(.); |
| } GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION) |
| |
| /* Shared RAM */ |
| SECTION_DATA_PROLOGUE(_BSS_SECTION_NAME,(NOLOAD),) |
| { |
| . = ALIGN (8); |
| _bss_start = ABSOLUTE(.); |
| __bss_start = ABSOLUTE(.); |
| *(.dynsbss) |
| *(.sbss) |
| *(.sbss.*) |
| *(.gnu.linkonce.sb.*) |
| *(.scommon) |
| *(.sbss2) |
| *(.sbss2.*) |
| *(.gnu.linkonce.sb2.*) |
| *(.dynbss) |
| *(.bss) |
| *(.bss.*) |
| *(.share.mem) |
| *(.gnu.linkonce.b.*) |
| *(COMMON) |
| . = ALIGN (8); |
| __bss_end = ABSOLUTE(.); |
| _bss_end = ABSOLUTE(.); |
| } GROUP_LINK_IN(RAMABLE_REGION) |
| |
| SECTION_DATA_PROLOGUE(_NOINIT_SECTION_NAME, (NOLOAD),) |
| { |
| . = ALIGN(4); |
| *(.noinit) |
| *(.noinit.*) |
| . = ALIGN(4); |
| } GROUP_LINK_IN(RAMABLE_REGION) |
| |
| .iram_loader.text : |
| { |
| . = ALIGN (16); |
| _loader_text_start = ABSOLUTE(.); |
| *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) |
| *(.iram1 .iram1.*) /* catch stray IRAM_ATTR */ |
| *libzephyr.a:bootloader_flash.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:bootloader_flash_config_esp32c3.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:bootloader_clock_loader.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:bootloader_common_loader.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:bootloader_init_common.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:bootloader_random.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:bootloader_random*.*(.literal.bootloader_random_disable .text.bootloader_random_disable) |
| *libzephyr.a:bootloader_random*.*(.literal.bootloader_random_enable .text.bootloader_random_enable) |
| *libzephyr.a:bootloader_efuse_esp32c3.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:bootloader_utility.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:bootloader_sha.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:bootloader_console.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:bootloader_console_loader.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:bootloader_panic.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:bootloader_soc.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:esp_image_format.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:flash_encrypt.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:flash_encryption_secure_features.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:flash_partitions.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:secure_boot.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:secure_boot_secure_features.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:secure_boot_signatures_bootloader.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:wdt_hal_iram.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:esp_efuse_table.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:esp_efuse_fields.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:esp_efuse_api.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:esp_efuse_utility.*(.literal .text .literal.* .text.*) |
| *libzephyr.a:esp_efuse_api_key_esp32xx.*(.literal .text .literal.* .text.*) |
| *esp_mcuboot.*(.literal .text .literal.* .text.*) |
| *esp_loader.*(.literal .text .literal.* .text.*) |
| *(.fini.literal) |
| *(.fini) |
| *(.gnu.version) |
| _loader_text_end = ABSOLUTE(.); |
| } > iram_loader_seg |
| |
| /* .iram0.text : ALIGN(4) */ |
| SECTION_PROLOGUE(_TEXT_SECTION_NAME, , ALIGN(4)) |
| { |
| /* Vectors go to IRAM */ |
| _iram_start = ABSOLUTE(.); |
| _init_start = ABSOLUTE(.); |
| |
| KEEP(*(.exception_vectors.text)); |
| . = ALIGN(256); |
| |
| _invalid_pc_placeholder = ABSOLUTE(.); |
| |
| _iram_text_start = ABSOLUTE(.); |
| |
| KEEP(*(.exception.entry*)); /* contains _isr_wrapper */ |
| *(.exception.other*) |
| . = ALIGN(4); |
| |
| *(.entry.text) |
| *(.init.literal) |
| *(.init) |
| . = ALIGN(4); |
| *(.iram1 .iram1.*) |
| *(.iram0.literal .iram.literal .iram.text.literal .iram0.text .iram.text) |
| |
| . = ALIGN(4); |
| _init_end = ABSOLUTE(.); |
| } GROUP_DATA_LINK_IN(IRAM_LOADER_REGION, ROMABLE_REGION) |
| |
| .iram0.text_end (NOLOAD) : |
| { |
| /* C3 memprot requires 512 B alignment for split lines */ |
| . = ALIGN (16); |
| } GROUP_LINK_IN(IRAM_LOADER_REGION) |
| |
| .iram0.data : |
| { |
| . = ALIGN(16); |
| *(.iram.data) |
| *(.iram.data*) |
| } GROUP_DATA_LINK_IN(IRAM_LOADER_REGION, ROMABLE_REGION) |
| |
| .iram0.bss (NOLOAD) : |
| { |
| . = ALIGN(16); |
| *(.iram.bss) |
| *(.iram.bss*) |
| |
| . = ALIGN(16); |
| _iram_end = ABSOLUTE(.); |
| } GROUP_LINK_IN(IRAM_LOADER_REGION) |
| |
| .flash_text_dummy (NOLOAD): ALIGN(IROM_SEG_ALIGN) |
| { |
| . = SIZEOF(_RODATA_SECTION_NAME); |
| . = ALIGN(4) + 0x20; |
| _rodata_reserved_start = .; |
| } GROUP_LINK_IN(IRAM_REGION) |
| |
| .flash.text : ALIGN(IROM_SEG_ALIGN) |
| { |
| _stext = .; |
| _text_start = ABSOLUTE(.); |
| |
| *(.literal .text .literal.* .text.*) |
| *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) |
| *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ |
| *(.fini.literal) |
| *(.fini) |
| *(.gnu.version) |
| |
| /* 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 |
| */ |
| . += 16; |
| |
| _text_end = ABSOLUTE(.); |
| _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); |
| } GROUP_DATA_LINK_IN(IRAM_REGION, ROMABLE_REGION) |
| |
| /* linker rel sections*/ |
| #include <zephyr/linker/rel-sections.ld> |
| |
| #ifdef CONFIG_GEN_ISR_TABLES |
| #include <zephyr/linker/intlist.ld> |
| #endif |
| |
| #include <zephyr/linker/debug-sections.ld> |
| /DISCARD/ : { *(.note.GNU-stack) } |
| |
| SECTION_PROLOGUE(.riscv.attributes, 0,) |
| { |
| KEEP(*(.riscv.attributes)) |
| KEEP(*(.gnu.attributes)) |
| } |
| } |