marvell-armada-370-neta.txt 703 B

1234567891011121314151617181920212223
  1. * Marvell Armada 370 / Armada XP Ethernet Controller (NETA)
  2. Required properties:
  3. - compatible: should be "marvell,armada-370-neta".
  4. - reg: address and length of the register set for the device.
  5. - interrupts: interrupt for the device
  6. - phy: A phandle to a phy node defining the PHY address (as the reg
  7. property, a single integer).
  8. - phy-mode: The interface between the SoC and the PHY (a string that
  9. of_get_phy_mode() can understand)
  10. - clocks: a pointer to the reference clock for this device.
  11. Example:
  12. ethernet@d0070000 {
  13. compatible = "marvell,armada-370-neta";
  14. reg = <0xd0070000 0x2500>;
  15. interrupts = <8>;
  16. clocks = <&gate_clk 4>;
  17. status = "okay";
  18. phy = <&phy0>;
  19. phy-mode = "rgmii-id";
  20. };