Home
last modified time | relevance | path

Searched refs:SOC_RTC_DRAM_LOW (Results 1 – 16 of 16) sorted by relevance

/hal_espressif-latest/components/heap/port/esp32s2/
Dmemory_layout.c107 { SOC_RTC_DRAM_LOW, 0x2000, 5, 0}, //RTC Fast Memory
148 SOC_RESERVE_MEMORY_REGION(SOC_RTC_DRAM_LOW, (intptr_t)&_rtc_noinit_end, rtcram_data);
150 SOC_RESERVE_MEMORY_REGION(SOC_RTC_DRAM_LOW, (intptr_t)&_rtc_force_fast_end, rtcram_data);
/hal_espressif-latest/components/heap/port/esp32/
Dmemory_layout.c122 { SOC_RTC_DRAM_LOW, 0x2000, 16, 0}, //RTC Fast Memory
194 SOC_RESERVE_MEMORY_REGION(SOC_RTC_DRAM_LOW, (intptr_t)&_rtc_noinit_end, rtcram_data);
196 SOC_RESERVE_MEMORY_REGION(SOC_RTC_DRAM_LOW, (intptr_t)&_rtc_force_fast_end, rtcram_data);
/hal_espressif-latest/components/heap/port/esp32s3/
Dmemory_layout.c149 SOC_RESERVE_MEMORY_REGION(SOC_RTC_DRAM_LOW, (intptr_t)&_rtc_noinit_end, rtcram_data);
151 SOC_RESERVE_MEMORY_REGION(SOC_RTC_DRAM_LOW, (intptr_t)&_rtc_force_fast_end, rtcram_data);
/hal_espressif-latest/components/esp_hw_support/
Desp_memory_utils.c41 r |= (ip >= SOC_RTC_DRAM_LOW && ip < SOC_RTC_DRAM_HIGH); in esp_ptr_byte_accessible()
/hal_espressif-latest/components/esp_hw_support/include/
Desp_memory_utils.h116 return ((intptr_t)p >= SOC_RTC_DRAM_LOW && (intptr_t)p < SOC_RTC_DRAM_HIGH); in esp_ptr_in_rtc_dram_fast()
257 r |= ((intptr_t)p >= SOC_RTC_DRAM_LOW && (intptr_t)p < SOC_RTC_DRAM_HIGH); in esp_ptr_internal()
/hal_espressif-latest/components/heap/port/esp32c6/
Dmemory_layout.c105 SOC_RESERVE_MEMORY_REGION(SOC_RTC_DRAM_LOW, (intptr_t)&_rtc_force_slow_end, rtcram_data);
/hal_espressif-latest/components/heap/port/esp32h2/
Dmemory_layout.c104 SOC_RESERVE_MEMORY_REGION(SOC_RTC_DRAM_LOW, (intptr_t)&_rtc_force_slow_end, rtcram_data);
/hal_espressif-latest/components/bootloader_support/include/
Dbootloader_memory_utils.h116 return ((intptr_t)p >= SOC_RTC_DRAM_LOW && (intptr_t)p < SOC_RTC_DRAM_HIGH); in esp_ptr_in_rtc_dram_fast()
/hal_espressif-latest/components/heap/port/esp32c3/
Dmemory_layout.c108 SOC_RESERVE_MEMORY_REGION(SOC_RTC_DRAM_LOW, (intptr_t)&_rtc_force_slow_end, rtcram_data);
/hal_espressif-latest/components/soc/esp32c6/include/soc/
Dsoc.h171 #define SOC_RTC_DRAM_LOW 0x50000000 macro
/hal_espressif-latest/components/soc/esp32s2/include/soc/
Dsoc.h171 #define SOC_RTC_DRAM_LOW 0x3ff9e000 macro
/hal_espressif-latest/components/soc/esp32h2/include/soc/
Dsoc.h169 #define SOC_RTC_DRAM_LOW 0x50000000 macro
/hal_espressif-latest/components/soc/esp32c3/include/soc/
Dsoc.h168 #define SOC_RTC_DRAM_LOW 0x50000000 macro
/hal_espressif-latest/components/soc/esp32s3/include/soc/
Dsoc.h181 #define SOC_RTC_DRAM_LOW 0x600FE000 macro
/hal_espressif-latest/components/soc/esp32/include/soc/
Dsoc.h188 #define SOC_RTC_DRAM_LOW 0x3FF80000 macro
/hal_espressif-latest/components/bootloader_support/src/
Desp_image_format.c796 if (load_addr >= SOC_RTC_DRAM_LOW && load_addr < SOC_RTC_DRAM_HIGH) { in should_load()