public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v2 0/5] Enable Cloud Hypervisor support in edk2
@ 2021-05-17  6:50 Jianyong Wu
  2021-05-17  6:50 ` [PATCH v2 1/5] ArmVirtPkg: Library: Memory initialization for Cloud Hypervisor Jianyong Wu
                   ` (5 more replies)
  0 siblings, 6 replies; 30+ messages in thread
From: Jianyong Wu @ 2021-05-17  6:50 UTC (permalink / raw)
  To: devel, lersek, ardb+tianocore, sami.mujawar
  Cc: hao.a.wu, 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 three parts to be considered to do this enablements, that is:
  1. memory initialization

  2. specific ACPI service implementation
     compared with qemu, there is no device like Fw-cfg, so we has no
     elegant way to get the RSDP address. A specific ACPI implementation is
     introduced here.

  3. build configuration file

This enablement bases on the implentation for qemu so some code is
borrowed.

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

Jianyong Wu (5):
  ArmVirtPkg: Library: Memory initialization for Cloud Hypervisor
  MdeMoudlePkg: introduce new PCD for Acpi/rsdp
  ArmVirtPkg: enable ACPI for cloud hypervisor
  ArmVirtPkg: Introduce Cloud Hypervisor to edk2 family
  Maintainers: update Maintainers file as new files/folders created

 MdeModulePkg/MdeModulePkg.dec                 |   7 +
 ArmVirtPkg/ArmVirtCloudHv.dsc                 | 455 ++++++++++++++++++
 ArmVirtPkg/ArmVirtCloudHv.fdf                 | 292 +++++++++++
 .../CloudHvAcpiPlatformDxe.inf                |  51 ++
 .../CloudHvHasAcpiDtDxe.inf                   |  43 ++
 .../CloudHvVirtMemInfoPeiLib.inf              |  47 ++
 .../CloudHvAcpiPlatformDxe/CloudHvAcpi.c      |  73 +++
 .../CloudHvHasAcpiDtDxe.c                     |  69 +++
 .../CloudHvVirtMemInfoLib.c                   |  94 ++++
 .../CloudHvVirtMemInfoPeiLibConstructor.c     | 100 ++++
 ArmVirtPkg/ArmVirtCloudHvFvMain.fdf.inc       | 169 +++++++
 Maintainers.txt                               |   7 +
 12 files changed, 1407 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/Library/CloudHvVirtMemInfoLib/CloudHvVirtMemInfoPeiLib.inf
 create mode 100644 ArmVirtPkg/CloudHvAcpiPlatformDxe/CloudHvAcpi.c
 create mode 100644 ArmVirtPkg/CloudHvPlatformHasAcpiDtDxe/CloudHvHasAcpiDtDxe.c
 create mode 100644 ArmVirtPkg/Library/CloudHvVirtMemInfoLib/CloudHvVirtMemInfoLib.c
 create mode 100644 ArmVirtPkg/Library/CloudHvVirtMemInfoLib/CloudHvVirtMemInfoPeiLibConstructor.c
 create mode 100644 ArmVirtPkg/ArmVirtCloudHvFvMain.fdf.inc

-- 
2.17.1


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

end of thread, other threads:[~2021-06-01  7:51 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-17  6:50 [PATCH v2 0/5] Enable Cloud Hypervisor support in edk2 Jianyong Wu
2021-05-17  6:50 ` [PATCH v2 1/5] ArmVirtPkg: Library: Memory initialization for Cloud Hypervisor Jianyong Wu
2021-05-18 20:20   ` Sami Mujawar
2021-05-27  2:18     ` Jianyong Wu
2021-05-19  6:07   ` [edk2-devel] " Laszlo Ersek
2021-05-19  6:11     ` Laszlo Ersek
2021-05-27  6:39       ` Jianyong Wu
2021-05-17  6:50 ` [PATCH v2 2/5] MdeMoudlePkg: introduce new PCD for Acpi/rsdp Jianyong Wu
2021-05-18 20:25   ` Sami Mujawar
2021-05-27  2:31     ` Jianyong Wu
2021-05-19  6:17   ` [edk2-devel] " Laszlo Ersek
2021-05-27  2:42     ` Jianyong Wu
2021-05-17  6:50 ` [PATCH v2 3/5] ArmVirtPkg: enable ACPI for cloud hypervisor Jianyong Wu
2021-05-18 20:26   ` Sami Mujawar
2021-05-27  2:57     ` Jianyong Wu
2021-05-19  6:25   ` [edk2-devel] " Laszlo Ersek
2021-05-27  3:18     ` Jianyong Wu
2021-05-17  6:50 ` [PATCH v2 4/5] ArmVirtPkg: Introduce Cloud Hypervisor to edk2 family Jianyong Wu
2021-05-18 20:26   ` Sami Mujawar
2021-05-27  6:19     ` Jianyong Wu
2021-05-29  7:43       ` Sami Mujawar
2021-06-01  7:51         ` Jianyong Wu
2021-05-19  6:36   ` [edk2-devel] " Laszlo Ersek
2021-05-27  6:23     ` Jianyong Wu
2021-05-17  6:50 ` [PATCH v2 5/5] Maintainers: update Maintainers file as new files/folders created Jianyong Wu
2021-05-18 20:26   ` Sami Mujawar
2021-05-19  6:55     ` Laszlo Ersek
2021-05-27  6:28       ` Jianyong Wu
2021-05-19  6:39   ` [edk2-devel] " Laszlo Ersek
2021-05-18 17:46 ` [edk2-devel] [PATCH v2 0/5] Enable Cloud Hypervisor support in edk2 Laszlo Ersek

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