lpc-eth.txt 594 B

1234567891011121314151617181920212223
  1. * NXP LPC32xx SoC Ethernet Controller
  2. Required properties:
  3. - compatible: Should be "nxp,lpc-eth"
  4. - reg: Address and length of the register set for the device
  5. - interrupts: Should contain ethernet controller interrupt
  6. Optional properties:
  7. - phy-mode: See ethernet.txt file in the same directory. If the property is
  8. absent, "rmii" is assumed.
  9. - use-iram: Use LPC32xx internal SRAM (IRAM) for DMA buffering
  10. Example:
  11. mac: ethernet@31060000 {
  12. compatible = "nxp,lpc-eth";
  13. reg = <0x31060000 0x1000>;
  14. interrupt-parent = <&mic>;
  15. interrupts = <29 0>;
  16. phy-mode = "rmii";
  17. use-iram;
  18. };