2005-04-17 00:20:36 +02:00
|
|
|
#
|
2005-09-24 02:14:37 +02:00
|
|
|
# Makefile for USB Host Controller Drivers
|
2005-04-17 00:20:36 +02:00
|
|
|
#
|
|
|
|
|
2010-10-07 04:03:26 +02:00
|
|
|
ccflags-$(CONFIG_USB_DEBUG) := -DDEBUG
|
2005-11-08 05:45:20 +01:00
|
|
|
|
2013-08-05 23:22:15 +02:00
|
|
|
# tell define_trace.h where to find the xhci trace header
|
|
|
|
CFLAGS_xhci-trace.o := -I$(src)
|
|
|
|
|
2010-10-07 04:03:26 +02:00
|
|
|
isp1760-y := isp1760-hcd.o isp1760-if.o
|
|
|
|
|
|
|
|
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 23:20:02 +02:00
|
|
|
xhci-hcd-y := xhci.o xhci-mem.o
|
2010-10-07 04:03:26 +02:00
|
|
|
xhci-hcd-y += xhci-ring.o xhci-hub.o xhci-dbg.o
|
2013-08-05 23:22:15 +02:00
|
|
|
xhci-hcd-y += xhci-trace.o
|
2011-09-23 23:20:02 +02:00
|
|
|
xhci-hcd-$(CONFIG_PCI) += xhci-pci.o
|
2008-04-24 00:37:04 +02:00
|
|
|
|
2012-03-13 15:57:41 +01:00
|
|
|
ifneq ($(CONFIG_USB_XHCI_PLATFORM), )
|
|
|
|
xhci-hcd-y += xhci-plat.o
|
|
|
|
endif
|
|
|
|
|
2008-09-17 17:34:28 +02:00
|
|
|
obj-$(CONFIG_USB_WHCI_HCD) += whci/
|
|
|
|
|
2005-09-24 02:14:37 +02:00
|
|
|
obj-$(CONFIG_PCI) += pci-quirks.o
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD) += ehci-hcd.o
|
2012-11-01 16:13:04 +01:00
|
|
|
obj-$(CONFIG_USB_EHCI_PCI) += ehci-pci.o
|
2012-11-01 16:13:08 +01:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_PLATFORM) += ehci-platform.o
|
2013-01-23 19:26:15 +01:00
|
|
|
obj-$(CONFIG_USB_EHCI_MXC) += ehci-mxc.o
|
2013-03-12 11:44:39 +01:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_OMAP) += ehci-omap.o
|
2013-04-02 18:23:59 +02:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_ORION) += ehci-orion.o
|
2013-04-02 18:24:00 +02:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_SPEAR) += ehci-spear.o
|
2013-04-02 18:24:01 +02:00
|
|
|
obj-$(CONFIG_USB_EHCI_S5P) += ehci-s5p.o
|
2013-04-02 18:24:02 +02:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_AT91) += ehci-atmel.o
|
2013-04-02 18:24:03 +02:00
|
|
|
obj-$(CONFIG_USB_EHCI_MSM) += ehci-msm.o
|
2013-06-13 19:24:12 +02:00
|
|
|
obj-$(CONFIG_USB_EHCI_TEGRA) += ehci-tegra.o
|
2012-11-01 16:13:04 +01:00
|
|
|
|
2008-10-23 10:08:07 +02:00
|
|
|
obj-$(CONFIG_USB_OXU210HP_HCD) += oxu210hp-hcd.o
|
2005-04-09 21:57:39 +02:00
|
|
|
obj-$(CONFIG_USB_ISP116X_HCD) += isp116x-hcd.o
|
2009-07-17 02:51:21 +02: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 15:04:51 +02:00
|
|
|
|
2005-04-17 00:20:36 +02: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 15:04:51 +02:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_PCI) += ohci-pci.o
|
2013-06-03 17:16:08 +02:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_PLATFORM) += ohci-platform.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 15:04:51 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
obj-$(CONFIG_USB_UHCI_HCD) += uhci-hcd.o
|
2009-01-10 03:03:21 +01:00
|
|
|
obj-$(CONFIG_USB_FHCI_HCD) += fhci.o
|
2010-03-16 21:48:45 +01:00
|
|
|
obj-$(CONFIG_USB_XHCI_HCD) += xhci-hcd.o
|
2005-04-17 00:20:36 +02:00
|
|
|
obj-$(CONFIG_USB_SL811_HCD) += sl811-hcd.o
|
2005-05-26 14:55:55 +02:00
|
|
|
obj-$(CONFIG_USB_SL811_CS) += sl811_cs.o
|
2006-09-13 12:27:35 +02:00
|
|
|
obj-$(CONFIG_USB_U132_HCD) += u132-hcd.o
|
2007-05-10 06:18:19 +02:00
|
|
|
obj-$(CONFIG_USB_R8A66597_HCD) += r8a66597-hcd.o
|
2008-04-24 00:37:04 +02:00
|
|
|
obj-$(CONFIG_USB_ISP1760_HCD) += isp1760.o
|
2008-09-17 17:34:30 +02:00
|
|
|
obj-$(CONFIG_USB_HWA_HCD) += hwa-hc.o
|
2009-11-21 12:14:48 +01:00
|
|
|
obj-$(CONFIG_USB_IMX21_HCD) += imx21-hcd.o
|
2010-09-28 20:55:20 +02:00
|
|
|
obj-$(CONFIG_USB_FSL_MPH_DR_OF) += fsl-mph-dr-of.o
|
2010-10-08 23:47:52 +02:00
|
|
|
obj-$(CONFIG_USB_OCTEON2_COMMON) += octeon2-common.o
|
2012-03-15 23:49:57 +01:00
|
|
|
obj-$(CONFIG_USB_HCD_BCMA) += bcma-hcd.o
|
2012-03-15 23:49:58 +01:00
|
|
|
obj-$(CONFIG_USB_HCD_SSB) += ssb-hcd.o
|
2013-05-17 12:14:14 +02:00
|
|
|
obj-$(CONFIG_USB_FUSBH200_HCD) += fusbh200-hcd.o
|
2013-07-29 18:48:32 +02:00
|
|
|
obj-$(CONFIG_USB_FOTG210_HCD) += fotg210-hcd.o
|