public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v4 0/3] Enable Cloud Hypervisor support in edk2
@ 2021-07-05 10:06 Jianyong Wu
  2021-07-05 10:06 ` [PATCH v4 1/3] Acpi: reimplement PlatformHasAcpi for Cloud Hypervisor Jianyong Wu
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Jianyong Wu @ 2021-07-05 10:06 UTC (permalink / raw)
  To: devel; +Cc: lersek, sami.mujawar, ardb+tianocore, justin.he, jianyong.wu

Cloud Hypervisor is an open source Virtual Machine Monitor (VMM) that
runs on top of KVM. Cloud Hypervisor is implemented in Rust and is based
on the rust-vmm crates. See [1] to find more.

To support UEFI, Cloud Hypervisor is introduced here.
There are 2 parts to be considered to do this enablement, that is:
  1. specific ACPI service implementation compared with qemu, there is no
     device like Fw-cfg, so we have no elegant way to get the RSDP address.
     A specific ACPI implementation is introduced here.

  2. build configuration file for Cloud Hypervisor

Change log:

v3 to v4:
     (1) remove Tpm support in dsc file
     (2) refine Acpi table install code base on Sami's comments in v3

v2 to v3:
     (1) reuse qemu's memory initialization lib as they are in nearly the same
memory laout.
     (2) split Acpi implemetation into PlatformHasAcpi and
InstallAcpiTable.
     (3) remove lots of dependencies from qemu like "*Fwcfg*" lib.
     (4) lots of code cleanup work to let it more approach to edk2 code
style.

[1] https://github.com/cloud-hypervisor/cloud-hypervisor

Jianyong Wu (3):
  Acpi: reimplement PlatformHasAcpi for Cloud Hypervisor
  Acpi: Install Acpi tables for Cloud hypervisor
  ArmVirtCloudHv: support Cloud Hypervisor in edk2

 ArmVirtPkg/ArmVirtPkg.dec                     |   6 +
 ArmVirtPkg/ArmVirtCloudHv.dsc                 | 364 ++++++++++++++++++
 ArmVirtPkg/ArmVirtCloudHv.fdf                 | 258 +++++++++++++
 .../CloudHvAcpiPlatformDxe.inf                |  47 +++
 .../CloudHvHasAcpiDtDxe.inf                   |  43 +++
 .../CloudHvAcpiPlatformDxe/CloudHvAcpi.c      | 155 ++++++++
 .../CloudHvHasAcpiDtDxe.c                     |  69 ++++
 7 files changed, 942 insertions(+)
 create mode 100644 ArmVirtPkg/ArmVirtCloudHv.dsc
 create mode 100644 ArmVirtPkg/ArmVirtCloudHv.fdf
 create mode 100644 ArmVirtPkg/CloudHvAcpiPlatformDxe/CloudHvAcpiPlatformDxe.inf
 create mode 100644 ArmVirtPkg/CloudHvPlatformHasAcpiDtDxe/CloudHvHasAcpiDtDxe.inf
 create mode 100644 ArmVirtPkg/CloudHvAcpiPlatformDxe/CloudHvAcpi.c
 create mode 100644 ArmVirtPkg/CloudHvPlatformHasAcpiDtDxe/CloudHvHasAcpiDtDxe.c

-- 
2.17.1


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-07-19  8:37 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-05 10:06 [PATCH v4 0/3] Enable Cloud Hypervisor support in edk2 Jianyong Wu
2021-07-05 10:06 ` [PATCH v4 1/3] Acpi: reimplement PlatformHasAcpi for Cloud Hypervisor Jianyong Wu
2021-07-05 10:06 ` [PATCH v4 2/3] Acpi: Install Acpi tables for Cloud hypervisor Jianyong Wu
2021-07-06  8:52   ` Sami Mujawar
2021-07-07  1:42     ` Jianyong Wu
2021-07-08  9:25       ` Sami Mujawar
2021-07-05 10:06 ` [PATCH v4 3/3] ArmVirtCloudHv: support Cloud Hypervisor in edk2 Jianyong Wu
2021-07-16 17:25 ` [PATCH v4 0/3] Enable Cloud Hypervisor support " Ard Biesheuvel
2021-07-16 17:27   ` Ard Biesheuvel
2021-07-19  8:37     ` Sami Mujawar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox