blob: a1e3693cca1601e47096dc2edc2a9580b8b0569a [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.
Bernhard Walle962d8cd2016-03-03 10:15:55 +010015- phy-reset-active-high : If present then the reset sequence using the GPIO
Bernhard Walle64f10f62016-02-08 21:21:13 +010016 specified in the "phy-reset-gpios" property is reversed (H=reset state,
17 L=operation state).
Uwe Kleine-König407066f2014-08-11 17:35:33 +020018- phy-supply : regulator that powers the Ethernet PHY.
19- phy-handle : phandle to the PHY device connected to this device.
20- fixed-link : Assume a fixed link. See fixed-link.txt in the same directory.
21 Use instead of phy-handle.
Frank Li08313642014-09-13 05:00:56 +080022- fsl,num-tx-queues : The property is valid for enet-avb IP, which supports
23 hw multi queues. Should specify the tx queue number, otherwise set tx queue
24 number to 1.
25- fsl,num-rx-queues : The property is valid for enet-avb IP, which supports
26 hw multi queues. Should specify the rx queue number, otherwise set rx queue
27 number to 1.
Nimrod Andyde40ed32014-12-24 17:30:39 +080028- fsl,magic-packet : If present, indicates that the hardware supports waking
29 up via magic packet.
Lucas Stach29380902016-06-03 18:31:19 +020030- fsl,err006687-workaround-present: If present indicates that the system has
31 the hardware workaround for ERR006687 applied and does not need a software
32 workaround.
Uwe Kleine-König407066f2014-08-11 17:35:33 +020033
34Optional subnodes:
35- mdio : specifies the mdio bus in the FEC, used as a container for phy nodes
36 according to phy.txt in the same directory
Shawn Guoca2cc332011-06-25 02:04:35 +080037
38Example:
39
Shawn Guo0c456cf2012-04-02 14:39:26 +080040ethernet@83fec000 {
Shawn Guoca2cc332011-06-25 02:04:35 +080041 compatible = "fsl,imx51-fec", "fsl,imx27-fec";
42 reg = <0x83fec000 0x4000>;
43 interrupts = <87>;
44 phy-mode = "mii";
Fabio Estevamaf634df2012-06-10 14:24:09 -030045 phy-reset-gpios = <&gpio2 14 0>; /* GPIO2_14 */
Shawn Guoca2cc332011-06-25 02:04:35 +080046 local-mac-address = [00 04 9F 01 1B B9];
Fabio Estevam21ea0262013-11-18 11:28:07 -020047 phy-supply = <&reg_fec_supply>;
Shawn Guoca2cc332011-06-25 02:04:35 +080048};
Uwe Kleine-König407066f2014-08-11 17:35:33 +020049
50Example with phy specified:
51
52ethernet@83fec000 {
53 compatible = "fsl,imx51-fec", "fsl,imx27-fec";
54 reg = <0x83fec000 0x4000>;
55 interrupts = <87>;
56 phy-mode = "mii";
57 phy-reset-gpios = <&gpio2 14 0>; /* GPIO2_14 */
58 local-mac-address = [00 04 9F 01 1B B9];
59 phy-supply = <&reg_fec_supply>;
60 phy-handle = <&ethphy>;
61 mdio {
62 ethphy: ethernet-phy@6 {
63 compatible = "ethernet-phy-ieee802.3-c22";
64 reg = <6>;
65 max-speed = <100>;
66 };
67 };
68};