cdns-emac.txt 594 B

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