All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vladimir Oltean <vladimir.oltean@nxp.com>
To: u-boot@lists.denx.de
Cc: Michael Walle <michael@walle.cc>, Tom Rini <trini@konsulko.com>,
	Priyanka Jain <priyanka.jain@nxp.com>,
	Li Yang <leoyang.li@nxp.com>
Subject: [PATCH 09/15] arm: dts: ls1028a-rdb: sort nodes alphabetically
Date: Thu,  2 Dec 2021 16:54:03 +0200	[thread overview]
Message-ID: <20211202145409.2482099-10-vladimir.oltean@nxp.com> (raw)
In-Reply-To: <20211202145409.2482099-1-vladimir.oltean@nxp.com>

The nodes in the NXP LS1028A-RDB device tree are out of order, regroup
them alphabetically to have a simple delta when the Linux device tree is
brought in.

Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
---
 arch/arm/dts/fsl-ls1028a-rdb.dts | 110 +++++++++++++++----------------
 1 file changed, 55 insertions(+), 55 deletions(-)

diff --git a/arch/arm/dts/fsl-ls1028a-rdb.dts b/arch/arm/dts/fsl-ls1028a-rdb.dts
index 537ebbc697cb..4af409fd4758 100644
--- a/arch/arm/dts/fsl-ls1028a-rdb.dts
+++ b/arch/arm/dts/fsl-ls1028a-rdb.dts
@@ -36,6 +36,48 @@
 	status = "okay";
 };
 
+&duart0 {
+	status = "okay";
+};
+
+&duart1 {
+	status = "okay";
+};
+
+&enetc_mdio_pf3 {
+	status = "okay";
+	rdb_phy0: phy@2 {
+		reg = <2>;
+	};
+
+	/* VSC8514 QSGMII PHY */
+	sw_phy0: phy@10 {
+		reg = <0x10>;
+	};
+
+	sw_phy1: phy@11 {
+		reg = <0x11>;
+	};
+
+	sw_phy2: phy@12 {
+		reg = <0x12>;
+	};
+
+	sw_phy3: phy@13 {
+		reg = <0x13>;
+	};
+};
+
+&enetc_port0 {
+	status = "okay";
+	phy-mode = "sgmii";
+	phy-handle = <&rdb_phy0>;
+};
+
+&enetc_port2 {
+	status = "okay";
+};
+
 &esdhc {
 	status = "okay";
 };
@@ -110,44 +152,6 @@
 	status = "okay";
 };
 
-&sata {
-	status = "okay";
-};
-
-&duart0 {
-	status = "okay";
-};
-
-&duart1 {
-	status = "okay";
-};
-
-&pcie1 {
-	status = "okay";
-};
-
-&pcie2 {
-	status = "okay";
-};
-
-&usb0 {
-	status = "okay";
-};
-
-&usb1 {
-	status = "okay";
-};
-
-&enetc_port0 {
-	status = "okay";
-	phy-mode = "sgmii";
-	phy-handle = <&rdb_phy0>;
-};
-
-&enetc_port2 {
-	status = "okay";
-};
-
 &mscc_felix {
 	status = "okay";
 };
@@ -185,26 +189,22 @@
 	status = "okay";
 };
 
-&enetc_mdio_pf3 {
+&pcie1 {
 	status = "okay";
-	rdb_phy0: phy@2 {
-		reg = <2>;
-	};
+};
 
-	/* VSC8514 QSGMII PHY */
-	sw_phy0: phy@10 {
-		reg = <0x10>;
-	};
+&pcie2 {
+	status = "okay";
+};
 
-	sw_phy1: phy@11 {
-		reg = <0x11>;
-	};
+&sata {
+	status = "okay";
+};
 
-	sw_phy2: phy@12 {
-		reg = <0x12>;
-	};
+&usb0 {
+	status = "okay";
+};
 
-	sw_phy3: phy@13 {
-		reg = <0x13>;
-	};
+&usb1 {
+	status = "okay";
 };
-- 
2.25.1


  parent reply	other threads:[~2021-12-02 14:56 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-02 14:53 [PATCH 00/15] Sync NXP LS1028A-RDB device trees between U-Boot and Linux Vladimir Oltean
2021-12-02 14:53 ` [PATCH 01/15] i2c: muxes: pca954x: add PCA9847 variant Vladimir Oltean
2021-12-03  5:25   ` Heiko Schocher
2021-12-07  4:41   ` Priyanka Jain
2021-12-02 14:53 ` [PATCH 02/15] rtc: pcf2127: sync with Linux compatible strings Vladimir Oltean
2021-12-03 20:13   ` Simon Glass
2021-12-02 14:53 ` [PATCH 03/15] arm: dts: ls1028a-qds: use Linux compatible string for RTC Vladimir Oltean
2021-12-07  4:46   ` Priyanka Jain
2021-12-02 14:53 ` [PATCH 04/15] arm: ls1088a-qds: " Vladimir Oltean
2021-12-07  4:47   ` Priyanka Jain
2021-12-02 14:53 ` [PATCH 05/15] arm: ls1088a-rdb: " Vladimir Oltean
2021-12-07  4:50   ` Priyanka Jain
2021-12-02 14:54 ` [PATCH 06/15] arm: lx2160a-qds: " Vladimir Oltean
2021-12-07  4:51   ` Priyanka Jain
2021-12-02 14:54 ` [PATCH 07/15] arm: dts: lx2160a-rdb: " Vladimir Oltean
2021-12-07  4:51   ` Priyanka Jain
2021-12-02 14:54 ` [PATCH 08/15] rtc: pcf2127: remove U-Boot specific compatible string Vladimir Oltean
2021-12-03 20:13   ` Simon Glass
2021-12-03 22:09     ` Vladimir Oltean
2021-12-04  1:02       ` Simon Glass
2021-12-07  4:53   ` Priyanka Jain
2021-12-07 14:06     ` Vladimir Oltean
2021-12-07 14:46       ` Tom Rini
2021-12-07 14:48         ` Vladimir Oltean
2021-12-02 14:54 ` Vladimir Oltean [this message]
2021-12-07  4:54   ` [PATCH 09/15] arm: dts: ls1028a-rdb: sort nodes alphabetically Priyanka Jain
2021-12-02 14:54 ` [PATCH 10/15] arm: dts: ls1028a-rdb: sync Ethernet device tree nodes with Linux Vladimir Oltean
2021-12-07  4:58   ` Priyanka Jain
2021-12-02 14:54 ` [PATCH 11/15] arm: dts: ls1028a-rdb: disable DSPI nodes Vladimir Oltean
2021-12-07  4:59   ` Priyanka Jain
2021-12-02 14:54 ` [PATCH 12/15] arm: dts: ls1028a-rdb: disable I2C buses 1 through 7 Vladimir Oltean
2021-12-07  5:00   ` Priyanka Jain
2021-12-02 14:54 ` [PATCH 13/15] arm: dts: ls1028a-rdb: enable PCIe controllers from U-Boot dtsi Vladimir Oltean
2021-12-02 14:54 ` [PATCH 14/15] arm: dts: ls1028a-rdb: sync device tree with Linux Vladimir Oltean
2021-12-07  5:07   ` Priyanka Jain
2021-12-02 14:54 ` [PATCH 15/15] arm: dts: ls1028a-qds: declare in-band autoneg for Ethernet ports Vladimir Oltean
2021-12-07  5:10   ` Priyanka Jain
2021-12-03 10:04 ` [PATCH 00/15] Sync NXP LS1028A-RDB device trees between U-Boot and Linux Vladimir Oltean

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=20211202145409.2482099-10-vladimir.oltean@nxp.com \
    --to=vladimir.oltean@nxp.com \
    --cc=leoyang.li@nxp.com \
    --cc=michael@walle.cc \
    --cc=priyanka.jain@nxp.com \
    --cc=trini@konsulko.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.