blob: 10640b17c8668b5bc53a1e50813e6e6155b9458c [file] [log] [blame]
Stefan Roese49220502013-05-30 03:49:20 +00001* Allwinner EMAC ethernet controller
2
3Required properties:
Maxime Ripard4dae1682014-02-02 14:49:11 +01004- compatible: should be "allwinner,sun4i-a10-emac" (Deprecated:
5 "allwinner,sun4i-emac")
Stefan Roese49220502013-05-30 03:49:20 +00006- reg: address and length of the register set for the device.
7- interrupts: interrupt for the device
Sergei Shtylyove8f08ee2014-02-18 02:41:59 +03008- phy: see ethernet.txt file in the same directory.
Stefan Roese49220502013-05-30 03:49:20 +00009- clocks: A phandle to the reference clock for this device
10
Stefan Roese49220502013-05-30 03:49:20 +000011Example:
12
13emac: ethernet@01c0b000 {
Maxime Ripard4dae1682014-02-02 14:49:11 +010014 compatible = "allwinner,sun4i-a10-emac";
Stefan Roese49220502013-05-30 03:49:20 +000015 reg = <0x01c0b000 0x1000>;
16 interrupts = <55>;
17 clocks = <&ahb_gates 17>;
18 phy = <&phy0>;
19};