2005-04-16 16:20:36 -06:00
|
|
|
#
|
2005-09-23 18:14:37 -06:00
|
|
|
# Makefile for USB Host Controller Drivers
|
2005-04-16 16:20:36 -06:00
|
|
|
#
|
|
|
|
|
2013-08-05 15:22:15 -06:00
|
|
|
# tell define_trace.h where to find the xhci trace header
|
|
|
|
CFLAGS_xhci-trace.o := -I$(src)
|
|
|
|
|
2010-10-06 20:03:26 -06:00
|
|
|
fhci-y := fhci-hcd.o fhci-hub.o fhci-q.o
|
|
|
|
fhci-y += fhci-mem.o fhci-tds.o fhci-sched.o
|
|
|
|
|
|
|
|
fhci-$(CONFIG_FHCI_DEBUG) += fhci-dbg.o
|
|
|
|
|
2011-09-23 15:20:02 -06:00
|
|
|
xhci-hcd-y := xhci.o xhci-mem.o
|
2010-10-06 20:03:26 -06:00
|
|
|
xhci-hcd-y += xhci-ring.o xhci-hub.o xhci-dbg.o
|
2013-08-05 15:22:15 -06:00
|
|
|
xhci-hcd-y += xhci-trace.o
|
2008-04-23 16:37:04 -06:00
|
|
|
|
2014-10-03 02:35:29 -06:00
|
|
|
xhci-plat-hcd-y := xhci-plat.o
|
2014-05-15 04:17:33 -06:00
|
|
|
ifneq ($(CONFIG_USB_XHCI_MVEBU), )
|
2014-10-03 02:35:29 -06:00
|
|
|
xhci-plat-hcd-y += xhci-mvebu.o
|
2014-05-15 04:17:33 -06:00
|
|
|
endif
|
2014-07-08 19:08:52 -06:00
|
|
|
ifneq ($(CONFIG_USB_XHCI_RCAR), )
|
2014-10-03 02:35:29 -06:00
|
|
|
xhci-plat-hcd-y += xhci-rcar.o
|
2012-03-13 08:57:41 -06:00
|
|
|
endif
|
|
|
|
|
2008-09-17 09:34:28 -06:00
|
|
|
obj-$(CONFIG_USB_WHCI_HCD) += whci/
|
|
|
|
|
2015-04-22 10:11:59 -06:00
|
|
|
ifneq ($(CONFIG_USB), )
|
|
|
|
obj-$(CONFIG_PCI) += pci-quirks.o
|
|
|
|
endif
|
2005-09-23 18:14:37 -06:00
|
|
|
|
2014-10-03 02:35:29 -06:00
|
|
|
obj-$(CONFIG_USB_XHCI_PCI) += xhci-pci.o
|
|
|
|
obj-$(CONFIG_USB_XHCI_PLATFORM) += xhci-plat-hcd.o
|
|
|
|
|
2005-04-16 16:20:36 -06:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD) += ehci-hcd.o
|
2012-11-01 09:13:04 -06:00
|
|
|
obj-$(CONFIG_USB_EHCI_PCI) += ehci-pci.o
|
2012-11-01 09:13:08 -06:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_PLATFORM) += ehci-platform.o
|
2013-01-23 11:26:15 -07:00
|
|
|
obj-$(CONFIG_USB_EHCI_MXC) += ehci-mxc.o
|
2013-03-12 04:44:39 -06:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_OMAP) += ehci-omap.o
|
2013-04-02 10:23:59 -06:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_ORION) += ehci-orion.o
|
2013-04-02 10:24:00 -06:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_SPEAR) += ehci-spear.o
|
2014-10-03 02:21:44 -06:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_STI) += ehci-st.o
|
2013-10-10 01:42:47 -06:00
|
|
|
obj-$(CONFIG_USB_EHCI_EXYNOS) += ehci-exynos.o
|
2013-04-02 10:24:02 -06:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_AT91) += ehci-atmel.o
|
2013-04-02 10:24:03 -06:00
|
|
|
obj-$(CONFIG_USB_EHCI_MSM) += ehci-msm.o
|
2013-06-13 11:24:12 -06:00
|
|
|
obj-$(CONFIG_USB_EHCI_TEGRA) += ehci-tegra.o
|
2013-09-21 05:14:42 -06:00
|
|
|
obj-$(CONFIG_USB_W90X900_EHCI) += ehci-w90x900.o
|
2012-11-01 09:13:04 -06:00
|
|
|
|
2008-10-23 02:08:07 -06:00
|
|
|
obj-$(CONFIG_USB_OXU210HP_HCD) += oxu210hp-hcd.o
|
2005-04-09 13:57:39 -06:00
|
|
|
obj-$(CONFIG_USB_ISP116X_HCD) += isp116x-hcd.o
|
2009-07-16 18:51:21 -06:00
|
|
|
obj-$(CONFIG_USB_ISP1362_HCD) += isp1362-hcd.o
|
USB: OHCI: make ohci-pci a separate driver
This patch splits the PCI portion of ohci-hcd out into its
own separate driver module, called ohci-pci.
The major point of difficulty lies in ohci-pci's many vendor- and
device-specific workarounds. Some of them have to be applied before
calling ohci_start() some after, which necessitates a fair amount of
code motion. The other platform drivers require much smaller changes.
The complete sb800_prefetch() function moved to ohci-q.c,because its
only related to ohci-pci driver.
USB_OHCI_HCD_PCI symbol no longer dependence on STB03xxx, PPC_MPC52xx and
USB_OHCI_HCD_PPC_OF that's what removed.
V2:
- few specific content of pci related code in ohci_pci_start function has been moved to ohci_pci_reset
and rest of the generic code is written in ohci_start of ohci-hcd.c file.
V3:
- ohci_restart() has been called in ohci_pci_reset() function for to reset the ohci pci.
V4:
-sb800_prefetch() moved to ohci-q.c,because its only related to ohci-pci.
-no longer _creating_ CONFIG_USB_OHCI_PCI,creating CONFIG_USB_OHCI_HCD_PCI.
-overrides renamed with pci_override,its giving proper meaning.
V5:
-sb800_prefetch() moved to pci-quirks.c,because its only related to pci.
V6:
-sb800_prefetch() function has been moved to pci-quirks.c made as separate patch in 2/3.
-Most of the generic ohci pci changes moved in 2/3 patch,now this is complete ohci-pci separation patch.
V7:
-Unrelated include file has been removed from ohci.h file.
V8:
-USB_OHCI_HCD_PCI symbol does not dependence on STB03xxx, PPC_MPC52xx and USB_OHCI_HCD_PPC_OF.
Signed-off-by: Manjunath Goudar <manjunath.goudar@linaro.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2013-05-28 07:04:51 -06:00
|
|
|
|
2005-04-16 16:20:36 -06:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD) += ohci-hcd.o
|
USB: OHCI: make ohci-pci a separate driver
This patch splits the PCI portion of ohci-hcd out into its
own separate driver module, called ohci-pci.
The major point of difficulty lies in ohci-pci's many vendor- and
device-specific workarounds. Some of them have to be applied before
calling ohci_start() some after, which necessitates a fair amount of
code motion. The other platform drivers require much smaller changes.
The complete sb800_prefetch() function moved to ohci-q.c,because its
only related to ohci-pci driver.
USB_OHCI_HCD_PCI symbol no longer dependence on STB03xxx, PPC_MPC52xx and
USB_OHCI_HCD_PPC_OF that's what removed.
V2:
- few specific content of pci related code in ohci_pci_start function has been moved to ohci_pci_reset
and rest of the generic code is written in ohci_start of ohci-hcd.c file.
V3:
- ohci_restart() has been called in ohci_pci_reset() function for to reset the ohci pci.
V4:
-sb800_prefetch() moved to ohci-q.c,because its only related to ohci-pci.
-no longer _creating_ CONFIG_USB_OHCI_PCI,creating CONFIG_USB_OHCI_HCD_PCI.
-overrides renamed with pci_override,its giving proper meaning.
V5:
-sb800_prefetch() moved to pci-quirks.c,because its only related to pci.
V6:
-sb800_prefetch() function has been moved to pci-quirks.c made as separate patch in 2/3.
-Most of the generic ohci pci changes moved in 2/3 patch,now this is complete ohci-pci separation patch.
V7:
-Unrelated include file has been removed from ohci.h file.
V8:
-USB_OHCI_HCD_PCI symbol does not dependence on STB03xxx, PPC_MPC52xx and USB_OHCI_HCD_PPC_OF.
Signed-off-by: Manjunath Goudar <manjunath.goudar@linaro.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2013-05-28 07:04:51 -06:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_PCI) += ohci-pci.o
|
2013-06-03 09:16:08 -06:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_PLATFORM) += ohci-platform.o
|
2013-09-21 05:08:38 -06:00
|
|
|
obj-$(CONFIG_USB_OHCI_EXYNOS) += ohci-exynos.o
|
2013-09-21 05:08:39 -06:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_OMAP1) += ohci-omap.o
|
2013-09-21 05:08:40 -06:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_OMAP3) += ohci-omap3.o
|
2013-09-21 05:08:41 -06:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_SPEAR) += ohci-spear.o
|
2014-09-29 06:54:34 -06:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_STI) += ohci-st.o
|
2013-09-21 05:08:42 -06:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_AT91) += ohci-at91.o
|
2013-09-21 05:08:43 -06:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_S3C2410) += ohci-s3c2410.o
|
2013-09-21 05:08:44 -06:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_LPC32XX) += ohci-nxp.o
|
2013-09-21 05:08:46 -06:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_PXA27X) += ohci-pxa27x.o
|
USB: OHCI: make ohci-pci a separate driver
This patch splits the PCI portion of ohci-hcd out into its
own separate driver module, called ohci-pci.
The major point of difficulty lies in ohci-pci's many vendor- and
device-specific workarounds. Some of them have to be applied before
calling ohci_start() some after, which necessitates a fair amount of
code motion. The other platform drivers require much smaller changes.
The complete sb800_prefetch() function moved to ohci-q.c,because its
only related to ohci-pci driver.
USB_OHCI_HCD_PCI symbol no longer dependence on STB03xxx, PPC_MPC52xx and
USB_OHCI_HCD_PPC_OF that's what removed.
V2:
- few specific content of pci related code in ohci_pci_start function has been moved to ohci_pci_reset
and rest of the generic code is written in ohci_start of ohci-hcd.c file.
V3:
- ohci_restart() has been called in ohci_pci_reset() function for to reset the ohci pci.
V4:
-sb800_prefetch() moved to ohci-q.c,because its only related to ohci-pci.
-no longer _creating_ CONFIG_USB_OHCI_PCI,creating CONFIG_USB_OHCI_HCD_PCI.
-overrides renamed with pci_override,its giving proper meaning.
V5:
-sb800_prefetch() moved to pci-quirks.c,because its only related to pci.
V6:
-sb800_prefetch() function has been moved to pci-quirks.c made as separate patch in 2/3.
-Most of the generic ohci pci changes moved in 2/3 patch,now this is complete ohci-pci separation patch.
V7:
-Unrelated include file has been removed from ohci.h file.
V8:
-USB_OHCI_HCD_PCI symbol does not dependence on STB03xxx, PPC_MPC52xx and USB_OHCI_HCD_PPC_OF.
Signed-off-by: Manjunath Goudar <manjunath.goudar@linaro.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2013-05-28 07:04:51 -06:00
|
|
|
|
2005-04-16 16:20:36 -06:00
|
|
|
obj-$(CONFIG_USB_UHCI_HCD) += uhci-hcd.o
|
2009-01-09 19:03:21 -07:00
|
|
|
obj-$(CONFIG_USB_FHCI_HCD) += fhci.o
|
2010-03-16 14:48:45 -06:00
|
|
|
obj-$(CONFIG_USB_XHCI_HCD) += xhci-hcd.o
|
2005-04-16 16:20:36 -06:00
|
|
|
obj-$(CONFIG_USB_SL811_HCD) += sl811-hcd.o
|
2005-05-26 06:55:55 -06:00
|
|
|
obj-$(CONFIG_USB_SL811_CS) += sl811_cs.o
|
2006-09-13 04:27:35 -06:00
|
|
|
obj-$(CONFIG_USB_U132_HCD) += u132-hcd.o
|
2007-05-09 22:18:19 -06:00
|
|
|
obj-$(CONFIG_USB_R8A66597_HCD) += r8a66597-hcd.o
|
2008-09-17 09:34:30 -06:00
|
|
|
obj-$(CONFIG_USB_HWA_HCD) += hwa-hc.o
|
2009-11-21 04:14:48 -07:00
|
|
|
obj-$(CONFIG_USB_IMX21_HCD) += imx21-hcd.o
|
2010-09-28 12:55:20 -06:00
|
|
|
obj-$(CONFIG_USB_FSL_MPH_DR_OF) += fsl-mph-dr-of.o
|
2015-05-14 07:34:46 -06:00
|
|
|
obj-$(CONFIG_USB_EHCI_FSL) += ehci-fsl.o
|
2012-03-15 16:49:57 -06:00
|
|
|
obj-$(CONFIG_USB_HCD_BCMA) += bcma-hcd.o
|
2012-03-15 16:49:58 -06:00
|
|
|
obj-$(CONFIG_USB_HCD_SSB) += ssb-hcd.o
|
2013-05-17 04:14:14 -06:00
|
|
|
obj-$(CONFIG_USB_FUSBH200_HCD) += fusbh200-hcd.o
|
2013-07-29 10:48:32 -06:00
|
|
|
obj-$(CONFIG_USB_FOTG210_HCD) += fotg210-hcd.o
|
2014-04-28 22:14:07 -06:00
|
|
|
obj-$(CONFIG_USB_MAX3421_HCD) += max3421-hcd.o
|