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/phy/phy-armada38x-comphy.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 mvebu armada 38x comphy driver
    2 ------------------------------
    3 
    4 This comphy controller can be found on Marvell Armada 38x. It provides a
    5 number of shared PHYs used by various interfaces (network, sata, usb,
    6 PCIe...).
    7 
    8 Required properties:
    9 
   10 - compatible: should be "marvell,armada-380-comphy"
   11 - reg: should contain the comphy register location and length.
   12 - #address-cells: should be 1.
   13 - #size-cells: should be 0.
   14 
   15 Optional properties:
   16 
   17 - reg-names: must be "comphy" as the first name, and "conf".
   18 - reg: must contain the comphy register location and length as the first
   19     pair, followed by an optional configuration register address and
   20     length pair.
   21 
   22 A sub-node is required for each comphy lane provided by the comphy.
   23 
   24 Required properties (child nodes):
   25 
   26 - reg: comphy lane number.
   27 - #phy-cells : from the generic phy bindings, must be 1. Defines the
   28                input port to use for a given comphy lane.
   29 
   30 Example:
   31 
   32         comphy: phy@18300 {
   33                 compatible = "marvell,armada-380-comphy";
   34                 reg-names = "comphy", "conf";
   35                 reg = <0x18300 0x100>, <0x18460 4>;
   36                 #address-cells = <1>;
   37                 #size-cells = <0>;
   38 
   39                 cpm_comphy0: phy@0 {
   40                         reg = <0>;
   41                         #phy-cells = <1>;
   42                 };
   43 
   44                 cpm_comphy1: phy@1 {
   45                         reg = <1>;
   46                         #phy-cells = <1>;
   47                 };
   48         };

Cache object: 24f46e6d0f20ee559c361c31ad64c7af


[ 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.