Home
last modified time | relevance | path

Searched refs:SOC_DROM_LOW (Results 1 – 23 of 23) sorted by relevance

/hal_espressif-3.6.0/components/esp_hw_support/port/esp32c3/
Dcpu_util_esp32c3.c42 PMP_ENTRY_SET(2, SOC_DROM_LOW, NONE); in esp_cpu_configure_region_protection()
43 _Static_assert(SOC_DEBUG_HIGH < SOC_DROM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection()
49 _Static_assert(SOC_DROM_LOW < SOC_DROM_HIGH, "Invalid DROM region"); in esp_cpu_configure_region_protection()
/hal_espressif-3.6.0/components/esp_hw_support/port/esp32h2/
Dcpu_util_esp32h2.c42 PMP_ENTRY_SET(2, SOC_DROM_LOW, NONE); in esp_cpu_configure_region_protection()
43 _Static_assert(SOC_DEBUG_HIGH < SOC_DROM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection()
49 _Static_assert(SOC_DROM_LOW < SOC_DROM_HIGH, "Invalid DROM region"); in esp_cpu_configure_region_protection()
/hal_espressif-3.6.0/components/esp_system/port/
Dcpu_start.c361 …uint32_t cache_mmu_irom_size = ((rodata_reserved_start_align - SOC_DROM_LOW) / MMU_PAGE_SIZE) * si…
505 Cache_Occupy_Addr(SOC_DROM_LOW, 0x4000);
604 memcpy(&fhdr, (void *) SOC_DROM_LOW, sizeof(fhdr));
/hal_espressif-3.6.0/components/soc/esp32/include/soc/
Dmmu.h37 #define SOC_MMU_VADDR0_START_ADDR SOC_DROM_LOW
Dsoc.h233 #define SOC_DROM_LOW 0x3F400000 macro
/hal_espressif-3.6.0/components/soc/esp32c3/include/soc/
Dmmu.h37 #define SOC_MMU_VADDR0_START_ADDR (SOC_DROM_LOW + (SOC_MMU_DROM0_PAGES_START * SPI_FL…
Dsoc.h221 #define SOC_DROM_LOW 0x3C000000 macro
/hal_espressif-3.6.0/components/soc/esp32h2/include/soc/
Dmmu.h37 #define SOC_MMU_VADDR0_START_ADDR (SOC_DROM_LOW + (SOC_MMU_DROM0_PAGES_START * SPI_FL…
Dsoc.h244 #define SOC_DROM_LOW 0x3C000000 macro
/hal_espressif-3.6.0/components/soc/esp32s3/include/soc/
Dmmu.h37 #define SOC_MMU_VADDR0_START_ADDR (SOC_DROM_LOW + (SOC_MMU_DROM0_PAGES_START * SPI_FL…
Dsoc.h250 #define SOC_DROM_LOW 0x3C000000 macro
/hal_espressif-3.6.0/components/soc/esp32s2/include/soc/
Dmmu.h37 #define SOC_MMU_VADDR0_START_ADDR SOC_DROM_LOW
Dsoc.h264 #define SOC_DROM_LOW 0x3F000000/*drom0 low address for icache*/ macro
/hal_espressif-3.6.0/components/esp_hw_support/
Dsleep_retention.c118 uint32_t data_start = SOC_DROM_LOW; in esp_sleep_tagmem_pd_low_init()
119 … uint32_t data_size = (SOC_EXTRAM_DATA_HIGH-SOC_EXTRAM_DATA_LOW) + (SOC_DROM_HIGH-SOC_DROM_LOW); in esp_sleep_tagmem_pd_low_init()
/hal_espressif-3.6.0/components/app_trace/sys_view/Config/
DSEGGER_SYSVIEW_Conf.h152 #define SEGGER_SYSVIEW_ID_BASE SOC_DROM_LOW // Default value fo…
/hal_espressif-3.6.0/components/esp_gdbstub/esp32c3/
Dgdbstub_esp32c3.c29 {SOC_DROM_LOW, SOC_DROM_HIGH},
/hal_espressif-3.6.0/components/esp_gdbstub/esp32h2/
Dgdbstub_esp32h2.c28 {SOC_DROM_LOW, SOC_DROM_HIGH},
/hal_espressif-3.6.0/components/app_trace/sys_view/Sample/Config/
DSEGGER_SYSVIEW_Config_FreeRTOS.c156 #define SYSVIEW_RAM_BASE (SOC_DROM_LOW)
/hal_espressif-3.6.0/components/soc/include/soc/
Dsoc_memory_types.h112 return ((intptr_t)p >= SOC_DROM_LOW && (intptr_t)p < SOC_DROM_HIGH); in esp_ptr_in_drom()
/hal_espressif-3.6.0/components/bootloader_support/src/
Dbootloader_flash.c153 #define MMU_BLOCK0_VADDR SOC_DROM_LOW
163 #define MMU_BLOCK0_VADDR SOC_DROM_LOW
Dbootloader_utility.c672 if (header->load_addr >= SOC_DROM_LOW && header->load_addr < SOC_DROM_HIGH) {
Desp_image_format.c677 || (load_addr >= SOC_DROM_LOW && load_addr < SOC_DROM_HIGH); in should_map()
/hal_espressif-3.6.0/components/esp_hw_support/port/esp32s2/
Dspiram.c226 …uint32_t rodata_page_cnt = ((uint32_t)&_rodata_reserved_end - SOC_DROM_LOW + MMU_PAGE_SIZE - 1)/MM… in rodata_flash_page_info_init()