1/* 2 * Device tree source for D-Link DSR-500N/1000N (common parts). 3 * 4 * Written by: Aaro Koskinen <aaro.koskinen@iki.fi> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 */ 10 11/include/ "octeon_3xxx.dtsi" 12 13/ { 14 soc@0 { 15 smi0: mdio@1180000001800 { 16 phy8: ethernet-phy@8 { 17 reg = <8>; 18 compatible = "ethernet-phy-ieee802.3-c22"; 19 }; 20 }; 21 22 pip: pip@11800a0000000 { 23 interface@0 { 24 ethernet@0 { 25 fixed-link { 26 speed = <1000>; 27 full-duplex; 28 }; 29 }; 30 ethernet@1 { 31 fixed-link { 32 speed = <1000>; 33 full-duplex; 34 }; 35 }; 36 ethernet@2 { 37 phy-handle = <&phy8>; 38 }; 39 }; 40 }; 41 42 twsi0: i2c@1180000001000 { 43 rtc@68 { 44 compatible = "dallas,ds1337"; 45 reg = <0x68>; 46 }; 47 }; 48 49 usbn: usbn@1180068000000 { 50 refclk-frequency = <12000000>; 51 refclk-type = "crystal"; 52 }; 53 }; 54 55 aliases { 56 pip = &pip; 57 }; 58}; 59