cdns-emac.txt 653 B

1234567891011121314151617181920212223
  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: String, operation mode of the PHY interface.
  9. Supported values are: "mii", "rmii".
  10. Optional properties:
  11. - local-mac-address: 6 bytes, mac address
  12. Examples:
  13. macb0: ethernet@fffc4000 {
  14. compatible = "cdns,at91rm9200-emac";
  15. reg = <0xfffc4000 0x4000>;
  16. interrupts = <21>;
  17. phy-mode = "rmii";
  18. local-mac-address = [3a 0e 03 04 05 06];
  19. };