docs: update CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM docs to better reflect the limitations

This commit is contained in:
Marius Vikhammer 2023-04-12 13:12:12 +08:00
parent 34fea0d38f
commit 6bb4dc35ab
3 changed files with 13 additions and 11 deletions

View File

@ -48,11 +48,10 @@ menu "Memory"
depends on !ESP32_TRAX
help
Reserve parts of SRAM1 for app IRAM which was previously reserved for bootloader DRAM.
If booting an app on an older bootloader from before this option was introduced, the app may fail
to boot due to overlapping memory areas. If this is the case please test carefully before pushing out
any OTA updates.
If booting an app on an older bootloader from before this option was introduced, the app will fail
to boot due to not recognizing the new IRAM memory area.
The bootloader DRAM memory should be sufficient for any non-modified IDF bootloader.
If this is the case please test carefully before pushing out any OTA updates.
endmenu

View File

@ -41,6 +41,12 @@ The bootloader does not support booting apps from older versions of ESP-IDF. Whe
Bootloaders built from versions of ESP-IDF before V3.1 do not support MD5 checksums in the partition table binary. When using a bootloader from these ESP-IDF versions and building a new app, enable the config option :ref:`CONFIG_APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS`.
Before ESP-IDF V5.1
^^^^^^^^^^^^^^^^^^^
Bootloaders built from versions of ESP-IDF prior to V5.1 do not support :ref:`CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM`. When using a bootloader from these ESP-IDF versions and building a new app you should not use this option.
SPI Flash Configuration
^^^^^^^^^^^^^^^^^^^^^^^

View File

@ -149,20 +149,17 @@ The following options will reduce IRAM usage of some ESP-IDF features:
The SRAM1 memory area is normally used for DRAM, but it is possible to use parts of it for IRAM with :ref:`CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM`. This memory would previously be reserved for DRAM data usage (e.g. bss) by the software bootloader and later added to the heap. After this option was introduced, the bootloader DRAM size was reduced to a value closer to what it normally actually needs.
When compiling with this config option, the linker will make sure that both the app's IRAM section and the bootloader's DRAM section is sufficiently large, and not overlapping. If the software bootloader was compiled before this option existed, then it is guaranteed that these two sections will not overlap. This would typically happen if you are doing an OTA update, where only the app would be updated.
This option depends on IDF being able to recognize that the new SRAM1 area is also a valid load address for an image segment. If the software bootloader was compiled before this option existed, then the bootloader will not be able to load an app which has code placed in this new extended IRAM area. This would typically happen if you are doing an OTA update, where only the app would be updated.
If the IRAM section were to overlap the bootloader's DRAM section then this would be detected during the bootup process and result in a failed boot:
If the IRAM section were to be placed in an invalid area then this would be detected during the bootup process and result in a failed boot:
.. code-block:: text
E (204) esp_image: _dram_start = 0x3fff0000, _dram_end = 0x3fff1be0
E (208) esp_image: Segment 4 0x3fff14e0-0x3ffffffc invalid: overlaps bootloader data
E (204) esp_image: Segment 5 0x400845f8-0x400a126c invalid: bad load address range
.. warning::
Apps compiled with :ref:`CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM`, may fail to boot if used together with a software bootloader compiled without the config option.
Currently the software bootloader compiled with security features enabled uses less than 16KB of DRAM, which means that even when allocating the entirety of this IRAM (40KB), there should still be some spare room. However, as this is not guaranteed, we recommended thoroughly testing before pushing an app update with this option enabled.
Apps compiled with :ref:`CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM`, may fail to boot if used together with a software bootloader compiled before this config option was introduced. If you are using an older bootloader and updating over OTA, please test carefully before pushing any update.
Any memory which ends up not being used for static IRAM will be added to the heap.