public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-platforms][PATCH V1 0/8] Platform/Sgi: Add PPTT table for SGI/RD platforms
@ 2021-04-02  9:12 Pranav Madhu
  2021-04-02  9:12 ` [edk2-platforms][PATCH V1 1/8] Platform/Sgi: Helper macros for PPTT Table Pranav Madhu
                   ` (7 more replies)
  0 siblings, 8 replies; 14+ messages in thread
From: Pranav Madhu @ 2021-04-02  9:12 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel, Leif Lindholm, Sami Mujawar

Processor Properties Topology Table (PPTT) describes the topological
structure of processors, and their shared resources such as caches.
This patch series adds PPTT table for Arm's SGI/RD platforms.

The first patch in this series adds helper macros for PPTT table, and
the subsequent patches in this series adds PPTT table for SGI/RD
platforms which is mandatory as per Arm SystemReady SR specification.

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

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

Pranav Madhu (8):
  Platform/Sgi: Helper macros for PPTT Table
  Platform/Sgi: ACPI PPTT table for SGI-575 platform
  Platform/Sgi: ACPI PPTT table for RD-N1-Edge platform
  Platform/Sgi: ACPI PPTT table for RD-N1-Edge dual-chip
  Platform/Sgi: ACPI PPTT table for RD-E1-Edge platform
  Platform/Sgi: ACPI PPTT Table for RD-V1 platform
  Platform/Sgi: ACPI PPTT Table for RD-V1 quad-chip platform
  Platform/Sgi: ACPI PPTT table for RD-N2 platform

 .../SgiPkg/AcpiTables/RdE1EdgeAcpiTables.inf  |   3 +-
 .../SgiPkg/AcpiTables/RdN1EdgeAcpiTables.inf  |   3 +-
 .../AcpiTables/RdN1EdgeX2AcpiTables.inf       |   3 +-
 .../ARM/SgiPkg/AcpiTables/RdN2AcpiTables.inf  |   3 +-
 .../ARM/SgiPkg/AcpiTables/RdV1AcpiTables.inf  |   3 +-
 .../SgiPkg/AcpiTables/RdV1McAcpiTables.inf    |   3 +-
 .../SgiPkg/AcpiTables/Sgi575AcpiTables.inf    |   3 +-
 Platform/ARM/SgiPkg/Include/SgiAcpiHeader.h   | 163 ++++++++++++-
 .../ARM/SgiPkg/AcpiTables/RdE1Edge/Pptt.aslc  | 230 ++++++++++++++++++
 .../ARM/SgiPkg/AcpiTables/RdN1Edge/Pptt.aslc  | 173 +++++++++++++
 .../SgiPkg/AcpiTables/RdN1EdgeX2/Pptt.aslc    | 191 +++++++++++++++
 Platform/ARM/SgiPkg/AcpiTables/RdN2/Pptt.aslc | 166 +++++++++++++
 Platform/ARM/SgiPkg/AcpiTables/RdV1/Pptt.aslc | 168 +++++++++++++
 .../ARM/SgiPkg/AcpiTables/RdV1Mc/Pptt.aslc    | 172 +++++++++++++
 .../ARM/SgiPkg/AcpiTables/Sgi575/Pptt.aslc    | 161 ++++++++++++
 15 files changed, 1437 insertions(+), 8 deletions(-)
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdE1Edge/Pptt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdN1Edge/Pptt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdN1EdgeX2/Pptt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdN2/Pptt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdV1/Pptt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdV1Mc/Pptt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Pptt.aslc

-- 
2.17.1


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

end of thread, other threads:[~2021-04-21 13:29 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-02  9:12 [edk2-platforms][PATCH V1 0/8] Platform/Sgi: Add PPTT table for SGI/RD platforms Pranav Madhu
2021-04-02  9:12 ` [edk2-platforms][PATCH V1 1/8] Platform/Sgi: Helper macros for PPTT Table Pranav Madhu
2021-04-13  9:18   ` [edk2-devel] " PierreGondois
2021-04-20  5:57     ` Pranav Madhu
2021-04-21 13:29       ` PierreGondois
2021-04-02  9:12 ` [edk2-platforms][PATCH V1 2/8] Platform/Sgi: ACPI PPTT table for SGI-575 platform Pranav Madhu
2021-04-02  9:12 ` [edk2-platforms][PATCH V1 3/8] Platform/Sgi: ACPI PPTT table for RD-N1-Edge platform Pranav Madhu
2021-04-02  9:12 ` [edk2-platforms][PATCH V1 4/8] Platform/Sgi: ACPI PPTT table for RD-N1-Edge dual-chip Pranav Madhu
2021-04-02  9:12 ` [edk2-platforms][PATCH V1 5/8] Platform/Sgi: ACPI PPTT table for RD-E1-Edge platform Pranav Madhu
2021-04-13  9:34   ` [edk2-devel] " PierreGondois
2021-04-20  6:02     ` Pranav Madhu
2021-04-02  9:12 ` [edk2-platforms][PATCH V1 6/8] Platform/Sgi: ACPI PPTT Table for RD-V1 platform Pranav Madhu
2021-04-02  9:12 ` [edk2-platforms][PATCH V1 7/8] Platform/Sgi: ACPI PPTT Table for RD-V1 quad-chip platform Pranav Madhu
2021-04-02  9:12 ` [edk2-platforms][PATCH V1 8/8] Platform/Sgi: ACPI PPTT table for RD-N2 platform Pranav Madhu

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