meson-dwmac.txt 740 B

12345678910111213141516171819202122232425
  1. * Amlogic Meson DWMAC Ethernet controller
  2. The device inherits all the properties of the dwmac/stmmac devices
  3. described in the file net/stmmac.txt with the following changes.
  4. Required properties:
  5. - compatible: should be "amlogic,meson6-dwmac" along with "snps,dwmac"
  6. and any applicable more detailed version number
  7. described in net/stmmac.txt
  8. - reg: should contain a register range for the dwmac controller and
  9. another one for the Amlogic specific configuration
  10. Example:
  11. ethmac: ethernet@c9410000 {
  12. compatible = "amlogic,meson6-dwmac", "snps,dwmac";
  13. reg = <0xc9410000 0x10000
  14. 0xc1108108 0x4>;
  15. interrupts = <0 8 1>;
  16. interrupt-names = "macirq";
  17. clocks = <&clk81>;
  18. clock-names = "stmmaceth";
  19. }