Home
last modified time | relevance | path

Searched refs:SOC_RTC_IRAM_LOW (Results 1 – 14 of 14) sorted by relevance

/hal_espressif-latest/components/esp_hw_support/port/esp32c6/
Dcpu_region_protect.c56 PMA_ENTRY_SET_TOR(8, SOC_RTC_IRAM_LOW, PMA_TOR | PMA_NONE); in esp_cpu_configure_invalid_regions()
189 PMP_ENTRY_SET(11, SOC_RTC_IRAM_LOW, NONE); in esp_cpu_configure_region_protection()
192 PMP_ENTRY_SET(12, SOC_RTC_IRAM_LOW + CONFIG_ULP_COPROC_RESERVE_MEM, PMP_TOR | RW); in esp_cpu_configure_region_protection()
195 PMP_ENTRY_SET(12, SOC_RTC_IRAM_LOW, NONE); in esp_cpu_configure_region_protection()
200 const uint32_t pmpaddr11 = PMPADDR_NAPOT(SOC_RTC_IRAM_LOW, SOC_RTC_IRAM_HIGH); in esp_cpu_configure_region_protection()
202 _Static_assert(SOC_RTC_IRAM_LOW < SOC_RTC_IRAM_HIGH, "Invalid RTC IRAM region"); in esp_cpu_configure_region_protection()
/hal_espressif-latest/components/esp_hw_support/port/esp32c3/
Dcpu_region_protect.c90 PMP_ENTRY_SET(10, SOC_RTC_IRAM_LOW, NONE); in esp_cpu_configure_region_protection()
91 _Static_assert(SOC_IROM_HIGH < SOC_RTC_IRAM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection()
95 _Static_assert(SOC_RTC_IRAM_LOW < SOC_RTC_IRAM_HIGH, "Invalid RTC IRAM region"); in esp_cpu_configure_region_protection()
/hal_espressif-latest/components/esp_hw_support/port/esp32h2/
Dcpu_region_protect.c56 PMA_ENTRY_SET_TOR(8, SOC_RTC_IRAM_LOW, PMA_TOR | PMA_NONE); in esp_cpu_configure_invalid_regions()
188 PMP_ENTRY_SET(11, SOC_RTC_IRAM_LOW, NONE); in esp_cpu_configure_region_protection()
192 const uint32_t pmpaddr11 = PMPADDR_NAPOT(SOC_RTC_IRAM_LOW, SOC_RTC_IRAM_HIGH); in esp_cpu_configure_region_protection()
194 _Static_assert(SOC_RTC_IRAM_LOW < SOC_RTC_IRAM_HIGH, "Invalid RTC IRAM region"); in esp_cpu_configure_region_protection()
/hal_espressif-latest/components/esp_hw_support/include/
Desp_memory_utils.h100 return ((intptr_t)p >= SOC_RTC_IRAM_LOW && (intptr_t)p < SOC_RTC_IRAM_HIGH); in esp_ptr_in_rtc_iram_fast()
223 || (ip >= SOC_RTC_IRAM_LOW && ip < SOC_RTC_IRAM_HIGH) in esp_ptr_executable()
/hal_espressif-latest/components/bootloader_support/include/
Dbootloader_memory_utils.h100 return ((intptr_t)p >= SOC_RTC_IRAM_LOW && (intptr_t)p < SOC_RTC_IRAM_HIGH); in esp_ptr_in_rtc_iram_fast()
/hal_espressif-latest/components/soc/esp32c6/include/soc/
Dsoc.h169 #define SOC_RTC_IRAM_LOW 0x50000000 // ESP32-C6 only has 16k LP memory macro
/hal_espressif-latest/components/soc/esp32s2/include/soc/
Dsoc.h169 #define SOC_RTC_IRAM_LOW 0x40070000 macro
/hal_espressif-latest/components/soc/esp32h2/include/soc/
Dsoc.h167 #define SOC_RTC_IRAM_LOW 0x50000000 // ESP32-H2 only has 16k LP memory macro
/hal_espressif-latest/components/soc/esp32c3/include/soc/
Dsoc.h166 #define SOC_RTC_IRAM_LOW 0x50000000 // ESP32-C3 only has RTC slow memory macro
/hal_espressif-latest/components/soc/esp32s3/include/soc/
Dsoc.h179 #define SOC_RTC_IRAM_LOW 0x600FE000 macro
/hal_espressif-latest/components/hal/esp32c3/include/hal/
Dmemprot_ll.h351 if (addr < SOC_RTC_IRAM_LOW || addr >= SOC_RTC_IRAM_HIGH) { in memprot_ll_set_rtcfast_split_line()
396 *line_addr = (void *)((((reg_addr & mask) >> shift) << 2) + SOC_RTC_IRAM_LOW); in memprot_ll_get_rtcfast_split_line()
/hal_espressif-latest/components/soc/esp32/include/soc/
Dsoc.h186 #define SOC_RTC_IRAM_LOW 0x400C0000 macro
/hal_espressif-latest/components/hal/esp32s3/include/hal/
Dmemprot_ll.h736 if (addr < SOC_RTC_IRAM_LOW || addr >= SOC_RTC_IRAM_HIGH) { in memprot_ll_set_rtcfast_split_line()
802 *line_addr = (void *)((((reg_addr & mask) >> shift) << 2) + SOC_RTC_IRAM_LOW); in memprot_ll_get_rtcfast_split_line()
/hal_espressif-latest/components/bootloader_support/src/
Desp_image_format.c792 if (load_addr >= SOC_RTC_IRAM_LOW && load_addr < SOC_RTC_IRAM_HIGH) { in should_load()