public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Laszlo Ersek <lersek@redhat.com>
To: edk2-devel-01 <edk2-devel@lists.01.org>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>,
	Jordan Justen <jordan.l.justen@intel.com>
Subject: [PATCH v2 0/7] OvmfPkg, ArmVirtPkg: add and use PCI(E) Capabilities Library
Date: Wed, 23 May 2018 22:21:14 +0200	[thread overview]
Message-ID: <20180523202121.8125-1-lersek@redhat.com> (raw)

Repo:   https://github.com/lersek/edk2.git
Branch: pci_cap_v2

In v2, the new libs are initially introduced under OvmfPkg, rather than
MdePkg. v1 was posted at
<http://mid.mail-archive.com/20180504213637.11266-1-lersek@redhat.com>.

Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Jordan Justen <jordan.l.justen@intel.com>

Thanks,
Laszlo

Laszlo Ersek (7):
  OvmfPkg: introduce PciCapLib
  OvmfPkg: introduce PciCapPciSegmentLib
  OvmfPkg: introduce PciCapPciIoLib
  OvmfPkg: resolve PciCapLib, PciCapPciSegmentLib, PciCapPciIoLib
  ArmVirtPkg: resolve PciCapLib, PciCapPciSegmentLib, PciCapPciIoLib
  OvmfPkg/PciHotPlugInitDxe: convert to PciCapLib
  OvmfPkg/Virtio10Dxe: convert to PciCapLib

 ArmVirtPkg/ArmVirt.dsc.inc                                          |    3 +
 OvmfPkg/Include/IndustryStandard/Virtio10.h                         |    7 +-
 OvmfPkg/Include/Library/PciCapLib.h                                 |  429 +++++++++
 OvmfPkg/Include/Library/PciCapPciIoLib.h                            |   58 ++
 OvmfPkg/Include/Library/PciCapPciSegmentLib.h                       |   82 ++
 OvmfPkg/Library/BasePciCapLib/BasePciCapLib.c                       | 1007 ++++++++++++++++++++
 OvmfPkg/Library/BasePciCapLib/BasePciCapLib.h                       |   60 ++
 OvmfPkg/Library/BasePciCapLib/BasePciCapLib.inf                     |   38 +
 OvmfPkg/Library/BasePciCapPciSegmentLib/BasePciCapPciSegmentLib.c   |  226 +++++
 OvmfPkg/Library/BasePciCapPciSegmentLib/BasePciCapPciSegmentLib.h   |   47 +
 OvmfPkg/Library/BasePciCapPciSegmentLib/BasePciCapPciSegmentLib.inf |   35 +
 OvmfPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.c             |  243 +++++
 OvmfPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.h             |   44 +
 OvmfPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.inf           |   36 +
 OvmfPkg/OvmfPkg.dec                                                 |   14 +
 OvmfPkg/OvmfPkgIa32.dsc                                             |    3 +
 OvmfPkg/OvmfPkgIa32X64.dsc                                          |    3 +
 OvmfPkg/OvmfPkgX64.dsc                                              |    3 +
 OvmfPkg/PciHotPlugInitDxe/PciHotPlugInit.c                          |  267 ++----
 OvmfPkg/PciHotPlugInitDxe/PciHotPlugInit.inf                        |    5 +
 OvmfPkg/Virtio10Dxe/Virtio10.c                                      |  135 +--
 OvmfPkg/Virtio10Dxe/Virtio10.inf                                    |    2 +
 22 files changed, 2485 insertions(+), 262 deletions(-)
 create mode 100644 OvmfPkg/Include/Library/PciCapLib.h
 create mode 100644 OvmfPkg/Include/Library/PciCapPciIoLib.h
 create mode 100644 OvmfPkg/Include/Library/PciCapPciSegmentLib.h
 create mode 100644 OvmfPkg/Library/BasePciCapLib/BasePciCapLib.c
 create mode 100644 OvmfPkg/Library/BasePciCapLib/BasePciCapLib.h
 create mode 100644 OvmfPkg/Library/BasePciCapLib/BasePciCapLib.inf
 create mode 100644 OvmfPkg/Library/BasePciCapPciSegmentLib/BasePciCapPciSegmentLib.c
 create mode 100644 OvmfPkg/Library/BasePciCapPciSegmentLib/BasePciCapPciSegmentLib.h
 create mode 100644 OvmfPkg/Library/BasePciCapPciSegmentLib/BasePciCapPciSegmentLib.inf
 create mode 100644 OvmfPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.c
 create mode 100644 OvmfPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.h
 create mode 100644 OvmfPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.inf

-- 
2.14.1.3.gb7cf6e02401b



             reply	other threads:[~2018-05-23 20:21 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-23 20:21 Laszlo Ersek [this message]
2018-05-23 20:21 ` [PATCH v2 1/7] OvmfPkg: introduce PciCapLib Laszlo Ersek
2018-05-24  7:53   ` Ard Biesheuvel
2018-05-24 14:39     ` Laszlo Ersek
2018-05-24 14:41       ` Ard Biesheuvel
2018-05-24 17:25         ` Laszlo Ersek
2018-05-23 20:21 ` [PATCH v2 2/7] OvmfPkg: introduce PciCapPciSegmentLib Laszlo Ersek
2018-05-24  8:08   ` Ard Biesheuvel
2018-05-24 14:43     ` Laszlo Ersek
2018-05-24 14:55       ` Ard Biesheuvel
2018-05-23 20:21 ` [PATCH v2 3/7] OvmfPkg: introduce PciCapPciIoLib Laszlo Ersek
2018-05-24  8:13   ` Ard Biesheuvel
2018-05-24 14:50     ` Laszlo Ersek
2018-05-24 14:54       ` Ard Biesheuvel
2018-05-24 14:54         ` Ard Biesheuvel
2018-05-24 17:22         ` Laszlo Ersek
2018-05-23 20:21 ` [PATCH v2 4/7] OvmfPkg: resolve PciCapLib, PciCapPciSegmentLib, PciCapPciIoLib Laszlo Ersek
2018-05-24  8:14   ` Ard Biesheuvel
2018-05-23 20:21 ` [PATCH v2 5/7] ArmVirtPkg: " Laszlo Ersek
2018-05-24  8:14   ` Ard Biesheuvel
2018-05-23 20:21 ` [PATCH v2 6/7] OvmfPkg/PciHotPlugInitDxe: convert to PciCapLib Laszlo Ersek
2018-05-24  8:15   ` Ard Biesheuvel
2018-05-23 20:21 ` [PATCH v2 7/7] OvmfPkg/Virtio10Dxe: " Laszlo Ersek
2018-05-24  8:16   ` Ard Biesheuvel
2018-05-24 14:55     ` Laszlo Ersek
2018-05-24 20:04 ` [PATCH v2 0/7] OvmfPkg, ArmVirtPkg: add and use PCI(E) Capabilities Library Laszlo Ersek

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=20180523202121.8125-1-lersek@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