public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] usb: ehci-omap: add OMAP4 support
@ 2010-11-21 18:40 Anand Gadiyar
  2010-11-21 18:40 ` [PATCH 01/11] usb: ehci-omap: update clock names to be more generic Anand Gadiyar
  2010-11-30 17:44 ` [PATCH 00/12] usb: ehci-omap: add OMAP4 support Greg KH
  0 siblings, 2 replies; 25+ messages in thread
From: Anand Gadiyar @ 2010-11-21 18:40 UTC (permalink / raw)
  To: linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-omap-u79uwXL29TY76Z2rM5mHXA
  Cc: Tony Lindgren, Greg KH, Anand Gadiyar

This series adds support for the EHCI controller on
OMAP4 chips. (This enables the ethernet controller
on the Pandaboard - finally!).

I'm sorry for the really long delay - I know this has
been in the works for a while.

I've tested the series on an OMAP4 SDP and a Pandaboard.
I'll be testing OMAP3 tomorrow.

Dependencies:
One patch depends on the mux framework patches by Benoit
- which are already in linux-next; however the series
compiles cleanly against current Linus' tree.

What's pending:
- OHCI support
- Support for TLL and HSIC modes
- Factoring out code common to ehci-omap and ohci-omap3
- Conversion to use omap_device and the hwmod database
- Runtime PM support

- Anand

Anand Gadiyar (8):
  omap: clock: add clkdev aliases for EHCI clocks
  usb: ehci-omap: use clkdev aliases for functional clocks
  usb: ehci-omap: add helpers for checking port mode
  arm: omap4: add USBHOST and related base addresses
  usb: omap4: add platform init code for EHCI driver
  omap: usb: ehci: introduce HSIC mode
  usb: ehci-omap: Add OMAP4 support
  arm: omap4: select USB_ARCH_HAS_EHCI

Keshava Munegowda (3):
  usb: ehci-omap: update clock names to be more generic
  usb: ehci-omap: don't hard-code TLL channel count
  usb: ehci: introduce CONFIG_USB_EHCI_HCD_OMAP

 arch/arm/mach-omap2/Kconfig                |    1 +
 arch/arm/mach-omap2/clock3xxx_data.c       |    5 +
 arch/arm/mach-omap2/clock44xx_data.c       |    5 +
 arch/arm/mach-omap2/usb-ehci.c             |  144 ++++++++++++-
 arch/arm/plat-omap/include/plat/omap44xx.h |    5 +
 arch/arm/plat-omap/include/plat/usb.h      |    1 +
 drivers/usb/host/Kconfig                   |    8 +
 drivers/usb/host/ehci-hcd.c                |    2 +-
 drivers/usb/host/ehci-omap.c               |  314 +++++++++++++++++++++------
 9 files changed, 406 insertions(+), 79 deletions(-)

--
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] 25+ messages in thread

end of thread, other threads:[~2010-11-30 22:04 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-21 18:40 [PATCH 00/12] usb: ehci-omap: add OMAP4 support Anand Gadiyar
2010-11-21 18:40 ` [PATCH 01/11] usb: ehci-omap: update clock names to be more generic Anand Gadiyar
     [not found]   ` <1290364814-4417-2-git-send-email-gadiyar-l0cyMroinI0@public.gmane.org>
2010-11-21 18:40     ` [PATCH 02/11] usb: ehci-omap: don't hard-code TLL channel count Anand Gadiyar
2010-11-21 18:40       ` [PATCH 03/11] usb: ehci: introduce CONFIG_USB_EHCI_HCD_OMAP Anand Gadiyar
2010-11-21 18:40         ` [PATCH 04/11] omap: clock: add clkdev aliases for EHCI clocks Anand Gadiyar
     [not found]           ` <1290364814-4417-5-git-send-email-gadiyar-l0cyMroinI0@public.gmane.org>
2010-11-21 18:40             ` [PATCH 05/11] usb: ehci-omap: use clkdev aliases for functional clocks Anand Gadiyar
     [not found]               ` <1290364814-4417-6-git-send-email-gadiyar-l0cyMroinI0@public.gmane.org>
2010-11-21 18:40                 ` [PATCH 06/11] usb: ehci-omap: add helpers for checking port mode Anand Gadiyar
     [not found]                   ` <1290364814-4417-7-git-send-email-gadiyar-l0cyMroinI0@public.gmane.org>
2010-11-21 18:40                     ` [PATCH 07/11] arm: omap4: add USBHOST and related base addresses Anand Gadiyar
2010-11-21 18:40                       ` [PATCH 08/11] usb: omap4: add platform init code for EHCI driver Anand Gadiyar
2010-11-21 18:40                         ` [PATCH 09/11] omap: usb: ehci: introduce HSIC mode Anand Gadiyar
     [not found]                           ` <1290364814-4417-10-git-send-email-gadiyar-l0cyMroinI0@public.gmane.org>
2010-11-21 18:40                             ` [PATCH 10/11] usb: ehci-omap: Add OMAP4 support Anand Gadiyar
     [not found]                               ` <1290364814-4417-11-git-send-email-gadiyar-l0cyMroinI0@public.gmane.org>
2010-11-21 18:40                                 ` [PATCH 11/11] arm: omap4: select USB_ARCH_HAS_EHCI Anand Gadiyar
2010-11-22 10:23                                 ` [PATCH 10/11] usb: ehci-omap: Add OMAP4 support Felipe Balbi
2010-11-30 18:42                           ` [PATCH 09/11] omap: usb: ehci: introduce HSIC mode Tony Lindgren
2010-11-22 10:24                       ` [PATCH 07/11] arm: omap4: add USBHOST and related base addresses Felipe Balbi
2010-11-30 18:41                         ` Tony Lindgren
2010-11-22 10:19           ` [PATCH 04/11] omap: clock: add clkdev aliases for EHCI clocks Felipe Balbi
     [not found]             ` <20101122101913.GO2446-UiBtZHVXSwEVvW8u9ZQWYwjfymiNCTlR@public.gmane.org>
2010-11-30 18:40               ` Tony Lindgren
2010-11-30 17:44 ` [PATCH 00/12] usb: ehci-omap: add OMAP4 support Greg KH
2010-11-30 18:23   ` Gadiyar, Anand
     [not found]     ` <AANLkTi=hr3bz6xS8DB+ShE0E_HzFGhtCqi+1NqsWQQa5-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-11-30 18:30       ` Greg KH
     [not found]         ` <20101130183007.GA27476-l3A5Bk7waGM@public.gmane.org>
2010-11-30 18:47           ` Tony Lindgren
2010-11-30 18:52             ` Gadiyar, Anand
2010-11-30 20:30               ` Greg KH
2010-11-30 22:04                 ` Anand Gadiyar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox