From e1d60fb89f2f994d845b0583e9bff32d8e70b8ab Mon Sep 17 00:00:00 2001 From: "harshal.patil" Date: Thu, 30 Jul 2026 02:06:55 +0530 Subject: [PATCH] refactor(esp_system): deduplicate ROM fast wake RTC digest reservation The digest length and the condition that reserves it at the end of RTC RAM were duplicated in seven places. Hold the reservation in a hidden Kconfig value that is zero when the feature does not apply, so every consumer subtracts it unconditionally, and derive ESP_SECURE_BOOT_DIGEST_LEN from it. --- components/bootloader/Kconfig.projbuild | 21 +++++++++++++++++++ .../include/esp_secure_boot.h | 6 +----- .../src/bootloader_common_loader.c | 20 +++++++++--------- components/esp_system/ld/esp32c5/memory.ld.in | 2 +- components/esp_system/ld/esp32c6/memory.ld.in | 2 +- components/esp_system/ld/esp32h2/memory.ld.in | 2 +- .../esp_system/ld/esp32h21/memory.ld.in | 2 +- .../esp_system/ld/esp32s31/memory.ld.in | 2 +- components/esp_system/ld/ld.common | 15 ++++--------- components/esp_system/ld/ld.rtc.sections | 9 ++++++++ components/heap/port/esp32c5/memory_layout.c | 15 +------------ components/heap/port/esp32c6/memory_layout.c | 14 +------------ components/heap/port/esp32h2/memory_layout.c | 16 ++------------ components/heap/port/esp32h21/memory_layout.c | 16 ++------------ components/heap/port/esp32s31/memory_layout.c | 14 +------------ 15 files changed, 57 insertions(+), 99 deletions(-) diff --git a/components/bootloader/Kconfig.projbuild b/components/bootloader/Kconfig.projbuild index dfbd3f5ec7a..f330c6bf424 100644 --- a/components/bootloader/Kconfig.projbuild +++ b/components/bootloader/Kconfig.projbuild @@ -593,6 +593,27 @@ menu "Security features" endchoice + config SECURE_BOOT_IMAGE_DIGEST_LEN + int + default 48 if SECURE_BOOT_ECDSA_KEY_LEN_384_BITS + default 32 + help + Length in bytes of the application image digest used by Secure Boot V2. + Kept in sync with ESP_SECURE_BOOT_DIGEST_LEN in esp_secure_boot.h, and + usable from linker scripts and from components that cannot depend on + bootloader_support. + + config SECURE_BOOT_ROM_FAST_WAKE_RESERVE_SIZE + int + default SECURE_BOOT_IMAGE_DIGEST_LEN if SECURE_BOOT && ESP_ROM_SUPPORT_SECURE_BOOT_FAST_WAKEUP + default 0 + help + Number of bytes that must be left untouched at the end of RTC/LP RAM for + the ROM secure boot fast wake up feature, which stores the digest of the + verified application image there and re-checks it on deep sleep wake up. + Zero when the feature is not applicable, so that consumers can subtract + this value unconditionally. + config SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT bool "Bootloader verifies app signatures" default n diff --git a/components/bootloader_support/include/esp_secure_boot.h b/components/bootloader_support/include/esp_secure_boot.h index 4fa79dac4b2..3994e2c523d 100644 --- a/components/bootloader_support/include/esp_secure_boot.h +++ b/components/bootloader_support/include/esp_secure_boot.h @@ -32,11 +32,7 @@ extern "C" { Can be compiled as part of app or bootloader code. */ -#if CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS -#define ESP_SECURE_BOOT_DIGEST_LEN 48 -#else /* !CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS */ -#define ESP_SECURE_BOOT_DIGEST_LEN 32 -#endif /* CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS */ +#define ESP_SECURE_BOOT_DIGEST_LEN CONFIG_SECURE_BOOT_IMAGE_DIGEST_LEN /* SHA-256 length of the public key digest */ #define ESP_SECURE_BOOT_KEY_DIGEST_SHA_256_LEN 32 diff --git a/components/bootloader_support/src/bootloader_common_loader.c b/components/bootloader_support/src/bootloader_common_loader.c index 1686306124d..62b8cead3df 100644 --- a/components/bootloader_support/src/bootloader_common_loader.c +++ b/components/bootloader_support/src/bootloader_common_loader.c @@ -13,9 +13,6 @@ #include "esp_rom_crc.h" #include "esp_rom_gpio.h" #include "esp_flash_partitions.h" -#if CONFIG_SECURE_BOOT -#include "esp_secure_boot.h" -#endif #include "bootloader_flash.h" #include "bootloader_common.h" #include "soc/rtc.h" @@ -32,6 +29,14 @@ #define ESP_PARTITION_HASH_LEN 32 /* SHA-256 digest length */ #define IS_FIELD_SET(rev_full) (((rev_full) != 65535) && ((rev_full) != 0)) +#if ESP_ROM_HAS_LP_ROM && CONFIG_SECURE_BOOT_ROM_FAST_WAKE_RESERVE_SIZE > 0 +#error "Retain mem is placed at the start of RTC RAM on this target, while the ROM keeps the secure boot fast wake up digest at the end of it. The layout needs to be re-evaluated." +#endif + +#if CONFIG_SECURE_BOOT && ESP_ROM_SUPPORT_SECURE_BOOT_FAST_WAKEUP && CONFIG_SECURE_BOOT_ROM_FAST_WAKE_RESERVE_SIZE == 0 +#error "esp_rom_caps.h advertises ROM secure boot fast wake up support that Kconfig.soc_caps.in does not, so the digest area is left unreserved." +#endif + ESP_LOG_ATTR_TAG(TAG, "boot_comm"); bool bootloader_common_check_chip_revision_validity(const esp_image_header_t *img_hdr, bool check_max_revision) @@ -277,13 +282,8 @@ rtc_retain_mem_t* bootloader_common_get_rtc_retain_mem(void) #define RTC_RETAIN_MEM_ADDR (SOC_RTC_DRAM_HIGH - RETAIN_MEM_SIZE) #endif //ESP_ROM_HAS_LP_ROM -#if CONFIG_SECURE_BOOT && ESP_ROM_SUPPORT_SECURE_BOOT_FAST_WAKEUP - /* ROM stores the verified image digest in the last ESP_SECURE_BOOT_DIGEST_LEN - * bytes of LP/RTC RAM on deep-sleep wake. Keep retain mem below that region. */ - static rtc_retain_mem_t *const s_bootloader_retain_mem = (rtc_retain_mem_t *)((uintptr_t)RTC_RETAIN_MEM_ADDR - ESP_SECURE_BOOT_DIGEST_LEN); -#else - static rtc_retain_mem_t *const s_bootloader_retain_mem = (rtc_retain_mem_t *)RTC_RETAIN_MEM_ADDR; -#endif + static rtc_retain_mem_t *const s_bootloader_retain_mem = + (rtc_retain_mem_t *)(RTC_RETAIN_MEM_ADDR - CONFIG_SECURE_BOOT_ROM_FAST_WAKE_RESERVE_SIZE); return s_bootloader_retain_mem; #else static __attribute__((section(".bootloader_data_rtc_mem"))) rtc_retain_mem_t s_bootloader_retain_mem; diff --git a/components/esp_system/ld/esp32c5/memory.ld.in b/components/esp_system/ld/esp32c5/memory.ld.in index b606e1acb63..12a195a002f 100644 --- a/components/esp_system/ld/esp32c5/memory.ld.in +++ b/components/esp_system/ld/esp32c5/memory.ld.in @@ -93,7 +93,7 @@ MEMORY * - Bootloader retain memory (for reboot counter, OTA info, etc.) * * +-----------------------------+ 0x50004000 (LP RAM end) - * | Secure Boot Image Digest | ( For ROM using, must keep it at the end ESP_SECURE_BOOT_DIGEST_LEN bytes of LP RAM) + * | Secure Boot Image Digest | ( For ROM using, must keep it at the end CONFIG_SECURE_BOOT_ROM_FAST_WAKE_RESERVE_SIZE bytes of LP RAM) * | for fast wake secure boot. | * |(only if CONFIG_SECURE_BOOT) | * |- - - - - - - - - - - - - - -| diff --git a/components/esp_system/ld/esp32c6/memory.ld.in b/components/esp_system/ld/esp32c6/memory.ld.in index 3a6d4707f43..8797cbb9d03 100644 --- a/components/esp_system/ld/esp32c6/memory.ld.in +++ b/components/esp_system/ld/esp32c6/memory.ld.in @@ -95,7 +95,7 @@ MEMORY * * +-----------------------------+ 0x50004000 (LP RAM end) * | Secure Boot Image Digest | - * | for fast wake secure boot. | ( For ROM using, must keep it at the end 32 bytes of LP RAM) + * | for fast wake secure boot. | ( For ROM using, must keep it at the end CONFIG_SECURE_BOOT_ROM_FAST_WAKE_RESERVE_SIZE bytes of LP RAM) * |(only if CONFIG_SECURE_BOOT) | * |- - - - - - - - - - - - - - -| * | bootloader_data_rtc_mem | diff --git a/components/esp_system/ld/esp32h2/memory.ld.in b/components/esp_system/ld/esp32h2/memory.ld.in index 7ce5824179e..f11d6ac5319 100644 --- a/components/esp_system/ld/esp32h2/memory.ld.in +++ b/components/esp_system/ld/esp32h2/memory.ld.in @@ -91,7 +91,7 @@ MEMORY * * +-----------------------------+ 0x50001000 (LP RAM end) * | Secure Boot Image Digest | - * | for fast wake secure boot. | ( For ROM using, must keep it at the end 32 bytes of LP RAM) + * | for fast wake secure boot. | ( For ROM using, must keep it at the end CONFIG_SECURE_BOOT_ROM_FAST_WAKE_RESERVE_SIZE bytes of LP RAM) * |(only if CONFIG_SECURE_BOOT) | * |- - - - - - - - - - - - - - -| * | bootloader_data_rtc_mem | diff --git a/components/esp_system/ld/esp32h21/memory.ld.in b/components/esp_system/ld/esp32h21/memory.ld.in index 606610dfde4..68c2045c6f1 100644 --- a/components/esp_system/ld/esp32h21/memory.ld.in +++ b/components/esp_system/ld/esp32h21/memory.ld.in @@ -74,7 +74,7 @@ MEMORY * * +-----------------------------+ 0x50001000 (LP RAM end) * | Secure Boot Image Digest | - * | for fast wake secure boot. | ( For ROM using, must keep it at the end 32 bytes of LP RAM) + * | for fast wake secure boot. | ( For ROM using, must keep it at the end CONFIG_SECURE_BOOT_ROM_FAST_WAKE_RESERVE_SIZE bytes of LP RAM) * |(only if CONFIG_SECURE_BOOT) | * |- - - - - - - - - - - - - - -| * | bootloader_data_rtc_mem | diff --git a/components/esp_system/ld/esp32s31/memory.ld.in b/components/esp_system/ld/esp32s31/memory.ld.in index 8cdbe2224b6..7c40af2f104 100644 --- a/components/esp_system/ld/esp32s31/memory.ld.in +++ b/components/esp_system/ld/esp32s31/memory.ld.in @@ -77,7 +77,7 @@ MEMORY * - Bootloader retain memory (for reboot counter, OTA info, etc.) * * +-----------------------------+ 0x2E008000 (LP RAM end) - * | Secure Boot Image Digest | ( For ROM using, must keep it at the end ESP_SECURE_BOOT_DIGEST_LEN bytes of LP RAM) + * | Secure Boot Image Digest | ( For ROM using, must keep it at the end CONFIG_SECURE_BOOT_ROM_FAST_WAKE_RESERVE_SIZE bytes of LP RAM) * | for fast wake secure boot. | * |(only if CONFIG_SECURE_BOOT) | * |- - - - - - - - - - - - - - -| diff --git a/components/esp_system/ld/ld.common b/components/esp_system/ld/ld.common index 8b25103935c..a4a19c54fe1 100644 --- a/components/esp_system/ld/ld.common +++ b/components/esp_system/ld/ld.common @@ -11,13 +11,6 @@ /* CPU instruction prefetch padding size for flash mmap scenario */ #define _esp_flash_mmap_prefetch_pad_size 16 -/* Copy from esp_secure_boot.h */ -#ifdef CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS -#define ESP_SECURE_BOOT_DIGEST_LEN 48 -#else /* !CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS */ -#define ESP_SECURE_BOOT_DIGEST_LEN 32 -#endif /* CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS */ - /* * PMP region granularity size * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones @@ -76,11 +69,11 @@ /* RTC Reserved is placed before ULP memory, expand it to make sure the ULP start address has the required alignment */ #define ULP_ALIGNMENT_REQ_BYTES 256 - #define RESERVE_RTC_MEM ALIGN_UP(ESP_BOOTLOADER_RESERVE_RTC + RTC_TIMER_RESERVE_RTC, ULP_ALIGNMENT_REQ_BYTES) - #elif CONFIG_SECURE_BOOT && CONFIG_ESP_ROM_SUPPORT_SECURE_BOOT_FAST_WAKEUP - #define RESERVE_RTC_MEM (ESP_BOOTLOADER_RESERVE_RTC + RTC_TIMER_RESERVE_RTC + ESP_SECURE_BOOT_DIGEST_LEN) + #define RESERVE_RTC_MEM ALIGN_UP(ESP_BOOTLOADER_RESERVE_RTC + RTC_TIMER_RESERVE_RTC \ + + CONFIG_SECURE_BOOT_ROM_FAST_WAKE_RESERVE_SIZE, ULP_ALIGNMENT_REQ_BYTES) #else - #define RESERVE_RTC_MEM (ESP_BOOTLOADER_RESERVE_RTC + RTC_TIMER_RESERVE_RTC) + #define RESERVE_RTC_MEM (ESP_BOOTLOADER_RESERVE_RTC + RTC_TIMER_RESERVE_RTC \ + + CONFIG_SECURE_BOOT_ROM_FAST_WAKE_RESERVE_SIZE) #endif #if CONFIG_P4_REV3_MSPI_CRASH_AFTER_POWER_UP_WORKAROUND diff --git a/components/esp_system/ld/ld.rtc.sections b/components/esp_system/ld/ld.rtc.sections index 23bb8181df6..8442d78df1f 100644 --- a/components/esp_system/ld/ld.rtc.sections +++ b/components/esp_system/ld/ld.rtc.sections @@ -147,11 +147,20 @@ */ *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) + _bootloader_data_rtc_mem_end = ABSOLUTE(.); + /* ROM keeps the verified image digest in the last bytes of RTC RAM */ + . = . + CONFIG_SECURE_BOOT_ROM_FAST_WAKE_RESERVE_SIZE; #endif // CONFIG_IDF_TARGET_ESP32P4 _rtc_reserved_end = ABSOLUTE(.); } > rtc_reserved_seg +#if CONFIG_SECURE_BOOT_ROM_FAST_WAKE_RESERVE_SIZE > 0 + ASSERT((_bootloader_data_rtc_mem_end == ORIGIN(rtc_reserved_seg) + LENGTH(rtc_reserved_seg) + - CONFIG_SECURE_BOOT_ROM_FAST_WAKE_RESERVE_SIZE), + "The ROM secure boot fast wake up digest must occupy the last bytes of RTC RAM, and the bootloader retain mem must end where it begins. bootloader_common_get_rtc_retain_mem() computes that address.") +#endif + _rtc_ulp_memory_start = _rtc_reserved_start + LENGTH(rtc_reserved_seg); _rtc_reserved_length = _rtc_reserved_end - _rtc_reserved_start; ASSERT((_rtc_reserved_length <= LENGTH(rtc_reserved_seg)), diff --git a/components/heap/port/esp32c5/memory_layout.c b/components/heap/port/esp32c5/memory_layout.c index dfa07c89bb2..82fcdc76d7e 100644 --- a/components/heap/port/esp32c5/memory_layout.c +++ b/components/heap/port/esp32c5/memory_layout.c @@ -11,7 +11,6 @@ #include "soc/soc.h" #include "heap_memory_layout.h" #include "esp_heap_caps.h" -#include "esp_rom_caps.h" #if CONFIG_SECURE_ENABLE_TEE #define SRAM_DIRAM_TEE_ORG (SOC_DIRAM_IRAM_LOW) @@ -74,18 +73,6 @@ const size_t soc_memory_type_count = sizeof(soc_memory_types) / sizeof(soc_memor */ #define APP_USABLE_DRAM_END (SOC_ROM_STACK_START - SOC_ROM_STACK_SIZE) -#if CONFIG_SECURE_BOOT && ESP_ROM_SUPPORT_SECURE_BOOT_FAST_WAKEUP -#if CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS -#define ESP_SECURE_BOOT_DIGEST_LEN 48 -#else /* !CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS */ -#define ESP_SECURE_BOOT_DIGEST_LEN 32 -#endif /* CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS */ - -#define APP_USABLE_RTC_MEM_END (SOC_RTC_DATA_HIGH - ESP_SECURE_BOOT_DIGEST_LEN) -#else -#define APP_USABLE_RTC_MEM_END (SOC_RTC_DATA_HIGH) -#endif - const soc_memory_region_t soc_memory_regions[] = { #if CONFIG_SPIRAM { SOC_EXTRAM_DATA_LOW, (SOC_EXTRAM_DATA_HIGH - SOC_EXTRAM_DATA_LOW), SOC_MEMORY_TYPE_SPIRAM, 0, false}, //SPI SRAM, if available @@ -93,7 +80,7 @@ const soc_memory_region_t soc_memory_regions[] = { { SOC_DIRAM_DRAM_LOW, (APP_USABLE_DRAM_END - SOC_DIRAM_DRAM_LOW), SOC_MEMORY_TYPE_RAM, SOC_DIRAM_IRAM_LOW, false}, //D/IRAM, can be used as trace memory { APP_USABLE_DRAM_END, (SOC_DIRAM_DRAM_HIGH - APP_USABLE_DRAM_END), SOC_MEMORY_TYPE_RAM, APP_USABLE_DRAM_END, true}, //D/IRAM, can be used as trace memory (ROM reserved area) #ifdef CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP - { SOC_RTC_DATA_LOW, (APP_USABLE_RTC_MEM_END - SOC_RTC_DATA_LOW), SOC_MEMORY_TYPE_RTCRAM, 0, false}, //LPRAM + { SOC_RTC_DATA_LOW, (SOC_RTC_DATA_HIGH - SOC_RTC_DATA_LOW), SOC_MEMORY_TYPE_RTCRAM, 0, false}, //LPRAM #endif }; diff --git a/components/heap/port/esp32c6/memory_layout.c b/components/heap/port/esp32c6/memory_layout.c index 92c5d323d89..204a0706a96 100644 --- a/components/heap/port/esp32c6/memory_layout.c +++ b/components/heap/port/esp32c6/memory_layout.c @@ -11,7 +11,6 @@ #include "soc/soc.h" #include "heap_memory_layout.h" #include "esp_heap_caps.h" -#include "esp_rom_caps.h" #if CONFIG_SECURE_ENABLE_TEE #define SRAM_DIRAM_TEE_ORG (SOC_DIRAM_IRAM_LOW) @@ -72,17 +71,6 @@ const size_t soc_memory_type_count = sizeof(soc_memory_types) / sizeof(soc_memor */ #define APP_USABLE_DRAM_END (SOC_ROM_STACK_START - SOC_ROM_STACK_SIZE) -#if CONFIG_SECURE_BOOT && ESP_ROM_SUPPORT_SECURE_BOOT_FAST_WAKEUP -#if CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS -#define ESP_SECURE_BOOT_DIGEST_LEN 48 -#else /* !CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS */ -#define ESP_SECURE_BOOT_DIGEST_LEN 32 -#endif /* CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS */ -#define APP_USABLE_RTC_MEM_END (SOC_RTC_DATA_HIGH - ESP_SECURE_BOOT_DIGEST_LEN) -#else -#define APP_USABLE_RTC_MEM_END (SOC_RTC_DATA_HIGH) -#endif - const soc_memory_region_t soc_memory_regions[] = { { 0x40800000, 0x20000, SOC_MEMORY_TYPE_RAM, 0x40800000, false}, //D/IRAM level0, can be used as trace memory { 0x40820000, 0x20000, SOC_MEMORY_TYPE_RAM, 0x40820000, false}, //D/IRAM level1, can be used as trace memory @@ -90,7 +78,7 @@ const soc_memory_region_t soc_memory_regions[] = { { 0x40860000, (APP_USABLE_DRAM_END-0x40860000), SOC_MEMORY_TYPE_RAM, 0x40860000, false}, //D/IRAM level3, can be used as trace memory { APP_USABLE_DRAM_END, (SOC_DIRAM_DRAM_HIGH-APP_USABLE_DRAM_END), SOC_MEMORY_TYPE_RAM, APP_USABLE_DRAM_END, true}, //D/IRAM level3, can be used as trace memory (ROM reserved area) #ifdef CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP - { 0x50000000, (APP_USABLE_RTC_MEM_END - SOC_RTC_DATA_LOW), SOC_MEMORY_TYPE_RTCRAM, 0, false}, //LPRAM + { 0x50000000, (SOC_RTC_DATA_HIGH - SOC_RTC_DATA_LOW), SOC_MEMORY_TYPE_RTCRAM, 0, false}, //LPRAM #endif }; diff --git a/components/heap/port/esp32h2/memory_layout.c b/components/heap/port/esp32h2/memory_layout.c index 338a1681d94..77bd88a584e 100644 --- a/components/heap/port/esp32h2/memory_layout.c +++ b/components/heap/port/esp32h2/memory_layout.c @@ -1,5 +1,5 @@ /* - * SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD + * SPDX-FileCopyrightText: 2022-2026 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 */ @@ -11,7 +11,6 @@ #include "soc/soc.h" #include "heap_memory_layout.h" #include "esp_heap_caps.h" -#include "esp_rom_caps.h" #if CONFIG_SECURE_ENABLE_TEE #define SRAM_DIRAM_TEE_ORG (SOC_DIRAM_IRAM_LOW) @@ -70,17 +69,6 @@ const size_t soc_memory_type_count = sizeof(soc_memory_types) / sizeof(soc_memor */ #define APP_USABLE_DRAM_END (SOC_ROM_STACK_START - SOC_ROM_STACK_SIZE) -#if CONFIG_SECURE_BOOT && ESP_ROM_SUPPORT_SECURE_BOOT_FAST_WAKEUP -#if CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS -#define ESP_SECURE_BOOT_DIGEST_LEN 48 -#else /* !CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS */ -#define ESP_SECURE_BOOT_DIGEST_LEN 32 -#endif /* CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS */ -#define APP_USABLE_RTC_MEM_END (SOC_RTC_DATA_HIGH - ESP_SECURE_BOOT_DIGEST_LEN) -#else -#define APP_USABLE_RTC_MEM_END (SOC_RTC_DATA_HIGH) -#endif - const soc_memory_region_t soc_memory_regions[] = { { 0x40800000, 0x10000, SOC_MEMORY_TYPE_RAM, 0x40800000, false}, //D/IRAM level 0 { 0x40810000, 0x10000, SOC_MEMORY_TYPE_RAM, 0x40810000, false}, //D/IRAM level 1 @@ -89,7 +77,7 @@ const soc_memory_region_t soc_memory_regions[] = { { 0x40840000, APP_USABLE_DRAM_END-0x40840000, SOC_MEMORY_TYPE_RAM, 0x40840000, false}, //D/IRAM level 4 { APP_USABLE_DRAM_END, (SOC_DIRAM_DRAM_HIGH-APP_USABLE_DRAM_END), SOC_MEMORY_TYPE_RAM, APP_USABLE_DRAM_END, true}, //D/IRAM level 4 #ifdef CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP - { 0x50000000, (APP_USABLE_RTC_MEM_END - SOC_RTC_DATA_LOW),SOC_MEMORY_TYPE_RTCRAM, 0, false}, //Fast RTC memory + { 0x50000000, (SOC_RTC_DATA_HIGH - SOC_RTC_DATA_LOW), SOC_MEMORY_TYPE_RTCRAM, 0, false}, //Fast RTC memory #endif }; diff --git a/components/heap/port/esp32h21/memory_layout.c b/components/heap/port/esp32h21/memory_layout.c index 31877d0e2b1..97096eadc9f 100644 --- a/components/heap/port/esp32h21/memory_layout.c +++ b/components/heap/port/esp32h21/memory_layout.c @@ -1,5 +1,5 @@ /* - * SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD + * SPDX-FileCopyrightText: 2022-2026 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 */ @@ -11,7 +11,6 @@ #include "soc/soc.h" #include "heap_memory_layout.h" #include "esp_heap_caps.h" -#include "esp_rom_caps.h" /** * @brief Memory type descriptors. These describe the capabilities of a type of memory in the SoC. @@ -65,17 +64,6 @@ const size_t soc_memory_type_count = sizeof(soc_memory_types) / sizeof(soc_memor */ #define APP_USABLE_DRAM_END (SOC_ROM_STACK_START - SOC_ROM_STACK_SIZE) -#if CONFIG_SECURE_BOOT && ESP_ROM_SUPPORT_SECURE_BOOT_FAST_WAKEUP -#if CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS -#define ESP_SECURE_BOOT_DIGEST_LEN 48 -#else /* !CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS */ -#define ESP_SECURE_BOOT_DIGEST_LEN 32 -#endif /* CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS */ -#define APP_USABLE_RTC_MEM_END (SOC_RTC_DATA_HIGH - ESP_SECURE_BOOT_DIGEST_LEN) -#else -#define APP_USABLE_RTC_MEM_END (SOC_RTC_DATA_HIGH) -#endif - const soc_memory_region_t soc_memory_regions[] = { { 0x40800000, 0x10000, SOC_MEMORY_TYPE_RAM, 0x40800000, false}, //D/IRAM level 0 { 0x40810000, 0x10000, SOC_MEMORY_TYPE_RAM, 0x40810000, false}, //D/IRAM level 1 @@ -84,7 +72,7 @@ const soc_memory_region_t soc_memory_regions[] = { { 0x40840000, APP_USABLE_DRAM_END-0x40840000, SOC_MEMORY_TYPE_RAM, 0x40840000, false}, //D/IRAM level 4 { APP_USABLE_DRAM_END, (SOC_DIRAM_DRAM_HIGH-APP_USABLE_DRAM_END), SOC_MEMORY_TYPE_RAM, APP_USABLE_DRAM_END, true}, //D/IRAM level 4 #ifdef CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP - { 0x50000000, (APP_USABLE_RTC_MEM_END - SOC_RTC_DATA_LOW),SOC_MEMORY_TYPE_RTCRAM, 0, false}, //Fast RTC memory + { 0x50000000, (SOC_RTC_DATA_HIGH - SOC_RTC_DATA_LOW), SOC_MEMORY_TYPE_RTCRAM, 0, false}, //Fast RTC memory #endif }; diff --git a/components/heap/port/esp32s31/memory_layout.c b/components/heap/port/esp32s31/memory_layout.c index ad986799012..90040ea191a 100644 --- a/components/heap/port/esp32s31/memory_layout.c +++ b/components/heap/port/esp32s31/memory_layout.c @@ -9,7 +9,6 @@ #include "esp_attr.h" #include "sdkconfig.h" #include "soc/soc.h" -#include "esp_rom_caps.h" #include "heap_memory_layout.h" #include "esp_heap_caps.h" @@ -68,17 +67,6 @@ const size_t soc_memory_type_count = sizeof(soc_memory_types) / sizeof(soc_memor */ #define APP_USABLE_DRAM_END (SOC_ROM_STACK_START - SOC_ROM_STACK_SIZE) -#if CONFIG_SECURE_BOOT && ESP_ROM_SUPPORT_SECURE_BOOT_FAST_WAKEUP -#if CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS -#define ESP_SECURE_BOOT_DIGEST_LEN 48 -#else /* !CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS */ -#define ESP_SECURE_BOOT_DIGEST_LEN 32 -#endif /* CONFIG_SECURE_BOOT_ECDSA_KEY_LEN_384_BITS */ - -#define APP_USABLE_RTC_MEM_END (SOC_LP_RAM_HIGH - ESP_SECURE_BOOT_DIGEST_LEN) -#else -#define APP_USABLE_RTC_MEM_END (SOC_LP_RAM_HIGH) -#endif const soc_memory_region_t soc_memory_regions[] = { #ifdef CONFIG_SPIRAM @@ -87,7 +75,7 @@ const soc_memory_region_t soc_memory_regions[] = { { SOC_DIRAM_DRAM_LOW, (APP_USABLE_DRAM_END - SOC_DIRAM_DRAM_LOW), SOC_MEMORY_TYPE_RAM, SOC_DIRAM_IRAM_LOW, false}, //D/IRAM, can be used as trace memory { APP_USABLE_DRAM_END, (SOC_DIRAM_DRAM_HIGH - APP_USABLE_DRAM_END), SOC_MEMORY_TYPE_RAM, APP_USABLE_DRAM_END, true}, //D/IRAM, can be used as trace memory (ROM reserved area) #ifdef CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP - { SOC_LP_RAM_LOW, (APP_USABLE_RTC_MEM_END - SOC_LP_RAM_LOW), SOC_MEMORY_TYPE_RTCRAM, 0, false}, //LPRAM + { SOC_LP_RAM_LOW, (SOC_LP_RAM_HIGH - SOC_LP_RAM_LOW), SOC_MEMORY_TYPE_RTCRAM, 0, false}, //LPRAM #endif };