public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Thomas Abraham" <thomas.abraham@arm.com>
To: devel@edk2.groups.io
Cc: ard.biesheuvel@arm.com, leif@nuviainc.com,
	 Aditya Angadi <aditya.angadi@arm.com>
Subject: Re: [edk2-devel] [edk2-platforms][PATCH v4 0/9]Platform/Arm/Sgi: Add platform support for RD-Daniel
Date: Wed, 15 Apr 2020 10:04:57 +0530	[thread overview]
Message-ID: <CAJuA9ahnmTcrjyA7uH9Ou_r29HQhyObZAXeTpv-OB5-iZ2oWew@mail.gmail.com> (raw)
In-Reply-To: <20200414125208.2878-1-aditya.angadi@arm.com>

On Tue, Apr 14, 2020 at 6:22 PM Aditya Angadi <aditya.angadi@arm.com> wrote:
>
> This patch series adds support for Arm's RD-Daniel platform. There are two
> configurations of this platform being added in this series - Config-M and
> Config-XLR. RD-Daniel is the next Arm's reference design subsystem.
> Config XLR is a multi chip platform.
>
> The first four patches consolidate the code in SgiPkg in preparation for
> adding support for numa memory nodes and the RD-Daniel platform. The next
> four patches add support for the RD-Daniel platforms and the last patch
> adds SRAT table for dual chip RdN1Edge platform.
>
>
> Aditya Angadi (6):
>   Platform/ARM/Sgi: Move the GIC related ACPI helper macros
>   Platform/ARM/Sgi: Move common platform description to SSDT
>   Platform/ARM/Sgi: Add ACPI tables for Rd-Daniel Config-M
>   Platform/ARM/Sgi: Add initial support for RD-Daniel Config-M platform
>   Platform/ARM/Sgi: Add ACPI tables for RD-Daniel Config-XLR
>   Platform/ARM/Sgi: Add initial support for RD-Daniel Config-XLR
>     platform
>
> Vijayenthiran Subramaniam (3):
>   Platform/ARM/Sgi: Create individual Platform Description File
>   Platform/ARM/Sgi: Add support for remote numa memory nodes
>   Platform/ARM/Sgi: Add SRAT table for RdN1Edge dual-chip platform

For the series:
Reviewed-by: Thomas Abraham <thomas.abraham@arm.com>

>
>  .../SgiPkg/AcpiTables/RdDanielCfgM/Dsdt.asl   | 118 +++++++++++++
>  .../SgiPkg/AcpiTables/RdDanielCfgM/Madt.aslc  | 141 ++++++++++++++++
>  ...iTables.inf => RdDanielCfgMAcpiTables.inf} |  24 ++-
>  .../SgiPkg/AcpiTables/RdDanielCfgXlr/Dsdt.asl | 125 ++++++++++++++
>  .../AcpiTables/RdDanielCfgXlr/Madt.aslc       | 158 ++++++++++++++++++
>  .../AcpiTables/RdDanielCfgXlr/Srat.aslc       | 102 +++++++++++
>  .../AcpiTables/RdDanielCfgXlrAcpiTables.inf   |  87 ++++++++++
>  .../ARM/SgiPkg/AcpiTables/RdE1Edge/Dsdt.asl   |  70 +-------
>  .../ARM/SgiPkg/AcpiTables/RdE1Edge/Madt.aslc  |  71 +-------
>  .../SgiPkg/AcpiTables/RdE1EdgeAcpiTables.inf  |   5 +-
>  .../ARM/SgiPkg/AcpiTables/RdN1Edge/Dsdt.asl   |  69 +-------
>  .../ARM/SgiPkg/AcpiTables/RdN1Edge/Madt.aslc  |  68 +-------
>  .../SgiPkg/AcpiTables/RdN1EdgeAcpiTables.inf  |   5 +-
>  .../SgiPkg/AcpiTables/RdN1EdgeX2/Madt.aslc    |  57 +------
>  .../SgiPkg/AcpiTables/RdN1EdgeX2/Srat.aslc    |  90 ++++++++++
>  .../AcpiTables/RdN1EdgeX2AcpiTables.inf       |  14 +-
>  .../ARM/SgiPkg/AcpiTables/Sgi575/Madt.aslc    | 130 ++++----------
>  .../SgiPkg/AcpiTables/Sgi575AcpiTables.inf    |   2 +-
>  .../{RdN1Edge/Dsdt.asl => SsdtRos.asl}        |  63 ++-----
>  .../SgiPkg/Drivers/PlatformDxe/PlatformDxe.c  |  69 +-------
>  .../Drivers/PlatformDxe/PlatformDxe.inf       |   5 +-
>  Platform/ARM/SgiPkg/Include/SgiAcpiHeader.h   |  89 +++++++++-
>  Platform/ARM/SgiPkg/Include/SgiPlatform.h     |  12 +-
>  .../Library/PlatformLib/PlatformLib.inf       |  21 ++-
>  .../Library/PlatformLib/PlatformLibMem.c      |  95 ++++++++++-
>  .../ARM/SgiPkg/RdDanielCfgM/RdDanielCfgM.dsc  |  51 ++++++
>  .../SgiPkg/RdDanielCfgM/RdDanielCfgM.fdf.inc  |  10 ++
>  .../SgiPkg/RdDanielCfgXlr/RdDanielCfgXlr.dsc  |  70 ++++++++
>  .../RdDanielCfgXlr/RdDanielCfgXlr.fdf.inc     |  10 ++
>  Platform/ARM/SgiPkg/RdE1Edge/RdE1Edge.dsc     |  51 ++++++
>  Platform/ARM/SgiPkg/RdE1Edge/RdE1Edge.fdf.inc |  10 ++
>  Platform/ARM/SgiPkg/RdN1Edge/RdN1Edge.dsc     |  51 ++++++
>  Platform/ARM/SgiPkg/RdN1Edge/RdN1Edge.fdf.inc |  10 ++
>  Platform/ARM/SgiPkg/RdN1EdgeX2/RdN1EdgeX2.dsc |  60 +++++++
>  .../ARM/SgiPkg/RdN1EdgeX2/RdN1EdgeX2.fdf.inc  |  10 ++
>  Platform/ARM/SgiPkg/Sgi575/Sgi575.dsc         |  51 ++++++
>  Platform/ARM/SgiPkg/Sgi575/Sgi575.fdf.inc     |  10 ++
>  Platform/ARM/SgiPkg/SgiPlatform.dec           |  29 +++-
>  .../{SgiPlatform.dsc => SgiPlatform.dsc.inc}  |  33 +---
>  Platform/ARM/SgiPkg/SgiPlatform.fdf           |   5 +-
>  40 files changed, 1532 insertions(+), 619 deletions(-)
>  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdDanielCfgM/Dsdt.asl
>  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdDanielCfgM/Madt.aslc
>  copy Platform/ARM/SgiPkg/AcpiTables/{Sgi575AcpiTables.inf => RdDanielCfgMAcpiTables.inf} (68%)
>  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdDanielCfgXlr/Dsdt.asl
>  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdDanielCfgXlr/Madt.aslc
>  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdDanielCfgXlr/Srat.aslc
>  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdDanielCfgXlrAcpiTables.inf
>  create mode 100644 Platform/ARM/SgiPkg/AcpiTables/RdN1EdgeX2/Srat.aslc
>  copy Platform/ARM/SgiPkg/AcpiTables/{RdN1Edge/Dsdt.asl => SsdtRos.asl} (58%)
>  create mode 100644 Platform/ARM/SgiPkg/RdDanielCfgM/RdDanielCfgM.dsc
>  create mode 100644 Platform/ARM/SgiPkg/RdDanielCfgM/RdDanielCfgM.fdf.inc
>  create mode 100644 Platform/ARM/SgiPkg/RdDanielCfgXlr/RdDanielCfgXlr.dsc
>  create mode 100644 Platform/ARM/SgiPkg/RdDanielCfgXlr/RdDanielCfgXlr.fdf.inc
>  create mode 100644 Platform/ARM/SgiPkg/RdE1Edge/RdE1Edge.dsc
>  create mode 100644 Platform/ARM/SgiPkg/RdE1Edge/RdE1Edge.fdf.inc
>  create mode 100644 Platform/ARM/SgiPkg/RdN1Edge/RdN1Edge.dsc
>  create mode 100644 Platform/ARM/SgiPkg/RdN1Edge/RdN1Edge.fdf.inc
>  create mode 100644 Platform/ARM/SgiPkg/RdN1EdgeX2/RdN1EdgeX2.dsc
>  create mode 100644 Platform/ARM/SgiPkg/RdN1EdgeX2/RdN1EdgeX2.fdf.inc
>  create mode 100644 Platform/ARM/SgiPkg/Sgi575/Sgi575.dsc
>  create mode 100644 Platform/ARM/SgiPkg/Sgi575/Sgi575.fdf.inc
>  rename Platform/ARM/SgiPkg/{SgiPlatform.dsc => SgiPlatform.dsc.inc} (87%)
>
> --
> 2.17.1
>
>
> ------------
> Groups.io Links: You receive all messages sent to this group.
>
> View/Reply Online (#57334): https://edk2.groups.io/g/devel/message/57334
> Mute This Topic: https://groups.io/mt/73009389/1785013
> Group Owner: devel+owner@edk2.groups.io
> Unsubscribe: https://edk2.groups.io/g/devel/unsub  [ta.omasab@gmail.com]
> ------------
>

  parent reply	other threads:[~2020-04-15  4:35 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-14 12:51 [edk2-platforms][PATCH v4 0/9]Platform/Arm/Sgi: Add platform support for RD-Daniel Aditya Angadi
2020-04-14 12:52 ` [edk2-platforms][PATCH v4 1/9] Platform/ARM/Sgi: Create individual Platform Description File Aditya Angadi
2020-04-27 11:01   ` [edk2-devel] " Ard Biesheuvel
2020-04-27 14:54     ` Aditya Angadi
2020-04-27 14:55       ` Ard Biesheuvel
2020-05-03  4:49         ` Aditya Angadi
2020-04-14 12:52 ` [edk2-platforms][PATCH v4 2/9] Platform/ARM/Sgi: Move the GIC related ACPI helper macros Aditya Angadi
2020-04-27 11:04   ` [edk2-devel] " Ard Biesheuvel
2020-04-14 12:52 ` [edk2-platforms][PATCH v4 3/9] Platform/ARM/Sgi: Move common platform description to SSDT Aditya Angadi
2020-04-27 11:06   ` [edk2-devel] " Ard Biesheuvel
2020-04-14 12:52 ` [edk2-platforms][PATCH v4 4/9] Platform/ARM/Sgi: Add support for remote numa memory nodes Aditya Angadi
2020-04-28 12:28   ` [edk2-devel] " Ard Biesheuvel
2020-04-28 13:15     ` Aditya Angadi
2020-04-14 12:52 ` [edk2-platforms][PATCH v4 5/9] Platform/ARM/Sgi: Add ACPI tables for Rd-Daniel Config-M Aditya Angadi
2020-04-28 12:30   ` Ard Biesheuvel
2020-04-14 12:52 ` [edk2-platforms][PATCH v4 6/9] Platform/ARM/Sgi: Add initial support for RD-Daniel Config-M platform Aditya Angadi
2020-04-28 12:32   ` Ard Biesheuvel
2020-04-28 13:18     ` Aditya Angadi
2020-04-14 12:52 ` [edk2-platforms][PATCH v4 7/9] Platform/ARM/Sgi: Add ACPI tables for RD-Daniel Config-XLR Aditya Angadi
2020-04-14 12:52 ` [edk2-platforms][PATCH v4 8/9] Platform/ARM/Sgi: Add initial support for RD-Daniel Config-XLR platform Aditya Angadi
2020-04-14 12:52 ` [edk2-platforms][PATCH v4 9/9] Platform/ARM/Sgi: Add SRAT table for RdN1Edge dual-chip platform Aditya Angadi
2020-04-14 13:50 ` [edk2-devel] [edk2-platforms][PATCH v4 0/9]Platform/Arm/Sgi: Add platform support for RD-Daniel Ard Biesheuvel
2020-04-14 14:17   ` Aditya Angadi
2020-04-15  4:34 ` Thomas Abraham [this message]
2020-04-22 12:12   ` Aditya Angadi
     [not found]   ` <16082330BC63CB95.30042@groups.io>
2020-04-26 10:12     ` Aditya Angadi

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=CAJuA9ahnmTcrjyA7uH9Ou_r29HQhyObZAXeTpv-OB5-iZ2oWew@mail.gmail.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