ci-hdrc-imx.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233
  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. - maximum-speed: limit the maximum connection speed to "full-speed".
  19. Examples:
  20. usb@02184000 { /* USB OTG */
  21. compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
  22. reg = <0x02184000 0x200>;
  23. interrupts = <0 43 0x04>;
  24. fsl,usbphy = <&usbphy1>;
  25. fsl,usbmisc = <&usbmisc 0>;
  26. disable-over-current;
  27. external-vbus-divider;
  28. maximum-speed = "full-speed";
  29. };