Re: [GIT PULL] MUSB patches

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

just a gentle ping. I hope we can still get these in 2.6.38 merge
window.

(original pull quoted below)

On Sat, Dec 11, 2010 at 12:18:22PM +0200, Felipe Balbi wrote:
Hi Greg,

Here's the final version of OMAP USB and MUSB changes
if there are still mistakes here, I'll fix during -rc
cycle.

Sorry for the mess but a bunch of patches started piling
up quite close to merge window.

The following changes since commit fe4bfb30fe5788100a70c0ed96ddd8c6186eb9c4:

 Merge branch 'sh/ehci' of master.kernel.org:/pub/scm/linux/kernel/git/lethal/sh-2.6 into work (2010-12-03 12:12:29 -0800)

are available in the git repository at:

 git://gitorious.org/usb/usb.git musb-hw

Ajay Kumar Gupta (1):
     musb: am35x: fix compile error due to control apis

Felipe Balbi (31):
     usb: musb: introduce struct musb_platform_ops
     usb: musb: make all glue layer export struct musb_platform_ops
     arm: omap4: panda: initialize musb
     usb: musb: hold context on musb structure
     usb: musb: add Kconfig options for each glue layer
     usb: musb: trivial search and replace patch
     usb: musb: split omap2430 to its own platform_driver
     usb: musb: split am35x to its own platform_driver
     usb: musb: split tusb6010 to its own platform_driver
     usb: musb: split davinci to its own platform_driver
     usb: musb: split da8xx to its own platform_driver
     usb: musb: split blackfin to its own platform_driver
     usb: musb: omap2430: give it a context structure
     usb: musb: am35x: give it a context structure
     usb: musb: tusb6010: give it a context structure
     usb: musb: davinci: give it a context structure
     usb: musb: da8xx: give it a context structure
     usb: musb: blackfin: give it a context structure
     usb: musb: pass platform_ops via platform_data
     usb: musb: mark ->set_clock deprecated
     usb: musb: move clock handling to glue layer
     usb: musb: drop the set_clock magic
     usb: musb: drop musb_platform_save/restore_context
     usb: musb: mark musb_save/restore_context static
     usb: musb: omap2430: drop the nops
     usb: musb: omap2430: use dev_pm_ops structure
     usb: musb: am35x: usb dev_pm_ops structure
     usb: musb: blackfin: usb dev_pm_ops structure
     usb: musb: drop musb_platform_suspend/resume
     usb: musb: drop board_set_vbus
     arm: omap4: enable usb on 4430sdp

Hema HK (8):
     mfd: TWL6030: USBOTG VBUS event generation on
     usb: otg: Adding twl6030-usb transceiver driver for OMAP4430
     usb: otg: Kconfig: Add Kconfig option for TWL6030 transceiver.
     usb: musb: TWL6030: Selecting TWL6030_USB transceiver
     mfd: TWL6030: OMAP4: Registering the TWL6030-usb device
     usb: otg: TWL6030: Add twl6030_usb file for compilation
     usb: musb: Adding musb support for OMAP4430
     arm: OMAP4430: musb: Configure musb to OTG mode

Mian Yousaf Kaukab (1):
     usb: musb: add support for ux500 platform

Sergei Shtylyov (2):
     DA8xx: assign name to MUSB IRQ resource
     usb: musb: core: kill unneeded #include's

arch/arm/mach-davinci/usb.c                  |    4 +-
arch/arm/mach-omap2/Makefile                 |    6 +-
arch/arm/mach-omap2/board-4430sdp.c          |   17 +-
arch/arm/mach-omap2/board-n8x0.c             |    5 +-
arch/arm/mach-omap2/board-omap4panda.c       |   14 +-
arch/arm/mach-omap2/clock2420_data.c         |    2 +-
arch/arm/mach-omap2/clock2430_data.c         |    2 +-
arch/arm/mach-omap2/clock3xxx_data.c         |    8 +-
arch/arm/mach-omap2/clock44xx_data.c         |    2 +-
arch/arm/mach-omap2/omap_phy_internal.c      |  149 ++++++++
arch/arm/mach-omap2/usb-musb.c               |  102 ++++++-
arch/arm/mach-omap2/usb-tusb6010.c           |    2 +-
arch/arm/plat-omap/include/plat/usb.h        |    9 +
arch/blackfin/mach-bf527/boards/ad7160eval.c |    2 +-
arch/blackfin/mach-bf527/boards/cm_bf527.c   |    2 +-
arch/blackfin/mach-bf527/boards/ezbrd.c      |    2 +-
arch/blackfin/mach-bf527/boards/ezkit.c      |    2 +-
arch/blackfin/mach-bf527/boards/tll6527m.c   |    2 +-
arch/blackfin/mach-bf548/boards/cm_bf548.c   |    2 +-
arch/blackfin/mach-bf548/boards/ezkit.c      |    2 +-
drivers/mfd/twl-core.c                       |   44 ++-
drivers/mfd/twl6030-irq.c                    |    9 +-
drivers/usb/gadget/gadget_chips.h            |    2 +-
drivers/usb/musb/Kconfig                     |   77 ++---
drivers/usb/musb/Makefile                    |   21 +-
drivers/usb/musb/am35x.c                     |  410 ++++++++++++++--------
drivers/usb/musb/blackfin.c                  |  229 ++++++++++--
drivers/usb/musb/da8xx.c                     |  170 ++++++++-
drivers/usb/musb/davinci.c                   |  174 ++++++++-
drivers/usb/musb/musb_core.c                 |  191 ++++-------
drivers/usb/musb/musb_core.h                 |  190 ++++++----
drivers/usb/musb/musb_io.h                   |    4 +-
drivers/usb/musb/musb_regs.h                 |    4 +-
drivers/usb/musb/musb_virthub.c              |    2 +-
drivers/usb/musb/omap2430.c                  |  374 ++++++++++++++++----
drivers/usb/musb/tusb6010.c                  |  181 ++++++++--
drivers/usb/musb/ux500.c                     |  216 +++++++++++
drivers/usb/otg/Kconfig                      |   12 +
drivers/usb/otg/Makefile                     |    1 +
drivers/usb/otg/twl6030-usb.c                |  493 ++++++++++++++++++++++++++
include/linux/i2c/twl.h                      |    7 +
include/linux/usb/musb.h                     |    8 +-
42 files changed, 2526 insertions(+), 629 deletions(-)
create mode 100644 arch/arm/mach-omap2/omap_phy_internal.c
create mode 100644 drivers/usb/musb/ux500.c
create mode 100644 drivers/usb/otg/twl6030-usb.c

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


[Index of Archives]     [Linux Media]     [Linux Input]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Old Linux USB Devel Archive]

  Powered by Linux