Home
last modified time | relevance | path

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

/hal_espressif-3.4.0/components/esp_hw_support/port/esp32c3/
Dcpu_util_esp32c3.c86 PMP_ENTRY_SET(10, SOC_RTC_IRAM_LOW, NONE); in esp_cpu_configure_region_protection()
87 _Static_assert(SOC_IROM_HIGH < SOC_RTC_IRAM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection()
91 _Static_assert(SOC_RTC_IRAM_LOW < SOC_RTC_IRAM_HIGH, "Invalid RTC IRAM region"); in esp_cpu_configure_region_protection()
/hal_espressif-3.4.0/components/esp_hw_support/port/esp32h2/
Dcpu_util_esp32h2.c86 PMP_ENTRY_SET(10, SOC_RTC_IRAM_LOW, NONE); in esp_cpu_configure_region_protection()
87 _Static_assert(SOC_IROM_HIGH < SOC_RTC_IRAM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection()
91 _Static_assert(SOC_RTC_IRAM_LOW < SOC_RTC_IRAM_HIGH, "Invalid RTC IRAM region"); in esp_cpu_configure_region_protection()
/hal_espressif-3.4.0/components/soc/include/soc/
Dsoc_memory_types.h57 || (ip >= SOC_RTC_IRAM_LOW && ip < SOC_RTC_IRAM_HIGH); in esp_ptr_executable()
128 return ((intptr_t)p >= SOC_RTC_IRAM_LOW && (intptr_t)p < SOC_RTC_IRAM_HIGH); in esp_ptr_in_rtc_iram_fast()
/hal_espressif-3.4.0/components/esp_gdbstub/esp32c3/
Dgdbstub_esp32c3.c35 {SOC_RTC_IRAM_LOW, SOC_RTC_IRAM_HIGH},
/hal_espressif-3.4.0/components/esp_gdbstub/esp32h2/
Dgdbstub_esp32h2.c34 {SOC_RTC_IRAM_LOW, SOC_RTC_IRAM_HIGH},
/hal_espressif-3.4.0/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-3.4.0/components/soc/esp32c3/include/soc/
Dsoc.h233 #define SOC_RTC_IRAM_LOW 0x50000000 // ESP32-C3 only has RTC slow memory macro
/hal_espressif-3.4.0/components/soc/esp32h2/include/soc/
Dsoc.h256 #define SOC_RTC_IRAM_LOW 0x50000000 // ESP32-H2 only has RTC slow memory macro
/hal_espressif-3.4.0/components/soc/esp32s3/include/soc/
Dsoc.h259 #define SOC_RTC_IRAM_LOW 0x600FE000 macro
/hal_espressif-3.4.0/components/soc/esp32s2/include/soc/
Dsoc.h274 #define SOC_RTC_IRAM_LOW 0x40070000 macro
/hal_espressif-3.4.0/components/soc/esp32/include/soc/
Dsoc.h247 #define SOC_RTC_IRAM_LOW 0x400C0000 macro
/hal_espressif-3.4.0/components/spi_flash/test/
Dtest_read_write.c292 #define TEST_SOC_RTC_IRAM_ADDR (SOC_RTC_IRAM_LOW)
/hal_espressif-3.4.0/components/bootloader_support/src/
Desp_image_format.c699 if (load_addr >= SOC_RTC_IRAM_LOW && load_addr < SOC_RTC_IRAM_HIGH) { in should_load()