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,stingray-usb-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 USB PHY
    2 
    3 Required properties:
    4  - compatible : should be one of the listed compatibles
    5         - "brcm,sr-usb-combo-phy" is combo PHY has two PHYs, one SS and one HS.
    6         - "brcm,sr-usb-hs-phy" is a single HS PHY.
    7  - reg: offset and length of the PHY blocks registers
    8  - #phy-cells:
    9    - Must be 1 for brcm,sr-usb-combo-phy as it expects one argument to indicate
   10      the PHY number of two PHYs. 0 for HS PHY and 1 for SS PHY.
   11    - Must be 0 for brcm,sr-usb-hs-phy.
   12 
   13 Refer to phy/phy-bindings.txt for the generic PHY binding properties
   14 
   15 Example:
   16         usbphy0: usb-phy@0 {
   17                 compatible = "brcm,sr-usb-combo-phy";
   18                 reg = <0x00000000 0x100>;
   19                 #phy-cells = <1>;
   20         };
   21 
   22         usbphy1: usb-phy@10000 {
   23                 compatible = "brcm,sr-usb-combo-phy";
   24                 reg = <0x00010000 0x100>,
   25                 #phy-cells = <1>;
   26         };
   27 
   28         usbphy2: usb-phy@20000 {
   29                 compatible = "brcm,sr-usb-hs-phy";
   30                 reg = <0x00020000 0x100>,
   31                 #phy-cells = <0>;
   32         };

Cache object: 05b3ffe8828045739763ecccdbc640d4


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