public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Chandni Cherukuri <chandni.cherukuri@arm.com>
To: edk2-devel@lists.01.org
Subject: [PATCH v3 edk2-platforms 0/6] Platform/ARM/Sgi: Add support for Clark.Ares and Clark.Helios platforms
Date: Wed, 21 Nov 2018 18:14:51 +0530	[thread overview]
Message-ID: <1542804297-31957-1-git-send-email-chandni.cherukuri@arm.com> (raw)

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


             reply	other threads:[~2018-11-21 12:45 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-21 12:44 Chandni Cherukuri [this message]
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

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=1542804297-31957-1-git-send-email-chandni.cherukuri@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