lpc32xx-udc.txt 873 B

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