public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v2 edk2-platforms 0/5] Platform/ARM/Sgi: Add support for Clark.Ares and
@ 2018-11-05  9:26 Chandni Cherukuri
  2018-11-05  9:26 ` [PATCH v2 edk2-platforms 1/5] Platform/ARM/Sgi: Adapt to changes in system-id DT node Chandni Cherukuri
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Chandni Cherukuri @ 2018-11-05  9:26 UTC (permalink / raw)
  To: edk2-devel; +Cc: leif.lindholm, ard.beisheuvel

In-Reply-To: 

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 support for SGI-Clark.Ares platform
  Platform/ARM/Sgi: Add ACPI tables for SGI-Clark.Helios platform
  Platform/ARM/Sgi: Add platform support for SGI-Clark.Helios

 .../ARM/SgiPkg/AcpiTables/SgiClarkA/AcpiTables.inf |  58 +++++
 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 ++++++++
 .../ARM/SgiPkg/AcpiTables/SgiClarkH/AcpiTables.inf |  58 +++++
 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 ++++++++
 .../ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.c   |  19 +-
 .../ARM/SgiPkg/Drivers/PlatformDxe/PlatformDxe.inf |   2 +
 Platform/ARM/SgiPkg/Include/SgiPlatform.h          |   5 +
 .../Library/SgiPlatformPei/SgiPlatformPeim.c       |  19 +-
 Platform/ARM/SgiPkg/SgiPlatform.dec                |   2 +
 Platform/ARM/SgiPkg/SgiPlatform.dsc                |   2 +
 Platform/ARM/SgiPkg/SgiPlatform.fdf                |   2 +
 27 files changed, 2310 insertions(+), 8 deletions(-)
 create mode 100644 Platform/ARM/SgiPkg/AcpiTables/SgiClarkA/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/AcpiTables.inf
 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




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

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

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-05  9:26 [PATCH v2 edk2-platforms 0/5] Platform/ARM/Sgi: Add support for Clark.Ares and Chandni Cherukuri
2018-11-05  9:26 ` [PATCH v2 edk2-platforms 1/5] Platform/ARM/Sgi: Adapt to changes in system-id DT node Chandni Cherukuri
2018-11-09 16:29   ` Leif Lindholm
     [not found]     ` <CADXzzgrW-cpXxO99HOeFmgsa5xNEPaasa7tW1ZANWeEFA_S4ig@mail.gmail.com>
2018-11-12 11:25       ` Leif Lindholm
2018-11-12 14:16         ` chandni cherukuri
2018-11-12 16:26           ` Leif Lindholm
2018-11-05  9:26 ` [PATCH v2 edk2-platforms 2/5] Platform/ARM/Sgi: Add ACPI tables for SGI-Clark.Ares platform Chandni Cherukuri
2018-11-05  9:26 ` [PATCH v2 edk2-platforms 3/5] Platform/ARM/Sgi: Add support " Chandni Cherukuri
2018-11-05  9:26 ` [PATCH v2 edk2-platforms 4/5] Platform/ARM/Sgi: Add ACPI tables for SGI-Clark.Helios platform Chandni Cherukuri
2018-11-05  9:26 ` [PATCH v2 edk2-platforms 5/5] Platform/ARM/Sgi: Add platform support for SGI-Clark.Helios Chandni Cherukuri

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