cdns-emac.txt 550 B

12345678910111213141516171819
  1. * Cadence EMAC Ethernet controller
  2. Required properties:
  3. - compatible: Should be "cdns,[<chip>-]{emac}"
  4. Use "cdns,at91rm9200-emac" Atmel at91rm9200 SoC.
  5. or the generic form: "cdns,emac".
  6. - reg: Address and length of the register set for the device
  7. - interrupts: Should contain macb interrupt
  8. - phy-mode: see ethernet.txt file in the same directory.
  9. Examples:
  10. macb0: ethernet@fffc4000 {
  11. compatible = "cdns,at91rm9200-emac";
  12. reg = <0xfffc4000 0x4000>;
  13. interrupts = <21>;
  14. phy-mode = "rmii";
  15. local-mac-address = [3a 0e 03 04 05 06];
  16. };