public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v3 0/3] Enable Cloud Hypervisor support in edk2
@ 2021-06-28  9:55 Jianyong Wu
  2021-06-28  9:55 ` [PATCH v3 1/3] Acpi: reimplement PlatformHasAcpi for Cloud Hypervisor Jianyong Wu
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Jianyong Wu @ 2021-06-28  9:55 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:

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                 | 397 ++++++++++++++++++
 ArmVirtPkg/ArmVirtCloudHv.fdf                 | 274 ++++++++++++
 .../CloudHvAcpiPlatformDxe.inf                |  47 +++
 .../CloudHvHasAcpiDtDxe.inf                   |  43 ++
 .../CloudHvAcpiPlatformDxe/CloudHvAcpi.c      | 140 ++++++
 .../CloudHvHasAcpiDtDxe.c                     |  69 +++
 7 files changed, 976 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] 13+ messages in thread

end of thread, other threads:[~2021-06-29  9:19 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-28  9:55 [PATCH v3 0/3] Enable Cloud Hypervisor support in edk2 Jianyong Wu
2021-06-28  9:55 ` [PATCH v3 1/3] Acpi: reimplement PlatformHasAcpi for Cloud Hypervisor Jianyong Wu
2021-06-28 12:45   ` Sami Mujawar
2021-06-29  2:25     ` Jianyong Wu
2021-06-28  9:55 ` [PATCH v3 2/3] Acpi: Install Acpi tables for Cloud hypervisor Jianyong Wu
2021-06-28 12:22   ` Sami Mujawar
2021-06-29  2:29     ` Jianyong Wu
2021-06-28  9:55 ` [PATCH v3 3/3] ArmVirtCloudHv: support Cloud Hypervisor in edk2 Jianyong Wu
2021-06-28 12:43   ` Sami Mujawar
2021-06-29  2:26     ` Jianyong Wu
2021-06-29  6:03     ` Jianyong Wu
2021-06-29  8:16       ` Sami Mujawar
2021-06-29  9:19         ` Jianyong Wu

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