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/brcm,cygnus-pcie-phy.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 Broadcom Cygnus PCIe PHY
    2 
    3 Required properties:
    4 - compatible: must be "brcm,cygnus-pcie-phy"
    5 - reg: base address and length of the PCIe PHY block
    6 - #address-cells: must be 1
    7 - #size-cells: must be 0
    8 
    9 Each PCIe PHY should be represented by a child node
   10 
   11 Required properties For the child node:
   12 - reg: the PHY ID
   13 0 - PCIe RC 0
   14 1 - PCIe RC 1
   15 - #phy-cells: must be 0
   16 
   17 Example:
   18         pcie_phy: phy@301d0a0 {
   19                 compatible = "brcm,cygnus-pcie-phy";
   20                 reg = <0x0301d0a0 0x14>;
   21 
   22                 pcie0_phy: phy@0 {
   23                         reg = <0>;
   24                         #phy-cells = <0>;
   25                 };
   26 
   27                 pcie1_phy: phy@1 {
   28                         reg = <1>;
   29                         #phy-cells = <0>;
   30                 };
   31         };
   32 
   33         /* users of the PCIe phy */
   34 
   35         pcie0: pcie@18012000 {
   36                 ...
   37                 ...
   38                 phys = <&pcie0_phy>;
   39                 phy-names = "pcie-phy";
   40         };
   41 
   42         pcie1: pcie@18013000 {
   43                 ...
   44                 ...
   45                 phys = <pcie1_phy>;
   46                 phy-names = "pcie-phy";
   47         };

Cache object: 5eb74a12679338a985c675629b0ae2cb


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