Merge branch 'for-3.17/drivers' of git://git.kernel.dk/linux-block
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / net / fsl-fec.txt
1 * Freescale Fast Ethernet Controller (FEC)
2
3 Required 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 : See ethernet.txt file in the same directory
8
9 Optional properties:
10 - phy-reset-gpios : Should specify the gpio for phy reset
11 - phy-reset-duration : Reset duration in milliseconds.  Should present
12   only if property "phy-reset-gpios" is available.  Missing the property
13   will have the duration be 1 millisecond.  Numbers greater than 1000 are
14   invalid and 1 millisecond will be used instead.
15 - phy-supply : regulator that powers the Ethernet PHY.
16 - phy-handle : phandle to the PHY device connected to this device.
17 - fixed-link : Assume a fixed link. See fixed-link.txt in the same directory.
18   Use instead of phy-handle.
19
20 Optional subnodes:
21 - mdio : specifies the mdio bus in the FEC, used as a container for phy nodes
22   according to phy.txt in the same directory
23
24 Example:
25
26 ethernet@83fec000 {
27         compatible = "fsl,imx51-fec", "fsl,imx27-fec";
28         reg = <0x83fec000 0x4000>;
29         interrupts = <87>;
30         phy-mode = "mii";
31         phy-reset-gpios = <&gpio2 14 0>; /* GPIO2_14 */
32         local-mac-address = [00 04 9F 01 1B B9];
33         phy-supply = <&reg_fec_supply>;
34 };
35
36 Example with phy specified:
37
38 ethernet@83fec000 {
39         compatible = "fsl,imx51-fec", "fsl,imx27-fec";
40         reg = <0x83fec000 0x4000>;
41         interrupts = <87>;
42         phy-mode = "mii";
43         phy-reset-gpios = <&gpio2 14 0>; /* GPIO2_14 */
44         local-mac-address = [00 04 9F 01 1B B9];
45         phy-supply = <&reg_fec_supply>;
46         phy-handle = <&ethphy>;
47         mdio {
48                 ethphy: ethernet-phy@6 {
49                         compatible = "ethernet-phy-ieee802.3-c22";
50                         reg = <6>;
51                         max-speed = <100>;
52                 };
53         };
54 };