ci-hdrc-imx.txt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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. - fsl,usbphy: phandle of usb phy that connects to the port
  7. Recommended properies:
  8. - phy_type: the type of the phy connected to the core. Should be one
  9. of "utmi", "utmi_wide", "ulpi", "serial" or "hsic". Without this
  10. property the PORTSC register won't be touched
  11. - dr_mode: One of "host", "peripheral" or "otg". Defaults to "otg"
  12. Optional properties:
  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. - tpl-support: TPL (Targeted Peripheral List) feature for targeted hosts
  20. Examples:
  21. usb@02184000 { /* USB OTG */
  22. compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
  23. reg = <0x02184000 0x200>;
  24. interrupts = <0 43 0x04>;
  25. fsl,usbphy = <&usbphy1>;
  26. fsl,usbmisc = <&usbmisc 0>;
  27. disable-over-current;
  28. external-vbus-divider;
  29. maximum-speed = "full-speed";
  30. tpl-support;
  31. };