Home
last modified time | relevance | path

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

/hal_espressif-latest/components/esp_hw_support/port/esp32c3/
Dcpu_region_protect.c85 PMP_ENTRY_SET(9, SOC_IROM_HIGH, RX); in esp_cpu_configure_region_protection()
87 _Static_assert(SOC_IROM_LOW < SOC_IROM_HIGH, "Invalid IROM region"); 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()
/hal_espressif-latest/components/esp_hw_support/port/esp32h2/
Dcpu_region_protect.c174 const uint32_t pmpaddr8 = PMPADDR_NAPOT(SOC_IROM_LOW, SOC_IROM_HIGH); in esp_cpu_configure_region_protection()
176 _Static_assert(SOC_IROM_LOW < SOC_IROM_HIGH, "Invalid I/D_Cache region"); in esp_cpu_configure_region_protection()
/hal_espressif-latest/components/esp_hw_support/port/esp32c6/
Dcpu_region_protect.c174 const uint32_t pmpaddr8 = PMPADDR_NAPOT(SOC_IROM_LOW, SOC_IROM_HIGH); in esp_cpu_configure_region_protection()
176 _Static_assert(SOC_IROM_LOW < SOC_IROM_HIGH, "Invalid I/D_Cache region"); in esp_cpu_configure_region_protection()
/hal_espressif-latest/components/soc/esp32c6/include/soc/
Dsoc.h158 #define SOC_IROM_HIGH (SOC_IROM_LOW + (CONFIG_MMU_PAGE_SIZE<<8)) macro
160 #define SOC_DROM_HIGH SOC_IROM_HIGH
/hal_espressif-latest/components/soc/esp32h2/include/soc/
Dsoc.h156 #define SOC_IROM_HIGH (SOC_IROM_LOW + (SOC_MMU_PAGE_SIZE<<8)) macro
158 #define SOC_DROM_HIGH SOC_IROM_HIGH
/hal_espressif-latest/components/esp_hw_support/include/
Desp_memory_utils.h216 return (ip >= SOC_IROM_LOW && ip < SOC_IROM_HIGH) in esp_ptr_executable()
/hal_espressif-latest/components/soc/esp32c2/include/soc/
Dsoc.h165 #define SOC_IROM_HIGH 0x42400000 macro
/hal_espressif-latest/components/soc/esp32s2/include/soc/
Dsoc.h162 #define SOC_IROM_HIGH 0x40800000 macro
/hal_espressif-latest/components/soc/esp32c3/include/soc/
Dsoc.h157 #define SOC_IROM_HIGH 0x42800000 macro
/hal_espressif-latest/components/soc/esp32s3/include/soc/
Dsoc.h173 #define SOC_IROM_HIGH 0x44000000 macro
/hal_espressif-latest/components/soc/esp32/include/soc/
Dsoc.h177 #define SOC_IROM_HIGH 0x40400000 macro
/hal_espressif-latest/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-latest/components/bootloader_support/src/
Dbootloader_utility.c804 if (header->load_addr >= SOC_IROM_LOW && header->load_addr < SOC_IROM_HIGH) {
Desp_image_format.c768 return (load_addr >= SOC_IROM_LOW && load_addr < SOC_IROM_HIGH) in should_map()