public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
To: "edk2-devel@lists.01.org" <edk2-devel@lists.01.org>,
	Ryan Harkin <ryan.harkin@linaro.org>
Cc: Leif Lindholm <leif.lindholm@linaro.org>,
	Ard Biesheuvel <ard.biesheuvel@linaro.org>
Subject: Re: [RFT PATCH 0/3] ArmJunoPkg: move to generic PCI support code
Date: Thu, 30 Mar 2017 11:55:08 +0100	[thread overview]
Message-ID: <CAKv+Gu9=NNVNswAvJ5WkCQypF3JXreEasqs_Kuv9p5Sidt+Z+g@mail.gmail.com> (raw)
In-Reply-To: <20170330104508.22171-1-ard.biesheuvel@linaro.org>

On 30 March 2017 at 11:45, Ard Biesheuvel <ard.biesheuvel@linaro.org> wrote:
> This moves the OHCI/EHCI PCI 'emulation' and the PCIe host bridge driver
> to generic code.
>
> The diffstat says it all.
>

Code can be found here

git://git.linaro.org/people/ard.biesheuvel/uefi-next.git arm-cleanup-combined

with the OpenPlatformPkg dependencies in

git://git.linaro.org/uefi/OpenPlatformPkg.git arm-platform-cleanup


> Ard Biesheuvel (3):
>   ArmPlatformPkg/ArmJunoDxe: use the generic non-discoverable device
>     support
>   ArmPlatformPkg/ArmJunoPkg: add PciHostBridgeLib implementation
>   ArmPlatformPkg/ArmJunoPkg: remove PCI host bridge driver
>
>  ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/ArmJunoDxe.c                                          |  28 +-
>  ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/ArmJunoDxe.inf                                        |   3 +-
>  ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/ArmJunoDxeInternal.h                                  |   5 -
>  ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/PciEmulation.c                                        | 596 ----------------
>  ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/PciEmulation.h                                        | 284 --------
>  ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/PciRootBridgeIo.c                                     | 299 --------
>  ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/PciHostBridge.c                                 | 199 ------
>  ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/PciHostBridge.h                                 | 324 ---------
>  ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/PciHostBridgeDxe.inf                            |  76 --
>  ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/PciHostBridgeResourceAllocation.c               | 642 -----------------
>  ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/PciRootBridge.c                                 | 748 --------------------
>  ArmPlatformPkg/ArmJunoPkg/Library/JunoPciHostBridgeLib/JunoPciHostBridgeLib.c                      | 190 +++++
>  ArmPlatformPkg/ArmJunoPkg/Library/JunoPciHostBridgeLib/JunoPciHostBridgeLib.inf                    |  75 ++
>  ArmPlatformPkg/ArmJunoPkg/{Drivers/PciHostBridgeDxe => Library/JunoPciHostBridgeLib}/XPressRich3.c |  39 +-
>  ArmPlatformPkg/ArmJunoPkg/{Drivers/PciHostBridgeDxe => Library/JunoPciHostBridgeLib}/XPressRich3.h |  20 +-
>  15 files changed, 323 insertions(+), 3205 deletions(-)
>  delete mode 100644 ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/PciEmulation.c
>  delete mode 100644 ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/PciEmulation.h
>  delete mode 100644 ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/PciRootBridgeIo.c
>  delete mode 100644 ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/PciHostBridge.c
>  delete mode 100644 ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/PciHostBridge.h
>  delete mode 100644 ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/PciHostBridgeDxe.inf
>  delete mode 100644 ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/PciHostBridgeResourceAllocation.c
>  delete mode 100644 ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/PciRootBridge.c
>  create mode 100644 ArmPlatformPkg/ArmJunoPkg/Library/JunoPciHostBridgeLib/JunoPciHostBridgeLib.c
>  create mode 100644 ArmPlatformPkg/ArmJunoPkg/Library/JunoPciHostBridgeLib/JunoPciHostBridgeLib.inf
>  rename ArmPlatformPkg/ArmJunoPkg/{Drivers/PciHostBridgeDxe => Library/JunoPciHostBridgeLib}/XPressRich3.c (84%)
>  rename ArmPlatformPkg/ArmJunoPkg/{Drivers/PciHostBridgeDxe => Library/JunoPciHostBridgeLib}/XPressRich3.h (82%)
>
> --
> 2.9.3
>


      parent reply	other threads:[~2017-03-30 10:55 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-30 10:45 [RFT PATCH 0/3] ArmJunoPkg: move to generic PCI support code Ard Biesheuvel
2017-03-30 10:45 ` [RFT PATCH 1/3] ArmPlatformPkg/ArmJunoDxe: use the generic non-discoverable device support Ard Biesheuvel
2017-03-30 10:45 ` [RFT PATCH 2/3] ArmPlatformPkg/ArmJunoPkg: add PciHostBridgeLib implementation Ard Biesheuvel
2017-03-30 16:34   ` Jeremy Linton
2017-03-30 16:40     ` Ard Biesheuvel
2017-03-30 10:45 ` [RFT PATCH 3/3] ArmPlatformPkg/ArmJunoPkg: remove PCI host bridge driver Ard Biesheuvel
2017-03-30 10:55 ` Ard Biesheuvel [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='CAKv+Gu9=NNVNswAvJ5WkCQypF3JXreEasqs_Kuv9p5Sidt+Z+g@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