public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v2 00/13] EDK2 spring cleaning -- OpenPlatformPkg edition
@ 2017-03-31 14:15 Ard Biesheuvel
  2017-03-31 14:15 ` [PATCH v2 01/13] Platforms/VExpress: remove unused logo PCD Ard Biesheuvel
                   ` (9 more replies)
  0 siblings, 10 replies; 15+ messages in thread
From: Ard Biesheuvel @ 2017-03-31 14:15 UTC (permalink / raw)
  To: edk2-devel, leif.lindholm, ryan.harkin; +Cc: Ard Biesheuvel

This is the OpenPlatformPkg counterpart of the series

  ArmPlatformgPkg spring cleaning -- now includes Juno [v2]

sent out out roughly the same time as this one. Note that they are inter-
dependent, i.e., applying one without the other will not result in a
working build.

Changes since v1:
- add cleanup patches for Juno as well, including a switch to the generic
  PCI host bridge driver
- patches are updated to account for the API change in DtPlatformDxe -- the
  platform glue is now provided by DtPlatformDtbLoaderLib implementations
- use existing copies of VExpress dtb images

Ard Biesheuvel (13):
  Platforms/VExpress: remove unused logo PCD
  Platforms/VExpress: remove unused StatusCode references
  Platforms/VExpress: get rid of Tiano compression
  Platforms/VExpress: remove BdsLib library class resolutions
  Platforms/TC2: move to new DtPlatformDxe driver
  Platforms/FVP: add DtPlatformDtbLoaderLib implementation
  Platforms/FVP-AArch64: switch to simpler DT platform driver
  Platforms/Juno: add non-discoverable device driver and library
  Platforms/Juno: add PciHostBridgeLib implementation
  Platforms/Juno: switch to generic PCI host bridge driver
  Platforms/Juno: remove BdsLib dependency
  Platforms/Juno: add DtPlatformDtbLoaderLib implementation
  Platforms/Juno: switch to DtPlatformDxe

 Platforms/ARM/Juno/ArmJuno.dsc                                                                         |  39 +-
 Platforms/ARM/Juno/ArmJuno.fdf                                                                         |  31 +-
 Platforms/ARM/Juno/DeviceTree/juno-r1.dtb                                                              | Bin 0 -> 23627 bytes
 Platforms/ARM/Juno/DeviceTree/juno-r2.dtb                                                              | Bin 0 -> 23627 bytes
 Platforms/ARM/Juno/DeviceTree/juno.dtb                                                                 | Bin 0 -> 22431 bytes
 Platforms/ARM/Juno/Library/JunoDtPlatformDtbLoaderLib/JunoDtPlatformDtbLoaderLib.c                     |  71 +++
 Platforms/ARM/Juno/Library/JunoDtPlatformDtbLoaderLib/JunoDtPlatformDtbLoaderLib.inf                   |  38 ++
 Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/JunoPciHostBridgeLib.c                                 | 185 ++++++
 Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/JunoPciHostBridgeLib.inf                               |  77 +++
 Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/XPressRich3.c                                          | 191 ++++++
 Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/XPressRich3.h                                          | 107 ++++
 Platforms/ARM/VExpress/ArmVExpress-CTA15-A7.dsc                                                        |  22 +-
 Platforms/ARM/VExpress/ArmVExpress-CTA15-A7.fdf                                                        |  27 +-
 Platforms/ARM/VExpress/ArmVExpress-FVP-AArch64.dsc                                                     |  33 +-
 Platforms/ARM/VExpress/ArmVExpress-FVP-AArch64.fdf                                                     |  54 +-
 Platforms/ARM/VExpress/ArmVExpress.dsc.inc                                                             |  24 +-
 Platforms/ARM/VExpress/DeviceTree/vexpress-v2m-rs1.dtsi                                                | 442 +++++++++++++
 Platforms/ARM/VExpress/DeviceTree/vexpress-v2p-ca15_a7.dtb                                             | Bin 0 -> 19070 bytes
 Platforms/ARM/VExpress/DeviceTree/vexpress-v2p-ca15_a7.dts                                             | 659 ++++++++++++++++++++
 Platforms/ARM/VExpress/Library/ArmVExpressDtPlatformDtbLoaderLib/ArmVExpressDtPlatformDtbLoaderLib.c   | 134 ++++
 Platforms/ARM/VExpress/Library/ArmVExpressDtPlatformDtbLoaderLib/ArmVExpressDtPlatformDtbLoaderLib.inf |  39 ++
 21 files changed, 2025 insertions(+), 148 deletions(-)
 create mode 100644 Platforms/ARM/Juno/DeviceTree/juno-r1.dtb
 create mode 100644 Platforms/ARM/Juno/DeviceTree/juno-r2.dtb
 create mode 100644 Platforms/ARM/Juno/DeviceTree/juno.dtb
 create mode 100644 Platforms/ARM/Juno/Library/JunoDtPlatformDtbLoaderLib/JunoDtPlatformDtbLoaderLib.c
 create mode 100644 Platforms/ARM/Juno/Library/JunoDtPlatformDtbLoaderLib/JunoDtPlatformDtbLoaderLib.inf
 create mode 100644 Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/JunoPciHostBridgeLib.c
 create mode 100644 Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/JunoPciHostBridgeLib.inf
 create mode 100644 Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/XPressRich3.c
 create mode 100644 Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/XPressRich3.h
 create mode 100644 Platforms/ARM/VExpress/DeviceTree/vexpress-v2m-rs1.dtsi
 create mode 100644 Platforms/ARM/VExpress/DeviceTree/vexpress-v2p-ca15_a7.dtb
 create mode 100644 Platforms/ARM/VExpress/DeviceTree/vexpress-v2p-ca15_a7.dts
 create mode 100644 Platforms/ARM/VExpress/Library/ArmVExpressDtPlatformDtbLoaderLib/ArmVExpressDtPlatformDtbLoaderLib.c
 create mode 100644 Platforms/ARM/VExpress/Library/ArmVExpressDtPlatformDtbLoaderLib/ArmVExpressDtPlatformDtbLoaderLib.inf

-- 
2.9.3



^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2017-04-04  8:31 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-31 14:15 [PATCH v2 00/13] EDK2 spring cleaning -- OpenPlatformPkg edition Ard Biesheuvel
2017-03-31 14:15 ` [PATCH v2 01/13] Platforms/VExpress: remove unused logo PCD Ard Biesheuvel
2017-03-31 14:15 ` [PATCH v2 02/13] Platforms/VExpress: remove unused StatusCode references Ard Biesheuvel
2017-03-31 14:15 ` [PATCH v2 03/13] Platforms/VExpress: get rid of Tiano compression Ard Biesheuvel
2017-03-31 14:15 ` [PATCH v2 04/13] Platforms/VExpress: remove BdsLib library class resolutions Ard Biesheuvel
2017-03-31 14:15 ` [PATCH v2 05/13] Platforms/TC2: move to new DtPlatformDxe driver Ard Biesheuvel
2017-03-31 14:15 ` [PATCH v2 06/13] Platforms/FVP: add DtPlatformDtbLoaderLib implementation Ard Biesheuvel
2017-03-31 14:15 ` [PATCH v2 07/13] Platforms/FVP-AArch64: switch to simpler DT platform driver Ard Biesheuvel
2017-03-31 14:15 ` [PATCH v2 08/13] Platforms/Juno: add non-discoverable device driver and library Ard Biesheuvel
2017-03-31 14:15 ` [PATCH v2 09/13] Platforms/Juno: add PciHostBridgeLib implementation Ard Biesheuvel
2017-04-04  8:31   ` Ard Biesheuvel
2017-03-31 14:19 ` [PATCH v2 10/13] Platforms/Juno: switch to generic PCI host bridge driver Ard Biesheuvel
2017-03-31 14:19   ` [PATCH v2 11/13] Platforms/Juno: remove BdsLib dependency Ard Biesheuvel
2017-03-31 14:19   ` [PATCH v2 12/13] Platforms/Juno: add DtPlatformDtbLoaderLib implementation Ard Biesheuvel
2017-03-31 14:19   ` [PATCH v2 13/13] Platforms/Juno: switch to DtPlatformDxe Ard Biesheuvel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox