public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
To: Vijayenthiran Subramaniam <vijayenthiran.subramaniam@arm.com>
Cc: "edk2-devel@lists.01.org" <edk2-devel@lists.01.org>,
	Leif Lindholm <leif.lindholm@linaro.org>,
	 Thomas Panakamattam Abraham <thomas.abraham@arm.com>
Subject: Re: [PATCH v2 edk2-platforms 0/8] Platform/ARM/Sgi: Add support for virtio network device
Date: Wed, 19 Dec 2018 17:08:06 +0100	[thread overview]
Message-ID: <CAKv+Gu_v=z4t9C0sxa8xLkWBDBWwbib=n6npPCNOaafB565FLA@mail.gmail.com> (raw)
In-Reply-To: <1544806699-25401-1-git-send-email-vijayenthiran.subramaniam@arm.com>

On Fri, 14 Dec 2018 at 17:59, Vijayenthiran Subramaniam
<vijayenthiran.subramaniam@arm.com> wrote:
>
> Changes since v1:
> - Rebased the series against latest edk2-platforms
>
> This patch series adds support for virtio network controller found in ARM SGI
> plaform's fast models. The first patch in this series restructure the
> virtio device registration code to allow registration of additional virtio
> devices. The second patch adds support for the virtio network device. The rest
> of the patches update the ACPI tables to add an entry for the virtio network
> device and corresponding PCDs for virtio block and network device.
>
> Daniil Egranov (4):
>   Platform/ARM/SgiPkg: Restructure virtio device registration
>   Platform/ARM/SgiPkg: Add support for virtio net device
>   Sgi575: AcpiTables: Use PCDs for virtio disk
>   Sgi575: AcpiTables: Add entry for virtio network device
>
> Vijayenthiran Subramaniam (4):
>   SgiClark.Ares: AcpiTables: Use PCDs for virtio disk
>   SgiClark.Ares: AcpiTables: Add entry for virtio network device
>   SgiClark.Helios: AcpiTables: Use PCDs for virtio disk
>   SgiClark.Helios: AcpiTables: Add entry for virtio network device
>

Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

Pushed as c718cc037860..54a0e7ae1289

Thanks!

>  Platform/ARM/SgiPkg/SgiPlatform.dec                                          |  14 ++-
>  Platform/ARM/SgiPkg/SgiPlatform.dsc                                          |  21 +++-
>  Platform/ARM/SgiPkg/SgiPlatform.fdf                                          |   4 +
>  Platform/ARM/SgiPkg/AcpiTables/Sgi575AcpiTables.inf                          |   7 ++
>  Platform/ARM/SgiPkg/AcpiTables/SgiClarkAresAcpiTables.inf                    |   7 ++
>  Platform/ARM/SgiPkg/AcpiTables/SgiClarkHeliosAcpiTables.inf                  |   7 ++
>  Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.inf                      |  11 +-
>  Platform/ARM/SgiPkg/Include/Guid/SgiVirtioDevicesFormSet.h                   |  24 ++++
>  Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c                        |  14 +--
>  Platform/ARM/SgiPkg/Drivers/PlatformDxe/{VirtioBlockIo.c => VirtioDevices.c} | 117 +++++++++++++++-----
>  Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dsdt.asl                               |  28 ++++-
>  Platform/ARM/SgiPkg/AcpiTables/SgiClarkAres/Dsdt.asl                         |  29 ++++-
>  Platform/ARM/SgiPkg/AcpiTables/SgiClarkHelios/Dsdt.asl                       |  28 ++++-
>  13 files changed, 260 insertions(+), 51 deletions(-)
>  create mode 100644 Platform/ARM/SgiPkg/Include/Guid/SgiVirtioDevicesFormSet.h
>  rename Platform/ARM/SgiPkg/Drivers/PlatformDxe/{VirtioBlockIo.c => VirtioDevices.c} (25%)
>
> --
> 2.7.4
>


  parent reply	other threads:[~2018-12-19 16:08 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-14 16:58 [PATCH v2 edk2-platforms 0/8] Platform/ARM/Sgi: Add support for virtio network device Vijayenthiran Subramaniam
2018-12-14 16:58 ` [PATCH v2 edk2-platforms 1/8] Platform/ARM/SgiPkg: Restructure virtio device registration Vijayenthiran Subramaniam
2018-12-14 16:58 ` [PATCH v2 edk2-platforms 2/8] Platform/ARM/SgiPkg: Add support for virtio net device Vijayenthiran Subramaniam
2018-12-14 16:58 ` [PATCH v2 edk2-platforms 3/8] Sgi575: AcpiTables: Use PCDs for virtio disk Vijayenthiran Subramaniam
2018-12-14 16:58 ` [PATCH v2 edk2-platforms 4/8] Sgi575: AcpiTables: Add entry for virtio network device Vijayenthiran Subramaniam
2018-12-14 16:58 ` [PATCH v2 edk2-platforms 5/8] SgiClark.Ares: AcpiTables: Use PCDs for virtio disk Vijayenthiran Subramaniam
2018-12-14 16:58 ` [PATCH v2 edk2-platforms 6/8] SgiClark.Ares: AcpiTables: Add entry for virtio network device Vijayenthiran Subramaniam
2019-02-26 13:16   ` Vijayenthiran Subramaniam
2019-02-26 16:17     ` Ard Biesheuvel
2018-12-14 16:58 ` [PATCH v2 edk2-platforms 7/8] SgiClark.Helios: AcpiTables: Use PCDs for virtio disk Vijayenthiran Subramaniam
2018-12-14 16:58 ` [PATCH v2 edk2-platforms 8/8] SgiClark.Helios: AcpiTables: Add entry for virtio network device Vijayenthiran Subramaniam
2018-12-19 16:08 ` Ard Biesheuvel [this message]
2018-12-19 16:25   ` [PATCH v2 edk2-platforms 0/8] Platform/ARM/Sgi: Add support " Vijayenthiran Subramaniam

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='CAKv+Gu_v=z4t9C0sxa8xLkWBDBWwbib=n6npPCNOaafB565FLA@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