]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
efi_loader: avoid duplicate weak invalidate_icache_all()
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Sun, 16 Jun 2024 17:31:05 +0000 (19:31 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 3 Jul 2024 20:44:03 +0000 (14:44 -0600)
If multiple weak implementations of a weak function exist, it is unclear
which one the linker should chose. cmd/cache.c already defines a weak
invalidate_icache_all().

We don't need a call to invalidate_icache_all() on x86.
ARM, RISC-V, and Sandbox provide an implementation.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
lib/efi_loader/efi_image_loader.c
lib/efi_loader/efi_runtime.c

index 60424360328994ac0ce8782ac1d37f575e804e5d..45dc5b6b244e73d4479abfc12ee9201a8f0111cb 100644 (file)
@@ -173,11 +173,6 @@ static efi_status_t efi_loader_relocate(const IMAGE_BASE_RELOCATION *rel,
        return EFI_SUCCESS;
 }
 
-void __weak invalidate_icache_all(void)
-{
-       /* If the system doesn't support icache_all flush, cross our fingers */
-}
-
 /**
  * efi_set_code_and_data_type() - determine the memory types to be used for code
  *                               and data.
@@ -986,7 +981,13 @@ efi_status_t efi_load_pe(struct efi_loaded_image_obj *handle,
        /* Flush cache */
        flush_cache((ulong)efi_reloc,
                    ALIGN(virt_size, EFI_CACHELINE_SIZE));
-       invalidate_icache_all();
+
+       /*
+        * If on x86 a write affects a prefetched instruction,
+        * the prefetch queue is invalidated.
+        */
+       if (!CONFIG_IS_ENABLED(X86))
+               invalidate_icache_all();
 
        /* Populate the loaded image interface bits */
        loaded_image_info->image_base = efi_reloc;
index 011bcd04836d6e6b339a0c66b63deaa7c6e02e1a..05369c47b01bcd975d0db4d3f362f3af65955722 100644 (file)
@@ -783,7 +783,12 @@ void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map)
        lastoff = offset;
 #endif
 
-        invalidate_icache_all();
+       /*
+        * If on x86 a write affects a prefetched instruction,
+        * the prefetch queue is invalidated.
+        */
+       if (!CONFIG_IS_ENABLED(X86))
+               invalidate_icache_all();
 }
 
 /**