ohci-nxp.txt 637 B

123456789101112131415161718192021222324
  1. * OHCI controller, NXP ohci-nxp variant
  2. Required properties:
  3. - compatible: must be "nxp,ohci-nxp"
  4. - reg: physical base address of the controller and length of memory mapped
  5. region.
  6. - interrupts: The OHCI interrupt
  7. - transceiver: phandle of the associated ISP1301 device - this is necessary for
  8. the UDC controller for connecting to the USB physical layer
  9. Example (LPC32xx):
  10. isp1301: usb-transceiver@2c {
  11. compatible = "nxp,isp1301";
  12. reg = <0x2c>;
  13. };
  14. ohci@31020000 {
  15. compatible = "nxp,ohci-nxp";
  16. reg = <0x31020000 0x300>;
  17. interrupt-parent = <&mic>;
  18. interrupts = <0x3b 0>;
  19. transceiver = <&isp1301>;
  20. };