Merge tag 'linux-kselftest-kunit-fixes-5.11-rc3' of git://git.kernel.org/pub/scm...
[linux/fpc-iii.git] / Documentation / devicetree / bindings / net / opencores-ethoc.txt
blob2dc127c30d9b310f65389c282dddc0905624f687
1 * OpenCores MAC 10/100 Mbps
3 Required properties:
4 - compatible: Should be "opencores,ethoc".
5 - reg: two memory regions (address and length),
6   first region is for the device registers and descriptor rings,
7   second is for the device packet memory.
8 - interrupts: interrupt for the device.
10 Optional properties:
11 - clocks: phandle to refer to the clk used as per
12   Documentation/devicetree/bindings/clock/clock-bindings.txt
14 Examples:
16         enet0: ethoc@fd030000 {
17                 compatible = "opencores,ethoc";
18                 reg = <0xfd030000 0x4000 0xfd800000 0x4000>;
19                 interrupts = <1>;
20                 local-mac-address = [00 50 c2 13 6f 00];
21                 clocks = <&osc>;
22         };