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