aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firmware/efi/efi-init.c
diff options
context:
space:
mode:
authorMa Wupeng <mawupeng1@huawei.com>2022-06-14 17:21:52 +0800
committerArd Biesheuvel <ardb@kernel.org>2022-06-15 12:11:19 +0200
commit6365a1935c5151455812e96d8de434c551dc0d98 (patch)
tree38866d9dd01dbfe2d82b4eada37e356064f591d0 /drivers/firmware/efi/efi-init.c
parentLinux 5.19-rc1 (diff)
downloadlinux-dev-6365a1935c5151455812e96d8de434c551dc0d98.tar.xz
linux-dev-6365a1935c5151455812e96d8de434c551dc0d98.zip
efi: Make code to find mirrored memory ranges generic
Commit b05b9f5f9dcf ("x86, mirror: x86 enabling - find mirrored memory ranges") introduce the efi_find_mirror() function on x86. In order to reuse the API we make it public. Arm64 can support mirrored memory too, so function efi_find_mirror() is added to efi_init() to this support for arm64. Since efi_init() is shared by ARM, arm64 and riscv, this patch will bring mirror memory support for these architectures, but this support is only tested in arm64. Signed-off-by: Ma Wupeng <mawupeng1@huawei.com> Link: https://lore.kernel.org/r/20220614092156.1972846-2-mawupeng1@huawei.com [ardb: fix subject to better reflect the payload] Acked-by: Mike Rapoport <rppt@linux.ibm.com> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'drivers/firmware/efi/efi-init.c')
-rw-r--r--drivers/firmware/efi/efi-init.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/firmware/efi/efi-init.c b/drivers/firmware/efi/efi-init.c
index b2c829e95bd1..3928dbff76d0 100644
--- a/drivers/firmware/efi/efi-init.c
+++ b/drivers/firmware/efi/efi-init.c
@@ -240,6 +240,7 @@ void __init efi_init(void)
* And now, memblock is fully populated, it is time to do capping.
*/
early_init_dt_check_for_usable_mem_range();
+ efi_find_mirror();
efi_esrt_init();
efi_mokvar_table_init();