From: "Ard Biesheuvel" <ard.biesheuvel@arm.com>
To: devel@edk2.groups.io, aditya.angadi@arm.com
Cc: thomas.abraham@arm.com, vijayenthiran.subramaniam@arm.com,
leif@nuviainc.com
Subject: Re: [edk2-devel] [PATCH v5][edk2-platforms 00/17] Platform/Arm/Sgi: Add platform support for RD-Daniel
Date: Tue, 5 May 2020 20:18:36 +0200 [thread overview]
Message-ID: <f886a13f-6cdf-1f55-a77b-0da86b00ffbc@arm.com> (raw)
In-Reply-To: <20200505130214.25592-1-aditya.angadi@arm.com>
On 5/5/20 3:01 PM, Aditya Angadi via groups.io wrote:
> Changes since v4:
> - Addressed all the comments from Ard.
> - Split the patches into multiple smaller patches where applicable.
> - Reworded the commit messages to be more accurate about the change
> being introduced.
> - Picked up Ard's review tags
>
> Changes since v3:
> - Addressed all the comments from Ard.
> - Each platform with SgiPkg would be built independently of the other.
> - Removed all references to ACPI tables of platforms that are not part
> of the build of a platform.
> - Added support for multi-chip NUMA memory nodes.
> - Added SRAT table for RdN1EdgeX2 platform.
> - Did not pickup the review tags from Ard because the code change from
> last version.
>
> 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 five patches rework the SgiPkg code to move away from being
> able to build a single binary for all the supported platforms to
> independent binary for each platform. This was requried as the first
> step to add newer RD platform support in SgiPkg as these newer platforms
> have differences in the programming interface.
>
> Patches 6 to 11 in the series refactor and consolidate the code in
> SgiPkg in preparation for adding support for numa memory nodes and the
> RD-Daniel platform.
>
> Patches 12 and 13 in the series add SRAT table for RD-N1-Edge platform
> and removes the hard-code chip count on the platform.
>
> The next four patches add support for the RD-Daniel platforms. There are
> two configuration of RD-Daniel platform.
> - RD-Daniel Config-M: This is single chip platform that includes
> 16 Neoverse cores.
> - RD-Daniel Config-XLR: This is multi-chip platform that includes
> four identical chip connected over a coherent link with all the
> four chips put together into a single package. Each chip includes
> four Neoverse cores and it attached to 8GB of RAM.
>
>
> Aditya Angadi (15):
> Platform/ARM/SgiPkg: Create platform specific dsc files
> Platform/ARM/SgiPkg: Let platforms define core and cluster count
> Platform/ARM/SgiPkg: Let platforms define GIC related PCD values
> Platform/ARM/SgiPkg: Create platform specific fd include file
> Platform/ARM/SgiPkg: Let platform specify the ACPI tables to include
> Platform/ARM/SgiPkg: Obtain rd-e1-edge platform core count from PCD
> Platform/ARM/SgiPkg: Refactor GIC related ACPI helper macros
> Platform/ARM/SgiPkg: Update SGI-575 MADT table to ACPI 6.2
> Platform/ARM/SgiPkg: Move common platform description to SSDT
> Platform/ARM/SgiPkg: Add helper macros for SRAT table
> Platform/ARM/SgiPkg: Use chip count constant on rdn1edgex2 platform
> Platform/ARM/SgiPkg: Add ACPI tables for Rd-Daniel Config-M
> Platform/ARM/SgiPkg: Add initial support for RD-Daniel Config-M
> platform
> Platform/ARM/SgiPkg: Add ACPI tables for RD-Daniel Config-XLR
> Platform/ARM/SgiPkg: Add initial support for RD-Daniel Config-XLR
> platform
>
> Vijayenthiran Subramaniam (2):
> Platform/ARM/SgiPkg: Add support for remote numa memory nodes
> Platform/ARM/SgiPkg: Add SRAT table for RdN1Edge dual-chip platform
>
For the series,
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@arm.com>
Pushed as 03fb86be4146..ca1a7187861c
Thanks!
prev parent reply other threads:[~2020-05-05 18:18 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-05 13:01 [PATCH v5][edk2-platforms 00/17] Platform/Arm/Sgi: Add platform support for RD-Daniel Aditya Angadi
2020-05-05 13:01 ` [PATCH v5][edk2-platforms 01/17] Platform/ARM/SgiPkg: Create platform specific dsc files Aditya Angadi
2020-05-05 13:01 ` [PATCH v5][edk2-platforms 02/17] Platform/ARM/SgiPkg: Let platforms define core and cluster count Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 03/17] Platform/ARM/SgiPkg: Let platforms define GIC related PCD values Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 04/17] Platform/ARM/SgiPkg: Create platform specific fd include file Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 05/17] Platform/ARM/SgiPkg: Let platform specify the ACPI tables to include Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 06/17] Platform/ARM/SgiPkg: Obtain rd-e1-edge platform core count from PCD Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 07/17] Platform/ARM/SgiPkg: Refactor GIC related ACPI helper macros Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 08/17] Platform/ARM/SgiPkg: Update SGI-575 MADT table to ACPI 6.2 Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 09/17] Platform/ARM/SgiPkg: Move common platform description to SSDT Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 10/17] Platform/ARM/SgiPkg: Add helper macros for SRAT table Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 11/17] Platform/ARM/SgiPkg: Add support for remote numa memory nodes Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 12/17] Platform/ARM/SgiPkg: Add SRAT table for RdN1Edge dual-chip platform Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 13/17] Platform/ARM/SgiPkg: Use chip count constant on rdn1edgex2 platform Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 14/17] Platform/ARM/SgiPkg: Add ACPI tables for Rd-Daniel Config-M Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 15/17] Platform/ARM/SgiPkg: Add initial support for RD-Daniel Config-M platform Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 16/17] Platform/ARM/SgiPkg: Add ACPI tables for RD-Daniel Config-XLR Aditya Angadi
2020-05-05 13:02 ` [PATCH v5][edk2-platforms 17/17] Platform/ARM/SgiPkg: Add initial support for RD-Daniel Config-XLR platform Aditya Angadi
2020-05-05 18:18 ` Ard Biesheuvel [this message]
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=f886a13f-6cdf-1f55-a77b-0da86b00ffbc@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