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/bcm-ns-usb3-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 Driver for Broadcom Northstar USB 3.0 PHY
    2 
    3 Required properties:
    4 
    5 - compatible: one of: "brcm,ns-ax-usb3-phy", "brcm,ns-bx-usb3-phy".
    6 - reg: address of MDIO bus device
    7 - usb3-dmp-syscon: phandle to syscon with DMP (Device Management Plugin)
    8                    registers
    9 - #phy-cells: must be 0
   10 
   11 Initialization of USB 3.0 PHY depends on Northstar version. There are currently
   12 three known series: Ax, Bx and Cx.
   13 Known A0: BCM4707 rev 0
   14 Known B0: BCM4707 rev 4, BCM53573 rev 2
   15 Known B1: BCM4707 rev 6
   16 Known C0: BCM47094 rev 0
   17 
   18 Example:
   19         mdio: mdio@0 {
   20                 reg = <0x0>;
   21                 #size-cells = <1>;
   22                 #address-cells = <0>;
   23 
   24                 usb3-phy@10 {
   25                         compatible = "brcm,ns-ax-usb3-phy";
   26                         reg = <0x10>;
   27                         usb3-dmp-syscon = <&usb3_dmp>;
   28                         #phy-cells = <0>;
   29                 };
   30         };
   31 
   32         usb3_dmp: syscon@18105000 {
   33                 reg = <0x18105000 0x1000>;
   34         };

Cache object: 5222a99279ef8edcc2dfedc9cf4078a4


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