From: "Leif Lindholm" <leif@nuviainc.com>
To: Pankaj Bansal <pankaj.bansal@oss.nxp.com>
Cc: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com>,
Michael D Kinney <michael.d.kinney@intel.com>,
devel@edk2.groups.io, Varun Sethi <V.Sethi@nxp.com>,
Samer El-Haj-Mahmoud <Samer.El-Haj-Mahmoud@arm.com>,
Jon Nettleton <jon@solid-run.com>,
Ard Biesheuvel <ard.biesheuvel@linaro.org>
Subject: Re: [PATCH edk2-platforms v2 0/9] Add LX2160ARDB Platform
Date: Thu, 28 May 2020 15:58:59 +0100 [thread overview]
Message-ID: <20200528145859.GG1923@vanye> (raw)
In-Reply-To: <20200527085135.16717-1-pankaj.bansal@oss.nxp.com>
On Wed, May 27, 2020 at 14:21:26 +0530, Pankaj Bansal wrote:
> From: Pankaj Bansal <pankaj.bansal@nxp.com>
>
> LX2160A Reference Design Board (RDB) is a high-performance development
> platform that supports the QorIQ LX2160A Layerscape Architecture SOCs.
>
> This Platform is based on Layerscape Chassis3V2.
>
> The code structure is same as Chassis2 and LS1043A SOC and LS1043ARDB
> platform.
>
> v1 of this series can be referred here:
> https://edk2.groups.io/g/devel/message/59923
And what is the change in this set compared to v1?
Yes, I can find out by going through all of the individual patches,
but that defeats a large part of the point of having a cover letter.
/
Leif
> Pankaj Bansal (9):
> Silicon/NXP: Use Metronome implementation from MdeModulePkg
> Platform/NXP: Use Monotonic counter from MdeModulePkg
> Silicon/NXP: Use edk2 recommended compilation flags
> Platform/NXP/LX2160ARDB: Add ArmPlatformLib
> Silicon/NXP: Implement PL011UartClockLib for NXP platforms
> Silicon/NXP: Add Chassis3V2 Package
> Silicon/NXP: Add LX2160A Soc package
> Platform/NXP: Add LX2160ARDB Platform
> Platform/NXP/LX2160aRdbPkg: Add VarStore
>
> Platform/NXP/LX2160aRdbPkg/LX2160aRdbPkg.dec | 23 +++
> Silicon/NXP/Chassis3V2/Chassis3V2.dec | 22 +++
> Silicon/NXP/LX2160A/LX2160A.dec | 13 ++
> Silicon/NXP/Chassis3V2/Chassis3V2.dsc.inc | 10 ++
> Silicon/NXP/LX2160A/LX2160A.dsc.inc | 50 ++++++
> Silicon/NXP/NxpQoriqLs.dsc.inc | 13 +-
> Platform/NXP/LX2160aRdbPkg/LX2160aRdbPkg.dsc | 46 ++++++
> Platform/NXP/LS1043aRdbPkg/LS1043aRdbPkg.fdf | 4 +-
> .../LX2160aRdbPkg.fdf} | 33 ++--
> .../Library/ArmPlatformLib/ArmPlatformLib.inf | 42 +++++
> .../Library/ChassisLib/ChassisLib.inf | 33 ++++
> Silicon/NXP/LX2160A/Library/SocLib/SocLib.inf | 27 ++++
> .../PL011UartClockLib/PL011UartClockLib.inf | 24 +++
> Silicon/NXP/Chassis3V2/Include/Chassis.h | 26 ++++
> Silicon/NXP/LX2160A/Include/Soc.h | 38 +++++
> .../Library/ArmPlatformLib/ArmPlatformLib.c | 147 ++++++++++++++++++
> .../ArmPlatformLib/ArmPlatformLibMem.c | 80 ++++++++++
> .../Library/ChassisLib/ChassisLib.c | 71 +++++++++
> Silicon/NXP/LX2160A/Library/SocLib/SocLib.c | 80 ++++++++++
> .../PL011UartClockLib/PL011UartClockLib.c | 22 +++
> .../AArch64/ArmPlatformHelper.S | 45 ++++++
> Platform/NXP/LX2160aRdbPkg/VarStore.fdf.inc | 91 +++++++++++
> 22 files changed, 913 insertions(+), 27 deletions(-)
> create mode 100644 Platform/NXP/LX2160aRdbPkg/LX2160aRdbPkg.dec
> create mode 100644 Silicon/NXP/Chassis3V2/Chassis3V2.dec
> create mode 100644 Silicon/NXP/LX2160A/LX2160A.dec
> create mode 100644 Silicon/NXP/Chassis3V2/Chassis3V2.dsc.inc
> create mode 100644 Silicon/NXP/LX2160A/LX2160A.dsc.inc
> create mode 100644 Platform/NXP/LX2160aRdbPkg/LX2160aRdbPkg.dsc
> copy Platform/NXP/{LS1043aRdbPkg/LS1043aRdbPkg.fdf => LX2160aRdbPkg/LX2160aRdbPkg.fdf} (88%)
> create mode 100644 Platform/NXP/LX2160aRdbPkg/Library/ArmPlatformLib/ArmPlatformLib.inf
> create mode 100644 Silicon/NXP/Chassis3V2/Library/ChassisLib/ChassisLib.inf
> create mode 100644 Silicon/NXP/LX2160A/Library/SocLib/SocLib.inf
> create mode 100644 Silicon/NXP/Library/PL011UartClockLib/PL011UartClockLib.inf
> create mode 100644 Silicon/NXP/Chassis3V2/Include/Chassis.h
> create mode 100644 Silicon/NXP/LX2160A/Include/Soc.h
> create mode 100644 Platform/NXP/LX2160aRdbPkg/Library/ArmPlatformLib/ArmPlatformLib.c
> create mode 100644 Platform/NXP/LX2160aRdbPkg/Library/ArmPlatformLib/ArmPlatformLibMem.c
> create mode 100644 Silicon/NXP/Chassis3V2/Library/ChassisLib/ChassisLib.c
> create mode 100644 Silicon/NXP/LX2160A/Library/SocLib/SocLib.c
> create mode 100644 Silicon/NXP/Library/PL011UartClockLib/PL011UartClockLib.c
> create mode 100644 Platform/NXP/LX2160aRdbPkg/Library/ArmPlatformLib/AArch64/ArmPlatformHelper.S
> create mode 100644 Platform/NXP/LX2160aRdbPkg/VarStore.fdf.inc
>
> --
> 2.17.1
>
prev parent reply other threads:[~2020-05-28 14:59 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-27 8:51 [PATCH edk2-platforms v2 0/9] Add LX2160ARDB Platform Pankaj Bansal
2020-05-27 8:51 ` [PATCH edk2-platforms v2 1/9] Silicon/NXP: Use Metronome implementation from MdeModulePkg Pankaj Bansal
2020-05-27 8:51 ` [PATCH edk2-platforms v2 2/9] Platform/NXP: Use Monotonic counter " Pankaj Bansal
2020-05-27 8:51 ` [PATCH edk2-platforms v2 3/9] Silicon/NXP: Use edk2 recommended compilation flags Pankaj Bansal
2020-05-28 14:48 ` Leif Lindholm
2020-05-27 8:51 ` [PATCH edk2-platforms v2 4/9] Platform/NXP/LX2160ARDB: Add ArmPlatformLib Pankaj Bansal
2020-05-27 8:51 ` [PATCH edk2-platforms v2 5/9] Silicon/NXP: Implement PL011UartClockLib for NXP platforms Pankaj Bansal
2020-05-27 8:51 ` [PATCH edk2-platforms v2 6/9] Silicon/NXP: Add Chassis3V2 Package Pankaj Bansal
2020-05-27 8:51 ` [PATCH edk2-platforms v2 7/9] Silicon/NXP: Add LX2160A Soc package Pankaj Bansal
2020-05-27 8:51 ` [PATCH edk2-platforms v2 8/9] Platform/NXP: Add LX2160ARDB Platform Pankaj Bansal
2020-05-28 15:00 ` Leif Lindholm
2020-05-29 5:21 ` Pankaj Bansal
2020-05-29 11:49 ` Leif Lindholm
2020-05-29 12:25 ` Pankaj Bansal
2020-05-29 14:03 ` Leif Lindholm
2020-05-30 12:19 ` Pankaj Bansal
2020-05-27 8:51 ` [PATCH edk2-platforms v2 9/9] Platform/NXP/LX2160aRdbPkg: Add VarStore Pankaj Bansal
2020-05-28 14:58 ` Leif Lindholm [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=20200528145859.GG1923@vanye \
--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