ci13xxx-imx.txt 1.1 KB

12345678910111213141516171819202122232425262728293031
  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. - dr_mode: One of "host", "peripheral" or "otg". Defaults to "otg"
  11. Optional properties:
  12. - fsl,usbphy: phandler of usb phy that connects to the only one port
  13. - fsl,usbmisc: phandler of non-core register device, with one argument
  14. that indicate usb controller index
  15. - vbus-supply: regulator for vbus
  16. - disable-over-current: disable over current detect
  17. - external-vbus-divider: enables off-chip resistor divider for Vbus
  18. Examples:
  19. usb@02184000 { /* USB OTG */
  20. compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
  21. reg = <0x02184000 0x200>;
  22. interrupts = <0 43 0x04>;
  23. fsl,usbphy = <&usbphy1>;
  24. fsl,usbmisc = <&usbmisc 0>;
  25. disable-over-current;
  26. external-vbus-divider;
  27. };