1*7b9cf840SSimon Glass* Allwinner EMAC ethernet controller
2*7b9cf840SSimon Glass
3*7b9cf840SSimon GlassRequired properties:
4*7b9cf840SSimon Glass- compatible: should be "allwinner,sun4i-a10-emac" (Deprecated:
5*7b9cf840SSimon Glass              "allwinner,sun4i-emac")
6*7b9cf840SSimon Glass- reg: address and length of the register set for the device.
7*7b9cf840SSimon Glass- interrupts: interrupt for the device
8*7b9cf840SSimon Glass- phy: see ethernet.txt file in the same directory.
9*7b9cf840SSimon Glass- clocks: A phandle to the reference clock for this device
10*7b9cf840SSimon Glass
11*7b9cf840SSimon GlassExample:
12*7b9cf840SSimon Glass
13*7b9cf840SSimon Glassemac: ethernet@01c0b000 {
14*7b9cf840SSimon Glass       compatible = "allwinner,sun4i-a10-emac";
15*7b9cf840SSimon Glass       reg = <0x01c0b000 0x1000>;
16*7b9cf840SSimon Glass       interrupts = <55>;
17*7b9cf840SSimon Glass       clocks = <&ahb_gates 17>;
18*7b9cf840SSimon Glass       phy = <&phy0>;
19*7b9cf840SSimon Glass};
20