blob: 0c8775c457983994dad116415f973093946e97c3 [file] [log] [blame]
Shawn Guoca2cc332011-06-25 02:04:35 +08001* 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
Sergei Shtylyove8f08ee2014-02-18 02:41:59 +03007- phy-mode : See ethernet.txt file in the same directory
Shawn Guoca2cc332011-06-25 02:04:35 +08008
9Optional properties:
Shawn Guoc9040af2012-06-27 03:45:23 +000010- phy-reset-gpios : Should specify the gpio for phy reset
Shawn Guoa3caad02012-06-27 03:45:24 +000011- 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.
Uwe Kleine-König407066f2014-08-11 17:35:33 +020015- 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.
Frank Li08313642014-09-13 05:00:56 +080019- fsl,num-tx-queues : The property is valid for enet-avb IP, which supports
20 hw multi queues. Should specify the tx queue number, otherwise set tx queue
21 number to 1.
22- fsl,num-rx-queues : The property is valid for enet-avb IP, which supports
23 hw multi queues. Should specify the rx queue number, otherwise set rx queue
24 number to 1.
Uwe Kleine-König407066f2014-08-11 17:35:33 +020025
26Optional subnodes:
27- mdio : specifies the mdio bus in the FEC, used as a container for phy nodes
28 according to phy.txt in the same directory
Shawn Guoca2cc332011-06-25 02:04:35 +080029
30Example:
31
Shawn Guo0c456cf2012-04-02 14:39:26 +080032ethernet@83fec000 {
Shawn Guoca2cc332011-06-25 02:04:35 +080033 compatible = "fsl,imx51-fec", "fsl,imx27-fec";
34 reg = <0x83fec000 0x4000>;
35 interrupts = <87>;
36 phy-mode = "mii";
Fabio Estevamaf634df2012-06-10 14:24:09 -030037 phy-reset-gpios = <&gpio2 14 0>; /* GPIO2_14 */
Shawn Guoca2cc332011-06-25 02:04:35 +080038 local-mac-address = [00 04 9F 01 1B B9];
Fabio Estevam21ea0262013-11-18 11:28:07 -020039 phy-supply = <&reg_fec_supply>;
Shawn Guoca2cc332011-06-25 02:04:35 +080040};
Uwe Kleine-König407066f2014-08-11 17:35:33 +020041
42Example with phy specified:
43
44ethernet@83fec000 {
45 compatible = "fsl,imx51-fec", "fsl,imx27-fec";
46 reg = <0x83fec000 0x4000>;
47 interrupts = <87>;
48 phy-mode = "mii";
49 phy-reset-gpios = <&gpio2 14 0>; /* GPIO2_14 */
50 local-mac-address = [00 04 9F 01 1B B9];
51 phy-supply = <&reg_fec_supply>;
52 phy-handle = <&ethphy>;
53 mdio {
54 ethphy: ethernet-phy@6 {
55 compatible = "ethernet-phy-ieee802.3-c22";
56 reg = <6>;
57 max-speed = <100>;
58 };
59 };
60};