1// SPDX-License-Identifier: ISC 2/* 3 * Device Tree file for the IXP425-based Actiontec MI424WR revision D 4 * Based on a board file from OpenWrt by Jose Vasconcellos. 5 */ 6 7/dts-v1/; 8 9#include "intel-ixp42x-actiontec-mi424wr.dtsi" 10 11/ { 12 model = "Actiontec MI424WR rev D"; 13 compatible = "actiontec,mi424wr-d", "intel,ixp42x"; 14 15 soc { 16 /* EthB used for LAN */ 17 ethernet@c8009000 { 18 /* Fixed link to the CPU MII port on the KS8995 */ 19 fixed-link { 20 speed = <100>; 21 full-duplex; 22 }; 23 24 mdio { 25 /* PHY ID 0x00221450 */ 26 phy5: ethernet-phy@5 { 27 /* WAN */ 28 reg = <5>; 29 }; 30 }; 31 }; 32 33 /* EthC used for WAN */ 34 ethernet@c800a000 { 35 phy-handle = <&phy5>; // 5 on revision D 36 }; 37 }; 38}; 39