Dan Murphy | bb5a566 | 2016-05-02 15:45:58 -0500 | [diff] [blame] | 1 | * Texas Instruments - dp83867 Giga bit ethernet phy |
| 2 | |
| 3 | Required properties: |
| 4 | - reg - The ID number for the phy, usually a small integer |
| 5 | - ti,rx-internal-delay - RGMII Recieve Clock Delay - see dt-bindings/net/ti-dp83867.h |
| 6 | for applicable values |
| 7 | - ti,tx-internal-delay - RGMII Transmit Clock Delay - see dt-bindings/net/ti-dp83867.h |
| 8 | for applicable values |
| 9 | - ti,fifo-depth - Transmitt FIFO depth- see dt-bindings/net/ti-dp83867.h |
| 10 | for applicable values |
Janine Hagemann | ed51bfc | 2018-08-28 08:25:37 +0200 | [diff] [blame] | 11 | - enet-phy-lane-swap - Indicates that PHY will swap the TX/RX lanes to |
| 12 | compensate for the board being designed with the lanes swapped. |
| 13 | - enet-phy-no-lane-swap - Indicates that PHY will disable swap of the |
| 14 | TX/RX lanes. |
Grygorii Strashko | a5efed6 | 2019-11-18 23:04:42 +0200 | [diff] [blame] | 15 | - ti,clk-output-sel - Muxing option for CLK_OUT pin. See dt-bindings/net/ti-dp83867.h |
| 16 | for applicable values. The CLK_OUT pin can also |
| 17 | be disabled by this property. When omitted, the |
| 18 | PHY's default will be left as is. |
Dan Murphy | bb5a566 | 2016-05-02 15:45:58 -0500 | [diff] [blame] | 19 | |
| 20 | Default child nodes are standard Ethernet PHY device |
| 21 | nodes as described in doc/devicetree/bindings/net/ethernet.txt |
| 22 | |
| 23 | Example: |
| 24 | |
| 25 | ethernet-phy@0 { |
| 26 | reg = <0>; |
| 27 | ti,rx-internal-delay = <DP83867_RGMIIDCTL_2_25_NS>; |
| 28 | ti,tx-internal-delay = <DP83867_RGMIIDCTL_2_75_NS>; |
| 29 | ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_4_B_NIB>; |
Janine Hagemann | ed51bfc | 2018-08-28 08:25:37 +0200 | [diff] [blame] | 30 | enet-phy-lane-no-swap; |
Janine Hagemann | 1c2ba09 | 2018-08-28 08:25:39 +0200 | [diff] [blame] | 31 | ti,clk-output-sel = <DP83867_CLK_O_SEL_CHN_A_TCLK>; |
Dan Murphy | bb5a566 | 2016-05-02 15:45:58 -0500 | [diff] [blame] | 32 | }; |
| 33 | |
| 34 | Datasheet can be found: |
| 35 | http://www.ti.com/product/DP83867IR/datasheet |