Skip to content

Commit 71e11af

Browse files
kedareswararaodavem330
authored andcommitted
Documentation: DT: net: Add Xilinx gmiitorgmii converter device tree binding documentation
Device-tree binding documentation for xilinx gmiitorgmii converter. Signed-off-by: Kedareswara rao Appana <[email protected]> Acked-by: Rob Herring <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 300d8b9 commit 71e11af

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
XILINX GMIITORGMII Converter Driver Device Tree Bindings
2+
--------------------------------------------------------
3+
4+
The Gigabit Media Independent Interface (GMII) to Reduced Gigabit Media
5+
Independent Interface (RGMII) core provides the RGMII between RGMII-compliant
6+
Ethernet physical media devices (PHY) and the Gigabit Ethernet controller.
7+
This core can be used in all three modes of operation(10/100/1000 Mb/s).
8+
The Management Data Input/Output (MDIO) interface is used to configure the
9+
Speed of operation. This core can switch dynamically between the three
10+
Different speed modes by configuring the conveter register through mdio write.
11+
12+
This converter sits between the ethernet MAC and the external phy.
13+
MAC <==> GMII2RGMII <==> RGMII_PHY
14+
15+
For more details about mdio please refer phy.txt file in the same directory.
16+
17+
Required properties:
18+
- compatible : Should be "xlnx,gmii-to-rgmii-1.0"
19+
- reg : The ID number for the phy, usually a small integer
20+
- phy-handle : Should point to the external phy device.
21+
See ethernet.txt file in the same directory.
22+
23+
Example:
24+
mdio {
25+
#address-cells = <1>;
26+
#size-cells = <0>;
27+
phy: ethernet-phy@0 {
28+
......
29+
};
30+
gmiitorgmii: gmiitorgmii@8 {
31+
compatible = "xlnx,gmii-to-rgmii-1.0";
32+
reg = <8>;
33+
phy-handle = <&phy>;
34+
};
35+
};

0 commit comments

Comments
 (0)