From: "Aditya Angadi" <aditya.angadi@arm.com>
To: devel@edk2.groups.io
Cc: leif@nuviainc.com, michael.d.kinney@intel.com,
vijayenthiran.subramaniam@arm.com, thomas.abraham@arm.com
Subject: [edk2-platforms][PATCH 0/8] Add platform support for RD-Daniel
Date: Thu, 12 Mar 2020 20:05:12 +0530 [thread overview]
Message-ID: <20200312143520.16918-1-aditya.angadi@arm.com> (raw)
This patch series adds support for Arm's RD-Daniel platform. There are two
configurations of this platform being added in this series - Config-M and
Config-XLR. RD-Daniel is the next Arm's reference design subsystem.
The first four patches consolidate the code in SgiPkg in preparation for
adding support for the RD-Daniel platform. The next four patches add support
for the RD-Daniel platforms.
Aditya Angadi (7):
Platform/ARM/SgiPkg: move the GIC related ACPI helper macros
Platform/ARM/SgiPkg: move common platform description to SSDT
Platform/ARM/SgiPkg: remove PcdCoreCount and PcdClusterCount
Platform/ARM/SgiPkg: Add ACPI tables for Rd-Daniel Config-M
Platform/ARM/Sgi: Add initial support for RD-Daniel Config-M platform
Platform/ARM/SgiPkg: add ACPI tables for RD-Daniel Config-XLR
Platform/ARM/Sgi: Add initial support for RD-Daniel Config-XLR platform
Vijayenthiran Subramaniam (1):
Platform/ARM/SgiPkg: Create individual Platform Description File
.../SgiPkg/AcpiTables/RdDanielCfgM/Dsdt.asl | 118 ++++++++++++++
.../SgiPkg/AcpiTables/RdDanielCfgM/Madt.aslc | 134 ++++++++++++++++
.../AcpiTables/RdDanielCfgMAcpiTables.inf | 63 ++++++++
.../SgiPkg/AcpiTables/RdDanielCfgXlr/Dsdt.asl | 125 +++++++++++++++
.../AcpiTables/RdDanielCfgXlr/Madt.aslc | 150 ++++++++++++++++++
.../AcpiTables/RdDanielCfgXlrAcpiTables.inf | 63 ++++++++
.../ARM/SgiPkg/AcpiTables/RdE1Edge/Dsdt.asl | 70 +-------
.../ARM/SgiPkg/AcpiTables/RdE1Edge/Madt.aslc | 73 +--------
.../SgiPkg/AcpiTables/RdE1EdgeAcpiTables.inf | 5 +-
.../ARM/SgiPkg/AcpiTables/RdN1Edge/Dsdt.asl | 69 +-------
.../ARM/SgiPkg/AcpiTables/RdN1Edge/Madt.aslc | 75 +--------
.../SgiPkg/AcpiTables/RdN1EdgeAcpiTables.inf | 5 +-
.../SgiPkg/AcpiTables/RdN1EdgeX2/Madt.aslc | 69 +-------
.../AcpiTables/RdN1EdgeX2AcpiTables.inf | 3 +-
.../ARM/SgiPkg/AcpiTables/Sgi575/Madt.aslc | 9 +-
.../SgiPkg/AcpiTables/Sgi575AcpiTables.inf | 4 +-
Platform/ARM/SgiPkg/AcpiTables/SsdtRos.asl | 90 +++++++++++
.../SgiPkg/Drivers/PlatformDxe/PlatformDxe.c | 10 ++
.../Drivers/PlatformDxe/PlatformDxe.inf | 2 +
Platform/ARM/SgiPkg/Include/SgiAcpiHeader.h | 70 +++++++-
Platform/ARM/SgiPkg/Include/SgiPlatform.h | 12 +-
.../Library/PlatformLib/PlatformLib.inf | 6 +-
.../Library/PlatformLib/PlatformLibMem.c | 8 +-
Platform/ARM/SgiPkg/RdDaniel.dsc | 38 +++++
Platform/ARM/SgiPkg/RdE1Edge.dsc | 37 +++++
Platform/ARM/SgiPkg/RdN1Edge.dsc | 37 +++++
Platform/ARM/SgiPkg/Sgi575.dsc | 37 +++++
Platform/ARM/SgiPkg/SgiPlatform.dec | 7 +-
Platform/ARM/SgiPkg/SgiPlatform.dsc | 31 +---
Platform/ARM/SgiPkg/SgiPlatform.fdf | 2 +
30 files changed, 1028 insertions(+), 394 deletions(-)
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdDanielCfgM/Dsdt.asl
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdDanielCfgM/Madt.aslc
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdDanielCfgMAcpiTables.inf
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdDanielCfgXlr/Dsdt.asl
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdDanielCfgXlr/Madt.aslc
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdDanielCfgXlrAcpiTables.inf
create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SsdtRos.asl
create mode 100644 Platform/ARM/SgiPkg/RdDaniel.dsc
create mode 100644 Platform/ARM/SgiPkg/RdE1Edge.dsc
create mode 100644 Platform/ARM/SgiPkg/RdN1Edge.dsc
create mode 100644 Platform/ARM/SgiPkg/Sgi575.dsc
--
2.17.1
next reply other threads:[~2020-03-12 14:35 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-12 14:35 Aditya Angadi [this message]
2020-03-12 14:35 ` [edk2-platforms][PATCH 1/8] Platform/ARM/SgiPkg: Create individual Platform Description File Aditya Angadi
2020-03-16 17:15 ` [edk2-devel] " Thomas Abraham
2020-03-19 19:16 ` Leif Lindholm
2020-03-12 14:35 ` [edk2-platforms][PATCH 2/8] Platform/ARM/SgiPkg: move the GIC related ACPI helper macros Aditya Angadi
2020-03-16 17:17 ` [edk2-devel] " Thomas Abraham
2020-03-12 14:35 ` [edk2-platforms][PATCH 3/8] Platform/ARM/SgiPkg: move common platform description to SSDT Aditya Angadi
2020-03-16 17:21 ` [edk2-devel] " Thomas Abraham
2020-03-12 14:35 ` [edk2-platforms][PATCH 4/8] Platform/ARM/SgiPkg: remove PcdCoreCount and PcdClusterCount Aditya Angadi
2020-03-16 17:23 ` [edk2-devel] " Thomas Abraham
2020-03-12 14:35 ` [edk2-platforms][PATCH 5/8] Platform/ARM/SgiPkg: Add ACPI tables for Rd-Daniel Config-M Aditya Angadi
2020-03-12 14:35 ` [edk2-platforms][PATCH 6/8] Platform/ARM/Sgi: Add initial support for RD-Daniel Config-M platform Aditya Angadi
2020-03-16 17:29 ` [edk2-devel] " Thomas Abraham
2020-03-12 14:35 ` [edk2-platforms][PATCH 7/8] Platform/ARM/SgiPkg: add ACPI tables for RD-Daniel Config-XLR Aditya Angadi
2020-03-16 17:31 ` [edk2-devel] " Thomas Abraham
2020-03-12 14:35 ` [edk2-platforms][PATCH 8/8] Platform/ARM/Sgi: Add initial support for RD-Daniel Config-XLR platform Aditya Angadi
2020-03-16 17:32 ` [edk2-devel] " Thomas Abraham
-- strict thread matches above, loose matches on Subject: below --
2020-03-12 12:43 [edk2-platforms][PATCH 0/8] Add platform support for RD-Daniel aditya.angadi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200312143520.16918-1-aditya.angadi@arm.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox