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