[edk2-devel] [PATCH edk2-platforms v2 0/6] Add LS1046AFRWY Platform

Pankaj Bansal posted 6 patches 3 years, 9 months ago
Failed in applying to current master (apply log)
There is a newer version of this series
.../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
[edk2-devel] [PATCH edk2-platforms v2 0/6] Add LS1046AFRWY Platform
Posted by Pankaj Bansal 3 years, 9 months ago
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.

V1 can be referred here:
https://edk2.groups.io/g/devel/message/60577

Changes in V2 w.r.t V1:
- No functional changes
- Explaination Added for PATCH 2/6 Silicon/NXP/LS1043A: Fix the RCW bits' parsing
- Refer PATCH 1/6 Silicon/NXP: Add comments explaining RCW bits' parsing
  for expalaination for PATCH 2/6 Silicon/NXP/LS1043A: Fix the RCW bits' parsing

Pankaj Bansal (6):
  Silicon/NXP: Add comments explaining RCW bits' parsing
  Silicon/NXP/LS1043A: Fix the RCW bits' parsing
  Silicon/NXP: Add LS1046A Soc package
  Platform/NXP/LS1046AFRWY: Add ArmPlatformLib
  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


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#62064): https://edk2.groups.io/g/devel/message/62064
Mute This Topic: https://groups.io/mt/75328990/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-

Re: [edk2-devel] [PATCH edk2-platforms v2 0/6] Add LS1046AFRWY Platform
Posted by Leif Lindholm 3 years, 9 months ago
On Mon, Jul 06, 2020 at 03:24:15 -0500, Pankaj Bansal wrote:
> 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.
> 
> V1 can be referred here:
> https://edk2.groups.io/g/devel/message/60577
> 
> Changes in V2 w.r.t V1:
> - No functional changes
> - Explaination Added for PATCH 2/6 Silicon/NXP/LS1043A: Fix the RCW bits' parsing
> - Refer PATCH 1/6 Silicon/NXP: Add comments explaining RCW bits' parsing
>   for expalaination for PATCH 2/6 Silicon/NXP/LS1043A: Fix the RCW bits' parsing

OK, so if you can drop yourself from any Co-authored tags, 1-3 and 6/6
can have Reviewed-by: Leif Lindholm <leif@nuviainc.com>
But please move all the ArmPlatformLib bits to a single patch and
submit a v3.

Regards,

Leif

> Pankaj Bansal (6):
>   Silicon/NXP: Add comments explaining RCW bits' parsing
>   Silicon/NXP/LS1043A: Fix the RCW bits' parsing
>   Silicon/NXP: Add LS1046A Soc package
>   Platform/NXP/LS1046AFRWY: Add ArmPlatformLib
>   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
> 

-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#62156): https://edk2.groups.io/g/devel/message/62156
Mute This Topic: https://groups.io/mt/75328990/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-