Commit 173fb0a3 authored by Ioana Ciornei's avatar Ioana Ciornei Committed by Shawn Guo
Browse files

arm64: dts: ls2088ardb: add PHY nodes for the CS4340 PHYs



Annotate the EMDIO1 node and describe the 4 10GBASER PHYs found on the
LS2088ARDB board. Also, add phy-handles for DPMACs 1-4 to their
associated PHY.

Signed-off-by: default avatarIoana Ciornei <ioana.ciornei@nxp.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 0420dde3
Loading
Loading
Loading
Loading
+44 −0
Original line number Diff line number Diff line
@@ -22,3 +22,47 @@
		stdout-path = "serial1:115200n8";
	};
};

&dpmac1 {
	phy-handle = <&mdio1_phy1>;
	phy-connection-type = "10gbase-r";
};

&dpmac2 {
	phy-handle = <&mdio1_phy2>;
	phy-connection-type = "10gbase-r";
};

&dpmac3 {
	phy-handle = <&mdio1_phy3>;
	phy-connection-type = "10gbase-r";
};

&dpmac4 {
	phy-handle = <&mdio1_phy4>;
	phy-connection-type = "10gbase-r";
};

&emdio1 {
	status = "okay";

	mdio1_phy1: ethernet-phy@10 {
		compatible = "ethernet-phy-id13e5.1002";
		reg = <0x10>;
	};

	mdio1_phy2: ethernet-phy@11 {
		compatible = "ethernet-phy-id13e5.1002";
		reg = <0x11>;
	};

	mdio1_phy3: ethernet-phy@12 {
		compatible = "ethernet-phy-id13e5.1002";
		reg = <0x12>;
	};

	mdio1_phy4: ethernet-phy@13 {
		compatible = "ethernet-phy-id13e5.1002";
		reg = <0x13>;
	};
};