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,sr-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 Stingray PCIe PHY
    2 
    3 Required properties:
    4 - compatible: must be "brcm,sr-pcie-phy"
    5 - reg: base address and length of the PCIe SS register space
    6 - brcm,sr-cdru: phandle to the CDRU syscon node
    7 - brcm,sr-mhb: phandle to the MHB syscon node
    8 - #phy-cells: Must be 1, denotes the PHY index
    9 
   10 For PAXB based root complex, one can have a configuration of up to 8 PHYs
   11 PHY index goes from 0 to 7
   12 
   13 For the internal PAXC based root complex, PHY index is always 8
   14 
   15 Example:
   16         mhb: syscon@60401000 {
   17                 compatible = "brcm,sr-mhb", "syscon";
   18                 reg = <0 0x60401000 0 0x38c>;
   19         };
   20 
   21         cdru: syscon@6641d000 {
   22                 compatible = "brcm,sr-cdru", "syscon";
   23                 reg = <0 0x6641d000 0 0x400>;
   24         };
   25 
   26         pcie_phy: phy@40000000 {
   27                 compatible = "brcm,sr-pcie-phy";
   28                 reg = <0 0x40000000 0 0x800>;
   29                 brcm,sr-cdru = <&cdru>;
   30                 brcm,sr-mhb = <&mhb>;
   31                 #phy-cells = <1>;
   32         };
   33 
   34         /* users of the PCIe PHY */
   35 
   36         pcie0: pcie@48000000 {
   37                 ...
   38                 ...
   39                 phys = <&pcie_phy 0>;
   40                 phy-names = "pcie-phy";
   41         };

Cache object: 36b892ada7aaf97d9fcb858af760e7be


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