Roland Stigge | 4de02e4 | 2012-04-22 12:01:19 +0200 | [diff] [blame] | 1 | * NXP LPC32xx SoC Ethernet Controller |
| 2 | |
| 3 | Required properties: |
| 4 | - compatible: Should be "nxp,lpc-eth" |
| 5 | - reg: Address and length of the register set for the device |
| 6 | - interrupts: Should contain ethernet controller interrupt |
| 7 | |
| 8 | Optional properties: |
Sergei Shtylyov | e8f08ee | 2014-02-18 02:41:59 +0300 | [diff] [blame^] | 9 | - phy-mode: See ethernet.txt file in the same directory. If the property is |
| 10 | absent, "rmii" is assumed. |
Roland Stigge | 4de02e4 | 2012-04-22 12:01:19 +0200 | [diff] [blame] | 11 | - use-iram: Use LPC32xx internal SRAM (IRAM) for DMA buffering |
Roland Stigge | 4de02e4 | 2012-04-22 12:01:19 +0200 | [diff] [blame] | 12 | |
| 13 | Example: |
| 14 | |
| 15 | mac: ethernet@31060000 { |
| 16 | compatible = "nxp,lpc-eth"; |
| 17 | reg = <0x31060000 0x1000>; |
| 18 | interrupt-parent = <&mic>; |
| 19 | interrupts = <29 0>; |
| 20 | |
| 21 | phy-mode = "rmii"; |
| 22 | use-iram; |
| 23 | }; |