marvell-armada-370-neta.txt 864 B

123456789101112131415161718192021222324252627
  1. * Marvell Armada 370 / Armada XP Ethernet Controller (NETA)
  2. Required properties:
  3. - compatible: "marvell,armada-370-neta" or "marvell,armada-xp-neta".
  4. - reg: address and length of the register set for the device.
  5. - interrupts: interrupt for the device
  6. - phy: See ethernet.txt file in the same directory.
  7. - phy-mode: See ethernet.txt file in the same directory
  8. - clocks: a pointer to the reference clock for this device.
  9. Optional properties:
  10. - tx-csum-limit: maximum mtu supported by port that allow TX checksum.
  11. Value is presented in bytes. If not used, by default 1600B is set for
  12. "marvell,armada-370-neta" and 9800B for others.
  13. Example:
  14. ethernet@d0070000 {
  15. compatible = "marvell,armada-370-neta";
  16. reg = <0xd0070000 0x2500>;
  17. interrupts = <8>;
  18. clocks = <&gate_clk 4>;
  19. tx-csum-limit = <9800>
  20. status = "okay";
  21. phy = <&phy0>;
  22. phy-mode = "rgmii-id";
  23. };