Shawn Guo | ca2cc33 | 2011-06-25 02:04:35 +0800 | [diff] [blame] | 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 : 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". |
Shawn Guo | ca2cc33 | 2011-06-25 02:04:35 +0800 | [diff] [blame] | 10 | |
| 11 | Optional properties: |
| 12 | - local-mac-address : 6 bytes, mac address |
Shawn Guo | c9040af | 2012-06-27 03:45:23 +0000 | [diff] [blame] | 13 | - phy-reset-gpios : Should specify the gpio for phy reset |
Shawn Guo | a3caad0 | 2012-06-27 03:45:24 +0000 | [diff] [blame] | 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. |
Shawn Guo | ca2cc33 | 2011-06-25 02:04:35 +0800 | [diff] [blame] | 18 | |
| 19 | Example: |
| 20 | |
Shawn Guo | 0c456cf | 2012-04-02 14:39:26 +0800 | [diff] [blame] | 21 | ethernet@83fec000 { |
Shawn Guo | ca2cc33 | 2011-06-25 02:04:35 +0800 | [diff] [blame] | 22 | compatible = "fsl,imx51-fec", "fsl,imx27-fec"; |
| 23 | reg = <0x83fec000 0x4000>; |
| 24 | interrupts = <87>; |
| 25 | phy-mode = "mii"; |
Fabio Estevam | af634df | 2012-06-10 14:24:09 -0300 | [diff] [blame] | 26 | phy-reset-gpios = <&gpio2 14 0>; /* GPIO2_14 */ |
Shawn Guo | ca2cc33 | 2011-06-25 02:04:35 +0800 | [diff] [blame] | 27 | local-mac-address = [00 04 9F 01 1B B9]; |
| 28 | }; |