public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-platforms][PATCH V1 0/5] Platform/Sgi: Add initial support for RD-N2-Cfg2 platform
@ 2022-06-27  6:40 Pranav Madhu
  2022-06-27  6:40 ` [edk2-platforms][PATCH V1 1/5] Platform/Sgi: Add a new PCD for defining addressable bits per chip Pranav Madhu
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Pranav Madhu @ 2022-06-27  6:40 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel, Sami Mujawar

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


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

end of thread, other threads:[~2022-06-28  7:24 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-27  6:40 [edk2-platforms][PATCH V1 0/5] Platform/Sgi: Add initial support for RD-N2-Cfg2 platform Pranav Madhu
2022-06-27  6:40 ` [edk2-platforms][PATCH V1 1/5] Platform/Sgi: Add a new PCD for defining addressable bits per chip Pranav Madhu
2022-06-27  6:40 ` [edk2-platforms][PATCH V1 2/5] Platform/Sgi: Add ProductId lookup values for RD-N2-Cfg2 Platform Pranav Madhu
2022-06-27  6:40 ` [edk2-platforms][PATCH V1 3/5] Platform/Sgi: Add ACPI tables for RD-N2-Cfg2 platform Pranav Madhu
2022-06-27  6:40 ` [edk2-platforms][PATCH V1 4/5] Platform/Sgi: Add support for RD-N2-Cfg2 Platform Pranav Madhu
2022-06-27  6:40 ` [edk2-platforms][PATCH V1 5/5] Platform/Sgi: Extend SMBIOS support for RD-N2-Cfg2 Pranav Madhu
2022-06-28  7:24 ` [edk2-platforms][PATCH V1 0/5] Platform/Sgi: Add initial support for RD-N2-Cfg2 platform Ard Biesheuvel

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