public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v3 edk2-platforms 0/6] Platform/ARM/Sgi: Add support for Clark.Ares and Clark.Helios platforms
@ 2018-11-21 12:44 Chandni Cherukuri
  2018-11-21 12:44 ` [PATCH v3 edk2-platforms 1/6] Platform/ARM/Sgi: Adapt to changes in system-id DT node Chandni Cherukuri
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Chandni Cherukuri @ 2018-11-21 12:44 UTC (permalink / raw)
  To: edk2-devel

Changes since v1:
- No code changes, posting this series again with correct patch subject

This patch series adds support for two new Arm's SGI platforms - 
SGI-Clark.Ares and SGI-Clark.Helios. The first patch in this
series adds support to use a new binding added to the system-id
node for Platform Identification. The second patch refactors the
ACPI tables to prevent duplication of ACPI tables. The common
ACPI tables for SGI platforms are put in the AcpiTables folder.
Dsdt.asl and Madt.aslc remain in the platform specific folder.
The rest of the patches add support for the two new SGI platforms.

Chandni Cherukuri (6):
  Platform/ARM/Sgi: Adapt to changes in system-id DT node.
  Platform/ARM/Sgi: Refactor ACPI tables for SGI platforms
  Platform/ARM/Sgi: Add ACPI tables for SGI-Clark.Ares platform
  Platform/ARM/Sgi: Add initial support for SGI-Clark.Ares platform
  Platform/ARM/Sgi: Add ACPI tables for SGI-Clark.Helios platform
  Platform/ARM/Sgi: Add initial support for SGI-Clark.Helios platform

 Platform/ARM/SgiPkg/SgiPlatform.dec                          |   2 +
 Platform/ARM/SgiPkg/SgiPlatform.dsc                          |   4 +-
 Platform/ARM/SgiPkg/SgiPlatform.fdf                          |   4 +-
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/AcpiTables.inf         |  58 -----
 Platform/ARM/SgiPkg/AcpiTables/Sgi575AcpiTables.inf          |  58 +++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkAresAcpiTables.inf    |  58 +++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkHeliosAcpiTables.inf  |  58 +++++
 Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.inf      |   2 +
 Platform/ARM/SgiPkg/Include/SgiAcpiHeader.h                  |   2 +-
 Platform/ARM/SgiPkg/Include/SgiPlatform.h                    |   6 +
 Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c        |  33 +--
 Platform/ARM/SgiPkg/Library/SgiPlatformPei/SgiPlatformPeim.c |  50 ++--
 Platform/ARM/SgiPkg/AcpiTables/Dbg2.aslc                     |  88 +++++++
 Platform/ARM/SgiPkg/AcpiTables/Fadt.aslc                     |  87 +++++++
 Platform/ARM/SgiPkg/AcpiTables/Gtdt.aslc                     | 152 +++++++++++
 Platform/ARM/SgiPkg/AcpiTables/Iort.aslc                     | 106 ++++++++
 Platform/ARM/SgiPkg/AcpiTables/Mcfg.aslc                     |  59 +++++
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dbg2.aslc              |  90 -------
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dsdt.asl               |   2 +-
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Fadt.aslc              |  87 -------
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Gtdt.aslc              | 152 -----------
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Iort.aslc              | 106 --------
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Mcfg.aslc              |  59 -----
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Spcr.aslc              |  77 ------
 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Ssdt.asl               |  95 -------
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkAres/Dsdt.asl         | 116 +++++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkAres/Madt.aslc        | 171 +++++++++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkHelios/Dsdt.asl       | 262 +++++++++++++++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkHelios/Madt.aslc      | 266 ++++++++++++++++++++
 Platform/ARM/SgiPkg/AcpiTables/Spcr.aslc                     |  77 ++++++
 Platform/ARM/SgiPkg/AcpiTables/Ssdt.asl                      |  93 +++++++
 31 files changed, 1722 insertions(+), 758 deletions(-)
 delete mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/AcpiTables.inf
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575AcpiTables.inf
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkAresAcpiTables.inf
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkHeliosAcpiTables.inf
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Dbg2.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Fadt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Gtdt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Iort.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Mcfg.aslc
 delete mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dbg2.aslc
 delete mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Fadt.aslc
 delete mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Gtdt.aslc
 delete mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Iort.aslc
 delete mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Mcfg.aslc
 delete mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Spcr.aslc
 delete mode 100644 Platform/ARM/SgiPkg/AcpiTables/Sgi575/Ssdt.asl
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkAres/Dsdt.asl
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkAres/Madt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkHelios/Dsdt.asl
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkHelios/Madt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Spcr.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/Ssdt.asl

-- 
2.7.4


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

end of thread, other threads:[~2018-11-29 15:13 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-21 12:44 [PATCH v3 edk2-platforms 0/6] Platform/ARM/Sgi: Add support for Clark.Ares and Clark.Helios platforms Chandni Cherukuri
2018-11-21 12:44 ` [PATCH v3 edk2-platforms 1/6] Platform/ARM/Sgi: Adapt to changes in system-id DT node Chandni Cherukuri
2018-11-21 12:44 ` [PATCH v3 edk2-platforms 2/6] Platform/ARM/Sgi: Refactor ACPI tables for SGI platforms Chandni Cherukuri
2018-11-21 12:44 ` [PATCH v3 edk2-platforms 3/6] Platform/ARM/Sgi: Add ACPI tables for SGI-Clark.Ares platform Chandni Cherukuri
2018-11-21 12:44 ` [PATCH v3 edk2-platforms 4/6] Platform/ARM/Sgi: Add initial support " Chandni Cherukuri
2018-11-21 12:44 ` [PATCH v3 edk2-platforms 5/6] Platform/ARM/Sgi: Add ACPI tables for SGI-Clark.Helios platform Chandni Cherukuri
2018-11-21 12:44 ` [PATCH v3 edk2-platforms 6/6] Platform/ARM/Sgi: Add initial support " Chandni Cherukuri
2018-11-29 15:13 ` [PATCH v3 edk2-platforms 0/6] Platform/ARM/Sgi: Add support for Clark.Ares and Clark.Helios platforms Leif Lindholm

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