linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/8 v4] usb: musb: Adding support for ti81xx and am335x
@ 2011-10-11 11:26 Ajay Kumar Gupta
  2011-10-11 11:26 ` [PATCH 1/8] omap: musb: Adding support for ti81xx Ajay Kumar Gupta
                   ` (5 more replies)
  0 siblings, 6 replies; 20+ messages in thread
From: Ajay Kumar Gupta @ 2011-10-11 11:26 UTC (permalink / raw)
  To: linux-usb-u79uwXL29TY76Z2rM5mHXA
  Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA, balbi-l0cyMroinI0,
	Ajay Kumar Gupta

This patch set adds support for musb interface for TI81XX and AM33XX
platforms and are dependent on recent patch series from Hemant Pedanekar
at [1] and [2] and Vaibhav Hiremath at [3]

TI81XX and AM33XX platform has dual musb instances, uses CPPI4.1 DMA and
has built in usb PHY. The current set of patches supports only the first
interface and in PIO mode.

[1] http://marc.info/?l=linux-omap&m=131411961308438&w=2
[2] http://marc.info/?l=linux-omap&m=131821081227729&w=2
[3] http://marc.info/?l=linux-omap&m=131652916305543&w=2

Changes from v3 for TI81xx:
	- Dropped hwmod data patch as that will be submitted along with
	  Hemant's hwmod baseport patches.
	- Added ioremap and iounmap for accessing SCM register
Changes from v1 for AM33xx:
	- Used cpu_is_am33xx() instead of cpu_is_am335x() to cover wider
	  wider range of devices.
	- Removed unneeded parens. 

Ajay Kumar Gupta (4):
  omap: musb: ti81xx: Add phy power function
  arm: omap: am335x: enable phy controls
  usb: musb: enable support for am335x
  am335xevm: Add support for musb interface

Ravi Babu (4):
  omap: musb: Adding support for ti81xx
  ti816evm: Add support for musb interface
  ti814evm: Add support for musb interface
  usb: musb: Add support for ti81xx platform

 arch/arm/mach-omap2/board-am335xevm.c   |    9 +
 arch/arm/mach-omap2/board-ti8148evm.c   |    9 +
 arch/arm/mach-omap2/board-ti8168evm.c   |    9 +
 arch/arm/mach-omap2/omap_phy_internal.c |   42 ++
 arch/arm/mach-omap2/usb-musb.c          |    3 +
 arch/arm/plat-omap/include/plat/usb.h   |   32 ++
 drivers/usb/musb/Kconfig                |    6 +
 drivers/usb/musb/Makefile               |    1 +
 drivers/usb/musb/musb_core.c            |    4 +-
 drivers/usb/musb/musb_dsps.c            |  693 +++++++++++++++++++++++++++++++
 10 files changed, 807 insertions(+), 1 deletions(-)
 create mode 100644 drivers/usb/musb/musb_dsps.c

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2011-12-12 19:09 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-11 11:26 [PATCH 0/8 v4] usb: musb: Adding support for ti81xx and am335x Ajay Kumar Gupta
2011-10-11 11:26 ` [PATCH 1/8] omap: musb: Adding support for ti81xx Ajay Kumar Gupta
     [not found]   ` <1318332369-9732-2-git-send-email-ajay.gupta-l0cyMroinI0@public.gmane.org>
2011-12-12 18:47     ` Tony Lindgren
     [not found] ` <1318332369-9732-1-git-send-email-ajay.gupta-l0cyMroinI0@public.gmane.org>
2011-10-11 11:26   ` [PATCH 2/8] omap: musb: ti81xx: Add phy power function Ajay Kumar Gupta
     [not found]     ` <1318332369-9732-3-git-send-email-ajay.gupta-l0cyMroinI0@public.gmane.org>
2011-12-12 18:47       ` Tony Lindgren
2011-10-11 11:26   ` [PATCH 5/8] usb: musb: Add support for ti81xx platform Ajay Kumar Gupta
2011-12-12 18:49     ` Tony Lindgren
     [not found]       ` <20111212184900.GE32251-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2011-12-12 19:09         ` Felipe Balbi
2011-10-11 11:26   ` [PATCH 8/8] usb: musb: enable support for am335x Ajay Kumar Gupta
2011-10-11 11:26 ` [PATCH 3/8] ti816evm: Add support for musb interface Ajay Kumar Gupta
2011-10-11 12:08   ` Igor Grinberg
2011-10-11 16:28     ` Gupta, Ajay Kumar
2011-10-11 17:07       ` Gupta, Ajay Kumar
     [not found]         ` <19F8576C6E063C45BE387C64729E739404ECCE5662-/tLxBxkBPtCIQmiDNMet8wC/G2K4zDHf@public.gmane.org>
2011-12-12 18:48           ` Tony Lindgren
2011-10-11 11:26 ` [PATCH 4/8] ti814evm: " Ajay Kumar Gupta
2011-10-11 11:55   ` Igor Grinberg
2011-10-11 14:41     ` Gupta, Ajay Kumar
2011-10-11 11:26 ` [PATCH 6/8] am335xevm: " Ajay Kumar Gupta
     [not found]   ` <1318332369-9732-7-git-send-email-ajay.gupta-l0cyMroinI0@public.gmane.org>
2011-12-12 18:49     ` Tony Lindgren
2011-10-11 11:26 ` [PATCH 7/8] arm: omap: am335x: enable phy controls Ajay Kumar Gupta

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).