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/lpc32xx-udc.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 * NXP LPC32xx SoC USB Device Controller (UDC)
    2 
    3 Required properties:
    4 - compatible: Must be "nxp,lpc3220-udc"
    5 - reg: Physical base address of the controller and length of memory mapped
    6   region.
    7 - interrupts: The USB interrupts:
    8               * USB Device Low Priority Interrupt
    9               * USB Device High Priority Interrupt
   10               * USB Device DMA Interrupt
   11               * External USB Transceiver Interrupt (OTG ATX)
   12 - transceiver: phandle of the associated ISP1301 device - this is necessary for
   13                the UDC controller for connecting to the USB physical layer
   14 
   15 Example:
   16 
   17         isp1301: usb-transceiver@2c {
   18                 compatible = "nxp,isp1301";
   19                 reg = <0x2c>;
   20         };
   21 
   22         usbd@31020000 {
   23                 compatible = "nxp,lpc3220-udc";
   24                 reg = <0x31020000 0x300>;
   25                 interrupt-parent = <&mic>;
   26                 interrupts = <0x3d 0>, <0x3e 0>, <0x3c 0>, <0x3a 0>;
   27                 transceiver = <&isp1301>;
   28         };

Cache object: e5cb778cff50400b33de3b7fa2e6e3ff


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