From: Camelia Groza <camelia.groza@oss.nxp.com>
To: u-boot@lists.denx.de
Subject: [PATCH 00/11] Enable DM_ETH for DPAA1 PowerPC T-series boards
Date: Fri, 9 Apr 2021 17:23:06 +0300 [thread overview]
Message-ID: <cover.1617977391.git.camelia.groza@oss.nxp.com> (raw)
Apologies to those who received this series twice off list due to an
e-mail misconfiguration.
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.
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 | 4 +-
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, 544 insertions(+), 14 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
next reply other threads:[~2021-04-09 14:23 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-09 14:23 Camelia Groza [this message]
2021-04-09 14:23 ` [PATCH 01/11] powerpc: dts: t2080: add QorIQ DPAA 1 FMan v3 nodes Camelia Groza
2021-04-13 9:48 ` Priyanka Jain
2021-04-13 15:17 ` Camelia Alexandra Groza
2021-04-09 14:23 ` [PATCH 02/11] powerpc: dts: t2080rdb: add " Camelia Groza
2021-04-09 14:23 ` [PATCH 03/11] board: freescale: t208xrdb: fdt fixups under DM_ETH Camelia Groza
2021-04-09 14:23 ` [PATCH 04/11] configs: T2080RDB: enable DM_ETH Camelia Groza
2021-04-09 14:23 ` [PATCH 05/11] powerpc: dts: t4240: add QorIQ DPAA 1 FMan v3 nodes Camelia Groza
2021-04-09 14:23 ` [PATCH 06/11] powerpc: dts: t4240rdb: add " Camelia Groza
2021-04-09 14:23 ` [PATCH 07/11] powerpc: dts: qoriq: update the mdio offsets under the second FMan v3 Camelia Groza
2021-04-09 14:23 ` [PATCH 08/11] configs: T4240RDB: enable DM_ETH Camelia Groza
2021-04-09 14:23 ` [PATCH 09/11] powerpc: dts: t1042: add QorIQ DPAA 1 FMan v3 nodes Camelia Groza
2021-04-09 14:23 ` [PATCH 10/11] powerpc: dts: t1042d4rdb: add " Camelia Groza
2021-04-09 14:23 ` [PATCH 11/11] configs: T1042D4RDB: enable DM_ETH Camelia Groza
-- strict thread matches above, loose matches on Subject: below --
2021-04-09 13:41 [PATCH 00/11] Enable DM_ETH for DPAA1 PowerPC T-series boards Camelia Groza
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-all 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=cover.1617977391.git.camelia.groza@oss.nxp.com \
--to=camelia.groza@oss.nxp.com \
--cc=u-boot@lists.denx.de \
/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