Home
last modified time | relevance | path

Searched refs:SOC_DIRAM_IRAM_HIGH (Results 1 – 12 of 12) sorted by relevance

/hal_espressif-latest/components/bootloader_support/include/
Dbootloader_memory_utils.h86 return ((intptr_t)p >= SOC_DIRAM_IRAM_LOW && (intptr_t)p < SOC_DIRAM_IRAM_HIGH); in esp_ptr_in_diram_iram()
161 return (void *) ( SOC_DIRAM_DRAM_LOW + (SOC_DIRAM_IRAM_HIGH - (intptr_t)p) - 4); in esp_ptr_diram_iram_to_dram()
/hal_espressif-latest/components/esp_hw_support/port/esp32c2/
Dcpu_region_protect.c19 #define IRAM_END SOC_DIRAM_IRAM_HIGH
90 PMP_ENTRY_SET(1, SOC_DIRAM_IRAM_HIGH, PMP_TOR | RWX); in esp_cpu_configure_region_protection()
/hal_espressif-latest/components/hal/include/hal/
Dmemprot_types.h54 #define MEMP_HAL_CHECK_IRAM_ADDR_IN_RANGE(x) if (x < SOC_DIRAM_IRAM_LOW || x >= SOC_DIRAM_IRAM_HIGH
/hal_espressif-latest/components/esp_hw_support/include/
Desp_memory_utils.h86 return ((intptr_t)p >= SOC_DIRAM_IRAM_LOW && (intptr_t)p < SOC_DIRAM_IRAM_HIGH); in esp_ptr_in_diram_iram()
161 return (void *) ( SOC_DIRAM_DRAM_LOW + (SOC_DIRAM_IRAM_HIGH - (intptr_t)p) - 4); in esp_ptr_diram_iram_to_dram()
/hal_espressif-latest/components/soc/esp32c2/include/soc/
Dsoc.h177 #define SOC_DIRAM_IRAM_HIGH 0x403C0000 macro
/hal_espressif-latest/components/soc/esp32c6/include/soc/
Dsoc.h178 #define SOC_DIRAM_IRAM_HIGH 0x40880000 macro
/hal_espressif-latest/components/soc/esp32s2/include/soc/
Dsoc.h182 #define SOC_DIRAM_IRAM_HIGH 0x40070000 macro
/hal_espressif-latest/components/soc/esp32h2/include/soc/
Dsoc.h176 #define SOC_DIRAM_IRAM_HIGH 0x40850000 macro
/hal_espressif-latest/components/soc/esp32c3/include/soc/
Dsoc.h175 #define SOC_DIRAM_IRAM_HIGH 0x403E0000 macro
/hal_espressif-latest/components/soc/esp32s3/include/soc/
Dsoc.h198 #define SOC_DIRAM_IRAM_HIGH 0x403E0000 macro
/hal_espressif-latest/components/soc/esp32/include/soc/
Dsoc.h199 #define SOC_DIRAM_IRAM_HIGH 0x400C0000 macro
/hal_espressif-latest/components/bootloader_support/src/
Desp_image_format.c442 …if (!no_recurse && bootloader_util_regions_overlap(SOC_DIRAM_IRAM_LOW, SOC_DIRAM_IRAM_HIGH, load_a… in verify_load_addresses()
454 dram_load_end = (intptr_t)esp_ptr_diram_iram_to_dram((void *)SOC_DIRAM_IRAM_HIGH); in verify_load_addresses()