I started out tweaking some things for kexec, and then things got out of hand...
Anyway, there is hopefully some stuff here that we will reuse, but I am not getting my hopes up that this will land upstream unmodified.
The main premise of these patches is that, in order to support kexec, we need to add code to the kernel that is able to deal with the state of the firmware after SetVirtualAddressMap() has been called. However, if we are going to deal with that anyway, why not make that the default state, and have only a single code path for both cases.
This means SVAM() needs to move to the stub, and hence the code that invents the layout needs to move with it. The result is that the kernel proper is entered with the virt_addr members of all EFI_MEMORY_RUNTIME regions assigned, and the mapping installled in UEFI. The kernel proper needs to set up the page tables, and switch to them while performing the runtime services calls. Note that there is also an efi_to_phys() to translate the values of the fw_vendor and tables fields of the EFI system table. Again, this is something we need to do anyway under kexec, or we end up handing over state between one kernel and the next, which implies different code paths between non-kexec and kexec.
One thing that may stand out is the reordering of the memory map. The reason for doing this is that we can use the same memory map as input to SVAM(). The alternative is allocating memory for it using boot services, but that clutters up the existing logic a bit between getting the memory map, populating the fdt, and loop again if it didn't fit. The current code works perfectly fine, but I am aware that it is an acquired taste :-)
The first 2 patches are stuff that is missing from Matt Fleming's efi-next branch, which is what these patches are based on, so I included them for completeness. The meat is in patch #9, everything before that is groundwork and/or fixes, after that is dropping stuff that we don't need any longer.
Ard Biesheuvel (9): arm64/efi: reserve regions of type ACPI_MEMORY_NVS arm64/efi: drop redundant set_bit(EFI_CONFIG_TABLES) arm64/efi: use UEFI memory map unconditionally if available arm64/mm: add explicit struct_mm argument to __create_mapping() arm64/mm: add create_pgd_mapping() to create private page tables efi: split off remapping code from efi_config_init() arm64/efi: move SetVirtualAddressMap() to UEFI stub arm64/efi: remove free_boot_services() and friends arm64/efi: remove idmap manipulations from UEFI code
Leif Lindholm (1): arm64: ignore DT memreserve entries when booting in UEFI mode
Semen Protsenko (1): efi/arm64: Store Runtime Services revision
arch/arm64/include/asm/efi.h | 23 ++- arch/arm64/include/asm/mmu.h | 12 +- arch/arm64/kernel/efi.c | 368 +++++++++++++------------------------ arch/arm64/kernel/setup.c | 2 +- arch/arm64/mm/init.c | 4 +- arch/arm64/mm/mmu.c | 57 +++--- drivers/firmware/efi/efi.c | 49 +++-- drivers/firmware/efi/libstub/fdt.c | 110 ++++++++++- include/linux/efi.h | 2 + 9 files changed, 328 insertions(+), 299 deletions(-)