Home
last modified time | relevance | path

Searched refs:SOC_IROM_LOW (Results 1 – 20 of 20) sorted by relevance

/hal_espressif-3.6.0/components/esp_hw_support/port/esp32c3/
Dcpu_util_esp32c3.c82 _Static_assert(SOC_IRAM_HIGH < SOC_IROM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection()
83 _Static_assert(SOC_IROM_LOW < SOC_IROM_HIGH, "Invalid IROM region"); in esp_cpu_configure_region_protection()
/hal_espressif-3.6.0/components/esp_hw_support/port/esp32h2/
Dcpu_util_esp32h2.c82 _Static_assert(SOC_IRAM_HIGH < SOC_IROM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection()
83 _Static_assert(SOC_IROM_LOW < SOC_IROM_HIGH, "Invalid IROM region"); in esp_cpu_configure_region_protection()
/hal_espressif-3.6.0/components/soc/esp32/include/soc/
Dmmu.h38 #define SOC_MMU_VADDR1_FIRST_USABLE_ADDR SOC_IROM_LOW
Dsoc.h237 #define SOC_IROM_LOW 0x400D0000 macro
/hal_espressif-3.6.0/components/soc/esp32c3/include/soc/
Dmmu.h38 #define SOC_MMU_VADDR1_FIRST_USABLE_ADDR SOC_IROM_LOW
Dsoc.h223 #define SOC_IROM_LOW 0x42000000 macro
/hal_espressif-3.6.0/components/soc/esp32h2/include/soc/
Dmmu.h38 #define SOC_MMU_VADDR1_FIRST_USABLE_ADDR SOC_IROM_LOW
Dsoc.h246 #define SOC_IROM_LOW 0x42000000 macro
/hal_espressif-3.6.0/components/soc/esp32s3/include/soc/
Dmmu.h38 #define SOC_MMU_VADDR1_FIRST_USABLE_ADDR SOC_IROM_LOW
Dsoc.h252 #define SOC_IROM_LOW 0x42000000 macro
/hal_espressif-3.6.0/components/soc/esp32s2/include/soc/
Dmmu.h38 #define SOC_MMU_VADDR1_FIRST_USABLE_ADDR SOC_IROM_LOW
Dsoc.h266 #define SOC_IROM_LOW 0x40080000 macro
/hal_espressif-3.6.0/components/esp_gdbstub/esp32c3/
Dgdbstub_esp32c3.c30 {SOC_IROM_LOW, SOC_IROM_HIGH},
/hal_espressif-3.6.0/components/esp_gdbstub/esp32h2/
Dgdbstub_esp32h2.c29 {SOC_IROM_LOW, SOC_IROM_HIGH},
/hal_espressif-3.6.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.6.0/components/esp_hw_support/port/esp32s3/
Dspiram.c186 …uint32_t instr_page_cnt = ((uint32_t)&_instruction_reserved_end - SOC_IROM_LOW + MMU_PAGE_SIZE - 1… in instruction_flash_page_info_init()
/hal_espressif-3.6.0/components/esp_hw_support/port/esp32s2/
Dspiram.c199 …uint32_t instr_page_cnt = ((uint32_t)&_instruction_reserved_end - SOC_IROM_LOW + MMU_PAGE_SIZE - 1… in instruction_flash_page_info_init()
/hal_espressif-3.6.0/components/spi_flash/test/
Dtest_read_write.c286 #define TEST_SOC_IROM_ADDR (SOC_IROM_LOW)
/hal_espressif-3.6.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()