These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / Documentation / devicetree / bindings / net / marvell-armada-370-neta.txt
1 * Marvell Armada 370 / Armada XP Ethernet Controller (NETA)
2
3 Required 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
11 Optional properties:
12 - tx-csum-limit: maximum mtu supported by port that allow TX checksum.
13   Value is presented in bytes. If not used, by default 1600B is set for
14   "marvell,armada-370-neta" and 9800B for others.
15
16 Example:
17
18 ethernet@d0070000 {
19         compatible = "marvell,armada-370-neta";
20         reg = <0xd0070000 0x2500>;
21         interrupts = <8>;
22         clocks = <&gate_clk 4>;
23         tx-csum-limit = <9800>
24         status = "okay";
25         phy = <&phy0>;
26         phy-mode = "rgmii-id";
27 };