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
7c5aff182SThomas Petazzoni- phy: A phandle to a phy node defining the PHY address (as the reg
8c5aff182SThomas Petazzoni  property, a single integer).
9c5aff182SThomas Petazzoni- phy-mode: The interface between the SoC and the PHY (a string that
10c5aff182SThomas Petazzoni  of_get_phy_mode() can understand)
11189dd626SThomas Petazzoni- clocks: a pointer to the reference clock for this device.
12c5aff182SThomas Petazzoni
13c5aff182SThomas PetazzoniExample:
14c5aff182SThomas Petazzoni
15c5aff182SThomas Petazzoniethernet@d0070000 {
16c5aff182SThomas Petazzoni	compatible = "marvell,armada-370-neta";
17c5aff182SThomas Petazzoni	reg = <0xd0070000 0x2500>;
18c5aff182SThomas Petazzoni	interrupts = <8>;
19189dd626SThomas Petazzoni	clocks = <&gate_clk 4>;
20c5aff182SThomas Petazzoni	status = "okay";
21c5aff182SThomas Petazzoni	phy = <&phy0>;
22c5aff182SThomas Petazzoni	phy-mode = "rgmii-id";
23c5aff182SThomas Petazzoni};
24