-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
usb: musb: omap: Add device tree support for omap musb glue
Added device tree support for omap musb driver and updated the Documentation with device tree binding information. Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
- Loading branch information
Kishon Vijay Abraham I
authored and
Felipe Balbi
committed
Sep 11, 2012
1 parent
5ec4059
commit 00a0b1d
Showing
2 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
OMAP GLUE | ||
|
||
OMAP MUSB GLUE | ||
- compatible : Should be "ti,omap4-musb" or "ti,omap3-musb" | ||
- ti,hwmods : must be "usb_otg_hs" | ||
- multipoint : Should be "1" indicating the musb controller supports | ||
multipoint. This is a MUSB configuration-specific setting. | ||
- num_eps : Specifies the number of endpoints. This is also a | ||
MUSB configuration-specific setting. Should be set to "16" | ||
- ram_bits : Specifies the ram address size. Should be set to "12" | ||
- interface_type : This is a board specific setting to describe the type of | ||
interface between the controller and the phy. It should be "0" or "1" | ||
specifying ULPI and UTMI respectively. | ||
- mode : Should be "3" to represent OTG. "1" signifies HOST and "2" | ||
represents PERIPHERAL. | ||
- power : Should be "50". This signifies the controller can supply upto | ||
100mA when operating in host mode. | ||
|
||
SOC specific device node entry | ||
usb_otg_hs: usb_otg_hs@4a0ab000 { | ||
compatible = "ti,omap4-musb"; | ||
ti,hwmods = "usb_otg_hs"; | ||
multipoint = <1>; | ||
num_eps = <16>; | ||
ram_bits = <12>; | ||
}; | ||
|
||
Board specific device node entry | ||
&usb_otg_hs { | ||
interface_type = <1>; | ||
mode = <3>; | ||
power = <50>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters