public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Pranav Madhu" <pranav.madhu@arm.com>
To: devel@edk2.groups.io
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>,
	Sami Mujawar <sami.mujawar@arm.com>
Subject: [edk2-platforms][PATCH V2 0/9] Upadate the ACPI tables for RD platforms
Date: Mon, 18 Apr 2022 17:24:22 +0530	[thread overview]
Message-ID: <20220418115431.30602-1-pranav.madhu@arm.com> (raw)

Changes since V1:
- Rebased on top of latest master branch.
- Rebased on top of patch to remove SLC cache entries from PPTT (link
  for the same in edk2.groups.io is provided below)

Arm infrastructure reference design platforms uses ACPI tables to
provide the hardware information to the operating system. Currently the
ACPI tables are aligned with ACPI v6.2 and v6.3 specification. This
patch series update the tables to ACPI v6.4 specificaion.

The first patch in this series update the generic tables which are
common for all platfoms. The subsequent patches in this series update
platform specific ACPI tables to v6.4 for the respective platform.

This patch series also update the headers in the .aslc files to match
the coding style as per edk2 coding guidelines.

This patch series should be applied on top of the patch series
https://edk2.groups.io/g/devel/message/88996

Link to github branch with the patches in this series -
https://github.com/Pranav-Madhu/edk2-platforms/tree/topics/acpi64_for_rd_platforms


Pranav Madhu (9):
  Platform/Sgi: Update ACPI version to v6.4
  Platform/Sgi: Update ACPI version to v6.4 for SGI-575 platform
  Platform/Sgi: Update ACPI version to v6.4 for Rd-N1-Edge platform
  Platform/Sgi: Update ACPI version to v6.4 for Rd-N1-Edge-X2 platform
  Platform/Sgi: Update ACPI version to v6.4 for Rd-E1-Edge platform
  Platform/Sgi: Update ACPI version to v6.4 for Rd-V1 platform
  Platform/Sgi: Update ACPI version to v6.4 for Rd-V1-MC platform
  Platform/Sgi: Update ACPI version to v6.4 for Rd-N2 platform
  Platform/Sgi: Update ACPI version to v6.4 for Rd-N2-Cfg1 platform

 Platform/ARM/SgiPkg/Include/SgiAcpiHeader.h   | 219 ++++++++--------
 Platform/ARM/SgiPkg/AcpiTables/Dbg2.aslc      |  30 ++-
 Platform/ARM/SgiPkg/AcpiTables/Fadt.aslc      |  38 +--
 Platform/ARM/SgiPkg/AcpiTables/Gtdt.aslc      |  69 ++---
 Platform/ARM/SgiPkg/AcpiTables/Mcfg.aslc      |  26 +-
 .../ARM/SgiPkg/AcpiTables/RdE1Edge/Madt.aslc  | 247 +++++++++---------
 .../ARM/SgiPkg/AcpiTables/RdE1Edge/Pptt.aslc  | 106 ++++----
 .../ARM/SgiPkg/AcpiTables/RdN1Edge/Madt.aslc  | 105 ++++----
 .../ARM/SgiPkg/AcpiTables/RdN1Edge/Pptt.aslc  |  88 ++++---
 .../SgiPkg/AcpiTables/RdN1EdgeX2/Hmat.aslc    |  52 ++--
 .../SgiPkg/AcpiTables/RdN1EdgeX2/Madt.aslc    | 151 ++++++-----
 .../SgiPkg/AcpiTables/RdN1EdgeX2/Pptt.aslc    |  92 +++----
 .../SgiPkg/AcpiTables/RdN1EdgeX2/Srat.aslc    |  74 +++---
 Platform/ARM/SgiPkg/AcpiTables/RdN2/Madt.aslc | 163 ++++++------
 Platform/ARM/SgiPkg/AcpiTables/RdN2/Pptt.aslc |  77 +++---
 .../ARM/SgiPkg/AcpiTables/RdN2Cfg1/Madt.aslc  | 112 ++++----
 .../ARM/SgiPkg/AcpiTables/RdN2Cfg1/Pptt.aslc  |  73 +++---
 Platform/ARM/SgiPkg/AcpiTables/RdV1/Madt.aslc | 159 +++++------
 Platform/ARM/SgiPkg/AcpiTables/RdV1/Pptt.aslc |  77 +++---
 .../ARM/SgiPkg/AcpiTables/RdV1Mc/Hmat.aslc    |  64 +++--
 .../ARM/SgiPkg/AcpiTables/RdV1Mc/Madt.aslc    | 165 ++++++------
 .../ARM/SgiPkg/AcpiTables/RdV1Mc/Pptt.aslc    |  81 +++---
 .../ARM/SgiPkg/AcpiTables/RdV1Mc/Srat.aslc    |  82 +++---
 .../ARM/SgiPkg/AcpiTables/Sgi575/Madt.aslc    | 105 ++++----
 .../ARM/SgiPkg/AcpiTables/Sgi575/Pptt.aslc    |  86 +++---
 Platform/ARM/SgiPkg/AcpiTables/Spcr.aslc      |  29 +-
 26 files changed, 1343 insertions(+), 1227 deletions(-)

-- 
2.17.1


             reply	other threads:[~2022-04-18 11:54 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-18 11:54 Pranav Madhu [this message]
2022-04-18 11:54 ` [edk2-platforms][PATCH V2 1/9] Platform/Sgi: Update ACPI version to v6.4 Pranav Madhu
2022-04-18 11:54 ` [edk2-platforms][PATCH V2 2/9] Platform/Sgi: Update ACPI version to v6.4 for SGI-575 platform Pranav Madhu
2022-04-18 11:54 ` [edk2-platforms][PATCH V2 3/9] Platform/Sgi: Update ACPI version to v6.4 for Rd-N1-Edge platform Pranav Madhu
2022-04-18 11:54 ` [edk2-platforms][PATCH V2 4/9] Platform/Sgi: Update ACPI version to v6.4 for Rd-N1-Edge-X2 platform Pranav Madhu
2022-04-18 11:54 ` [edk2-platforms][PATCH V2 5/9] Platform/Sgi: Update ACPI version to v6.4 for Rd-E1-Edge platform Pranav Madhu
2022-04-18 11:54 ` [edk2-platforms][PATCH V2 6/9] Platform/Sgi: Update ACPI version to v6.4 for Rd-V1 platform Pranav Madhu
2022-04-18 11:54 ` [edk2-platforms][PATCH V2 7/9] Platform/Sgi: Update ACPI version to v6.4 for Rd-V1-MC platform Pranav Madhu
2022-04-18 11:54 ` [edk2-platforms][PATCH V2 8/9] Platform/Sgi: Update ACPI version to v6.4 for Rd-N2 platform Pranav Madhu
2022-04-18 11:54 ` [edk2-platforms][PATCH V2 9/9] Platform/Sgi: Update ACPI version to v6.4 for Rd-N2-Cfg1 platform Pranav Madhu
2022-04-18 20:09 ` [edk2-devel] [edk2-platforms][PATCH V2 0/9] Upadate the ACPI tables for RD platforms Thomas Abraham
2022-06-20 16:52   ` Pranav Madhu
2022-06-21 15:55     ` PierreGondois
2022-06-22  5:33       ` Pranav Madhu
2022-04-20  7:40 ` Ard Biesheuvel
2022-04-20  8:06   ` Pranav Madhu

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=20220418115431.30602-1-pranav.madhu@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