2005-04-17 06:20:36 +08:00
|
|
|
#
|
2005-09-24 08:14:37 +08:00
|
|
|
# Makefile for USB Host Controller Drivers
|
2005-04-17 06:20:36 +08:00
|
|
|
#
|
|
|
|
|
2013-08-06 05:22:15 +08:00
|
|
|
# tell define_trace.h where to find the xhci trace header
|
|
|
|
CFLAGS_xhci-trace.o := -I$(src)
|
|
|
|
|
2010-10-07 10:03:26 +08: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-24 05:20:02 +08:00
|
|
|
xhci-hcd-y := xhci.o xhci-mem.o
|
2010-10-07 10:03:26 +08:00
|
|
|
xhci-hcd-y += xhci-ring.o xhci-hub.o xhci-dbg.o
|
2013-08-06 05:22:15 +08:00
|
|
|
xhci-hcd-y += xhci-trace.o
|
2015-11-24 19:09:55 +08:00
|
|
|
ifneq ($(CONFIG_USB_XHCI_MTK), )
|
|
|
|
xhci-hcd-y += xhci-mtk-sch.o
|
|
|
|
endif
|
2008-04-24 06:37:04 +08:00
|
|
|
|
2014-10-03 16:35:29 +08:00
|
|
|
xhci-plat-hcd-y := xhci-plat.o
|
2014-05-15 18:17:33 +08:00
|
|
|
ifneq ($(CONFIG_USB_XHCI_MVEBU), )
|
2014-10-03 16:35:29 +08:00
|
|
|
xhci-plat-hcd-y += xhci-mvebu.o
|
2014-05-15 18:17:33 +08:00
|
|
|
endif
|
2014-07-09 09:08:52 +08:00
|
|
|
ifneq ($(CONFIG_USB_XHCI_RCAR), )
|
2014-10-03 16:35:29 +08:00
|
|
|
xhci-plat-hcd-y += xhci-rcar.o
|
2012-03-13 22:57:41 +08:00
|
|
|
endif
|
|
|
|
|
2008-09-17 23:34:28 +08:00
|
|
|
obj-$(CONFIG_USB_WHCI_HCD) += whci/
|
|
|
|
|
2015-04-23 00:11:59 +08:00
|
|
|
ifneq ($(CONFIG_USB), )
|
|
|
|
obj-$(CONFIG_PCI) += pci-quirks.o
|
|
|
|
endif
|
2005-09-24 08:14:37 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD) += ehci-hcd.o
|
2012-11-01 23:13:04 +08:00
|
|
|
obj-$(CONFIG_USB_EHCI_PCI) += ehci-pci.o
|
2012-11-01 23:13:08 +08:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_PLATFORM) += ehci-platform.o
|
2013-01-24 02:26:15 +08:00
|
|
|
obj-$(CONFIG_USB_EHCI_MXC) += ehci-mxc.o
|
2013-03-12 18:44:39 +08:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_OMAP) += ehci-omap.o
|
2013-04-03 00:23:59 +08:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_ORION) += ehci-orion.o
|
2013-04-03 00:24:00 +08:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_SPEAR) += ehci-spear.o
|
2014-10-03 16:21:44 +08:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_STI) += ehci-st.o
|
2013-10-10 15:42:47 +08:00
|
|
|
obj-$(CONFIG_USB_EHCI_EXYNOS) += ehci-exynos.o
|
2013-04-03 00:24:02 +08:00
|
|
|
obj-$(CONFIG_USB_EHCI_HCD_AT91) += ehci-atmel.o
|
2013-04-03 00:24:03 +08:00
|
|
|
obj-$(CONFIG_USB_EHCI_MSM) += ehci-msm.o
|
2013-06-14 01:24:12 +08:00
|
|
|
obj-$(CONFIG_USB_EHCI_TEGRA) += ehci-tegra.o
|
2013-09-21 19:14:42 +08:00
|
|
|
obj-$(CONFIG_USB_W90X900_EHCI) += ehci-w90x900.o
|
2012-11-01 23:13:04 +08:00
|
|
|
|
2008-10-23 16:08:07 +08:00
|
|
|
obj-$(CONFIG_USB_OXU210HP_HCD) += oxu210hp-hcd.o
|
2005-04-10 03:57:39 +08:00
|
|
|
obj-$(CONFIG_USB_ISP116X_HCD) += isp116x-hcd.o
|
2009-07-17 08:51:21 +08: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 21:04:51 +08:00
|
|
|
|
2005-04-17 06:20:36 +08: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 21:04:51 +08:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_PCI) += ohci-pci.o
|
2013-06-03 23:16:08 +08:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_PLATFORM) += ohci-platform.o
|
2013-09-21 19:08:38 +08:00
|
|
|
obj-$(CONFIG_USB_OHCI_EXYNOS) += ohci-exynos.o
|
2013-09-21 19:08:39 +08:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_OMAP1) += ohci-omap.o
|
2013-09-21 19:08:40 +08:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_OMAP3) += ohci-omap3.o
|
2013-09-21 19:08:41 +08:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_SPEAR) += ohci-spear.o
|
2014-09-29 20:54:34 +08:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_STI) += ohci-st.o
|
2013-09-21 19:08:42 +08:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_AT91) += ohci-at91.o
|
2013-09-21 19:08:43 +08:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_S3C2410) += ohci-s3c2410.o
|
2013-09-21 19:08:44 +08:00
|
|
|
obj-$(CONFIG_USB_OHCI_HCD_LPC32XX) += ohci-nxp.o
|
2013-09-21 19:08:46 +08: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 21:04:51 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
obj-$(CONFIG_USB_UHCI_HCD) += uhci-hcd.o
|
2009-01-10 10:03:21 +08:00
|
|
|
obj-$(CONFIG_USB_FHCI_HCD) += fhci.o
|
2010-03-17 04:48:45 +08:00
|
|
|
obj-$(CONFIG_USB_XHCI_HCD) += xhci-hcd.o
|
2015-10-09 18:30:10 +08:00
|
|
|
obj-$(CONFIG_USB_XHCI_PCI) += xhci-pci.o
|
|
|
|
obj-$(CONFIG_USB_XHCI_PLATFORM) += xhci-plat-hcd.o
|
2015-11-24 19:09:55 +08:00
|
|
|
obj-$(CONFIG_USB_XHCI_MTK) += xhci-mtk.o
|
2016-02-12 01:10:48 +08:00
|
|
|
obj-$(CONFIG_USB_XHCI_TEGRA) += xhci-tegra.o
|
2005-04-17 06:20:36 +08:00
|
|
|
obj-$(CONFIG_USB_SL811_HCD) += sl811-hcd.o
|
2005-05-26 20:55:55 +08:00
|
|
|
obj-$(CONFIG_USB_SL811_CS) += sl811_cs.o
|
2006-09-13 18:27:35 +08:00
|
|
|
obj-$(CONFIG_USB_U132_HCD) += u132-hcd.o
|
2007-05-10 12:18:19 +08:00
|
|
|
obj-$(CONFIG_USB_R8A66597_HCD) += r8a66597-hcd.o
|
2008-09-17 23:34:30 +08:00
|
|
|
obj-$(CONFIG_USB_HWA_HCD) += hwa-hc.o
|
2009-11-21 19:14:48 +08:00
|
|
|
obj-$(CONFIG_USB_IMX21_HCD) += imx21-hcd.o
|
2016-01-29 00:20:54 +08:00
|
|
|
obj-$(CONFIG_USB_FSL_USB2) += fsl-mph-dr-of.o
|
|
|
|
obj-$(CONFIG_USB_EHCI_FSL) += fsl-mph-dr-of.o
|
2015-05-14 21:34:46 +08:00
|
|
|
obj-$(CONFIG_USB_EHCI_FSL) += ehci-fsl.o
|
2012-03-16 06:49:57 +08:00
|
|
|
obj-$(CONFIG_USB_HCD_BCMA) += bcma-hcd.o
|
2012-03-16 06:49:58 +08:00
|
|
|
obj-$(CONFIG_USB_HCD_SSB) += ssb-hcd.o
|
2013-07-30 00:48:32 +08:00
|
|
|
obj-$(CONFIG_USB_FOTG210_HCD) += fotg210-hcd.o
|
2014-04-29 12:14:07 +08:00
|
|
|
obj-$(CONFIG_USB_MAX3421_HCD) += max3421-hcd.o
|