@@ -39,6 +39,22 @@ &dpmac4 {
phy-handle = <&mdio1_phy4>;
};
+&dpmac5 {
+ phy-handle = <&mdio2_phy1>;
+};
+
+&dpmac6 {
+ phy-handle = <&mdio2_phy2>;
+};
+
+&dpmac7 {
+ phy-handle = <&mdio2_phy3>;
+};
+
+&dpmac8 {
+ phy-handle = <&mdio2_phy4>;
+};
+
&emdio1 {
status = "okay";
@@ -63,3 +79,32 @@ mdio1_phy4: emdio1_phy@4 {
phy-connection-type = "10gbase-r";
};
};
+
+&emdio2 {
+ status = "okay";
+
+ mdio2_phy1: emdio2_phy@1 {
+ compatible = "ethernet-phy-id03a1.b4b0", "ethernet-phy-ieee802.3-c45";
+ interrupts = <0 1 0x4>;
+ reg = <0x0>;
+ phy-connection-type = "10gbase-r";
+ };
+ mdio2_phy2: emdio2_phy@2 {
+ compatible = "ethernet-phy-id03a1.b4b0", "ethernet-phy-ieee802.3-c45";
+ interrupts = <0 2 0x4>;
+ reg = <0x1>;
+ phy-connection-type = "10gbase-r";
+ };
+ mdio2_phy3: emdio2_phy@3 {
+ compatible = "ethernet-phy-id03a1.b4b0", "ethernet-phy-ieee802.3-c45";
+ interrupts = <0 4 0x4>;
+ reg = <0x2>;
+ phy-connection-type = "10gbase-r";
+ };
+ mdio2_phy4: emdio2_phy@4 {
+ compatible = "ethernet-phy-id03a1.b4b0", "ethernet-phy-ieee802.3-c45";
+ interrupts = <0 5 0x4>;
+ reg = <0x3>;
+ phy-connection-type = "10gbase-r";
+ };
+};
Annotate the EMDIO2 node and describe the other 4 10GBASER PHYs found on the LS2088ARDB board. Also, add phy-handles for DPMACs 5-8 to their associated PHY. Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com> --- Changes in v2: - none .../boot/dts/freescale/fsl-ls2088a-rdb.dts | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+)