From: "Laszlo Ersek" <lersek@redhat.com>
To: devel@edk2.groups.io, jianyong.wu@arm.com,
ardb+tianocore@kernel.org, sami.mujawar@arm.com
Cc: hao.a.wu@intel.com, justin.he@arm.com
Subject: Re: [edk2-devel] [PATCH v2 0/5] Enable Cloud Hypervisor support in edk2
Date: Tue, 18 May 2021 19:46:16 +0200 [thread overview]
Message-ID: <01e73dba-7d53-dade-3074-37d10d796eae@redhat.com> (raw)
In-Reply-To: <20210517065032.82423-1-jianyong.wu@arm.com>
On 05/17/21 08:50, Jianyong Wu wrote:
> 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
>
Confirming that I got this in my review queue. I'll need some time to
get to it; please bear with me.
Thanks,
Laszlo
prev parent reply other threads:[~2021-05-18 17:46 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
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 ` Laszlo Ersek [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=01e73dba-7d53-dade-3074-37d10d796eae@redhat.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox