1 Freescale SOC USB controllers
3 The device node for a USB controller that is part of a Freescale
4 SOC is as described in the document "Open Firmware Recommended
5 Practice : Universal Serial Bus" with the following modifications
9 - compatible : Should be "fsl-usb2-mph" for multi port host USB
10 controllers, or "fsl-usb2-dr" for dual role USB controllers
11 or "fsl,mpc5121-usb2-dr" for dual role USB controllers of MPC5121
12 - phy_type : For multi port host USB controllers, should be one of
13 "ulpi", or "serial". For dual role USB controllers, should be
14 one of "ulpi", "utmi", "utmi_wide", or "serial".
15 - reg : Offset and length of the register set for the device
16 - port0 : boolean; if defined, indicates port0 is connected for
17 fsl-usb2-mph compatible controllers. Either this property or
18 "port1" (or both) must be defined for "fsl-usb2-mph" compatible
20 - port1 : boolean; if defined, indicates port1 is connected for
21 fsl-usb2-mph compatible controllers. Either this property or
22 "port0" (or both) must be defined for "fsl-usb2-mph" compatible
24 - dr_mode : indicates the working mode for "fsl-usb2-dr" compatible
25 controllers. Can be "host", "peripheral", or "otg". Default to
26 "host" if not defined for backward compatibility.
28 Recommended properties :
29 - interrupts : <a b> where a is the interrupt number and b is a
30 field that represents an encoding of the sense and level
31 information for the interrupt. This should be encoded based on
32 the information in section 2) depending on the type of interrupt
34 - interrupt-parent : the phandle for the interrupt controller that
35 services interrupts for this device.
38 - fsl,invert-drvvbus : boolean; for MPC5121 USB0 only. Indicates the
39 port power polarity of internal PHY signal DRVVBUS is inverted.
40 - fsl,invert-pwr-fault : boolean; for MPC5121 USB0 only. Indicates
41 the PWR_FAULT signal polarity is inverted.
43 Example multi port host USB controller device node :
45 compatible = "fsl-usb2-mph";
49 interrupt-parent = <700>;
56 Example dual role USB controller device node :
58 compatible = "fsl-usb2-dr";
62 interrupt-parent = <700>;
68 Example dual role USB controller device node for MPC5121ADS:
71 compatible = "fsl,mpc5121-usb2-dr";
72 reg = <0x4000 0x1000>;
75 interrupt-parent = < &ipic >;
76 interrupts = <44 0x8>;
78 phy_type = "utmi_wide";