[edk2-devel] [edk2-platforms][PATCH V1 0/5] Platform/Sgi: Add initial support for RD-N2-Cfg2 platform

Pranav Madhu posted 5 patches 1 year, 10 months ago
Failed in applying to current master (apply log)
Platform/ARM/SgiPkg/SgiPlatform.dec                                             |   5 +-
Platform/ARM/SgiPkg/SgiMemoryMap.dsc.inc                                        |   5 +-
Platform/ARM/SgiPkg/SgiMemoryMap2.dsc.inc                                       |   5 +-
Platform/ARM/SgiPkg/RdN2Cfg2/RdN2Cfg2.dsc                                       |  58 +++
Platform/ARM/SgiPkg/AcpiTables/RdN1EdgeX2AcpiTables.inf                         |   3 +-
Platform/ARM/SgiPkg/AcpiTables/{RdV1McAcpiTables.inf => RdN2Cfg2AcpiTables.inf} |  48 +-
Platform/ARM/SgiPkg/AcpiTables/RdV1McAcpiTables.inf                             |   3 +-
Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLib.inf                         |   3 +-
Platform/ARM/SgiPkg/Include/SgiPlatform.h                                       |  10 +-
Platform/ARM/SgiPkg/Drivers/SmbiosPlatformDxe/Type1SystemInformation.c          |   7 +-
Platform/ARM/SgiPkg/Drivers/SmbiosPlatformDxe/Type4ProcessorInformation.c       |  15 +-
Platform/ARM/SgiPkg/Drivers/SmbiosPlatformDxe/Type7CacheInformation.c           |   3 +-
Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLib.c                           |   8 +-
Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Dsdt.asl                                | 532 ++++++++++++++++++++
Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Madt.aslc                               | 145 ++++++
Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Pptt.aslc                               | 172 +++++++
Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Srat.aslc                               | 117 +++++
Platform/ARM/SgiPkg/RdN2Cfg2/RdN2Cfg2.fdf.inc                                   |  10 +
18 files changed, 1102 insertions(+), 47 deletions(-)
create mode 100644 Platform/ARM/SgiPkg/RdN2Cfg2/RdN2Cfg2.dsc
copy Platform/ARM/SgiPkg/AcpiTables/{RdV1McAcpiTables.inf => RdN2Cfg2AcpiTables.inf} (71%)
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Dsdt.asl
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Madt.aslc
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Pptt.aslc
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Srat.aslc
create mode 100644 Platform/ARM/SgiPkg/RdN2Cfg2/RdN2Cfg2.fdf.inc
[edk2-devel] [edk2-platforms][PATCH V1 0/5] Platform/Sgi: Add initial support for RD-N2-Cfg2 platform
Posted by Pranav Madhu 1 year, 10 months ago
RD-N2-Cfg2 platform is the multichip variant of the RD-N2 platform. The
platform is based on 4xMP1 Neoverse N2 CPUs per chip, CMN-700
interconnect 6x6 mesh, multiple AXI expansion ports for I/O Coherent
PCIe, Ethernet, offload and Arm Cortex-M7 for System Control Processor
(SCP) and Manageability Control Processor (MCP).

The first patch in this series defines the addressable bit per chip. The
second patch add the product ID unique for this platform. The third
patch adds ACPI tables, the fourth patch add Edk2 build system files.
The last patch in this series adds SMBIOS support.

This patch series should be applied on top of the patch series:
https://edk2.groups.io/g/devel/message/90765

Link to github branch with the patches in this series -
https://github.com/Pranav-Madhu/edk2-platforms/tree/topics/rdn2cfg2-initial-support


Pranav Madhu (1):
  Platform/Sgi: Extend SMBIOS support for RD-N2-Cfg2

Vijayenthiran Subramaniam (4):
  Platform/Sgi: Add a new PCD for defining addressable bits per chip
  Platform/Sgi: Add ProductId lookup values for RD-N2-Cfg2 Platform
  Platform/Sgi: Add ACPI tables for RD-N2-Cfg2 platform
  Platform/Sgi: Add support for RD-N2-Cfg2 Platform

 Platform/ARM/SgiPkg/SgiPlatform.dec                                             |   5 +-
 Platform/ARM/SgiPkg/SgiMemoryMap.dsc.inc                                        |   5 +-
 Platform/ARM/SgiPkg/SgiMemoryMap2.dsc.inc                                       |   5 +-
 Platform/ARM/SgiPkg/RdN2Cfg2/RdN2Cfg2.dsc                                       |  58 +++
 Platform/ARM/SgiPkg/AcpiTables/RdN1EdgeX2AcpiTables.inf                         |   3 +-
 Platform/ARM/SgiPkg/AcpiTables/{RdV1McAcpiTables.inf => RdN2Cfg2AcpiTables.inf} |  48 +-
 Platform/ARM/SgiPkg/AcpiTables/RdV1McAcpiTables.inf                             |   3 +-
 Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLib.inf                         |   3 +-
 Platform/ARM/SgiPkg/Include/SgiPlatform.h                                       |  10 +-
 Platform/ARM/SgiPkg/Drivers/SmbiosPlatformDxe/Type1SystemInformation.c          |   7 +-
 Platform/ARM/SgiPkg/Drivers/SmbiosPlatformDxe/Type4ProcessorInformation.c       |  15 +-
 Platform/ARM/SgiPkg/Drivers/SmbiosPlatformDxe/Type7CacheInformation.c           |   3 +-
 Platform/ARM/SgiPkg/Library/PlatformLib/PlatformLib.c                           |   8 +-
 Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Dsdt.asl                                | 532 ++++++++++++++++++++
 Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Madt.aslc                               | 145 ++++++
 Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Pptt.aslc                               | 172 +++++++
 Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Srat.aslc                               | 117 +++++
 Platform/ARM/SgiPkg/RdN2Cfg2/RdN2Cfg2.fdf.inc                                   |  10 +
 18 files changed, 1102 insertions(+), 47 deletions(-)
 create mode 100644 Platform/ARM/SgiPkg/RdN2Cfg2/RdN2Cfg2.dsc
 copy Platform/ARM/SgiPkg/AcpiTables/{RdV1McAcpiTables.inf => RdN2Cfg2AcpiTables.inf} (71%)
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Dsdt.asl
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Madt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Pptt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdN2Cfg2/Srat.aslc
 create mode 100644 Platform/ARM/SgiPkg/RdN2Cfg2/RdN2Cfg2.fdf.inc

-- 
2.25.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#90775): https://edk2.groups.io/g/devel/message/90775
Mute This Topic: https://groups.io/mt/92015419/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-
Re: [edk2-devel] [edk2-platforms][PATCH V1 0/5] Platform/Sgi: Add initial support for RD-N2-Cfg2 platform
Posted by Ard Biesheuvel 1 year, 10 months ago
On Mon, 27 Jun 2022 at 08:40, Pranav Madhu <pranav.madhu@arm.com> wrote:
>
> RD-N2-Cfg2 platform is the multichip variant of the RD-N2 platform. The
> platform is based on 4xMP1 Neoverse N2 CPUs per chip, CMN-700
> interconnect 6x6 mesh, multiple AXI expansion ports for I/O Coherent
> PCIe, Ethernet, offload and Arm Cortex-M7 for System Control Processor
> (SCP) and Manageability Control Processor (MCP).
>
> The first patch in this series defines the addressable bit per chip. The
> second patch add the product ID unique for this platform. The third
> patch adds ACPI tables, the fourth patch add Edk2 build system files.
> The last patch in this series adds SMBIOS support.
>
> This patch series should be applied on top of the patch series:
> https://edk2.groups.io/g/devel/message/90765
>
> Link to github branch with the patches in this series -
> https://github.com/Pranav-Madhu/edk2-platforms/tree/topics/rdn2cfg2-initial-support
>
>
> Pranav Madhu (1):
>   Platform/Sgi: Extend SMBIOS support for RD-N2-Cfg2
>
> Vijayenthiran Subramaniam (4):
>   Platform/Sgi: Add a new PCD for defining addressable bits per chip
>   Platform/Sgi: Add ProductId lookup values for RD-N2-Cfg2 Platform
>   Platform/Sgi: Add ACPI tables for RD-N2-Cfg2 platform
>   Platform/Sgi: Add support for RD-N2-Cfg2 Platform
>

Pushed as 750f6807879b..f653a22385f5

Thanks,


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#90806): https://edk2.groups.io/g/devel/message/90806
Mute This Topic: https://groups.io/mt/92015419/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-