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/usb/cdns-usb3.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 Binding for the Cadence USBSS-DRD controller
    2 
    3 Required properties:
    4  - reg: Physical base address and size of the controller's register areas.
    5          Controller has 3 different regions:
    6          - HOST registers area
    7          - DEVICE registers area
    8          - OTG/DRD registers area
    9  - reg-names - register memory area names:
   10         "xhci" - for HOST registers space
   11         "dev" - for DEVICE registers space
   12         "otg" - for OTG/DRD registers space
   13  - compatible: Should contain: "cdns,usb3"
   14  - interrupts: Interrupts used by cdns3 controller:
   15         "host" - interrupt used by XHCI driver.
   16         "peripheral" - interrupt used by device driver
   17         "otg" - interrupt used by DRD/OTG  part of driver
   18 
   19 Optional properties:
   20  - maximum-speed : valid arguments are "super-speed", "high-speed" and
   21                    "full-speed"; refer to usb/generic.txt
   22  - dr_mode: Should be one of "host", "peripheral" or "otg".
   23  - phys: reference to the USB PHY
   24  - phy-names: from the *Generic PHY* bindings;
   25         Supported names are:
   26         - cdns3,usb2-phy
   27         - cdns3,usb3-phy
   28 
   29  - cdns,on-chip-buff-size : size of memory intended as internal memory for endpoints
   30         buffers expressed in KB
   31 
   32 Example:
   33         usb@f3000000 {
   34                 compatible = "cdns,usb3";
   35                 interrupts = <GIC_USB_IRQ 7 IRQ_TYPE_LEVEL_HIGH>,
   36                                 <GIC_USB_IRQ  7 IRQ_TYPE_LEVEL_HIGH>,
   37                                 <GIC_USB_IRQ  8 IRQ_TYPE_LEVEL_HIGH>;
   38                 interrupt-names = "host", "peripheral", "otg";
   39                 reg = <0xf3000000 0x10000>,     /* memory area for HOST registers */
   40                         <0xf3010000 0x10000>,   /* memory area for DEVICE registers */
   41                         <0xf3020000 0x10000>;   /* memory area for OTG/DRD registers */
   42                 reg-names = "xhci", "dev", "otg";
   43                 phys = <&usb2_phy>, <&usb3_phy>;
   44                 phy-names = "cdns3,usb2-phy", "cnds3,usb3-phy";
   45         };

Cache object: 38a8e7e0dcac65dff8642065c0c0b6bc


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