Merge branch 'for-3.14' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq
[linux-2.6-block.git] / Documentation / devicetree / bindings / net / fsl-fec.txt
CommitLineData
ca2cc333
SG
1* Freescale Fast Ethernet Controller (FEC)
2
3Required properties:
4- compatible : Should be "fsl,<soc>-fec"
5- reg : Address and length of the register set for the device
6- interrupts : Should contain fec interrupt
7- phy-mode : String, operation mode of the PHY interface.
8 Supported values are: "mii", "gmii", "sgmii", "tbi", "rmii",
9 "rgmii", "rgmii-id", "rgmii-rxid", "rgmii-txid", "rtbi", "smii".
ca2cc333
SG
10
11Optional properties:
12- local-mac-address : 6 bytes, mac address
c9040af2 13- phy-reset-gpios : Should specify the gpio for phy reset
a3caad0a
SG
14- phy-reset-duration : Reset duration in milliseconds. Should present
15 only if property "phy-reset-gpios" is available. Missing the property
16 will have the duration be 1 millisecond. Numbers greater than 1000 are
17 invalid and 1 millisecond will be used instead.
21ea0268 18- phy-supply: regulator that powers the Ethernet PHY.
ca2cc333
SG
19
20Example:
21
0c456cfa 22ethernet@83fec000 {
ca2cc333
SG
23 compatible = "fsl,imx51-fec", "fsl,imx27-fec";
24 reg = <0x83fec000 0x4000>;
25 interrupts = <87>;
26 phy-mode = "mii";
af634df1 27 phy-reset-gpios = <&gpio2 14 0>; /* GPIO2_14 */
ca2cc333 28 local-mac-address = [00 04 9F 01 1B B9];
21ea0268 29 phy-supply = <&reg_fec_supply>;
ca2cc333 30};