mirror of
https://github.com/apache/nuttx.git
synced 2026-08-25 23:47:16 +00:00
This commit updates the common-source integration for Xtensa-based Espressif devices (ESP32, ESP32-S2, and ESP32-S3). This is part of a larger common-source update split by architecture for better maintainability. Major components updated: - IRQ allocator refactoring with intr_alloc integration - Common-source drivers (GPIO, RMT, I2C, SPI, UART, etc.) - Espressif components upgrade to release/master.b-test - Peripheral drivers (ADC, PWM, LEDC, MCPWM, PCNT, Temperature Sensor, etc.) - Wireless adapters (Wi-Fi and BLE) - esp_timer migration to the common-source path for Xtensa devices - Common-source power management implementation (auto-sleep and wakeup paths) - Board defconfigs for all Xtensa Espressif boards - SMP support improvements for ESP32-S3 - Critical section handling improvements Key architectural changes: - IRQ Allocator: The new interrupt allocator enables multiple mapping options from interrupt sources to CPU interrupts, providing flexibility required by modern peripherals. Although this introduces breaking changes to the interrupt handling API, the required ARCH_MINIMAL_VECTORTABLE Kconfig option is explicitly checked during startup to ensure proper configuration. This validation prevents runtime issues from configuration mismatches. - Xtensa-specific interrupt handling via esp_xtensa_intr.c providing NuttX-native implementations of xt_ints_on/off and interrupt handlers, avoiding conflicts with NuttX's core Xtensa macros. - Timer/RTC unification: ESP32/ESP32-S2/ESP32-S3 move from chip-specific RTC/RT-timer code to common-source Espressif integration, including esp_timer_adapter/esp_rtc paths and the required bringup/defconfig updates. - Power management consolidation: Xtensa PM follows the common-source implementation, including common-source auto-sleep behavior, UART/Wi-Fi wakeup coordination, and tickless-safe sleep flow compatibility. Note: This is a large commit to maintain bisectability. Breaking the changes into smaller commits would result in non-building intermediate states across the common-source infrastructure update. Tested configurations: - All defconfigs were tested, including `ostest`. Signed-off-by: Tiago Medicci Serrano <tiago.medicci@espressif.com>
806 lines
29 KiB
Text
806 lines
29 KiB
Text
/****************************************************************************
|
|
* boards/xtensa/esp32/common/scripts/simple_boot_sections.ld
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
/* Default entry point: */
|
|
|
|
ENTRY(__start);
|
|
|
|
SECTIONS
|
|
{
|
|
#ifdef CONFIG_ESP32_APP_FORMAT_MCUBOOT
|
|
.metadata :
|
|
{
|
|
/* The following metadata refers to the to MCUboot's struct
|
|
* esp_image_load_header defined at the following commit:
|
|
* https://github.com/mcu-tools/mcuboot/blob/cd22b693da426826e0255f8ee5b18d7360d9bc8f/boot/espressif/hal/include/esp_mcuboot_image.h
|
|
*/
|
|
|
|
/* Magic for load header */
|
|
|
|
LONG(0xace637d3)
|
|
|
|
/* Application entry point address */
|
|
|
|
KEEP(*(.entry_addr))
|
|
|
|
/* IRAM metadata:
|
|
* - Destination address (VMA) for IRAM region
|
|
* - Flash offset (LMA) for start of IRAM region
|
|
* - Size of IRAM region
|
|
*/
|
|
|
|
LONG(ADDR(.iram0.vectors))
|
|
LONG(LOADADDR(.iram0.vectors))
|
|
LONG(LOADADDR(.iram0.text) + SIZEOF(.iram0.text) - LOADADDR(.iram0.vectors))
|
|
|
|
/* DRAM metadata:
|
|
* - Destination address (VMA) for DRAM region
|
|
* - Flash offset (LMA) for start of DRAM region
|
|
* - Size of DRAM region
|
|
*/
|
|
|
|
LONG(ADDR(.dram0.data))
|
|
LONG(LOADADDR(.dram0.data))
|
|
LONG(SIZEOF(.dram0.data))
|
|
|
|
/* RTC_IRAM metadata:
|
|
* - Destination address (VMA) for RTC_IRAM region
|
|
* - Flash offset (LMA) for start of RTC_IRAM region
|
|
* - Size of RTC_IRAM region
|
|
*/
|
|
|
|
LONG(ADDR(.rtc.text))
|
|
LONG(LOADADDR(.rtc.text))
|
|
LONG(SIZEOF(.rtc.text))
|
|
|
|
/* RTC_DRAM metadata:
|
|
* - Destination address (VMA) for RTC_DRAM region
|
|
* - Flash offset (LMA) for start of RTC_DRAM region
|
|
* - Size of RTC_DRAM region
|
|
*/
|
|
|
|
LONG(ADDR(.rtc.data))
|
|
LONG(LOADADDR(.rtc.data))
|
|
LONG(SIZEOF(.rtc.data))
|
|
|
|
/* IROM metadata:
|
|
* - Destination address (VMA) for IROM region
|
|
* - Flash offset (LMA) for start of IROM region
|
|
* - Size of IROM region
|
|
*/
|
|
|
|
LONG(ADDR(.flash.text))
|
|
LONG(LOADADDR(.flash.text))
|
|
LONG(SIZEOF(.flash.text))
|
|
|
|
/* DROM metadata:
|
|
* - Destination address (VMA) for DROM region
|
|
* - Flash offset (LMA) for start of DROM region
|
|
* - Size of DROM region
|
|
*/
|
|
|
|
LONG(ADDR(.flash.rodata))
|
|
LONG(LOADADDR(.flash.rodata))
|
|
LONG(LOADADDR(.flash.rodata) + SIZEOF(.flash.rodata) - LOADADDR(.flash.rodata))
|
|
} >metadata
|
|
#endif
|
|
|
|
/* Send .iram0 code to iram */
|
|
|
|
.iram0.vectors :
|
|
{
|
|
/* Vectors go to IRAM */
|
|
|
|
_init_start = ABSOLUTE(.);
|
|
|
|
/* Vectors according to builds/RF-2015.2-win32/esp108_v1_2_s5_512int_2/config.html */
|
|
|
|
. = 0x0;
|
|
KEEP (*(.window_vectors.text));
|
|
. = 0x180;
|
|
KEEP (*(.xtensa_level2_vector.text));
|
|
. = 0x1c0;
|
|
KEEP (*(.xtensa_level3_vector.text));
|
|
. = 0x200;
|
|
KEEP (*(.xtensa_level4_vector.text));
|
|
. = 0x240;
|
|
KEEP (*(.xtensa_level5_vector.text));
|
|
. = 0x280;
|
|
KEEP (*(.debug_exception_vector.text));
|
|
. = 0x2c0;
|
|
KEEP (*(.nmi_vector.text));
|
|
. = 0x300;
|
|
KEEP (*(.kernel_exception_vector.text));
|
|
. = 0x340;
|
|
KEEP (*(.user_exception_vector.text));
|
|
. = 0x3c0;
|
|
KEEP (*(.double_exception_vector.text));
|
|
. = 0x400;
|
|
*(.*_vector.literal)
|
|
|
|
. = ALIGN (16);
|
|
*(.entry.text)
|
|
*(.init.literal)
|
|
*(.init)
|
|
_init_end = ABSOLUTE(.);
|
|
} >iram0_0_seg AT>ROM
|
|
|
|
.iram0.text : ALIGN(4)
|
|
{
|
|
/* Code marked as running out of IRAM */
|
|
|
|
_iram_text_start = ABSOLUTE(.);
|
|
*(.iram1 .iram1.*)
|
|
esp32_start.*(.literal .text .literal.* .text.*)
|
|
*libcoexist.a:(.coexiram .coexiram.*)
|
|
*libphy.a:(.literal .text .literal.* .text.*)
|
|
*librtc.a:(.literal .text .literal.* .text.*)
|
|
*libpp.a:wifi_iram.*(.literal .text .literal.* .text.*)
|
|
*libpp.a:wifi_rx_iram.*(.literal .text .literal.* .text.*)
|
|
*libpp.a:wifi_extra_iram.*(.literal .text .literal.* .text.*)
|
|
*libpp.a:wifi_slp_iram.*(.literal .text .literal.* .text.*)
|
|
*libpp.a:wifi_or_slp_iram.*(.literal .text .literal.* .text.*)
|
|
*libpp.a:wifi_slp_rx_iram.*(.literal .text .literal.* .text.*)
|
|
*libhal.a:(.literal .text .literal.* .text.*)
|
|
*libarch.a:*esp_loader.*(.literal .text .literal.* .text.*)
|
|
*libarch.a:*brownout_hal.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*cpu.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*gpio_hal.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*periph_ctrl.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*clk.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*efuse_hal.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*efuse_utility.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*esp_clk.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*esp_clk_tree.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*esp_clk_tree_common.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*clk_tree_hal.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*rtc_clk.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*rtc_clk_init.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*rtc_init.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*rtc_time.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*regi2c_ctrl.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*uart_hal_iram.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*wdt_hal_iram.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_banner_wrap.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_init.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_common.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_common_loader.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_console.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_console_loader.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_esp32.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_flash.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_flash_config_esp32.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_clock_init.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_clock_loader.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_efuse.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_panic.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_mem.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_random.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_random*.*(.literal.bootloader_random_disable .text.bootloader_random_disable)
|
|
*libarch.a:*bootloader_random*.*(.literal.bootloader_random_enable .text.bootloader_random_enable)
|
|
*libarch.a:*bootloader_random_esp32.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*esp_image_format.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_soc.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*bootloader_sha.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*uart_hal.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*mpu_hal.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*mmu_hal.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*uart_periph.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:esp_app_desc.*(.literal .text .literal.* .text.*)
|
|
*libarch.a:*esp_rom_uart.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*esp_rom_sys.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*esp_rom_spiflash.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*esp_rom_wdt.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*log.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*log_lock.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:*log_print.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:*log_timestamp.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp)
|
|
*libarch.a:*log_timestamp.*(.literal.esp_log_timestamp .text.esp_log_timestamp)
|
|
*libarch.a:*log_timestamp_common.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:*log_write.*(.literal.esp_log_write .text.esp_log_write)
|
|
*libarch.a:*log_write.*(.literal.esp_log_writev .text.esp_log_writev)
|
|
*libarch.a:*cpu_region_protect.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:*flash_qio_mode.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:xtensa_intr.*(.literal .literal.* .text .text.*)
|
|
|
|
#ifdef CONFIG_STACK_CANARIES
|
|
*libc.a:lib_stackchk.*(.literal .text .literal.* .text.*)
|
|
#endif
|
|
*libarch.a:esp32_cpuindex.*(.literal .text .literal.* .text.*)
|
|
*libarch.a:esp32_user.*(.literal .text .literal.* .text.*)
|
|
*libarch.a:xtensa_assert.*(.literal .text .literal.* .text.*)
|
|
*libarch.a:xtensa_cpuint.*(.literal .text .literal.* .text.*)
|
|
*libarch.a:xtensa_cpupause.*(.literal .text .literal.* .text.*)
|
|
*libarch.a:xtensa_irqdispatch.*(.literal .text .literal.* .text.*)
|
|
*libarch.a:xtensa_modifyreg32.*(.literal .text .literal.* .text.*)
|
|
*libarch.a:xtensa_saveusercontext.*(.literal .text .literal.* .text.*)
|
|
*libarch.a:xtensa_testset.*(.literal .text .literal.* .text.*)
|
|
*libarch.a:rtc_sleep.*(.literal.rtc_sleep_start .text.rtc_sleep_start)
|
|
|
|
*libc.a:lib_assert.*(.literal .text .literal.* .text.*)
|
|
*libc.a:lib_utsname.*(.literal .text .literal.* .text.*)
|
|
*libc.a:sq_remlast.*(.literal .text .literal.* .text.*)
|
|
*libc.a:arch_atomic.*(.text .text.* .literal .literal.*)
|
|
|
|
*libdrivers.a:syslog_flush.*(.literal .text .literal.* .text.*)
|
|
|
|
*libsched.a:assert.*(.literal .text .literal.* .text.*)
|
|
*libsched.a:irq_csection.*(.literal .text .literal.* .text.*)
|
|
*libsched.a:irq_dispatch.*(.literal .text .literal.* .text.*)
|
|
*libsched.a:irq_spinlock.*(.literal .text .literal.* .text.*)
|
|
*libsched.a:panic_notifier.*(.literal.panic_notifier_call_chain .text.panic_notifier_call_chain)
|
|
*libsched.a:sched_gettcb.*(.literal .text .literal.* .text.*)
|
|
*libsched.a:sched_lock.*(.literal .text .literal.* .text.*)
|
|
*libsched.a:sched_note.*(.literal .text .literal.* .text.*)
|
|
*libsched.a:sched_suspendscheduler.*(.literal .text .literal.* .text.*)
|
|
*libsched.a:sched_thistask.*(.literal .text .literal.* .text.*)
|
|
*libsched.a:sched_unlock.*(.literal .text .literal.* .text.*)
|
|
*libsched.a:spinlock.*(.literal .text .literal.* .text.*)
|
|
|
|
*libarch.a:esp_spiflash.*(.literal .text .literal.* .text.*)
|
|
*libarch.a:esp_flash_api.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:esp_flash_spi_init.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:spi_flash_encrypt_hal_iram.*(.text .text.* .literal .literal.*)
|
|
*libarch.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:spi_flash_chip*.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:spi_flash_wrap.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:spi_flash_os_func_noos.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:spi_flash_os_func_app.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:flash_brownout_hook.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:esp_cache_utils.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:cache_esp32.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:cache_hal_esp32.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:cache_utils.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:memspi_host_driver.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:critical_section.*(.literal .literal.* .text .text.*)
|
|
*libarch.a:os.*(.literal.nuttx_enter_critical .text.nuttx_enter_critical)
|
|
*libarch.a:os.*(.literal.nuttx_exit_critical .text.nuttx_exit_critical)
|
|
*libarch.a:intr_alloc.*(.literal.esp_intr_get_intno .text.esp_intr_get_intno)
|
|
*libarch.a:intr_alloc.*(.literal.esp_intr_get_cpu .text.esp_intr_get_cpu)
|
|
*libarch.a:interrupt.*(.literal.intr_handler_get .text.intr_handler_get)
|
|
*libarch.a:interrupt.*(.literal.intr_handler_get_arg .text.intr_handler_get_arg)
|
|
*libarch.a:interrupt.*(.literal.intr_get_item .text.intr_get_item)
|
|
*libarch.a:interrupt.*(.literal.intr_handler_get_arg .text.intr_handler_get_arg)
|
|
|
|
*(.wifirxiram .wifirxiram.*)
|
|
*(.wifi0iram .wifi0iram.*)
|
|
*(.wifiorslpiram .wifiorslpiram.*)
|
|
*(.wifislpiram .wifislpiram.*)
|
|
*(.wifislprxiram .wifislprxiram.*)
|
|
*(.phyiram .phyiram.*)
|
|
|
|
. = ALIGN(4) + 16;
|
|
|
|
_iram_text_end = ABSOLUTE(.);
|
|
|
|
/* IRAM heap starts at the end of iram0_0_seg */
|
|
|
|
. = ALIGN (4);
|
|
_siramheap = ABSOLUTE(.);
|
|
} >iram0_0_seg AT>ROM
|
|
|
|
/* Shared RAM */
|
|
|
|
.noinit (NOLOAD):
|
|
{
|
|
/* This section contains data that is not initialized during load,
|
|
* or during the application's initialization sequence.
|
|
*/
|
|
|
|
. = ALIGN(8);
|
|
*(.noinit)
|
|
*(.noinit.*)
|
|
. = ALIGN(8);
|
|
} >dram0_0_seg
|
|
|
|
.dram0.bss (NOLOAD) :
|
|
{
|
|
/* .bss initialized on power-up */
|
|
|
|
. = ALIGN (8);
|
|
_bss_start = ABSOLUTE(.);
|
|
_sbss = ABSOLUTE(.);
|
|
*(EXCLUDE_FILE(*libble_app.a *libbt.a *libbtdm_app.a *libnimble.a) .bss EXCLUDE_FILE(*libble_app.a *libbt.a *libbtdm_app.a *libnimble.a) .bss.*)
|
|
*(.ext_ram.bss*)
|
|
*(EXCLUDE_FILE(*libble_app.a *libbt.a *libbtdm_app.a *libnimble.a) COMMON)
|
|
. = ALIGN(4);
|
|
_bt_controller_bss_start = ABSOLUTE(.);
|
|
*libble_app.a:(.bss .bss.*)
|
|
. = ALIGN(4);
|
|
_bt_controller_bss_end = ABSOLUTE(.);
|
|
. = ALIGN(4);
|
|
_bt_controller_common_start = ABSOLUTE(.);
|
|
*libble_app.a:(COMMON)
|
|
. = ALIGN(4);
|
|
_bt_controller_common_end = ABSOLUTE(.);
|
|
. = ALIGN(4);
|
|
_bt_bss_start = ABSOLUTE(.);
|
|
*libbt.a:(.bss .bss.*)
|
|
. = ALIGN(4);
|
|
_bt_bss_end = ABSOLUTE(.);
|
|
. = ALIGN(4);
|
|
_bt_common_start = ABSOLUTE(.);
|
|
*libbt.a:(COMMON)
|
|
. = ALIGN(4);
|
|
_bt_common_end = ABSOLUTE(.);
|
|
. = ALIGN(4);
|
|
_btdm_bss_start = ABSOLUTE(.);
|
|
*libbtdm_app.a:(.bss .bss.*)
|
|
. = ALIGN(4);
|
|
_btdm_bss_end = ABSOLUTE(.);
|
|
. = ALIGN(4);
|
|
_btdm_common_start = ABSOLUTE(.);
|
|
*libbtdm_app.a:(COMMON)
|
|
. = ALIGN(4);
|
|
_btdm_common_end = ABSOLUTE(.);
|
|
. = ALIGN (8);
|
|
*(.dynsbss)
|
|
*(.sbss)
|
|
*(.sbss.*)
|
|
*(.gnu.linkonce.sb.*)
|
|
*(.scommon)
|
|
*(.sbss2)
|
|
*(.sbss2.*)
|
|
*(.gnu.linkonce.sb2.*)
|
|
*(.dynbss)
|
|
KEEP (*(.bss))
|
|
*(.bss.*)
|
|
*(.share.mem)
|
|
*(.gnu.linkonce.b.*)
|
|
*(COMMON)
|
|
#ifdef CONFIG_STACK_CANARIES
|
|
*libc.a:lib_stackchk.*(.bss .bss.* COMMON)
|
|
#endif
|
|
*libarch.a:esp_spiflash.*(.bss .bss.* COMMON)
|
|
*libarch.a:xtensa_cpupause.*(.bss .bss.* COMMON)
|
|
*libarch.a:xtensa_copystate.*(.bss .bss.* COMMON)
|
|
*libarch.a:xtensa_interruptcontext.*(.bss .bss.* COMMON)
|
|
*libarch.a:xtensa_testset.*(.bss .bss.* COMMON)
|
|
|
|
*libsched.a:sched_suspendscheduler.*(.bss .bss.* COMMON)
|
|
*libsched.a:sched_thistask.*(.bss .bss.* COMMON)
|
|
*libsched.a:sched_note.*(.bss .bss.* COMMON)
|
|
*libsched.a:spinlock.*(.bss .bss.* COMMON)
|
|
*libsched.a:irq_csection.*(.bss .bss.* COMMON)
|
|
*libsched.a:irq_dispatch.*(.bss .bss.* COMMON)
|
|
|
|
. = ALIGN(8);
|
|
_ebss = ABSOLUTE(.);
|
|
_bss_end = ABSOLUTE(.);
|
|
} >dram0_0_seg
|
|
|
|
.dram0.data :
|
|
{
|
|
/* .data initialized on power-up in ROMed configurations. */
|
|
|
|
_sdata = ABSOLUTE(.);
|
|
_data_start = ABSOLUTE(.);
|
|
_bt_data_start = ABSOLUTE(.);
|
|
*libbt.a:(.data .data.*)
|
|
. = ALIGN (4);
|
|
_bt_data_end = ABSOLUTE(.);
|
|
_btdm_data_start = ABSOLUTE(.);
|
|
*libbtdm_app.a:(.data .data.*)
|
|
. = ALIGN (4);
|
|
_btdm_data_end = ABSOLUTE(.);
|
|
KEEP (*(.data))
|
|
KEEP (*(.data.*))
|
|
KEEP (*(.gnu.linkonce.d.*))
|
|
KEEP (*(.data1))
|
|
KEEP (*(.sdata))
|
|
KEEP (*(.sdata.*))
|
|
KEEP (*(.gnu.linkonce.s.*))
|
|
KEEP (*(.sdata2))
|
|
KEEP (*(.sdata2.*))
|
|
KEEP (*(.gnu.linkonce.s2.*))
|
|
KEEP (*(.jcr))
|
|
*(.dram1 .dram1.*)
|
|
esp32_start.*(.rodata .rodata.*)
|
|
*libphy.a:(.rodata .rodata.*)
|
|
#ifdef CONFIG_STACK_CANARIES
|
|
*libc.a:lib_stackchk.*(.rodata .rodata.*)
|
|
#endif
|
|
*libarch.a:xtensa_context.*(.rodata .rodata.*)
|
|
*libarch.a:xtensa_copystate.*(.rodata .rodata.*)
|
|
*libarch.a:xtensa_cpupause.*(.rodata .rodata.*)
|
|
*libarch.a:xtensa_testset.*(.rodata .rodata.*)
|
|
|
|
*libdrivers.a:syslog_channel.*(.rodata .rodata.*)
|
|
|
|
*libsched.a:sched_suspendscheduler.*(.rodata .rodata.*)
|
|
*libsched.a:sched_thistask.*(.rodata .rodata.*)
|
|
*libsched.a:sched_note.*(.rodata .rodata.*)
|
|
*libsched.a:spinlock.*(.rodata .rodata.*)
|
|
*libsched.a:irq_csection.*(.rodata .rodata.*)
|
|
*libsched.a:irq_dispatch.*(.rodata .rodata.*)
|
|
|
|
*libarch.a:*esp_loader.*(.rodata .rodata.*)
|
|
*libarch.a:*brownout.*(.rodata .rodata.*)
|
|
*libarch.a:*cpu.*(.rodata .rodata.*)
|
|
*libarch.a:*gpio_hal.*(.rodata .rodata.*)
|
|
*libarch.a:*periph_ctrl.*(.rodata .rodata.*)
|
|
*libarch.a:*clk.*(.rodata .rodata.*)
|
|
*libarch.a:*esp_clk.*(.rodata .rodata.*)
|
|
*libarch.a:*esp_clk_tree.*(.rodata .rodata.*)
|
|
*libarch.a:*esp_clk_tree_common.*(.rodata .rodata.*)
|
|
*libarch.a:*clk_tree_hal.*(.rodata .rodata.*)
|
|
*libarch.a:*rtc_init.*(.rodata .rodata.*)
|
|
*libarch.a:*rtc_clk.*(.rodata .rodata.*)
|
|
*libarch.a:*rtc_clk_init.*(.rodata .rodata.*)
|
|
*libarch.a:*rtc_time.*(.rodata .rodata.*)
|
|
*libarch.a:*regi2c_ctrl.*(.rodata .rodata.*)
|
|
*libarch.a:*uart_hal_iram.*(.rodata .rodata.*)
|
|
*libarch.a:*wdt_hal_iram.*(.rodata .rodata.*)
|
|
*libarch.a:*efuse_utility.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_banner_wrap.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_init.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_common.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_common_loader.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_console.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_console_loader.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_esp32.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_flash.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_flash_config_esp32.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_clock_init.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_clock_loader.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_efuse.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_panic.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_mem.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_random.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_random_esp32.*(.rodata .rodata.*)
|
|
*libarch.a:*esp_image_format.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_soc.*(.rodata .rodata.*)
|
|
*libarch.a:*bootloader_sha.*(.rodata .rodata.*)
|
|
*libarch.a:*uart_hal.*(.rodata .rodata.*)
|
|
*libarch.a:*mpu_hal.*(.rodata .rodata.*)
|
|
*libarch.a:*mmu_hal.*(.rodata .rodata.*)
|
|
*libarch.a:*efuse_hal.*(.rodata .rodata.*)
|
|
*libarch.a:*uart_periph.*(.rodata .rodata.*)
|
|
*libarch.a:*esp_rom_uart.*(.rodata .rodata.*)
|
|
*libarch.a:*esp_rom_sys.*(.rodata .rodata.*)
|
|
*libarch.a:*esp_rom_spiflash.*(.rodata .rodata.*)
|
|
*libarch.a:*esp_rom_wdt.*(.rodata .rodata.*)
|
|
*libarch.a:*log.*(.rodata .rodata.*)
|
|
*libarch.a:*log_noos.*(.rodata .rodata.*)
|
|
*libarch.a:*cpu_region_protect.*(.rodata .rodata.*)
|
|
*libarch.a:*flash_qio_mode.*(.rodata .rodata.*)
|
|
|
|
*libarch.a:esp_flash_api.*(.rodata .rodata.*)
|
|
*libarch.a:esp_flash_spi_init.*(.rodata .rodata.*)
|
|
*libarch.a:spi_flash_hal_iram.*(.rodata .rodata.*)
|
|
*libarch.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.*)
|
|
*libarch.a:spi_flash_hal_gpspi.*(.rodata .rodata.*)
|
|
*libarch.a:spi_flash_chip*.*(.rodata .rodata.*)
|
|
*libarch.a:spi_flash_wrap.*(.rodata .rodata.*)
|
|
*libarch.a:spi_flash_os_func_noos.*(.rodata .rodata.*)
|
|
*libarch.a:spi_flash_os_func_app.*(.rodata .rodata.*)
|
|
*libarch.a:flash_brownout_hook.*(.rodata .rodata.*)
|
|
*libarch.a:esp_cache_utils.*(.rodata .rodata.*)
|
|
*libarch.a:cache_esp32.*(.rodata .rodata.*)
|
|
*libarch.a:cache_utils.*(.rodata .rodata.*)
|
|
*libarch.a:cache_hal_esp32.*(.rodata .rodata.*)
|
|
*libarch.a:memspi_host_driver.*(.rodata .rodata.*)
|
|
*libarch.a:critical_section.*(.rodata .rodata.*)
|
|
*libarch.a:os.*(.rodata.g_int_flags_count .rodata.g_int_flags)
|
|
|
|
*libc.a:arch_atomic.*(.rodata .rodata.*)
|
|
|
|
_edata = ABSOLUTE(.);
|
|
_data_end = ABSOLUTE(.);
|
|
|
|
. = ALIGN(4);
|
|
|
|
/* Heap starts at the end of .data */
|
|
|
|
_sheap = ABSOLUTE(.);
|
|
} >dram0_0_seg AT>ROM
|
|
|
|
/* This section will be used by the debugger and disassembler to get more
|
|
* information about raw data present in the code.
|
|
* Indeed, it may be required to add some padding at some points in the
|
|
* code in order to align a branch/jump destination on a particular bound.
|
|
* Padding these instructions will generate null bytes that shall be
|
|
* interpreted as data, and not code by the debugger or disassembler.
|
|
* This section will only be present in the ELF file, not in the final
|
|
* binary.
|
|
*/
|
|
|
|
.xt.prop 0 :
|
|
{
|
|
KEEP (*(.xt.prop .gnu.linkonce.prop.*))
|
|
}
|
|
|
|
.xt.lit 0 :
|
|
{
|
|
KEEP (*(.xt.lit .gnu.linkonce.p.*))
|
|
}
|
|
|
|
_image_drom_vma = ADDR(.flash.rodata);
|
|
_image_drom_lma = LOADADDR(.flash.rodata);
|
|
_image_drom_size = LOADADDR(.flash.rodata) + SIZEOF(.flash.rodata) - _image_drom_lma;
|
|
|
|
/* The alignment of the ".flash.rodata" output section is forced to
|
|
* 0x00010000 (64KB) to ensure that it will be allocated at the beginning
|
|
* of the next available Flash block.
|
|
* This is required to meet the following constraint from the external
|
|
* flash MMU:
|
|
* VMA % 64KB == LMA % 64KB
|
|
* i.e. the lower 16 bits of both the virtual address (address seen by the
|
|
* CPU) and the load address (physical address of the external flash) must
|
|
* be equal.
|
|
* For the simpleboot format this is done by esptool.
|
|
*/
|
|
|
|
#ifdef CONFIG_ESP32_APP_FORMAT_MCUBOOT
|
|
.flash.rodata : ALIGN(0x10000)
|
|
#else
|
|
.flash.rodata :
|
|
#endif
|
|
{
|
|
_rodata_reserved_start = ABSOLUTE(.);
|
|
|
|
/* !DO NOT PUT ANYTHING BEFORE THIS! */
|
|
/* Should be the first. App version info. */
|
|
*(.rodata_desc .rodata_desc.*)
|
|
|
|
. = ALIGN(4);
|
|
_srodata = ABSOLUTE(.);
|
|
*(EXCLUDE_FILE (*libarch.a:esp_spiflash.* esp32_start.*
|
|
*libarch.a:*esp_loader.*
|
|
*libarch.a:*uart_hal.*
|
|
*libarch.a:*mmu_hal.*
|
|
) .rodata)
|
|
*(EXCLUDE_FILE (*libarch.a:esp_spiflash.* esp32_start.*
|
|
*libarch.a:*esp_loader.*
|
|
*libarch.a:*uart_hal.*
|
|
*libarch.a:*mmu_hal.*
|
|
) .rodata.*)
|
|
*(.srodata.*)
|
|
*(.rodata)
|
|
*(.rodata.*)
|
|
#ifdef CONFIG_ESPRESSIF_WIRELESS
|
|
*(.rodata_wlog_verbose.*)
|
|
*(.rodata_wlog_debug.*)
|
|
*(.rodata_wlog_info.*)
|
|
*(.rodata_wlog_warning.*)
|
|
*(.rodata_wlog_error.*)
|
|
#endif
|
|
*(.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)
|
|
*(.eh_frame)
|
|
|
|
. = (. + 3) & ~ 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)
|
|
|
|
/* Addresses of memory regions reserved via SOC_RESERVE_MEMORY_REGION() */
|
|
|
|
soc_reserved_memory_region_start = ABSOLUTE(.);
|
|
KEEP (*(.reserved_memory_address))
|
|
soc_reserved_memory_region_end = ABSOLUTE(.);
|
|
|
|
. = ALIGN(4); /* This table MUST be 4-byte aligned */
|
|
_erodata = ABSOLUTE(.);
|
|
/* Literals are also RO data. */
|
|
_lit4_start = ABSOLUTE(.);
|
|
*(*.lit4)
|
|
*(.lit4.*)
|
|
*(.gnu.linkonce.lit4.*)
|
|
_lit4_end = ABSOLUTE(.);
|
|
|
|
/* C++ constructor tables. Those are initialized by lib_cxx_initialize
|
|
* which calls constructor functions that may be on common source code.
|
|
*/
|
|
|
|
. = ALIGN(4);
|
|
_sinit = ABSOLUTE(.);
|
|
KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .ctors SORT(.ctors.*)))
|
|
_einit = ABSOLUTE(.);
|
|
|
|
/* Addresses of memory regions reserved via SOC_RESERVE_MEMORY_REGION() */
|
|
|
|
. = ALIGN(4);
|
|
soc_reserved_memory_region_start = ABSOLUTE(.);
|
|
KEEP (*(.reserved_memory_address))
|
|
soc_reserved_memory_region_end = ABSOLUTE(.);
|
|
|
|
/* System init functions registered via ESP_SYSTEM_INIT_FN */
|
|
|
|
. = ALIGN(4);
|
|
_esp_system_init_fn_array_start = ABSOLUTE(.);
|
|
KEEP (*(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*)))
|
|
_esp_system_init_fn_array_end = ABSOLUTE(.);
|
|
|
|
/* TLS data. */
|
|
|
|
. = ALIGN(4);
|
|
_thread_local_start = ABSOLUTE(.);
|
|
|
|
_stdata = ABSOLUTE(.);
|
|
*(.tdata .tdata.* .gnu.linkonce.td.*);
|
|
_etdata = ABSOLUTE(.);
|
|
_stbss = ABSOLUTE(.);
|
|
*(.tbss .tbss.* .gnu.linkonce.tb.* .tcommon);
|
|
_etbss = ABSOLUTE(.);
|
|
|
|
_thread_local_end = ABSOLUTE(.);
|
|
|
|
_rodata_reserved_end = ABSOLUTE(.);
|
|
} >default_rodata_seg AT>ROM
|
|
_rodata_reserved_align = ALIGNOF(.flash.rodata);
|
|
|
|
_image_irom_vma = ADDR(.flash.text);
|
|
_image_irom_lma = LOADADDR(.flash.text);
|
|
_image_irom_size = LOADADDR(.flash.text) + SIZEOF(.flash.text) - _image_irom_lma;
|
|
|
|
/* The alignment of the ".flash.text" output section is forced to
|
|
* 0x00010000 (64KB) to ensure that it will be allocated at the beginning
|
|
* of the next available Flash block.
|
|
* This is required to meet the following constraint from the external
|
|
* flash MMU:
|
|
* VMA % 64KB == LMA % 64KB
|
|
* i.e. the lower 16 bits of both the virtual address (address seen by the
|
|
* CPU) and the load address (physical address of the external flash) must
|
|
* be equal.
|
|
* For the simpleboot format this is done by esptool.
|
|
*/
|
|
|
|
#ifdef CONFIG_ESP32_APP_FORMAT_MCUBOOT
|
|
.flash.text : ALIGN(0x00010000)
|
|
#else
|
|
.flash.text :
|
|
#endif
|
|
{
|
|
_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)
|
|
|
|
*(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifi0iram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifi0iram.*)
|
|
*(.wifiextrairam .wifiextrairam.*)
|
|
*(EXCLUDE_FILE(*libpp.a) .wifiorslpiram EXCLUDE_FILE(*libpp.a) .wifiorslpiram.*)
|
|
*(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifirxiram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifirxiram.*)
|
|
*(.wifislpiram .wifislpiram.*)
|
|
*(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislprxiram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislprxiram.*)
|
|
|
|
. = ALIGN(4);
|
|
|
|
. += 16;
|
|
|
|
_text_end = ABSOLUTE(.);
|
|
_etext = .;
|
|
} >default_code_seg AT>ROM
|
|
|
|
/* External memory bss, from any global variable with EXT_RAM_ATTR attribute */
|
|
|
|
.extmem.bss (NOLOAD) :
|
|
{
|
|
_sbss_extmem = ABSOLUTE(.);
|
|
*(.extmem.bss .extmem.bss.*)
|
|
. = ALIGN(4);
|
|
_ebss_extmem = ABSOLUTE(.);
|
|
} >extmem_seg
|
|
|
|
.rtc.text :
|
|
{
|
|
. = ALIGN(4);
|
|
_rtc_data_start = ABSOLUTE(.);
|
|
*(.rtc.literal .rtc.text)
|
|
} >rtc_iram_seg AT>ROM
|
|
|
|
.rtc.data :
|
|
{
|
|
*(.rtc.data)
|
|
*(.rtc.data.*)
|
|
*(.rtc.rodata)
|
|
*(.rtc.rodata.*)
|
|
|
|
/* Whatever is left from the RTC memory is used as a special heap. */
|
|
|
|
. = ALIGN (4);
|
|
_srtcheap = ABSOLUTE(.);
|
|
} >rtc_slow_seg AT>ROM
|
|
|
|
.rtc.force_slow :
|
|
{
|
|
. = ALIGN(4);
|
|
_rtc_force_slow_start = ABSOLUTE(.);
|
|
*(.rtc.force_slow .rtc.force_slow.*)
|
|
. = ALIGN(4);
|
|
_rtc_force_slow_end = ABSOLUTE(.);
|
|
} >rtc_slow_seg AT>ROM
|
|
|
|
/* This section holds RTC FAST data that should have fixed addresses.
|
|
* The data are not initialized at power-up and are retained during deep
|
|
* sleep.
|
|
*/
|
|
|
|
.rtc_fast_reserved (NOLOAD):
|
|
{
|
|
. = ALIGN(4);
|
|
_rtc_fast_reserved_start = ABSOLUTE(.);
|
|
|
|
/* New data can only be added here to ensure existing data are not moved.
|
|
* Because data have adhered to the end of the segment and code is relied
|
|
* on it.
|
|
* >> put new data here <<
|
|
*/
|
|
|
|
KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*))
|
|
|
|
_rtc_fast_reserved_end = ABSOLUTE(.);
|
|
} > rtc_fast_reserved_seg
|
|
|
|
_rtc_fast_reserved_length = _rtc_fast_reserved_end - _rtc_fast_reserved_start;
|
|
ASSERT((_rtc_fast_reserved_length <= LENGTH(rtc_fast_reserved_seg)),
|
|
"RTC FAST reserved segment data does not fit.")
|
|
|
|
/* This section holds RTC SLOW data that should have fixed addresses.
|
|
* The data are not initialized at power-up and are retained during deep
|
|
* sleep.
|
|
*/
|
|
|
|
.rtc_slow_reserved (NOLOAD):
|
|
{
|
|
. = ALIGN(4);
|
|
_rtc_slow_reserved_start = ABSOLUTE(.);
|
|
|
|
/* New data can only be added here to ensure existing data are not moved.
|
|
* Because data have adhered to the end of the segment and code is relied
|
|
* on it.
|
|
* >> put new data here <<
|
|
*/
|
|
|
|
*(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*)
|
|
|
|
_rtc_slow_reserved_end = ABSOLUTE(.);
|
|
} > rtc_slow_reserved_seg
|
|
|
|
_rtc_slow_reserved_length = _rtc_slow_reserved_end - _rtc_slow_reserved_start;
|
|
_rtc_reserved_length = _rtc_slow_reserved_length;
|
|
|
|
/* Get size of rtc slow data */
|
|
|
|
_rtc_slow_length = (_rtc_force_slow_end - _rtc_data_start);
|
|
|
|
}
|