lpc-eth.txt 637 B

123456789101112131415161718192021222324
  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: String, operation mode of the PHY interface.
  8. Supported values are: "mii", "rmii" (default)
  9. - use-iram: Use LPC32xx internal SRAM (IRAM) for DMA buffering
  10. - local-mac-address : 6 bytes, mac address
  11. Example:
  12. mac: ethernet@31060000 {
  13. compatible = "nxp,lpc-eth";
  14. reg = <0x31060000 0x1000>;
  15. interrupt-parent = <&mic>;
  16. interrupts = <29 0>;
  17. phy-mode = "rmii";
  18. use-iram;
  19. };