Hi Greg, here's the transceiver pull request. Let me know if I've missed something: The following changes since commit 0d7614f09c1ebdbaa1599a5aba7593f147bf96ee: Linux 3.6-rc1 (2012-08-02 16:38:10 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git tags/xceiv-for-v3.7 for you to fetch changes up to 363366cf61c544ea476f3d220f43a95cb03014f5: usb: otg: mxs-phy: Fix mx23 operation (2012-09-10 19:46:38 +0300) ---------------------------------------------------------------- usb: xceiv: patches for v3.7 merge window nop xceiv got its own header to avoid polluting otg.h. It has also learned to work as USB2 and USB3 phys so we can use it on USB3 controllers. Together with those two changes to nop xceiv, we're adding basic PHY support to dwc3 driver, this is to allow platforms which actually have a SW-controllable PHY talk to them through dwc3 driver. We're adding a new phy driver for the OMAP architecture. This driver is for the PHY found in OMAP4 SoCs, and a new phy driver for the marvell architecture. An extra phy driver - for Tegra SoCs - is now moving from arch/arm/mach-tegra* to drivers/usb/phy. Also here, there's the creation of <linux/usb/phy.h> which should be used from now on for PHY drivers, even those which don't support OTG. ---------------------------------------------------------------- Felipe Balbi (6): usb: xceiv: create nop-usb-xceiv.h and avoid pollution on otg.h usb: xceiv: nop: let it work as USB2 and USB3 phy usb: dwc3: pci: add nop transceiver support usb: dwc3: omap: add nop transceiver support usb: dwc3: exynos: add nop transceiver support usb: dwc3: add basic PHY support Kishon Vijay Abraham I (5): usb: phy: add a new driver for omap usb2 phy usb: otg: make twl6030_usb as a comparator driver to omap_usb2 usb: twl6030: Add dt support for twl6030 usb usb: twl4030: Add device tree support for twl4030 usb arm: omap: phy: remove unused functions from omap-phy-internal.c Mike Thompson (1): usb: otg: mxs-phy: Fix mx23 operation Roland Stigge (1): usb: phy: isp1301: Remove unused static array and define Shubhrajyoti D (1): usb: otg: Remove the unneeded NULL check Venu Byravarasu (3): usb: otg: Move phy interface to separate file. usb: move phy driver from mach-tegra to drivers/usb usb: phy: fix build break Wei Yongjun (1): usb: otg: move the dereference below the NULL test Yu Xu (1): usb: phy: mv_u3d: Add usb phy driver for mv_u3d .../devicetree/bindings/usb/twlxxxx-usb.txt | 40 +++ Documentation/devicetree/bindings/usb/usb-phy.txt | 17 + arch/arm/mach-omap2/board-omap3evm.c | 1 + arch/arm/mach-omap2/omap_phy_internal.c | 138 --------- arch/arm/mach-omap2/twl-common.c | 5 - arch/arm/mach-omap2/usb-musb.c | 3 - arch/arm/mach-tegra/Makefile | 1 - arch/arm/mach-tegra/devices.c | 2 +- arch/arm/mach-tegra/devices.h | 2 +- drivers/usb/dwc3/core.c | 15 + drivers/usb/dwc3/core.h | 5 + drivers/usb/dwc3/dwc3-exynos.c | 66 ++++ drivers/usb/dwc3/dwc3-omap.c | 66 ++++ drivers/usb/dwc3/dwc3-pci.c | 67 ++++ drivers/usb/host/ehci-tegra.c | 14 +- drivers/usb/musb/am35x.c | 1 + drivers/usb/musb/blackfin.c | 1 + drivers/usb/musb/da8xx.c | 1 + drivers/usb/musb/davinci.c | 1 + drivers/usb/musb/musb_dsps.c | 1 + drivers/usb/musb/tusb6010.c | 1 + drivers/usb/otg/Kconfig | 2 +- drivers/usb/otg/fsl_otg.c | 34 +- drivers/usb/otg/mxs-phy.c | 38 ++- drivers/usb/otg/nop-usb-xceiv.c | 8 +- drivers/usb/otg/otg.c | 2 +- drivers/usb/otg/twl4030-usb.c | 26 +- drivers/usb/otg/twl6030-usb.c | 157 +++------- drivers/usb/phy/Kconfig | 17 + drivers/usb/phy/Makefile | 3 + drivers/usb/phy/isp1301.c | 6 - drivers/usb/phy/mv_u3d_phy.c | 345 +++++++++++++++++++++ drivers/usb/phy/mv_u3d_phy.h | 105 +++++++ drivers/usb/phy/omap-usb2.c | 271 ++++++++++++++++ .../usb_phy.c => drivers/usb/phy/tegra_usb_phy.c | 152 +++++---- include/linux/usb/nop-usb-xceiv.h | 24 ++ include/linux/usb/omap_usb.h | 46 +++ include/linux/usb/otg.h | 236 +------------- include/linux/usb/phy.h | 233 ++++++++++++++ include/linux/usb/phy_companion.h | 34 ++ .../usb_phy.h => include/linux/usb/tegra_usb_phy.h | 16 +- 41 files changed, 1596 insertions(+), 607 deletions(-) create mode 100644 Documentation/devicetree/bindings/usb/twlxxxx-usb.txt create mode 100644 Documentation/devicetree/bindings/usb/usb-phy.txt create mode 100644 drivers/usb/phy/mv_u3d_phy.c create mode 100644 drivers/usb/phy/mv_u3d_phy.h create mode 100644 drivers/usb/phy/omap-usb2.c rename arch/arm/mach-tegra/usb_phy.c => drivers/usb/phy/tegra_usb_phy.c (94%) create mode 100644 include/linux/usb/nop-usb-xceiv.h create mode 100644 include/linux/usb/omap_usb.h create mode 100644 include/linux/usb/phy.h create mode 100644 include/linux/usb/phy_companion.h rename arch/arm/mach-tegra/include/mach/usb_phy.h => include/linux/usb/tegra_usb_phy.h (86%) -- balbi
Attachment:
signature.asc
Description: Digital signature