Searched refs:actual_mapped_len (Results 1 – 5 of 5) sorted by relevance
/hal_espressif-latest/components/esp_psram/ |
D | esp_psram.c | 208 uint32_t actual_mapped_len = 0; in esp_psram_init() local 209 …0, (intptr_t)v_start_8bit_aligned, MMU_PAGE_TO_BYTES(start_page), size_to_map, &actual_mapped_len); in esp_psram_init() 210 start_page += BYTES_TO_MMU_PAGE(actual_mapped_len); in esp_psram_init() 211 ESP_EARLY_LOGV(TAG, "8bit-aligned-region: actual_mapped_len is 0x%x bytes", actual_mapped_len); in esp_psram_init() 213 …he_bus_mask_t bus_mask = cache_ll_l1_get_bus(0, (uint32_t)v_start_8bit_aligned, actual_mapped_len); in esp_psram_init() 216 bus_mask = cache_ll_l1_get_bus(1, (uint32_t)v_start_8bit_aligned, actual_mapped_len); in esp_psram_init() 250 …, (intptr_t)v_start_32bit_aligned, MMU_PAGE_TO_BYTES(start_page), size_to_map, &actual_mapped_len); in esp_psram_init() 251 … ESP_EARLY_LOGV(TAG, "32bit-aligned-region: actual_mapped_len is 0x%x bytes", actual_mapped_len); in esp_psram_init() 253 …e_bus_mask_t bus_mask = cache_ll_l1_get_bus(0, (uint32_t)v_start_32bit_aligned, actual_mapped_len); in esp_psram_init()
|
/hal_espressif-latest/components/bootloader_support/bootloader_flash/src/ |
D | bootloader_flash.c | 217 uint32_t actual_mapped_len = 0; in bootloader_mmap() local 218 …_TARGET_FLASH0, MMU_BLOCK0_VADDR, src_paddr_aligned, size_after_paddr_aligned, &actual_mapped_len); in bootloader_mmap() 219 … and vaddr=0x%08x, 0x%x bytes are mapped", src_paddr_aligned, MMU_BLOCK0_VADDR, actual_mapped_len); in bootloader_mmap() 321 uint32_t actual_mapped_len = 0; in bootloader_flash_read_allow_decrypt() local 322 …n(0, MMU_TARGET_FLASH0, FLASH_READ_VADDR, map_at, SPI_FLASH_MMU_PAGE_SIZE - 1, &actual_mapped_len); in bootloader_flash_read_allow_decrypt()
|
/hal_espressif-latest/zephyr/port/bootloader/ |
D | bootloader_flash.c | 212 uint32_t actual_mapped_len = 0; in esp_rom_flash_mmap() local 213 …_TARGET_FLASH0, MMU_BLOCK0_VADDR, src_paddr_aligned, size_after_paddr_aligned, &actual_mapped_len); in esp_rom_flash_mmap() 214 … and vaddr=0x%08x, 0x%x bytes are mapped", src_paddr_aligned, MMU_BLOCK0_VADDR, actual_mapped_len); in esp_rom_flash_mmap() 316 uint32_t actual_mapped_len = 0; in bootloader_flash_read_allow_decrypt() local 317 …n(0, MMU_TARGET_FLASH0, FLASH_READ_VADDR, map_at, SPI_FLASH_MMU_PAGE_SIZE - 1, &actual_mapped_len); in bootloader_flash_read_allow_decrypt()
|
/hal_espressif-latest/components/bootloader_support/src/ |
D | bootloader_utility.c | 863 uint32_t actual_mapped_len = 0; local 864 …on(0, MMU_TARGET_FLASH0, drom_load_addr_aligned, drom_addr_aligned, drom_size, &actual_mapped_len); 865 …addr=0x%08x, 0x%x bytes are mapped", drom_addr_aligned, drom_load_addr_aligned, actual_mapped_len); 882 …on(0, MMU_TARGET_FLASH0, irom_load_addr_aligned, irom_addr_aligned, irom_size, &actual_mapped_len); 883 …addr=0x%08x, 0x%x bytes are mapped", irom_addr_aligned, irom_load_addr_aligned, actual_mapped_len);
|
/hal_espressif-latest/components/esp_mm/ |
D | esp_mmu_map.c | 390 uint32_t actual_mapped_len = 0; in s_do_mapping() local 391 mmu_hal_map_region(0, target, vaddr_start, paddr_start, size, &actual_mapped_len); in s_do_mapping() 394 mmu_hal_map_region(1, target, vaddr_start, paddr_start, size, &actual_mapped_len); in s_do_mapping() 410 ESP_EARLY_LOGV(TAG, "actual_mapped_len is 0x%"PRIx32, actual_mapped_len); in s_do_mapping()
|