public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Ard Biesheuvel" <ardb@kernel.org>
To: Jianyong Wu <jianyong.wu@arm.com>
Cc: edk2-devel-groups-io <devel@edk2.groups.io>,
	Laszlo Ersek <lersek@redhat.com>,
	 Sami Mujawar <sami.mujawar@arm.com>,
	Ard Biesheuvel <ardb+tianocore@kernel.org>,
	justin.he@arm.com
Subject: Re: [PATCH v4 0/3] Enable Cloud Hypervisor support in edk2
Date: Fri, 16 Jul 2021 19:27:21 +0200	[thread overview]
Message-ID: <CAMj1kXGpKo7Z-+xpLY5Sz+0RRSuXGTmZFWxB6WhdoRVzyv-fxQ@mail.gmail.com> (raw)
In-Reply-To: <CAMj1kXHsk=7jp7YVXkXPnM6Gv_PW4ZDvMOMgzFkKTMeWJxhzDA@mail.gmail.com>

On Fri, 16 Jul 2021 at 19:25, Ard Biesheuvel <ardb@kernel.org> wrote:
>
> On Mon, 5 Jul 2021 at 12:06, Jianyong Wu <jianyong.wu@arm.com> 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 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
> >
>
> Sami, any thoughts on this code?
>


... or did you already merge the entire series? (My mailbox is
overflowing a bit after 4 weeks of vacation :-))


>
> >  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
> >

  reply	other threads:[~2021-07-16 17:27 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 [this message]
2021-07-19  8:37     ` Sami Mujawar

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=CAMj1kXGpKo7Z-+xpLY5Sz+0RRSuXGTmZFWxB6WhdoRVzyv-fxQ@mail.gmail.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