The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/net/xilinx_gmii2rgmii.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    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         };

Cache object: ff99225e099a500c488b537537346056


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.