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

Changes since v2:
- Added additional checks for platform-id and config-id values.

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 rest of the patches add
support for the two new SGI platforms.

Chandni Cherukuri (5):
  Platform/ARM/Sgi: Adapt to changes in system-id DT node.
  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                          |   2 +
 Platform/ARM/SgiPkg/SgiPlatform.fdf                          |   2 +
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/AcpiTables.inf      |  58 +++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/AcpiTables.inf      |  58 +++++
 Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.inf      |   2 +
 Platform/ARM/SgiPkg/Include/SgiPlatform.h                    |   5 +
 Platform/ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c        |  19 +-
 Platform/ARM/SgiPkg/Library/SgiPlatformPei/SgiPlatformPeim.c |  24 +-
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Dbg2.aslc           |  90 +++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Dsdt.asl            | 116 +++++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Fadt.aslc           |  87 +++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Gtdt.aslc           | 152 +++++++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Iort.aslc           | 106 ++++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Madt.aslc           | 171 +++++++++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Mcfg.aslc           |  61 +++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Spcr.aslc           |  77 ++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Ssdt.asl            |  95 +++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Dbg2.aslc           |  90 +++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Dsdt.asl            | 262 +++++++++++++++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Fadt.aslc           |  87 +++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Gtdt.aslc           | 152 +++++++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Iort.aslc           | 106 ++++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Madt.aslc           | 266 ++++++++++++++++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Mcfg.aslc           |  61 +++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Spcr.aslc           |  77 ++++++
 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Ssdt.asl            |  95 +++++++
 27 files changed, 2315 insertions(+), 8 deletions(-)
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/AcpiTables.inf
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/AcpiTables.inf
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Dbg2.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Dsdt.asl
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Fadt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Gtdt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Iort.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Madt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Mcfg.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Spcr.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/Ssdt.asl
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Dbg2.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Dsdt.asl
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Fadt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Gtdt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Iort.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Madt.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Mcfg.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Spcr.aslc
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkH/Ssdt.asl

-- 
2.7.4




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

end of thread, other threads:[~2018-11-19 16:34 UTC | newest]

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

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