Home
last modified time | relevance | path

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

/hal_espressif-3.4.0/components/esp_hw_support/port/esp32c3/
Dcpu_util_esp32c3.c49 _Static_assert(SOC_DROM_LOW < SOC_DROM_HIGH, "Invalid DROM region"); in esp_cpu_configure_region_protection()
50 _Static_assert(SOC_DROM_HIGH < SOC_DRAM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection()
/hal_espressif-3.4.0/components/esp_hw_support/port/esp32h2/
Dcpu_util_esp32h2.c49 _Static_assert(SOC_DROM_LOW < SOC_DROM_HIGH, "Invalid DROM region"); in esp_cpu_configure_region_protection()
50 _Static_assert(SOC_DROM_HIGH < SOC_DRAM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection()
/hal_espressif-3.4.0/components/esp_gdbstub/esp32c3/
Dgdbstub_esp32c3.c29 {SOC_DROM_LOW, SOC_DROM_HIGH},
/hal_espressif-3.4.0/components/esp_gdbstub/esp32h2/
Dgdbstub_esp32h2.c28 {SOC_DROM_LOW, SOC_DROM_HIGH},
/hal_espressif-3.4.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.4.0/components/soc/esp32c3/include/soc/
Dsoc.h222 #define SOC_DROM_HIGH 0x3C800000 macro
/hal_espressif-3.4.0/components/soc/esp32h2/include/soc/
Dsoc.h245 #define SOC_DROM_HIGH 0x3C800000 macro
/hal_espressif-3.4.0/components/soc/esp32s3/include/soc/
Dsoc.h251 #define SOC_DROM_HIGH 0x3D000000 macro
/hal_espressif-3.4.0/components/soc/esp32s2/include/soc/
Dsoc.h265 #define SOC_DROM_HIGH 0x3FF80000/*dram0 high address for dcache*/ macro
/hal_espressif-3.4.0/components/esp_hw_support/
Dsleep_retention.c119 … 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.4.0/components/soc/esp32/include/soc/
Dsoc.h234 #define SOC_DROM_HIGH 0x3F800000 macro
/hal_espressif-3.4.0/components/bootloader_support/src/
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()