Kvmtool is a virtual machine manager that enables hosting KVM guests. ARM is working to enhance kvmtool support to enable launching of KVM guest with UEFI support.
This patch series enables UEFI support for kvmtool's emulated ARM platform and is required to allow testing of kvmtool enhancements. Note: 1. These kvmtool platform support patches currently expose the kvmtool provided DT to the OS. Support for ACPI is planned, using Dynamic Tables Framework and should be available in the near future. 2. This new platform port can only be used with the updated kvmtool that is currently under development review. The changes can be seen at https://github.com/samimujawar/edk2/tree/299_kvmtool_plat_support_v1 Sami Mujawar (6): PcAtChipsetPkg: Add MMIO Support to SerialIo Lib PcAtChipsetPkg: Add MMIO Support to RTC driver MdeModulePkg: Map persistent (NV) memory ArmVirtPkg: Save DT base address from X0 in PCD ArmVirtPkg: Add kvmtool platform driver ArmVirtPkg: Support for kvmtool emulated platform ArmVirtPkg/ArmVirtKvmTool.dsc | 390 ++++++++++++++++++++ ArmVirtPkg/ArmVirtKvmTool.fdf | 297 +++++++++++++++ ArmVirtPkg/ArmVirtPkg.dec | 12 +- ArmVirtPkg/KvmtoolPlatformDxe/KvmtoolPlatformDxe.c | 211 +++++++++++ ArmVirtPkg/KvmtoolPlatformDxe/KvmtoolPlatformDxe.inf | 60 +++ ArmVirtPkg/PrePi/AArch64/ModuleEntryPoint.S | 9 +- MdeModulePkg/MdeModulePkg.dec | 9 + MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariable.c | 77 +++- MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf | 6 + PcAtChipsetPkg/Library/SerialIoLib/SerialIoLib.inf | 4 + PcAtChipsetPkg/Library/SerialIoLib/SerialPortLib.c | 98 ++++- PcAtChipsetPkg/PcAtChipsetPkg.dec | 8 + PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcRtc.c | 38 +- PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcRtcEntry.c | 112 +++++- PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf | 8 + 15 files changed, 1309 insertions(+), 30 deletions(-) create mode 100644 ArmVirtPkg/ArmVirtKvmTool.dsc create mode 100644 ArmVirtPkg/ArmVirtKvmTool.fdf create mode 100644 ArmVirtPkg/KvmtoolPlatformDxe/KvmtoolPlatformDxe.c create mode 100644 ArmVirtPkg/KvmtoolPlatformDxe/KvmtoolPlatformDxe.inf -- 'Guid(CE165669-3EF3-493F-B85D-6190EE5B9759)' _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

