Home
last modified time | relevance | path

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

/hal_espressif-latest/components/soc/esp32c6/include/soc/
Dmmu.h28 #define SOC_MMU_VADDR0_START_ADDR (SOC_IROM_LOW + (SOC_MMU_DROM0_PAGES_START * SPI_FL…
29 #define SOC_MMU_VADDR1_FIRST_USABLE_ADDR SOC_IROM_LOW
Dsoc.h157 #define SOC_IROM_LOW 0x42000000 macro
158 #define SOC_IROM_HIGH (SOC_IROM_LOW + (CONFIG_MMU_PAGE_SIZE<<8))
159 #define SOC_DROM_LOW SOC_IROM_LOW
/hal_espressif-latest/components/soc/esp32h2/include/soc/
Dmmu.h28 #define SOC_MMU_VADDR0_START_ADDR (SOC_IROM_LOW + (SOC_MMU_DROM0_PAGES_START * SPI_FL…
29 #define SOC_MMU_VADDR1_FIRST_USABLE_ADDR SOC_IROM_LOW
Dsoc.h155 #define SOC_IROM_LOW 0x42000000 macro
156 #define SOC_IROM_HIGH (SOC_IROM_LOW + (SOC_MMU_PAGE_SIZE<<8))
157 #define SOC_DROM_LOW SOC_IROM_LOW
/hal_espressif-latest/components/esp_hw_support/port/esp32h2/
Dcpu_region_protect.c52 PMA_ENTRY_SET_TOR(6, SOC_IROM_LOW, PMA_TOR | PMA_NONE); in esp_cpu_configure_invalid_regions()
169 PMP_ENTRY_SET(8, SOC_IROM_LOW, NONE); in esp_cpu_configure_region_protection()
174 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.c52 PMA_ENTRY_SET_TOR(6, SOC_IROM_LOW, PMA_TOR | PMA_NONE); in esp_cpu_configure_invalid_regions()
169 PMP_ENTRY_SET(8, SOC_IROM_LOW, NONE); in esp_cpu_configure_region_protection()
174 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/esp32c3/
Dcpu_region_protect.c86 _Static_assert(SOC_IRAM_HIGH < SOC_IROM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection()
87 _Static_assert(SOC_IROM_LOW < SOC_IROM_HIGH, "Invalid IROM region"); in esp_cpu_configure_region_protection()
/hal_espressif-latest/components/soc/esp32/include/soc/
Dmmu.h29 #define SOC_MMU_VADDR1_FIRST_USABLE_ADDR SOC_IROM_LOW
Dsoc.h176 #define SOC_IROM_LOW 0x400D0000 macro
/hal_espressif-latest/components/soc/esp32c2/include/soc/
Dmmu.h28 #define SOC_MMU_VADDR1_FIRST_USABLE_ADDR SOC_IROM_LOW
Dsoc.h164 #define SOC_IROM_LOW 0x42000000 macro
/hal_espressif-latest/components/soc/esp32c3/include/soc/
Dmmu.h28 #define SOC_MMU_VADDR1_FIRST_USABLE_ADDR SOC_IROM_LOW
Dsoc.h156 #define SOC_IROM_LOW 0x42000000 macro
/hal_espressif-latest/components/soc/esp32s3/include/soc/
Dmmu.h28 #define SOC_MMU_VADDR1_FIRST_USABLE_ADDR SOC_IROM_LOW
Dsoc.h172 #define SOC_IROM_LOW 0x42000000 macro
/hal_espressif-latest/components/soc/esp32s2/include/soc/
Dmmu.h28 #define SOC_MMU_VADDR1_FIRST_USABLE_ADDR SOC_IROM_LOW
Dsoc.h161 #define SOC_IROM_LOW 0x40080000 macro
/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/esp_psram/
Dmmu_psram_flash.c168 …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-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()