diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2022-10-17 16:06:39 +0200 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2022-11-09 12:42:01 +0100 |
commit | aaeb3fc614d65ec5c0b838ed1afb59c3f0f04643 (patch) | |
tree | a22b7934b5f0065bab33a177b2c907108dc62ff2 /arch | |
parent | efi: libstub: Deduplicate ftrace command line argument filtering (diff) | |
download | linux-aaeb3fc614d65ec5c0b838ed1afb59c3f0f04643.tar.xz linux-aaeb3fc614d65ec5c0b838ed1afb59c3f0f04643.zip |
arm64: efi: Move dcache cleaning of loaded image out of efi_enter_kernel()
The efi_enter_kernel() routine will be shared between the existing EFI
stub and the zboot decompressor, and the version of
dcache_clean_to_poc() that the core kernel exports to the stub will not
be available in the latter case.
So move the handling into the .c file which will remain part of the stub
build that integrates directly with the kernel proper.
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm64/kernel/efi-entry.S | 9 | ||||
-rw-r--r-- | arch/arm64/kernel/image-vars.h | 1 |
2 files changed, 0 insertions, 10 deletions
diff --git a/arch/arm64/kernel/efi-entry.S b/arch/arm64/kernel/efi-entry.S index 61a87fa1c305..1c1be004a271 100644 --- a/arch/arm64/kernel/efi-entry.S +++ b/arch/arm64/kernel/efi-entry.S @@ -24,15 +24,6 @@ SYM_CODE_START(efi_enter_kernel) mov x20, x1 // DTB address /* - * Clean the copied Image to the PoC, and ensure it is not shadowed by - * stale icache entries from before relocation. - */ - ldr w1, =kernel_size - add x1, x0, x1 - bl dcache_clean_poc - ic ialluis - - /* * Clean the remainder of this routine to the PoC * so that we can safely disable the MMU and caches. */ diff --git a/arch/arm64/kernel/image-vars.h b/arch/arm64/kernel/image-vars.h index 8151412653de..74d20835cf91 100644 --- a/arch/arm64/kernel/image-vars.h +++ b/arch/arm64/kernel/image-vars.h @@ -10,7 +10,6 @@ #error This file should only be included in vmlinux.lds.S #endif -PROVIDE(__efistub_kernel_size = _edata - _text); PROVIDE(__efistub_primary_entry_offset = primary_entry - _text); /* |