[edk2] [PATCH edk2-platforms v3 0/6] Platform/ARM/Sgi: Add Arm's SGI platform support

Thomas Abraham posted 6 patches 5 years, 11 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/edk2 tags/patchew/1525855811-10208-1-git-send-email-thomas.abraham@arm.com
There is a newer version of this series
.../ARM/SgiPkg/AcpiTables/Sgi575/AcpiTables.inf    |  54 ++++
Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dbg2.aslc    |  90 ++++++
Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dsdt.asl     |  99 +++++++
Platform/ARM/SgiPkg/AcpiTables/Sgi575/Fadt.aslc    |  87 ++++++
Platform/ARM/SgiPkg/AcpiTables/Sgi575/Gtdt.aslc    | 123 +++++++++
Platform/ARM/SgiPkg/AcpiTables/Sgi575/Madt.aslc    | 173 ++++++++++++
Platform/ARM/SgiPkg/AcpiTables/Sgi575/Spcr.aslc    |  77 ++++++
.../ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c   |  48 ++++
.../ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.inf |  74 +++++
.../ARM/SgiPkg/Drivers/PlatformDxe/VirtioBlockIo.c |  76 +++++
Platform/ARM/SgiPkg/Include/SgiAcpiHeader.h        |  41 +++
Platform/ARM/SgiPkg/Include/SgiPlatform.h          |  73 +++++
Platform/ARM/SgiPkg/Library/NorFlashLib/NorFlash.c |  66 +++++
.../ARM/SgiPkg/Library/NorFlashLib/NorFlashLib.inf |  34 +++
.../SgiPkg/Library/PlatformLib/AArch64/Helper.S    |  65 +++++
Platform/ARM/SgiPkg/Library/PlatformLib/Mem.c      | 110 ++++++++
Platform/ARM/SgiPkg/Library/PlatformLib/Platform.c |  73 +++++
.../ARM/SgiPkg/Library/PlatformLib/PlatformLib.inf |  59 ++++
Platform/ARM/SgiPkg/SgiPlatform.dec                |  37 +++
Platform/ARM/SgiPkg/SgiPlatform.dsc                | 251 +++++++++++++++++
Platform/ARM/SgiPkg/SgiPlatform.fdf                | 306 +++++++++++++++++++++
21 files changed, 2016 insertions(+)
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/AcpiTables.inf
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dbg2.aslc
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dsdt.asl
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Fadt.aslc
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Gtdt.aslc
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Madt.aslc
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Spcr.aslc
create mode 100644 Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c
create mode 100644 Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.inf
create mode 100644 Platform/ARM/SgiPkg/Drivers/PlatformDxe/VirtioBlockIo.c
create mode 100644 Platform/ARM/SgiPkg/Include/SgiAcpiHeader.h
create mode 100644 Platform/ARM/SgiPkg/Include/SgiPlatform.h
create mode 100644 Platform/ARM/SgiPkg/Library/NorFlashLib/NorFlash.c
create mode 100644 Platform/ARM/SgiPkg/Library/NorFlashLib/NorFlashLib.inf
create mode 100644 Platform/ARM/SgiPkg/Library/PlatformLib/AArch64/Helper.S
create mode 100644 Platform/ARM/SgiPkg/Library/PlatformLib/Mem.c
create mode 100644 Platform/ARM/SgiPkg/Library/PlatformLib/Platform.c
create mode 100644 Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLib.inf
create mode 100644 Platform/ARM/SgiPkg/SgiPlatform.dec
create mode 100644 Platform/ARM/SgiPkg/SgiPlatform.dsc
create mode 100644 Platform/ARM/SgiPkg/SgiPlatform.fdf
[edk2] [PATCH edk2-platforms v3 0/6] Platform/ARM/Sgi: Add Arm's SGI platform support
Posted by Thomas Abraham 5 years, 11 months ago
Changes since v2:
- addressed all the comments from Ard.
- PrePeiCore is used instead of PrePi.

Changes since v1:
- minor update to commit messages

Arm CoreLink System Guidance for Infrastructure is a collection of
resources to provide a representative view of typical compute subsystems
that can be designed and implemented using specific generations of Arm IP.
These compute subsystems address the expected requirements of a specific
segment of the infrastructure market which includes servers, storage and
networking.

This patch series adds initial platform port support for Arm'S SGI-575
platform. This platform has 8x Cortex-A75 CPUs, supports DynamIQ
with L3 cache options, supports 2x DDR4-3200 (DMC-620) memory controller
and is SBSAv3 compliant. This series includes support for GIC, Serial,
smsc91x and virtio block device.

Daniil Egranov (3):
  Platform/ARM/Sgi: add initial platform dxe driver implementation
  Platform/ARM/Sgi: add support for virtio block device
  Platform/ARM/Sgi: add the initial set of acpi tables

Thomas Abraham (1):
  Platform/ARM/Sgi: Add Platform library implementation

Vishwanatha HG (2):
  Platform/ARM/Sgi: add NOR flash platform library implementation
  Platform/ARM/Sgi: add initial support for ARM SGI platform

 .../ARM/SgiPkg/AcpiTables/Sgi575/AcpiTables.inf    |  54 ++++
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dbg2.aslc    |  90 ++++++
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dsdt.asl     |  99 +++++++
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Fadt.aslc    |  87 ++++++
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Gtdt.aslc    | 123 +++++++++
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Madt.aslc    | 173 ++++++++++++
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Spcr.aslc    |  77 ++++++
 .../ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c   |  48 ++++
 .../ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.inf |  74 +++++
 .../ARM/SgiPkg/Drivers/PlatformDxe/VirtioBlockIo.c |  76 +++++
 Platform/ARM/SgiPkg/Include/SgiAcpiHeader.h        |  41 +++
 Platform/ARM/SgiPkg/Include/SgiPlatform.h          |  73 +++++
 Platform/ARM/SgiPkg/Library/NorFlashLib/NorFlash.c |  66 +++++
 .../ARM/SgiPkg/Library/NorFlashLib/NorFlashLib.inf |  34 +++
 .../SgiPkg/Library/PlatformLib/AArch64/Helper.S    |  65 +++++
 Platform/ARM/SgiPkg/Library/PlatformLib/Mem.c      | 110 ++++++++
 Platform/ARM/SgiPkg/Library/PlatformLib/Platform.c |  73 +++++
 .../ARM/SgiPkg/Library/PlatformLib/PlatformLib.inf |  59 ++++
 Platform/ARM/SgiPkg/SgiPlatform.dec                |  37 +++
 Platform/ARM/SgiPkg/SgiPlatform.dsc                | 251 +++++++++++++++++
 Platform/ARM/SgiPkg/SgiPlatform.fdf                | 306 +++++++++++++++++++++
 21 files changed, 2016 insertions(+)
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/AcpiTables.inf
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dbg2.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dsdt.asl
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Fadt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Gtdt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Madt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Spcr.aslc
 create mode 100644 Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c
 create mode 100644 Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.inf
 create mode 100644 Platform/ARM/SgiPkg/Drivers/PlatformDxe/VirtioBlockIo.c
 create mode 100644 Platform/ARM/SgiPkg/Include/SgiAcpiHeader.h
 create mode 100644 Platform/ARM/SgiPkg/Include/SgiPlatform.h
 create mode 100644 Platform/ARM/SgiPkg/Library/NorFlashLib/NorFlash.c
 create mode 100644 Platform/ARM/SgiPkg/Library/NorFlashLib/NorFlashLib.inf
 create mode 100644 Platform/ARM/SgiPkg/Library/PlatformLib/AArch64/Helper.S
 create mode 100644 Platform/ARM/SgiPkg/Library/PlatformLib/Mem.c
 create mode 100644 Platform/ARM/SgiPkg/Library/PlatformLib/Platform.c
 create mode 100644 Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLib.inf
 create mode 100644 Platform/ARM/SgiPkg/SgiPlatform.dec
 create mode 100644 Platform/ARM/SgiPkg/SgiPlatform.dsc
 create mode 100644 Platform/ARM/SgiPkg/SgiPlatform.fdf

-- 
2.7.4

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel