Home
last modified time | relevance | path

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

/hal_espressif-3.5.0/components/esp_hw_support/port/esp32c3/
Dcpu_util_esp32c3.c81 PMP_ENTRY_SET(9, SOC_IROM_HIGH, RX); in esp_cpu_configure_region_protection()
83 _Static_assert(SOC_IROM_LOW < SOC_IROM_HIGH, "Invalid IROM region"); 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()
/hal_espressif-3.5.0/components/esp_hw_support/port/esp32h2/
Dcpu_util_esp32h2.c81 PMP_ENTRY_SET(9, SOC_IROM_HIGH, RX); in esp_cpu_configure_region_protection()
83 _Static_assert(SOC_IROM_LOW < SOC_IROM_HIGH, "Invalid IROM region"); 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()
/hal_espressif-3.5.0/components/esp_gdbstub/esp32c3/
Dgdbstub_esp32c3.c30 {SOC_IROM_LOW, SOC_IROM_HIGH},
/hal_espressif-3.5.0/components/esp_gdbstub/esp32h2/
Dgdbstub_esp32h2.c29 {SOC_IROM_LOW, SOC_IROM_HIGH},
/hal_espressif-3.5.0/components/soc/include/soc/
Dsoc_memory_types.h51 return (ip >= SOC_IROM_LOW && ip < SOC_IROM_HIGH) in esp_ptr_executable()
/hal_espressif-3.5.0/components/soc/esp32c3/include/soc/
Dsoc.h224 #define SOC_IROM_HIGH 0x42800000 macro
/hal_espressif-3.5.0/components/soc/esp32h2/include/soc/
Dsoc.h247 #define SOC_IROM_HIGH 0x42800000 macro
/hal_espressif-3.5.0/components/soc/esp32s3/include/soc/
Dsoc.h253 #define SOC_IROM_HIGH 0x44000000 macro
/hal_espressif-3.5.0/components/soc/esp32s2/include/soc/
Dsoc.h267 #define SOC_IROM_HIGH 0x40800000 macro
/hal_espressif-3.5.0/components/soc/esp32/include/soc/
Dsoc.h238 #define SOC_IROM_HIGH 0x40400000 macro
/hal_espressif-3.5.0/components/esp_system/port/arch/xtensa/
Dpanic_arch.c106 if (epc < SOC_IROM_MASK_LOW || epc >= SOC_IROM_HIGH) { in print_illegal_instruction_details()
/hal_espressif-3.5.0/components/bootloader_support/src/
Dbootloader_utility.c682 if (header->load_addr >= SOC_IROM_LOW && header->load_addr < SOC_IROM_HIGH) {
Desp_image_format.c676 return (load_addr >= SOC_IROM_LOW && load_addr < SOC_IROM_HIGH) in should_map()