| 
									
										
										
										
											2021-11-03 19:20:39 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * SPDX-FileCopyrightText: 2010-2021 Espressif Systems (Shanghai) CO LTD | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: Apache-2.0 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <stdint.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "soc/soc.h"
 | 
					
						
							| 
									
										
										
										
											2021-06-18 14:51:11 +08:00
										 |  |  | #include "heap_memory_layout.h"
 | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | #include "esp_heap_caps.h"
 | 
					
						
							|  |  |  | #include "sdkconfig.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-26 20:21:59 +08:00
										 |  |  | #ifdef CONFIG_ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY
 | 
					
						
							|  |  |  | #define MALLOC_IRAM_CAP MALLOC_CAP_EXEC|MALLOC_CAP_32BIT|MALLOC_CAP_IRAM_8BIT
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define MALLOC_IRAM_CAP MALLOC_CAP_EXEC|MALLOC_CAP_32BIT
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | /* Memory layout for ESP32 SoC */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2017-07-04 12:46:39 +08:00
										 |  |  | Memory type descriptors. These describe the capabilities of a type of memory in the SoC. Each type of memory | 
					
						
							|  |  |  | map consist of one or more regions in the address space. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Each type contains an array of prioritised capabilities; types with later entries are only taken if earlier | 
					
						
							|  |  |  | ones can't fulfill the memory request. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The prioritised capabilities work roughly like this: | 
					
						
							| 
									
										
										
										
											2017-09-22 16:02:39 +08:00
										 |  |  | - For a normal malloc (MALLOC_CAP_DEFAULT), give away the DRAM-only memory first, then pass off any dual-use IRAM regions, | 
					
						
							| 
									
										
										
										
											2017-07-04 12:46:39 +08:00
										 |  |  |   finally eat into the application memory. | 
					
						
							|  |  |  | - For a malloc where 32-bit-aligned-only access is okay, first allocate IRAM, then DRAM, finally application IRAM. | 
					
						
							|  |  |  | - Application mallocs (PIDx) will allocate IRAM first, if possible, then DRAM. | 
					
						
							|  |  |  | - Most other malloc caps only fit in one region anyway. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | */ | 
					
						
							| 
									
										
										
										
											2017-07-04 12:46:39 +08:00
										 |  |  | const soc_memory_type_desc_t soc_memory_types[] = { | 
					
						
							|  |  |  |     //Type 0: Plain ole D-port RAM
 | 
					
						
							| 
									
										
										
										
											2017-09-22 16:02:39 +08:00
										 |  |  |     { "DRAM", { MALLOC_CAP_8BIT|MALLOC_CAP_DEFAULT, MALLOC_CAP_INTERNAL|MALLOC_CAP_DMA|MALLOC_CAP_32BIT, 0 }, false, false}, | 
					
						
							| 
									
										
										
										
											2017-07-04 12:46:39 +08:00
										 |  |  |     //Type 1: Plain ole D-port RAM which has an alias on the I-port
 | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  |     //(This DRAM is also the region used by ROM during startup)
 | 
					
						
							| 
									
										
										
										
											2017-09-22 16:02:39 +08:00
										 |  |  |     { "D/IRAM", { 0, MALLOC_CAP_DMA|MALLOC_CAP_8BIT|MALLOC_CAP_INTERNAL|MALLOC_CAP_DEFAULT, MALLOC_CAP_32BIT|MALLOC_CAP_EXEC }, true, true}, | 
					
						
							| 
									
										
										
										
											2017-07-04 12:46:39 +08:00
										 |  |  |     //Type 2: IRAM
 | 
					
						
							| 
									
										
										
										
											2020-02-26 20:21:59 +08:00
										 |  |  |     { "IRAM", { MALLOC_CAP_INTERNAL|MALLOC_IRAM_CAP, 0, 0 }, false, false}, | 
					
						
							| 
									
										
										
										
											2017-07-04 12:46:39 +08:00
										 |  |  |     //Type 3-8: PID 2-7 IRAM
 | 
					
						
							| 
									
										
										
										
											2020-02-26 20:21:59 +08:00
										 |  |  |     { "PID2IRAM", { MALLOC_CAP_PID2|MALLOC_CAP_INTERNAL, 0, MALLOC_IRAM_CAP }, false, false}, | 
					
						
							|  |  |  |     { "PID3IRAM", { MALLOC_CAP_PID3|MALLOC_CAP_INTERNAL, 0, MALLOC_IRAM_CAP }, false, false}, | 
					
						
							|  |  |  |     { "PID4IRAM", { MALLOC_CAP_PID4|MALLOC_CAP_INTERNAL, 0, MALLOC_IRAM_CAP }, false, false}, | 
					
						
							|  |  |  |     { "PID5IRAM", { MALLOC_CAP_PID5|MALLOC_CAP_INTERNAL, 0, MALLOC_IRAM_CAP }, false, false}, | 
					
						
							|  |  |  |     { "PID6IRAM", { MALLOC_CAP_PID6|MALLOC_CAP_INTERNAL, 0, MALLOC_IRAM_CAP }, false, false}, | 
					
						
							|  |  |  |     { "PID7IRAM", { MALLOC_CAP_PID7|MALLOC_CAP_INTERNAL, 0, MALLOC_IRAM_CAP }, false, false}, | 
					
						
							| 
									
										
										
										
											2017-07-04 12:46:39 +08:00
										 |  |  |     //Type 9-14: PID 2-7 DRAM
 | 
					
						
							| 
									
										
										
										
											2017-09-22 16:02:39 +08:00
										 |  |  |     { "PID2DRAM", { MALLOC_CAP_PID2|MALLOC_CAP_INTERNAL, MALLOC_CAP_8BIT, MALLOC_CAP_32BIT|MALLOC_CAP_DEFAULT }, false, false}, | 
					
						
							|  |  |  |     { "PID3DRAM", { MALLOC_CAP_PID3|MALLOC_CAP_INTERNAL, MALLOC_CAP_8BIT, MALLOC_CAP_32BIT|MALLOC_CAP_DEFAULT }, false, false}, | 
					
						
							|  |  |  |     { "PID4DRAM", { MALLOC_CAP_PID4|MALLOC_CAP_INTERNAL, MALLOC_CAP_8BIT, MALLOC_CAP_32BIT|MALLOC_CAP_DEFAULT }, false, false}, | 
					
						
							|  |  |  |     { "PID5DRAM", { MALLOC_CAP_PID5|MALLOC_CAP_INTERNAL, MALLOC_CAP_8BIT, MALLOC_CAP_32BIT|MALLOC_CAP_DEFAULT }, false, false}, | 
					
						
							|  |  |  |     { "PID6DRAM", { MALLOC_CAP_PID6|MALLOC_CAP_INTERNAL, MALLOC_CAP_8BIT, MALLOC_CAP_32BIT|MALLOC_CAP_DEFAULT }, false, false}, | 
					
						
							|  |  |  |     { "PID7DRAM", { MALLOC_CAP_PID7|MALLOC_CAP_INTERNAL, MALLOC_CAP_8BIT, MALLOC_CAP_32BIT|MALLOC_CAP_DEFAULT }, false, false}, | 
					
						
							| 
									
										
										
										
											2017-07-04 12:46:39 +08:00
										 |  |  |     //Type 15: SPI SRAM data
 | 
					
						
							| 
									
										
										
										
											2017-09-22 16:02:39 +08:00
										 |  |  |     { "SPIRAM", { MALLOC_CAP_SPIRAM|MALLOC_CAP_DEFAULT, 0, MALLOC_CAP_8BIT|MALLOC_CAP_32BIT}, false, false}, | 
					
						
							| 
									
										
										
										
											2020-04-18 23:56:34 +05:30
										 |  |  |     //Type 16: RTC Fast RAM
 | 
					
						
							| 
									
										
										
										
											2021-12-29 08:49:42 +00:00
										 |  |  |     { "RTCRAM", { MALLOC_CAP_RTCRAM, MALLOC_CAP_8BIT|MALLOC_CAP_DEFAULT, MALLOC_CAP_INTERNAL|MALLOC_CAP_32BIT }, false, false}, | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-04 12:46:39 +08:00
										 |  |  | const size_t soc_memory_type_count = sizeof(soc_memory_types)/sizeof(soc_memory_type_desc_t); | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2017-07-04 12:46:39 +08:00
										 |  |  | Region descriptors. These describe all regions of memory available, and map them to a type in the above type. | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-04 12:46:39 +08:00
										 |  |  | Because of requirements in the coalescing code which merges adjacent regions, this list should always be sorted | 
					
						
							|  |  |  | from low to high start address. | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | */ | 
					
						
							|  |  |  | const soc_memory_region_t soc_memory_regions[] = { | 
					
						
							| 
									
										
										
										
											2019-06-05 14:34:19 +10:00
										 |  |  | #ifdef CONFIG_SPIRAM
 | 
					
						
							| 
									
										
										
										
											2020-06-16 14:51:31 +10:00
										 |  |  |     { SOC_EXTRAM_DATA_LOW, SOC_EXTRAM_DATA_SIZE, 15, 0}, //SPI SRAM, if available
 | 
					
						
							| 
									
										
										
										
											2018-06-22 17:32:58 +10:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  |     { 0x3FFAE000, 0x2000, 0, 0}, //pool 16 <- used for rom code
 | 
					
						
							|  |  |  |     { 0x3FFB0000, 0x8000, 0, 0}, //pool 15 <- if BT is enabled, used as BT HW shared memory
 | 
					
						
							|  |  |  |     { 0x3FFB8000, 0x8000, 0, 0}, //pool 14 <- if BT is enabled, used data memory for BT ROM functions.
 | 
					
						
							|  |  |  |     { 0x3FFC0000, 0x2000, 0, 0}, //pool 10-13, mmu page 0
 | 
					
						
							|  |  |  |     { 0x3FFC2000, 0x2000, 0, 0}, //pool 10-13, mmu page 1
 | 
					
						
							|  |  |  |     { 0x3FFC4000, 0x2000, 0, 0}, //pool 10-13, mmu page 2
 | 
					
						
							|  |  |  |     { 0x3FFC6000, 0x2000, 0, 0}, //pool 10-13, mmu page 3
 | 
					
						
							|  |  |  |     { 0x3FFC8000, 0x2000, 0, 0}, //pool 10-13, mmu page 4
 | 
					
						
							|  |  |  |     { 0x3FFCA000, 0x2000, 0, 0}, //pool 10-13, mmu page 5
 | 
					
						
							|  |  |  |     { 0x3FFCC000, 0x2000, 0, 0}, //pool 10-13, mmu page 6
 | 
					
						
							|  |  |  |     { 0x3FFCE000, 0x2000, 0, 0}, //pool 10-13, mmu page 7
 | 
					
						
							|  |  |  |     { 0x3FFD0000, 0x2000, 0, 0}, //pool 10-13, mmu page 8
 | 
					
						
							|  |  |  |     { 0x3FFD2000, 0x2000, 0, 0}, //pool 10-13, mmu page 9
 | 
					
						
							|  |  |  |     { 0x3FFD4000, 0x2000, 0, 0}, //pool 10-13, mmu page 10
 | 
					
						
							|  |  |  |     { 0x3FFD6000, 0x2000, 0, 0}, //pool 10-13, mmu page 11
 | 
					
						
							|  |  |  |     { 0x3FFD8000, 0x2000, 0, 0}, //pool 10-13, mmu page 12
 | 
					
						
							|  |  |  |     { 0x3FFDA000, 0x2000, 0, 0}, //pool 10-13, mmu page 13
 | 
					
						
							|  |  |  |     { 0x3FFDC000, 0x2000, 0, 0}, //pool 10-13, mmu page 14
 | 
					
						
							|  |  |  |     { 0x3FFDE000, 0x2000, 0, 0}, //pool 10-13, mmu page 15
 | 
					
						
							|  |  |  |     { 0x3FFE0000, 0x4000, 1, 0x400BC000}, //pool 9 blk 1
 | 
					
						
							|  |  |  |     { 0x3FFE4000, 0x4000, 1, 0x400B8000}, //pool 9 blk 0
 | 
					
						
							|  |  |  |     { 0x3FFE8000, 0x8000, 1, 0x400B0000}, //pool 8 <- can be remapped to ROM, used for MAC dump
 | 
					
						
							|  |  |  |     { 0x3FFF0000, 0x8000, 1, 0x400A8000}, //pool 7 <- can be used for MAC dump
 | 
					
						
							|  |  |  |     { 0x3FFF8000, 0x4000, 1, 0x400A4000}, //pool 6 blk 1 <- can be used as trace memory
 | 
					
						
							|  |  |  |     { 0x3FFFC000, 0x4000, 1, 0x400A0000}, //pool 6 blk 0 <- can be used as trace memory
 | 
					
						
							|  |  |  |     { 0x40070000, 0x8000, 2, 0}, //pool 0
 | 
					
						
							|  |  |  |     { 0x40078000, 0x8000, 2, 0}, //pool 1
 | 
					
						
							|  |  |  |     { 0x40080000, 0x2000, 2, 0}, //pool 2-5, mmu page 0
 | 
					
						
							|  |  |  |     { 0x40082000, 0x2000, 2, 0}, //pool 2-5, mmu page 1
 | 
					
						
							|  |  |  |     { 0x40084000, 0x2000, 2, 0}, //pool 2-5, mmu page 2
 | 
					
						
							|  |  |  |     { 0x40086000, 0x2000, 2, 0}, //pool 2-5, mmu page 3
 | 
					
						
							|  |  |  |     { 0x40088000, 0x2000, 2, 0}, //pool 2-5, mmu page 4
 | 
					
						
							|  |  |  |     { 0x4008A000, 0x2000, 2, 0}, //pool 2-5, mmu page 5
 | 
					
						
							|  |  |  |     { 0x4008C000, 0x2000, 2, 0}, //pool 2-5, mmu page 6
 | 
					
						
							|  |  |  |     { 0x4008E000, 0x2000, 2, 0}, //pool 2-5, mmu page 7
 | 
					
						
							|  |  |  |     { 0x40090000, 0x2000, 2, 0}, //pool 2-5, mmu page 8
 | 
					
						
							|  |  |  |     { 0x40092000, 0x2000, 2, 0}, //pool 2-5, mmu page 9
 | 
					
						
							|  |  |  |     { 0x40094000, 0x2000, 2, 0}, //pool 2-5, mmu page 10
 | 
					
						
							|  |  |  |     { 0x40096000, 0x2000, 2, 0}, //pool 2-5, mmu page 11
 | 
					
						
							|  |  |  |     { 0x40098000, 0x2000, 2, 0}, //pool 2-5, mmu page 12
 | 
					
						
							|  |  |  |     { 0x4009A000, 0x2000, 2, 0}, //pool 2-5, mmu page 13
 | 
					
						
							|  |  |  |     { 0x4009C000, 0x2000, 2, 0}, //pool 2-5, mmu page 14
 | 
					
						
							|  |  |  |     { 0x4009E000, 0x2000, 2, 0}, //pool 2-5, mmu page 15
 | 
					
						
							| 
									
										
										
										
											2021-12-29 08:49:42 +00:00
										 |  |  | #ifdef CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP
 | 
					
						
							|  |  |  |     { SOC_RTC_DRAM_LOW, 0x2000, 16, 0}, //RTC Fast Memory
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const size_t soc_memory_region_count = sizeof(soc_memory_regions)/sizeof(soc_memory_region_t); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-04 12:46:39 +08:00
										 |  |  | /* Reserved memory regions
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    These are removed from the soc_memory_regions array when heaps are created. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-10-31 16:51:09 +08:00
										 |  |  | SOC_RESERVE_MEMORY_REGION(SOC_CACHE_PRO_LOW, SOC_CACHE_PRO_HIGH, cpu0_cache); | 
					
						
							| 
									
										
										
										
											2018-07-09 17:15:22 +08:00
										 |  |  | #ifndef CONFIG_FREERTOS_UNICORE
 | 
					
						
							| 
									
										
										
										
											2018-10-31 16:51:09 +08:00
										 |  |  | SOC_RESERVE_MEMORY_REGION(SOC_CACHE_APP_LOW, SOC_CACHE_APP_HIGH, cpu1_cache); | 
					
						
							| 
									
										
										
										
											2018-07-09 17:15:22 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Warning: The ROM stack is located in the 0x3ffe0000 area. We do not specifically disable that area here because
 | 
					
						
							|  |  |  |        after the scheduler has started, the ROM stack is not used anymore by anything. We handle it instead by not allowing | 
					
						
							| 
									
										
										
										
											2017-07-04 12:46:39 +08:00
										 |  |  |        any mallocs memory regions with the startup_stack flag set (these are the IRAM/DRAM region) until the | 
					
						
							|  |  |  |        scheduler has started. | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |        The 0x3ffe0000 region also contains static RAM for various ROM functions. The following lines | 
					
						
							|  |  |  |        reserve the regions for UART and ETSC, so these functions are usable. Libraries like xtos, which are | 
					
						
							|  |  |  |        not usable in FreeRTOS anyway, are commented out in the linker script so they cannot be used; we | 
					
						
							|  |  |  |        do not disable their memory regions here and they will be used as general purpose heap memory. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        Enabling the heap allocator for this region but disabling allocation here until FreeRTOS is started up | 
					
						
							|  |  |  |        is a somewhat risky action in theory, because on initializing the allocator, the multi_heap implementation | 
					
						
							| 
									
										
										
										
											2017-07-04 12:46:39 +08:00
										 |  |  |        will go and write metadata at the start and end of all regions. For the ESP32, these linked | 
					
						
							|  |  |  |        list entries happen to end up in a region that is not touched by the stack; they can be placed safely there. | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-22 17:32:58 +10:00
										 |  |  | SOC_RESERVE_MEMORY_REGION(0x3ffe0000, 0x3ffe0440, rom_pro_data); //Reserve ROM PRO data region
 | 
					
						
							| 
									
										
										
										
											2018-07-09 17:15:22 +08:00
										 |  |  | #ifndef CONFIG_FREERTOS_UNICORE
 | 
					
						
							|  |  |  | SOC_RESERVE_MEMORY_REGION(0x3ffe3f20, 0x3ffe4350, rom_app_data); //Reserve ROM APP data region
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-22 17:32:58 +10:00
										 |  |  | SOC_RESERVE_MEMORY_REGION(0x3ffae000, 0x3ffae6e0, rom_data); | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-30 12:51:55 +02:00
										 |  |  | #if CONFIG_ESP32_MEMMAP_TRACEMEM
 | 
					
						
							|  |  |  | #if CONFIG_ESP32_MEMMAP_TRACEMEM_TWOBANKS
 | 
					
						
							| 
									
										
										
										
											2018-08-15 20:52:39 +05:30
										 |  |  | SOC_RESERVE_MEMORY_REGION(0x3fff8000, 0x40000000, trace_mem); //Reserve trace mem region, 32K for both cpu
 | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2018-08-15 20:52:39 +05:30
										 |  |  | SOC_RESERVE_MEMORY_REGION(0x3fffc000, 0x40000000, trace_mem); //Reserve trace mem region, 16K (upper-half) for pro cpu
 | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-05 14:34:19 +10:00
										 |  |  | #ifdef CONFIG_SPIRAM
 | 
					
						
							| 
									
										
										
										
											2020-06-16 14:51:31 +10:00
										 |  |  | /* Reserve the whole possible SPIRAM region here, spiram.c will add some or all of this
 | 
					
						
							|  |  |  |  * memory to heap depending on the actual SPIRAM chip size. */ | 
					
						
							|  |  |  | SOC_RESERVE_MEMORY_REGION(SOC_EXTRAM_DATA_LOW, SOC_EXTRAM_DATA_HIGH, spi_ram); | 
					
						
							| 
									
										
										
										
											2017-05-03 18:03:28 +10:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-06-22 17:32:58 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-18 23:56:34 +05:30
										 |  |  | extern int _data_start, _heap_start, _iram_start, _iram_end, _rtc_force_fast_end, _rtc_noinit_end; | 
					
						
							| 
									
										
										
										
											2020-01-21 18:52:59 +01:00
										 |  |  | // Static data region. DRAM used by data+bss and possibly rodata
 | 
					
						
							|  |  |  | SOC_RESERVE_MEMORY_REGION((intptr_t)&_data_start, (intptr_t)&_heap_start, dram_data); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // IRAM code region
 | 
					
						
							|  |  |  | // ESP32 has an IRAM-only region 0x4008_0000 - 0x4009_FFFF, reserve the used part
 | 
					
						
							|  |  |  | SOC_RESERVE_MEMORY_REGION((intptr_t)&_iram_start, (intptr_t)&_iram_end, iram_code); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-18 23:56:34 +05:30
										 |  |  | // RTC Fast RAM region
 | 
					
						
							| 
									
										
										
										
											2020-12-21 10:56:00 +05:30
										 |  |  | #ifdef CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP
 | 
					
						
							| 
									
										
										
										
											2020-04-18 23:56:34 +05:30
										 |  |  | #ifdef CONFIG_ESP32_RTCDATA_IN_FAST_MEM
 | 
					
						
							|  |  |  | SOC_RESERVE_MEMORY_REGION(SOC_RTC_DRAM_LOW, (intptr_t)&_rtc_noinit_end, rtcram_data); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | SOC_RESERVE_MEMORY_REGION(SOC_RTC_DRAM_LOW, (intptr_t)&_rtc_force_fast_end, rtcram_data); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif
 |