blob: 5778b9c83bd845692a4eda281ec842eb1864ac6e [file] [log] [blame]
Richard Zhao15302802012-07-07 22:56:48 +08001* Freescale i.MX ci13xxx usb controllers
2
3Required properties:
4- compatible: Should be "fsl,imx27-usb"
5- reg: Should contain registers location and length
6- interrupts: Should contain controller interrupt
7
8Optional properties:
9- fsl,usbphy: phandler of usb phy that connects to the only one port
Richard Zhaod142d6b2012-09-12 14:58:05 +030010- fsl,usbmisc: phandler of non-core register device, with one argument
11 that indicate usb controller index
Richard Zhao15302802012-07-07 22:56:48 +080012- vbus-supply: regulator for vbus
Richard Zhaod142d6b2012-09-12 14:58:05 +030013- disable-over-current: disable over current detect
Richard Zhao15302802012-07-07 22:56:48 +080014
15Examples:
16usb@02184000 { /* USB OTG */
17 compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
18 reg = <0x02184000 0x200>;
19 interrupts = <0 43 0x04>;
20 fsl,usbphy = <&usbphy1>;
Richard Zhaod142d6b2012-09-12 14:58:05 +030021 fsl,usbmisc = <&usbmisc 0>;
22 disable-over-current;
Richard Zhao15302802012-07-07 22:56:48 +080023};