ci13xxx-imx.txt 1013 B

123456789101112131415161718192021222324252627282930
  1. * Freescale i.MX ci13xxx usb controllers
  2. Required properties:
  3. - compatible: Should be "fsl,imx27-usb"
  4. - reg: Should contain registers location and length
  5. - interrupts: Should contain controller interrupt
  6. Recommended properies:
  7. - phy_type: the type of the phy connected to the core. Should be one
  8. of "utmi", "utmi_wide", "ulpi", "serial" or "hsic". Without this
  9. property the PORTSC register won't be touched
  10. Optional properties:
  11. - fsl,usbphy: phandler of usb phy that connects to the only one port
  12. - fsl,usbmisc: phandler of non-core register device, with one argument
  13. that indicate usb controller index
  14. - vbus-supply: regulator for vbus
  15. - disable-over-current: disable over current detect
  16. - external-vbus-divider: enables off-chip resistor divider for Vbus
  17. Examples:
  18. usb@02184000 { /* USB OTG */
  19. compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
  20. reg = <0x02184000 0x200>;
  21. interrupts = <0 43 0x04>;
  22. fsl,usbphy = <&usbphy1>;
  23. fsl,usbmisc = <&usbmisc 0>;
  24. disable-over-current;
  25. external-vbus-divider;
  26. };