Jean-Christophe PLAGNIOL-VILLARD | 96f6360 | 2012-11-04 21:34:51 +0000 | [diff] [blame] | 1 | * Cadence EMAC Ethernet controller |
| 2 | |
| 3 | Required properties: |
| 4 | - compatible: Should be "cdns,[<chip>-]{emac}" |
| 5 | Use "cdns,at91rm9200-emac" Atmel at91rm9200 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 |
Sergei Shtylyov | e8f08ee | 2014-02-18 02:41:59 +0300 | [diff] [blame] | 9 | - phy-mode: see ethernet.txt file in the same directory. |
Jean-Christophe PLAGNIOL-VILLARD | 96f6360 | 2012-11-04 21:34:51 +0000 | [diff] [blame] | 10 | |
| 11 | Examples: |
| 12 | |
| 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 | }; |