allwinner,sun4i-emac.txt 648 B

12345678910111213141516171819202122
  1. * Allwinner EMAC ethernet controller
  2. Required properties:
  3. - compatible: should be "allwinner,sun4i-emac".
  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. - clocks: A phandle to the reference clock for this device
  9. Optional properties:
  10. - (local-)mac-address: mac address to be used by this driver
  11. Example:
  12. emac: ethernet@01c0b000 {
  13. compatible = "allwinner,sun4i-emac";
  14. reg = <0x01c0b000 0x1000>;
  15. interrupts = <55>;
  16. clocks = <&ahb_gates 17>;
  17. phy = <&phy0>;
  18. };