From mboxrd@z Thu Jan 1 00:00:00 1970 From: Benoit Goby Subject: [PATCH 0/4] Tegra EHCI driver Date: Tue, 8 Feb 2011 21:22:03 -0800 Message-ID: <1297228927-23497-1-git-send-email-benoit@android.com> Return-path: Sender: linux-usb-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: David Brownell , Greg Kroah-Hartman , linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Robert Morell Cc: Benoit Goby , Olof Johansson , Erik Gilling , linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: linux-tegra@vger.kernel.org This patch series adds support for EHCI compliant USB host controllers found in Tegra SoCs. The EHCI driver depends on the Tegra PHY configuration interface that is used by both the ehci driver and the gadget driver. Tested on 2.6.38rc4. Benoit Goby (2): [ARM] tegra: Add support for Tegra USB PHYs usb: host: Add EHCI driver for NVIDIA Tegra SoCs Gary King (1): usb: host: ehci-hcd: Add controller_resets_phy quirk Robert Morell (1): USB: ehci: tegra: Align DMA transfers to 32 bytes arch/arm/mach-tegra/Makefile | 1 + arch/arm/mach-tegra/include/mach/usb_phy.h | 83 +++ arch/arm/mach-tegra/usb_phy.c | 794 ++++++++++++++++++++++++++++ drivers/usb/Kconfig | 1 + drivers/usb/host/Kconfig | 8 + drivers/usb/host/ehci-hcd.c | 8 +- drivers/usb/host/ehci-tegra.c | 763 ++++++++++++++++++++++++++ drivers/usb/host/ehci.h | 1 + include/linux/tegra_usb.h | 35 ++ 9 files changed, 1693 insertions(+), 1 deletions(-) create mode 100644 arch/arm/mach-tegra/include/mach/usb_phy.h create mode 100644 arch/arm/mach-tegra/usb_phy.c create mode 100644 drivers/usb/host/ehci-tegra.c create mode 100644 include/linux/tegra_usb.h -- 1.7.3.1 -- 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