]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - Documentation/devicetree/bindings/net/lpc-eth.txt
Merge tag 'x86_urgent_for_v5.13_rc3' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-jammy-kernel.git] / Documentation / devicetree / bindings / net / lpc-eth.txt
CommitLineData
4de02e4a
RS
1* NXP LPC32xx SoC Ethernet Controller
2
3Required 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
8Optional properties:
e8f08ee0
SS
9- phy-mode: See ethernet.txt file in the same directory. If the property is
10 absent, "rmii" is assumed.
4de02e4a 11- use-iram: Use LPC32xx internal SRAM (IRAM) for DMA buffering
4de02e4a 12
2c69dae8
AB
13Optional subnodes:
14- mdio : specifies the mdio bus, used as a container for phy nodes according to
15 phy.txt in the same directory
16
17
4de02e4a
RS
18Example:
19
20 mac: ethernet@31060000 {
21 compatible = "nxp,lpc-eth";
22 reg = <0x31060000 0x1000>;
23 interrupt-parent = <&mic>;
24 interrupts = <29 0>;
25
26 phy-mode = "rmii";
27 use-iram;
28 };