1* Marvell Armada 370 / Armada XP Ethernet Controller (NETA) 2 3Required properties: 4- compatible: "marvell,armada-370-neta" or "marvell,armada-xp-neta". 5- reg: address and length of the register set for the device. 6- interrupts: interrupt for the device 7- phy: See ethernet.txt file in the same directory. 8- phy-mode: See ethernet.txt file in the same directory 9- clocks: a pointer to the reference clock for this device. 10 11Example: 12 13ethernet@d0070000 { 14 compatible = "marvell,armada-370-neta"; 15 reg = <0xd0070000 0x2500>; 16 interrupts = <8>; 17 clocks = <&gate_clk 4>; 18 status = "okay"; 19 phy = <&phy0>; 20 phy-mode = "rgmii-id"; 21}; 22