aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRavi Babu <[email protected]>2011-12-13 10:50:58 -0800
committerTony Lindgren <[email protected]>2011-12-13 10:50:58 -0800
commitcada691f8675c36f738d41741a6ec5d966f39a10 (patch)
tree61fddfbaf5987694ba6d27266f5366197091cb07
parenta890b6760d975cdbdfcdf5753dab4c91059af9b1 (diff)
ARM: OMAP: musb: Adding support for ti81xx
Added musb support for ti81xx platform which has two instances of musb interface and uses CPPI4.1 DMA. The current patch set adds support for single instance and in PIO mode only. Signed-off-by: Ajay Kumar Gupta <[email protected]> Signed-off-by: Ravi Babu <[email protected]> Acked-by: Felipe Balbi <[email protected]> Signed-off-by: Tony Lindgren <[email protected]>
-rw-r--r--arch/arm/mach-omap2/usb-musb.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/usb-musb.c b/arch/arm/mach-omap2/usb-musb.c
index 267975086a7b..8d5ed775dd56 100644
--- a/arch/arm/mach-omap2/usb-musb.c
+++ b/arch/arm/mach-omap2/usb-musb.c
@@ -93,6 +93,9 @@ void __init usb_musb_init(struct omap_musb_board_data *musb_board_data)
if (cpu_is_omap3517() || cpu_is_omap3505()) {
oh_name = "am35x_otg_hs";
name = "musb-am35x";
+ } else if (cpu_is_ti81xx()) {
+ oh_name = "usb_otg_hs";
+ name = "musb-ti81xx";
} else {
oh_name = "usb_otg_hs";
name = "musb-omap2430";