From: "Pankaj Bansal" <pankaj.bansal@nxp.com>
To: Leif Lindholm <leif@nuviainc.com>,
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>,
Augustine Philips <Augustine.Philips@arm.com>,
Ard Biesheuvel <ard.biesheuvel@linaro.org>,
Arokia Samy <arokia.samy@puresoftware.com>,
Kuldip Dwivedi <kuldip.dwivedi@puresoftware.com>
Subject: [PATCH edk2-platforms v3 0/5] Add LS1046AFRWY Platform
Date: Tue, 7 Jul 2020 23:57:14 -0500 [thread overview]
Message-ID: <20200708045719.2648-1-pankaj.bansal@oss.nxp.com> (raw)
From: Pankaj Bansal <pankaj.bansal@nxp.com>
The Layerscape LS1046A Freeway (FRWY-LS1046A) board is a high-performance
development platform that supports the QorIQ LS1046A architecture
processor.
The LS1046A SOC is based on Layerscape Chassis2.
The code structure is same as Chassis2 and LS1043A SOC and LS1043ARDB
platform.
V2 can be referred here:
https://edk2.groups.io/g/devel/message/62064
Changes in V2 w.r.t V1:
- No functional changes
- Removed Co-authored-by: Pankaj Bansal <pankaj.bansal@nxp.com>
from "PATCH 3/6 Silicon/NXP: Add LS1046A Soc package" and
"PATCH 5/6 Platform/NXP: Add LS1046AFRWY Platform"
- Squashed "PATCH 4/6 Platform/NXP/LS1046AFRWY: Add ArmPlatformLib"
in "PATCH 5/6 Platform/NXP: Add LS1046AFRWY Platform"
Pankaj Bansal (5):
Silicon/NXP: Add comments explaining RCW bits' parsing
Silicon/NXP/LS1043A: Fix the RCW bits' parsing
Silicon/NXP: Add LS1046A Soc package
Platform/NXP: Add LS1046AFRWY Platform
Platform/NXP/LS1046aFrwyPkg: Add VarStore
.../NXP/LS1046aFrwyPkg/LS1046aFrwyPkg.dec | 23 +++
Silicon/NXP/LS1046A/LS1046A.dec | 13 ++
Silicon/NXP/LS1046A/LS1046A.dsc.inc | 42 +++++
.../NXP/LS1046aFrwyPkg/LS1046aFrwyPkg.dsc | 46 +++++
.../NXP/LS1046aFrwyPkg/LS1046aFrwyPkg.fdf | 169 ++++++++++++++++++
.../Library/ArmPlatformLib/ArmPlatformLib.inf | 42 +++++
Silicon/NXP/LS1046A/Library/SocLib/SocLib.inf | 27 +++
Silicon/NXP/LS1043A/Include/Soc.h | 29 ++-
Silicon/NXP/LS1046A/Include/Soc.h | 63 +++++++
Silicon/NXP/LS1046A/Include/SocSerDes.h | 33 ++++
Silicon/NXP/LX2160A/Include/Soc.h | 28 ++-
.../Library/ArmPlatformLib/ArmPlatformLib.c | 147 +++++++++++++++
.../ArmPlatformLib/ArmPlatformLibMem.c | 75 ++++++++
Silicon/NXP/LS1046A/Library/SocLib/SerDes.c | 119 ++++++++++++
Silicon/NXP/LS1046A/Library/SocLib/SocLib.c | 78 ++++++++
.../AArch64/ArmPlatformHelper.S | 45 +++++
Platform/NXP/LS1046aFrwyPkg/VarStore.fdf.inc | 91 ++++++++++
17 files changed, 1068 insertions(+), 2 deletions(-)
create mode 100644 Platform/NXP/LS1046aFrwyPkg/LS1046aFrwyPkg.dec
create mode 100644 Silicon/NXP/LS1046A/LS1046A.dec
create mode 100644 Silicon/NXP/LS1046A/LS1046A.dsc.inc
create mode 100644 Platform/NXP/LS1046aFrwyPkg/LS1046aFrwyPkg.dsc
create mode 100644 Platform/NXP/LS1046aFrwyPkg/LS1046aFrwyPkg.fdf
create mode 100644 Platform/NXP/LS1046aFrwyPkg/Library/ArmPlatformLib/ArmPlatformLib.inf
create mode 100644 Silicon/NXP/LS1046A/Library/SocLib/SocLib.inf
create mode 100644 Silicon/NXP/LS1046A/Include/Soc.h
create mode 100644 Silicon/NXP/LS1046A/Include/SocSerDes.h
create mode 100644 Platform/NXP/LS1046aFrwyPkg/Library/ArmPlatformLib/ArmPlatformLib.c
create mode 100644 Platform/NXP/LS1046aFrwyPkg/Library/ArmPlatformLib/ArmPlatformLibMem.c
create mode 100644 Silicon/NXP/LS1046A/Library/SocLib/SerDes.c
create mode 100644 Silicon/NXP/LS1046A/Library/SocLib/SocLib.c
create mode 100644 Platform/NXP/LS1046aFrwyPkg/Library/ArmPlatformLib/AArch64/ArmPlatformHelper.S
create mode 100644 Platform/NXP/LS1046aFrwyPkg/VarStore.fdf.inc
--
2.17.1
next reply other threads:[~2020-07-08 4:57 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-08 4:57 Pankaj Bansal [this message]
2020-07-08 4:57 ` [PATCH edk2-platforms v3 1/5] Silicon/NXP: Add comments explaining RCW bits' parsing Pankaj Bansal
2020-07-08 4:57 ` [PATCH edk2-platforms v3 2/5] Silicon/NXP/LS1043A: Fix the " Pankaj Bansal
2020-07-08 4:57 ` [PATCH edk2-platforms v3 3/5] Silicon/NXP: Add LS1046A Soc package Pankaj Bansal
2020-07-08 4:57 ` [PATCH edk2-platforms v3 4/5] Platform/NXP: Add LS1046AFRWY Platform Pankaj Bansal
2020-07-13 16:23 ` Leif Lindholm
2020-07-08 4:57 ` [PATCH edk2-platforms v3 5/5] Platform/NXP/LS1046aFrwyPkg: Add VarStore Pankaj Bansal
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=20200708045719.2648-1-pankaj.bansal@oss.nxp.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