From: Neil Stainton Date: Mon, 20 Aug 2018 15:46:19 +0000 (+0000) Subject: u-boot: align cache flushes in load_elf_image_shdr to line boundaries X-Git-Tag: v2018.09-rc3~17 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8744d6c5048f41b2ae3a42696af2ea3b09c17e4b;p=oweals%2Fu-boot.git u-boot: align cache flushes in load_elf_image_shdr to line boundaries Prevent cache warning messages when using the 'bootelf' command on an Arm target. Round down each section start address and round up the respective section end to the nearest cache line. Currently when using bootelf to load an image on Arm, several warnings such as the following appear in the console: CACHE: Misaligned operation at range [87800000, 8783c5e0] CACHE: Misaligned operation at range [8783c5e0, 8784b3e0] Signed-off-by: Neil Stainton [trini: Reword commit message to include the info after the --- which included the Signed-off-by line, and change ' at ' to '@'] Signed-off-by: Tom Rini --- diff --git a/cmd/elf.c b/cmd/elf.c index 22cba58c68..c8e6e7424c 100644 --- a/cmd/elf.c +++ b/cmd/elf.c @@ -115,7 +115,10 @@ static unsigned long load_elf64_image_shdr(unsigned long addr) memcpy((void *)(uintptr_t)shdr->sh_addr, (const void *)image, shdr->sh_size); } - flush_cache((ulong)shdr->sh_addr, shdr->sh_size); + flush_cache(rounddown(shdr->sh_addr, ARCH_DMA_MINALIGN), + roundup((shdr->sh_addr + shdr->sh_size), + ARCH_DMA_MINALIGN) - + rounddown(shdr->sh_addr, ARCH_DMA_MINALIGN)); } if (ehdr->e_machine == EM_PPC64 && (ehdr->e_flags &