1c5aff182SThomas Petazzoni* Marvell Armada 370 / Armada XP Ethernet Controller (NETA)
2c5aff182SThomas Petazzoni
3c5aff182SThomas PetazzoniRequired properties:
4f522a975SSimon Guinot- compatible: "marvell,armada-370-neta" or "marvell,armada-xp-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
9e308cb83SJisheng Zhang- clocks: List of clocks for this device. At least one clock is
10e308cb83SJisheng Zhang  mandatory for the core clock. If several clocks are given, then the
11e308cb83SJisheng Zhang  clock-names property must be used to identify them.
12c5aff182SThomas Petazzoni
139110ee07SMarcin WojtasOptional properties:
149110ee07SMarcin Wojtas- tx-csum-limit: maximum mtu supported by port that allow TX checksum.
159110ee07SMarcin Wojtas  Value is presented in bytes. If not used, by default 1600B is set for
169110ee07SMarcin Wojtas  "marvell,armada-370-neta" and 9800B for others.
17e308cb83SJisheng Zhang- clock-names: List of names corresponding to clocks property; shall be
18e308cb83SJisheng Zhang  "core" for core clock and "bus" for the optional bus clock.
19e308cb83SJisheng Zhang
209110ee07SMarcin Wojtas
21c5aff182SThomas PetazzoniExample:
22c5aff182SThomas Petazzoni
23c5aff182SThomas Petazzoniethernet@d0070000 {
24c5aff182SThomas Petazzoni	compatible = "marvell,armada-370-neta";
25c5aff182SThomas Petazzoni	reg = <0xd0070000 0x2500>;
26c5aff182SThomas Petazzoni	interrupts = <8>;
27189dd626SThomas Petazzoni	clocks = <&gate_clk 4>;
289110ee07SMarcin Wojtas	tx-csum-limit = <9800>
29c5aff182SThomas Petazzoni	status = "okay";
30c5aff182SThomas Petazzoni	phy = <&phy0>;
31c5aff182SThomas Petazzoni	phy-mode = "rgmii-id";
32c5aff182SThomas Petazzoni};
33