public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH 0/2] Add support for LX2162AQDS board
@ 2020-09-01  9:32 meenakshi.aggarwal at nxp.com
  2020-09-01  9:32 ` [PATCH 1/2] armv8: lx2162a: Add Soc changes to support LX2162A meenakshi.aggarwal at nxp.com
                   ` (2 more replies)
  0 siblings, 3 replies; 18+ messages in thread
From: meenakshi.aggarwal at nxp.com @ 2020-09-01  9:32 UTC (permalink / raw)
  To: u-boot

From: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com>

This patch set add support for LX2162AQDS board.
LX2162A is a variant of LX2160A.

Meenakshi Aggarwal (2):
  armv8: lx2162a: Add Soc changes to support LX2162A
  armv8: lx2162aqds: Add support for LX2162AQDS platform

 arch/arm/Kconfig                                   |  12 +
 arch/arm/cpu/armv8/Kconfig                         |   2 +-
 arch/arm/cpu/armv8/fsl-layerscape/cpu.c            |   5 +-
 arch/arm/cpu/armv8/fsl-layerscape/lx2160a_serdes.c |  19 +-
 arch/arm/dts/Makefile                              |   6 +-
 arch/arm/dts/fsl-lx2160a-qds.dtsi                  |  16 +-
 arch/arm/dts/fsl-lx2162a-qds-17-x.dts              |  17 +
 arch/arm/dts/fsl-lx2162a-qds-18-x.dts              |  17 +
 arch/arm/dts/fsl-lx2162a-qds-20-x.dts              |  17 +
 arch/arm/dts/fsl-lx2162a-qds-sd1-17.dtsi           |  58 ++
 arch/arm/dts/fsl-lx2162a-qds-sd1-18.dtsi           |  61 ++
 arch/arm/dts/fsl-lx2162a-qds-sd1-20.dtsi           |  26 +
 arch/arm/dts/fsl-lx2162a-qds.dts                   |  36 +
 arch/arm/include/asm/arch-fsl-layerscape/soc.h     |   5 +-
 board/freescale/lx2160a/Kconfig                    |  16 +
 board/freescale/lx2160a/MAINTAINERS                |  12 +-
 board/freescale/lx2160a/Makefile                   |   1 +
 board/freescale/lx2160a/eth_lx2162aqds.c           | 974 +++++++++++++++++++++
 board/freescale/lx2160a/lx2160a.c                  |  42 +-
 configs/lx2162aqds_tfa_SECURE_BOOT_defconfig       |  97 ++
 configs/lx2162aqds_tfa_defconfig                   |  95 ++
 configs/lx2162aqds_tfa_verified_boot_defconfig     | 102 +++
 drivers/pci/pcie_layerscape_ep.c                   |   4 +-
 drivers/pci/pcie_layerscape_fixup_common.c         |   5 +-
 include/configs/lx2160a_common.h                   |   2 +
 include/configs/lx2162aqds.h                       | 169 ++++
 26 files changed, 1787 insertions(+), 29 deletions(-)
 create mode 100644 arch/arm/dts/fsl-lx2162a-qds-17-x.dts
 create mode 100644 arch/arm/dts/fsl-lx2162a-qds-18-x.dts
 create mode 100644 arch/arm/dts/fsl-lx2162a-qds-20-x.dts
 create mode 100644 arch/arm/dts/fsl-lx2162a-qds-sd1-17.dtsi
 create mode 100644 arch/arm/dts/fsl-lx2162a-qds-sd1-18.dtsi
 create mode 100644 arch/arm/dts/fsl-lx2162a-qds-sd1-20.dtsi
 create mode 100644 arch/arm/dts/fsl-lx2162a-qds.dts
 create mode 100644 board/freescale/lx2160a/eth_lx2162aqds.c
 create mode 100644 configs/lx2162aqds_tfa_SECURE_BOOT_defconfig
 create mode 100644 configs/lx2162aqds_tfa_defconfig
 create mode 100644 configs/lx2162aqds_tfa_verified_boot_defconfig
 create mode 100644 include/configs/lx2162aqds.h

-- 
2.7.4

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2020-10-20  7:09 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-01  9:32 [PATCH 0/2] Add support for LX2162AQDS board meenakshi.aggarwal at nxp.com
2020-09-01  9:32 ` [PATCH 1/2] armv8: lx2162a: Add Soc changes to support LX2162A meenakshi.aggarwal at nxp.com
2020-09-02  7:18   ` Priyanka Jain
2020-09-02  9:59     ` Meenakshi Aggarwal
2020-09-01  9:32 ` [PATCH 2/2] armv8: lx2162aqds: Add support for LX2162AQDS platform meenakshi.aggarwal at nxp.com
2020-09-02  7:27   ` Priyanka Jain
2020-09-03  9:53 ` [PATCH v2 0/2] Add support for LX2162AQDS board meenakshi.aggarwal at nxp.com
2020-09-03  9:53   ` [PATCH v2 1/2] armv8: lx2162a: Add Soc changes to support LX2162A meenakshi.aggarwal at nxp.com
2020-09-03  9:53   ` [PATCH v2 2/2] armv8: lx2162aqds: Add support for LX2162AQDS platform meenakshi.aggarwal at nxp.com
2020-09-07 10:12     ` [PATCH v3 0/2] Add support for LX2162AQDS board meenakshi.aggarwal at nxp.com
2020-09-07 10:12       ` [PATCH v3 1/2] armv8: lx2162a: Add Soc changes to support LX2162A meenakshi.aggarwal at nxp.com
2020-09-07 13:12         ` Tom Rini
2020-09-08  6:16           ` Meenakshi Aggarwal
2020-10-20  7:09         ` Y.b. Lu
2020-09-07 10:12       ` [PATCH v3 2/2] armv8: lx2162aqds: Add support for LX2162AQDS platform meenakshi.aggarwal at nxp.com
2020-09-07 13:12         ` Tom Rini
2020-09-09  6:42           ` Meenakshi Aggarwal
2020-09-09 12:25             ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox