public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH v2 00/11] Enable DM_ETH for DPAA1 PowerPC T-series boards
@ 2021-04-13 16:47 Camelia Groza
  2021-04-13 16:47 ` [PATCH v2 01/11] powerpc: dts: t2080: add QorIQ DPAA 1 FMan v3 nodes Camelia Groza
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: Camelia Groza @ 2021-04-13 16:47 UTC (permalink / raw)
  To: u-boot

This patch series enables DM_ETH and DM_MDIO on the T2080RDB, T4240RDB and
T1042D4RDB DPAA1 PowerPC boards. The necessary FMan v3 Ethernet and MDIO
nodes are added to each platform's SoC and board device tree.

On T2080RDB, fdt fixups are performed before booting into the OS using a
simplified new routine in order to avoid the legacy code path.

Changes in v2:
- enable OF_CONTROL for the T1042D4RDB_SECURE_BOOT_defconfig in 11/11

Camelia Groza (11):
  powerpc: dts: t2080: add QorIQ DPAA 1 FMan v3 nodes
  powerpc: dts: t2080rdb: add FMan v3 nodes
  board: freescale: t208xrdb: fdt fixups under DM_ETH
  configs: T2080RDB: enable DM_ETH
  powerpc: dts: t4240: add QorIQ DPAA 1 FMan v3 nodes
  powerpc: dts: t4240rdb: add FMan v3 nodes
  powerpc: dts: qoriq: update the mdio offsets under the second FMan v3
  configs: T4240RDB: enable DM_ETH
  powerpc: dts: t1042: add QorIQ DPAA 1 FMan v3 nodes
  powerpc: dts: t1042d4rdb: add FMan v3 nodes
  configs: T1042D4RDB: enable DM_ETH

 arch/powerpc/dts/qoriq-fman3-1-10g-0.dtsi |   2 +-
 arch/powerpc/dts/qoriq-fman3-1-10g-1.dtsi |   2 +-
 arch/powerpc/dts/qoriq-fman3-1-1g-0.dtsi  |   2 +-
 arch/powerpc/dts/qoriq-fman3-1-1g-1.dtsi  |   2 +-
 arch/powerpc/dts/qoriq-fman3-1-1g-2.dtsi  |   2 +-
 arch/powerpc/dts/qoriq-fman3-1-1g-3.dtsi  |   2 +-
 arch/powerpc/dts/qoriq-fman3-1-1g-4.dtsi  |   2 +-
 arch/powerpc/dts/qoriq-fman3-1-1g-5.dtsi  |   2 +-
 arch/powerpc/dts/qoriq-fman3-1.dtsi       |   4 +-
 arch/powerpc/dts/t1042d4rdb.dts           |  55 ++++++++-
 arch/powerpc/dts/t1042si-post.dtsi        |  46 +++++++
 arch/powerpc/dts/t2080rdb.dts             |  69 ++++++++++-
 arch/powerpc/dts/t2080si-post.dtsi        |  51 ++++++++
 arch/powerpc/dts/t4240rdb.dts             | 142 +++++++++++++++++++++-
 arch/powerpc/dts/t4240si-post.dtsi        | 101 +++++++++++++++
 board/freescale/t208xrdb/eth_t208xrdb.c   |  35 ++++++
 board/freescale/t208xrdb/t208xrdb.c       |   3 +
 board/freescale/t208xrdb/t208xrdb.h       |   2 +
 configs/T1042D4RDB_NAND_defconfig         |   3 +
 configs/T1042D4RDB_SDCARD_defconfig       |   3 +
 configs/T1042D4RDB_SECURE_BOOT_defconfig  |   8 +-
 configs/T1042D4RDB_SPIFLASH_defconfig     |   3 +
 configs/T1042D4RDB_defconfig              |   3 +
 configs/T2080RDB_NAND_defconfig           |   3 +
 configs/T2080RDB_SDCARD_defconfig         |   3 +
 configs/T2080RDB_SPIFLASH_defconfig       |   3 +
 configs/T2080RDB_defconfig                |   3 +
 configs/T4240RDB_SDCARD_defconfig         |   3 +
 configs/T4240RDB_defconfig                |   3 +
 29 files changed, 547 insertions(+), 15 deletions(-)
 create mode 100644 arch/powerpc/dts/t1042si-post.dtsi
 create mode 100644 arch/powerpc/dts/t2080si-post.dtsi
 create mode 100644 arch/powerpc/dts/t4240si-post.dtsi

--
2.17.1

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

end of thread, other threads:[~2021-04-13 16:48 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-13 16:47 [PATCH v2 00/11] Enable DM_ETH for DPAA1 PowerPC T-series boards Camelia Groza
2021-04-13 16:47 ` [PATCH v2 01/11] powerpc: dts: t2080: add QorIQ DPAA 1 FMan v3 nodes Camelia Groza
2021-04-13 16:47 ` [PATCH v2 02/11] powerpc: dts: t2080rdb: add " Camelia Groza
2021-04-13 16:47 ` [PATCH v2 03/11] board: freescale: t208xrdb: fdt fixups under DM_ETH Camelia Groza
2021-04-13 16:47 ` [PATCH v2 04/11] configs: T2080RDB: enable DM_ETH Camelia Groza
2021-04-13 16:47 ` [PATCH v2 05/11] powerpc: dts: t4240: add QorIQ DPAA 1 FMan v3 nodes Camelia Groza
2021-04-13 16:48 ` [PATCH v2 06/11] powerpc: dts: t4240rdb: add " Camelia Groza
2021-04-13 16:48 ` [PATCH v2 07/11] powerpc: dts: qoriq: update the mdio offsets under the second FMan v3 Camelia Groza
2021-04-13 16:48 ` [PATCH v2 08/11] configs: T4240RDB: enable DM_ETH Camelia Groza
2021-04-13 16:48 ` [PATCH v2 09/11] powerpc: dts: t1042: add QorIQ DPAA 1 FMan v3 nodes Camelia Groza
2021-04-13 16:48 ` [PATCH v2 10/11] powerpc: dts: t1042d4rdb: add " Camelia Groza
2021-04-13 16:48 ` [PATCH v2 11/11] configs: T1042D4RDB: enable DM_ETH Camelia Groza

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