xref: /linux/drivers/usb/host/Kconfig (revision 4ac8918f3a737c21d81e250e4194c12ea2b7eb04)
11da177e4SLinus Torvalds#
21da177e4SLinus Torvalds# USB Host Controller Drivers
31da177e4SLinus Torvalds#
41da177e4SLinus Torvaldscomment "USB Host Controller Drivers"
51da177e4SLinus Torvalds
6e9b29ffcSPeter Korsgaardconfig USB_C67X00_HCD
7e9b29ffcSPeter Korsgaard	tristate "Cypress C67x00 HCD support"
8e9b29ffcSPeter Korsgaard	help
9e9b29ffcSPeter Korsgaard	  The Cypress C67x00 (EZ-Host/EZ-OTG) chips are dual-role
10e9b29ffcSPeter Korsgaard	  host/peripheral/OTG USB controllers.
11e9b29ffcSPeter Korsgaard
12e9b29ffcSPeter Korsgaard	  Enable this option to support this chip in host controller mode.
13e9b29ffcSPeter Korsgaard	  If unsure, say N.
14e9b29ffcSPeter Korsgaard
15e9b29ffcSPeter Korsgaard	  To compile this driver as a module, choose M here: the
16e9b29ffcSPeter Korsgaard	  module will be called c67x00.
17e9b29ffcSPeter Korsgaard
18eb6bab13SSarah Sharpconfig USB_XHCI_HCD
19eb83be98SGreg Kroah-Hartman	tristate "xHCI HCD (USB 3.0) support"
20eb6bab13SSarah Sharp	---help---
21eb6bab13SSarah Sharp	  The eXtensible Host Controller Interface (xHCI) is standard for USB 3.0
22eb6bab13SSarah Sharp	  "SuperSpeed" host controller hardware.
23eb6bab13SSarah Sharp
24eb6bab13SSarah Sharp	  To compile this driver as a module, choose M here: the
25eb6bab13SSarah Sharp	  module will be called xhci-hcd.
26eb6bab13SSarah Sharp
270fcb9989SFlorian Fainelliif USB_XHCI_HCD
280fcb9989SFlorian Fainelli
293429e91aSSebastian Andrzej Siewiorconfig USB_XHCI_PLATFORM
303429e91aSSebastian Andrzej Siewior	tristate
313429e91aSSebastian Andrzej Siewior
3297374792SGregory CLEMENTconfig USB_XHCI_MVEBU
3397374792SGregory CLEMENT	tristate "xHCI support for Marvell Armada 375/38x"
3497374792SGregory CLEMENT	select USB_XHCI_PLATFORM
3597374792SGregory CLEMENT	depends on ARCH_MVEBU || COMPILE_TEST
3697374792SGregory CLEMENT	---help---
3797374792SGregory CLEMENT	  Say 'Y' to enable the support for the xHCI host controller
3897374792SGregory CLEMENT	  found in Marvell Armada 375/38x ARM SOCs.
3997374792SGregory CLEMENT
40*4ac8918fSYoshihiro Shimodaconfig USB_XHCI_RCAR
41*4ac8918fSYoshihiro Shimoda	tristate "xHCI support for Renesas R-Car SoCs"
42*4ac8918fSYoshihiro Shimoda	select USB_XHCI_PLATFORM
43*4ac8918fSYoshihiro Shimoda	depends on ARCH_SHMOBILE || COMPILE_TEST
44*4ac8918fSYoshihiro Shimoda	---help---
45*4ac8918fSYoshihiro Shimoda	  Say 'Y' to enable the support for the xHCI host controller
46*4ac8918fSYoshihiro Shimoda	  found in Renesas R-Car ARM SoCs.
47*4ac8918fSYoshihiro Shimoda
480fcb9989SFlorian Fainelliendif # USB_XHCI_HCD
490fcb9989SFlorian Fainelli
501da177e4SLinus Torvaldsconfig USB_EHCI_HCD
511da177e4SLinus Torvalds	tristate "EHCI HCD (USB 2.0) support"
521da177e4SLinus Torvalds	---help---
531da177e4SLinus Torvalds	  The Enhanced Host Controller Interface (EHCI) is standard for USB 2.0
541da177e4SLinus Torvalds	  "high speed" (480 Mbit/sec, 60 Mbyte/sec) host controller hardware.
551da177e4SLinus Torvalds	  If your USB host controller supports USB 2.0, you will likely want to
56b967c88eSThierry Vignaud	  configure this Host Controller Driver.
571da177e4SLinus Torvalds
581da177e4SLinus Torvalds	  EHCI controllers are packaged with "companion" host controllers (OHCI
591da177e4SLinus Torvalds	  or UHCI) to handle USB 1.1 devices connected to root hub ports.  Ports
60b3c29d85SJesper Juhl	  will connect to EHCI if the device is high speed, otherwise they
611da177e4SLinus Torvalds	  connect to a companion controller.  If you configure EHCI, you should
621da177e4SLinus Torvalds	  probably configure the OHCI (for NEC and some other vendors) USB Host
631da177e4SLinus Torvalds	  Controller Driver or UHCI (for Via motherboards) Host Controller
641da177e4SLinus Torvalds	  Driver too.
651da177e4SLinus Torvalds
661da177e4SLinus Torvalds	  You may want to read <file:Documentation/usb/ehci.txt>.
671da177e4SLinus Torvalds
681da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
691da177e4SLinus Torvalds	  module will be called ehci-hcd.
701da177e4SLinus Torvalds
711da177e4SLinus Torvaldsconfig USB_EHCI_ROOT_HUB_TT
729ec249a6SRobert P. J. Day	bool "Root Hub Transaction Translators"
73a746c286SPeter Chen	depends on USB_EHCI_HCD
741da177e4SLinus Torvalds	---help---
751da177e4SLinus Torvalds	  Some EHCI chips have vendor-specific extensions to integrate
761da177e4SLinus Torvalds	  transaction translators, so that no OHCI or UHCI companion
771da177e4SLinus Torvalds	  controller is needed.  It's safe to say "y" even if your
781da177e4SLinus Torvalds	  controller doesn't support this feature.
791da177e4SLinus Torvalds
80ba47f66bSDan Streetman	  This supports the EHCI implementation that's originally
81ba47f66bSDan Streetman	  from ARC, and has since changed hands a few times.
82ba47f66bSDan Streetman
83ba47f66bSDan Streetmanconfig USB_EHCI_TT_NEWSCHED
8437cd681cSAlan Stern	bool "Improved Transaction Translator scheduling"
85a746c286SPeter Chen	depends on USB_EHCI_HCD
8637cd681cSAlan Stern	default y
87ba47f66bSDan Streetman	---help---
88ba47f66bSDan Streetman	  This changes the periodic scheduling code to fill more of the low
89ba47f66bSDan Streetman	  and full speed bandwidth available from the Transaction Translator
90ba47f66bSDan Streetman	  (TT) in USB 2.0 hubs.  Without this, only one transfer will be
91ba47f66bSDan Streetman	  issued in each microframe, significantly reducing the number of
92ba47f66bSDan Streetman	  periodic low/fullspeed transfers possible.
93ba47f66bSDan Streetman
94ba47f66bSDan Streetman	  If you have multiple periodic low/fullspeed devices connected to a
95ba47f66bSDan Streetman	  highspeed USB hub which is connected to a highspeed USB Host
96ba47f66bSDan Streetman	  Controller, and some of those devices will not work correctly
9737cd681cSAlan Stern	  (possibly due to "ENOSPC" or "-28" errors), say Y.  Conversely, if
9837cd681cSAlan Stern	  you have only one such device and it doesn't work, you could try
9937cd681cSAlan Stern	  saying N.
100ba47f66bSDan Streetman
10137cd681cSAlan Stern	  If unsure, say Y.
1021da177e4SLinus Torvalds
10342443dc4SFlorian Fainelliconfig USB_FSL_MPH_DR_OF
10442443dc4SFlorian Fainelli	tristate
10542443dc4SFlorian Fainelli
10642443dc4SFlorian Fainelliif USB_EHCI_HCD
10742443dc4SFlorian Fainelli
108adfa79d1SAlan Sternconfig USB_EHCI_PCI
109adfa79d1SAlan Stern	tristate
11042443dc4SFlorian Fainelli	depends on PCI
111adfa79d1SAlan Stern	default y
112adfa79d1SAlan Stern
11322ced687SAnoopconfig USB_EHCI_HCD_PMC_MSP
11422ced687SAnoop	tristate "EHCI support for on-chip PMC MSP71xx USB controller"
11542443dc4SFlorian Fainelli	depends on MSP_HAS_USB
11622ced687SAnoop	default n
11722ced687SAnoop	select USB_EHCI_BIG_ENDIAN_DESC
11822ced687SAnoop	select USB_EHCI_BIG_ENDIAN_MMIO
11922ced687SAnoop	---help---
12022ced687SAnoop		Enables support for the onchip USB controller on the PMC_MSP7100 Family SoC's.
12122ced687SAnoop		If unsure, say N.
12222ced687SAnoop
12308d3c18eSJulie Zhuconfig XPS_USB_HCD_XILINX
12408d3c18eSJulie Zhu	bool "Use Xilinx usb host EHCI controller core"
12542443dc4SFlorian Fainelli	depends on (PPC32 || MICROBLAZE)
12608d3c18eSJulie Zhu	select USB_EHCI_BIG_ENDIAN_DESC
12708d3c18eSJulie Zhu	select USB_EHCI_BIG_ENDIAN_MMIO
12808d3c18eSJulie Zhu	---help---
12908d3c18eSJulie Zhu		Xilinx xps USB host controller core is EHCI compilant and has
13008d3c18eSJulie Zhu		transaction translator built-in. It can be configured to either
13108d3c18eSJulie Zhu		support both high speed and full speed devices, or high speed
13208d3c18eSJulie Zhu		devices only.
13308d3c18eSJulie Zhu
134ba02978aSLi Yangconfig USB_EHCI_FSL
135c0ca9bc5SFabio Estevam	bool "Support for Freescale PPC on-chip EHCI USB controller"
13642443dc4SFlorian Fainelli	depends on FSL_SOC
137ba02978aSLi Yang	select USB_EHCI_ROOT_HUB_TT
138018b97d0SMarc Kleine-Budde	select USB_FSL_MPH_DR_OF if OF
139ba02978aSLi Yang	---help---
140ba02978aSLi Yang	  Variation of ARC USB block used in some Freescale chips.
141ba02978aSLi Yang
1427e8d5cd9SDaniel Mackconfig USB_EHCI_MXC
143dba63b2fSAlan Stern	tristate "Support for Freescale i.MX on-chip EHCI USB controller"
14442443dc4SFlorian Fainelli	depends on ARCH_MXC
1457e8d5cd9SDaniel Mack	select USB_EHCI_ROOT_HUB_TT
1467e8d5cd9SDaniel Mack	---help---
1477e8d5cd9SDaniel Mack	  Variation of ARC USB block used in some Freescale chips.
1487e8d5cd9SDaniel Mack
1497f124f4bSKeshava Munegowdaconfig USB_EHCI_HCD_OMAP
15054a41966SAlan Stern	tristate "EHCI support for OMAP3 and later chips"
15142443dc4SFlorian Fainelli	depends on ARCH_OMAP
15288650d62SRoger Quadros	select NOP_USB_XCEIV
1537f124f4bSKeshava Munegowda	default y
1547f124f4bSKeshava Munegowda	---help---
1557f124f4bSKeshava Munegowda	  Enables support for the on-chip EHCI controller on
1567f124f4bSKeshava Munegowda	  OMAP3 and later chips.
1577f124f4bSKeshava Munegowda
158a76dd463SManjunath Goudarconfig USB_EHCI_HCD_ORION
159a76dd463SManjunath Goudar	tristate  "Support for Marvell EBU on-chip EHCI USB controller"
160a76dd463SManjunath Goudar	depends on USB_EHCI_HCD && PLAT_ORION
161a76dd463SManjunath Goudar	default y
162a76dd463SManjunath Goudar	---help---
163a76dd463SManjunath Goudar	  Enables support for the on-chip EHCI controller on Marvell's
164a76dd463SManjunath Goudar	  embedded ARM SoCs, including Orion, Kirkwood, Dove, Armada XP,
165a76dd463SManjunath Goudar	  Armada 370.  This is different from the EHCI implementation
166a76dd463SManjunath Goudar	  on Marvell's mobile PXA and MMP SoC, see "EHCI support for
167a76dd463SManjunath Goudar	  Marvell PXA/MMP USB controller" for those.
168a76dd463SManjunath Goudar
1697675d6baSManjunath Goudarconfig USB_EHCI_HCD_SPEAR
1707675d6baSManjunath Goudar        tristate "Support for ST SPEAr on-chip EHCI USB controller"
1717675d6baSManjunath Goudar        depends on USB_EHCI_HCD && PLAT_SPEAR
1727675d6baSManjunath Goudar        default y
1737675d6baSManjunath Goudar        ---help---
1747675d6baSManjunath Goudar          Enables support for the on-chip EHCI controller on
1757675d6baSManjunath Goudar          ST SPEAr chips.
1767675d6baSManjunath Goudar
17797736961SManjunath Goudarconfig USB_EHCI_HCD_AT91
17897736961SManjunath Goudar        tristate  "Support for Atmel on-chip EHCI USB controller"
17997736961SManjunath Goudar        depends on USB_EHCI_HCD && ARCH_AT91
18097736961SManjunath Goudar        default y
18197736961SManjunath Goudar        ---help---
18297736961SManjunath Goudar          Enables support for the on-chip EHCI controller on
18397736961SManjunath Goudar          Atmel chips.
18497736961SManjunath Goudar
185b0848aeaSPavankumar Kondeticonfig USB_EHCI_MSM
1868c68e84fSManjunath Goudar	tristate "Support for Qualcomm QSD/MSM on-chip EHCI USB controller"
1878ae587e5SSrinivas Kandagatla	depends on ARCH_MSM || ARCH_QCOM
188b0848aeaSPavankumar Kondeti	select USB_EHCI_ROOT_HUB_TT
189b0848aeaSPavankumar Kondeti	---help---
190b0848aeaSPavankumar Kondeti	  Enables support for the USB Host controller present on the
191b0848aeaSPavankumar Kondeti	  Qualcomm chipsets. Root Hub has inbuilt TT.
192b0848aeaSPavankumar Kondeti	  This driver depends on OTG driver for PHY initialization,
1938bb6a164SPavankumar Kondeti	  clock management, powering up VBUS, and power management.
1948cf28f1fSPavankumar Kondeti	  This driver is not supported on boards like trout which
1958cf28f1fSPavankumar Kondeti	  has an external PHY.
196b0848aeaSPavankumar Kondeti
19779ad3b5aSBenoit Gobyconfig USB_EHCI_TEGRA
1989fc5f24eSManjunath Goudar       tristate "NVIDIA Tegra HCD support"
19942443dc4SFlorian Fainelli       depends on ARCH_TEGRA
20079ad3b5aSBenoit Goby       select USB_EHCI_ROOT_HUB_TT
20175f32ec1SFelipe Balbi       select USB_PHY
20279ad3b5aSBenoit Goby       help
20379ad3b5aSBenoit Goby         This driver enables support for the internal USB Host Controllers
20479ad3b5aSBenoit Goby         found in NVIDIA Tegra SoCs. The controllers are EHCI compliant.
20579ad3b5aSBenoit Goby
206da0e8fb0SValentine Barshakconfig USB_EHCI_HCD_PPC_OF
207da0e8fb0SValentine Barshak	bool "EHCI support for PPC USB controller on OF platform bus"
20842443dc4SFlorian Fainelli	depends on PPC_OF
209da0e8fb0SValentine Barshak	default y
210da0e8fb0SValentine Barshak	---help---
211da0e8fb0SValentine Barshak	  Enables support for the USB controller present on the PowerPC
212da0e8fb0SValentine Barshak	  OpenFirmware platform bus.
213da0e8fb0SValentine Barshak
21460b0bf0fSYoshihiro Shimodaconfig USB_EHCI_SH
21560b0bf0fSYoshihiro Shimoda	bool "EHCI support for SuperH USB controller"
21642443dc4SFlorian Fainelli	depends on SUPERH
21760b0bf0fSYoshihiro Shimoda	---help---
21860b0bf0fSYoshihiro Shimoda	  Enables support for the on-chip EHCI controller on the SuperH.
21960b0bf0fSYoshihiro Shimoda	  If you use the PCI EHCI controller, this option is not necessary.
22060b0bf0fSYoshihiro Shimoda
22129824c16SJingoo Hanconfig USB_EHCI_EXYNOS
2227edb3dafSManjunath Goudar       tristate "EHCI support for Samsung S5P/EXYNOS SoC Series"
22358d5b720STomasz Figa       depends on PLAT_S5P || ARCH_EXYNOS
2241bcc5aa8SJoonyoung Shim       help
22529824c16SJingoo Han	Enable support for the Samsung Exynos SOC's on-chip EHCI controller.
2261bcc5aa8SJoonyoung Shim
2273a082ec9SNeil Zhangconfig USB_EHCI_MV
228a76dd463SManjunath Goudar	bool "EHCI support for Marvell PXA/MMP USB controller"
22942443dc4SFlorian Fainelli	depends on (ARCH_PXA || ARCH_MMP)
2303a082ec9SNeil Zhang	select USB_EHCI_ROOT_HUB_TT
2313a082ec9SNeil Zhang	---help---
2323a082ec9SNeil Zhang	  Enables support for Marvell (including PXA and MMP series) on-chip
2333a082ec9SNeil Zhang	  USB SPH and OTG controller. SPH is a single port host, and it can
2343a082ec9SNeil Zhang	  only be EHCI host. OTG is controller that can switch to host mode.
235a76dd463SManjunath Goudar	  Note that this driver will not work on Marvell's other EHCI
236a76dd463SManjunath Goudar	  controller used by the EBU-type SoCs including Orion, Kirkwood,
237a76dd463SManjunath Goudar	  Dova, Armada 370 and Armada XP. See "Support for Marvell EBU
238a76dd463SManjunath Goudar	  on-chip EHCI USB controller" for those.
2393a082ec9SNeil Zhang
240586dfc8cSWan ZongShunconfig USB_W90X900_EHCI
241a60f4f81SManjunath Goudar	tristate "W90X900(W90P910) EHCI support"
24242443dc4SFlorian Fainelli	depends on ARCH_W90X900
243586dfc8cSWan ZongShun	---help---
244586dfc8cSWan ZongShun		Enables support for the W90X900 USB controller
245586dfc8cSWan ZongShun
246760efe69SMac Linconfig USB_CNS3XXX_EHCI
247f3a958d3SFlorian Fainelli	bool "Cavium CNS3XXX EHCI Module (DEPRECATED)"
24842443dc4SFlorian Fainelli	depends on ARCH_CNS3XXX
249f3a958d3SFlorian Fainelli	select USB_EHCI_HCD_PLATFORM
250760efe69SMac Lin	---help---
251f3a958d3SFlorian Fainelli	  This option is deprecated now and the driver was removed, use
252f3a958d3SFlorian Fainelli	  USB_EHCI_HCD_PLATFORM instead.
253f3a958d3SFlorian Fainelli
254760efe69SMac Lin	  Enable support for the CNS3XXX SOC's on-chip EHCI controller.
255760efe69SMac Lin	  It is needed for high-speed (480Mbit/sec) USB 2.0 device
256760efe69SMac Lin	  support.
257760efe69SMac Lin
258502fa841SGabor Juhosconfig USB_EHCI_ATH79
2595d98cd4eSHauke Mehrtens	bool "EHCI support for AR7XXX/AR9XXX SoCs (DEPRECATED)"
26042443dc4SFlorian Fainelli	depends on (SOC_AR71XX || SOC_AR724X || SOC_AR913X || SOC_AR933X)
261502fa841SGabor Juhos	select USB_EHCI_ROOT_HUB_TT
2625d98cd4eSHauke Mehrtens	select USB_EHCI_HCD_PLATFORM
263502fa841SGabor Juhos	default y
264502fa841SGabor Juhos	---help---
2655d98cd4eSHauke Mehrtens	  This option is deprecated now and the driver was removed, use
2665d98cd4eSHauke Mehrtens	  USB_EHCI_HCD_PLATFORM instead.
2675d98cd4eSHauke Mehrtens
268502fa841SGabor Juhos	  Enables support for the built-in EHCI controller present
269502fa841SGabor Juhos	  on the Atheros AR7XXX/AR9XXX SoCs.
270502fa841SGabor Juhos
27142443dc4SFlorian Fainelliconfig USB_EHCI_HCD_PLATFORM
27242443dc4SFlorian Fainelli	tristate "Generic EHCI driver for a platform device"
27342443dc4SFlorian Fainelli	default n
27442443dc4SFlorian Fainelli	---help---
27542443dc4SFlorian Fainelli	  Adds an EHCI host driver for a generic platform device, which
27642443dc4SFlorian Fainelli	  provides a memory space and an irq.
27742443dc4SFlorian Fainelli
27842443dc4SFlorian Fainelli	  If unsure, say N.
27942443dc4SFlorian Fainelli
28042443dc4SFlorian Fainelliconfig USB_OCTEON_EHCI
28142443dc4SFlorian Fainelli	bool "Octeon on-chip EHCI support"
2829ddebc46SDavid Daney	depends on CAVIUM_OCTEON_SOC
28342443dc4SFlorian Fainelli	default n
28442443dc4SFlorian Fainelli	select USB_EHCI_BIG_ENDIAN_MMIO
28542443dc4SFlorian Fainelli	help
28642443dc4SFlorian Fainelli	  Enable support for the Octeon II SOC's on-chip EHCI
28742443dc4SFlorian Fainelli	  controller.  It is needed for high-speed (480Mbit/sec)
28842443dc4SFlorian Fainelli	  USB 2.0 device support.  All CN6XXX based chips with USB are
28942443dc4SFlorian Fainelli	  supported.
29042443dc4SFlorian Fainelli
29142443dc4SFlorian Fainelliendif # USB_EHCI_HCD
29242443dc4SFlorian Fainelli
293b92a78e5SRodolfo Giometticonfig USB_OXU210HP_HCD
294b92a78e5SRodolfo Giometti	tristate "OXU210HP HCD support"
295b92a78e5SRodolfo Giometti	---help---
296b92a78e5SRodolfo Giometti	  The OXU210HP is an USB host/OTG/device controller. Enable this
297b92a78e5SRodolfo Giometti	  option if your board has this chip. If unsure, say N.
298b92a78e5SRodolfo Giometti
299b92a78e5SRodolfo Giometti	  This driver does not support isochronous transfers and doesn't
300b92a78e5SRodolfo Giometti	  implement OTG nor USB device controllers.
301b92a78e5SRodolfo Giometti
302b92a78e5SRodolfo Giometti	  To compile this driver as a module, choose M here: the
303b92a78e5SRodolfo Giometti	  module will be called oxu210hp-hcd.
304b92a78e5SRodolfo Giometti
3054808a1c0SOlav Kongasconfig USB_ISP116X_HCD
3064808a1c0SOlav Kongas	tristate "ISP116X HCD support"
3074808a1c0SOlav Kongas	---help---
3084808a1c0SOlav Kongas	  The ISP1160 and ISP1161 chips are USB host controllers. Enable this
3094808a1c0SOlav Kongas	  option if your board has this chip. If unsure, say N.
3104808a1c0SOlav Kongas
3114808a1c0SOlav Kongas	  This driver does not support isochronous transfers.
3124808a1c0SOlav Kongas
3134808a1c0SOlav Kongas	  To compile this driver as a module, choose M here: the
3144808a1c0SOlav Kongas	  module will be called isp116x-hcd.
3154808a1c0SOlav Kongas
316db11e47dSSebastian Siewiorconfig USB_ISP1760_HCD
317db11e47dSSebastian Siewior	tristate "ISP 1760 HCD support"
318db11e47dSSebastian Siewior	---help---
319db11e47dSSebastian Siewior	  The ISP1760 chip is a USB 2.0 host controller.
320db11e47dSSebastian Siewior
321db11e47dSSebastian Siewior	  This driver does not support isochronous transfers or OTG.
322ff30bf1cSSebastian Andrzej Siewior	  This USB controller is usually attached to a non-DMA-Master
323ff30bf1cSSebastian Andrzej Siewior	  capable bus. NXP's eval kit brings this chip on PCI card
324ff30bf1cSSebastian Andrzej Siewior	  where the chip itself is behind a PLB to simulate such
325ff30bf1cSSebastian Andrzej Siewior	  a bus.
326db11e47dSSebastian Siewior
327db11e47dSSebastian Siewior	  To compile this driver as a module, choose M here: the
328ff30bf1cSSebastian Andrzej Siewior	  module will be called isp1760.
329db11e47dSSebastian Siewior
330a9d43091SLothar Wassmannconfig USB_ISP1362_HCD
331a9d43091SLothar Wassmann	tristate "ISP1362 HCD support"
332a9d43091SLothar Wassmann	---help---
333a9d43091SLothar Wassmann	  Supports the Philips ISP1362 chip as a host controller
334a9d43091SLothar Wassmann
335a9d43091SLothar Wassmann	  This driver does not support isochronous transfers.
336a9d43091SLothar Wassmann
337a9d43091SLothar Wassmann	  To compile this driver as a module, choose M here: the
338a9d43091SLothar Wassmann	  module will be called isp1362-hcd.
339a9d43091SLothar Wassmann
3406c920bfbSYuan-Hsin Chenconfig USB_FUSBH200_HCD
3416c920bfbSYuan-Hsin Chen	tristate "FUSBH200 HCD support"
3426c920bfbSYuan-Hsin Chen	depends on USB
3436c920bfbSYuan-Hsin Chen	---help---
3446c920bfbSYuan-Hsin Chen	Faraday FUSBH200 is designed to meet USB2.0 EHCI specification
3456c920bfbSYuan-Hsin Chen	with minor modification.
3466c920bfbSYuan-Hsin Chen
3476c920bfbSYuan-Hsin Chen	To compile this driver as a module, choose M here: the
3486c920bfbSYuan-Hsin Chen	module will be called fusbh200-hcd.
3496c920bfbSYuan-Hsin Chen
3507d50195fSFeng-Hsin Chiangconfig USB_FOTG210_HCD
3517d50195fSFeng-Hsin Chiang	tristate "FOTG210 HCD support"
3527d50195fSFeng-Hsin Chiang	depends on USB
3537d50195fSFeng-Hsin Chiang	---help---
3547d50195fSFeng-Hsin Chiang	  Faraday FOTG210 is an OTG controller which can be configured as
3557d50195fSFeng-Hsin Chiang	  an USB2.0 host. It is designed to meet USB2.0 EHCI specification
3567d50195fSFeng-Hsin Chiang	  with minor modification.
3577d50195fSFeng-Hsin Chiang
3587d50195fSFeng-Hsin Chiang	  To compile this driver as a module, choose M here: the
3597d50195fSFeng-Hsin Chiang	  module will be called fotg210-hcd.
3607d50195fSFeng-Hsin Chiang
3612d53139fSDavid Mosbergerconfig USB_MAX3421_HCD
3622d53139fSDavid Mosberger	tristate "MAX3421 HCD (USB-over-SPI) support"
3632d53139fSDavid Mosberger	depends on USB && SPI
3642d53139fSDavid Mosberger	---help---
3652d53139fSDavid Mosberger	  The Maxim MAX3421E chip supports standard USB 2.0-compliant
3662d53139fSDavid Mosberger	  full-speed devices either in host or peripheral mode.  This
3672d53139fSDavid Mosberger	  driver supports the host-mode of the MAX3421E only.
3682d53139fSDavid Mosberger
3692d53139fSDavid Mosberger	  To compile this driver as a module, choose M here: the module will
3702d53139fSDavid Mosberger	  be called max3421-hcd.
3712d53139fSDavid Mosberger
3721da177e4SLinus Torvaldsconfig USB_OHCI_HCD
373c1117afbSManjunath Goudar	tristate "OHCI HCD (USB 1.1) support"
3741da177e4SLinus Torvalds	---help---
3751da177e4SLinus Torvalds	  The Open Host Controller Interface (OHCI) is a standard for accessing
3761da177e4SLinus Torvalds	  USB 1.1 host controller hardware.  It does more in hardware than Intel's
3771da177e4SLinus Torvalds	  UHCI specification.  If your USB host controller follows the OHCI spec,
3781da177e4SLinus Torvalds	  say Y.  On most non-x86 systems, and on x86 hardware that's not using a
3791da177e4SLinus Torvalds	  USB controller from Intel or VIA, this is appropriate.  If your host
3801da177e4SLinus Torvalds	  controller doesn't use PCI, this is probably appropriate.  For a PCI
3811da177e4SLinus Torvalds	  based system where you're not sure, the "lspci -v" entry will list the
3821da177e4SLinus Torvalds	  right "prog-if" for your USB controller(s):  EHCI, OHCI, or UHCI.
3831da177e4SLinus Torvalds
3841da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
3851da177e4SLinus Torvalds	  module will be called ohci-hcd.
3861da177e4SLinus Torvalds
3873ad3ca05SFlorian Fainelliif USB_OHCI_HCD
3883ad3ca05SFlorian Fainelli
389968b448bSAnand Gadiyarconfig USB_OHCI_HCD_OMAP1
390de57a154SManjunath Goudar	tristate "OHCI support for OMAP1/2 chips"
3913ad3ca05SFlorian Fainelli	depends on ARCH_OMAP1
39238e0c109SArnd Bergmann	depends on ISP1301_OMAP || !(MACH_OMAP_H2 || MACH_OMAP_H3)
393968b448bSAnand Gadiyar	default y
394968b448bSAnand Gadiyar	---help---
395968b448bSAnand Gadiyar	  Enables support for the OHCI controller on OMAP1/2 chips.
396968b448bSAnand Gadiyar
3971cc6ac59SManjunath Goudarconfig USB_OHCI_HCD_SPEAR
3981cc6ac59SManjunath Goudar        tristate "Support for ST SPEAr on-chip OHCI USB controller"
3991cc6ac59SManjunath Goudar        depends on USB_OHCI_HCD && PLAT_SPEAR
4001cc6ac59SManjunath Goudar        default y
4011cc6ac59SManjunath Goudar        ---help---
4021cc6ac59SManjunath Goudar          Enables support for the on-chip OHCI controller on
4031cc6ac59SManjunath Goudar          ST SPEAr chips.
4041cc6ac59SManjunath Goudar
405f23b71f3SManjunath Goudarconfig USB_OHCI_HCD_S3C2410
406f23b71f3SManjunath Goudar        tristate "OHCI support for Samsung S3C24xx/S3C64xx SoC series"
407f23b71f3SManjunath Goudar        depends on USB_OHCI_HCD && (ARCH_S3C24XX || ARCH_S3C64XX)
408f23b71f3SManjunath Goudar        default y
409f23b71f3SManjunath Goudar        ---help---
410f23b71f3SManjunath Goudar          Enables support for the on-chip OHCI controller on
411f23b71f3SManjunath Goudar          S3C24xx/S3C64xx chips.
412f23b71f3SManjunath Goudar
41330330b8fSManjunath Goudarconfig USB_OHCI_HCD_LPC32XX
41430330b8fSManjunath Goudar	tristate "Support for LPC on-chip OHCI USB controller"
41530330b8fSManjunath Goudar	depends on USB_OHCI_HCD && ARCH_LPC32XX
41638e0c109SArnd Bergmann	depends on USB_ISP1301
41730330b8fSManjunath Goudar	default y
41830330b8fSManjunath Goudar	---help---
41930330b8fSManjunath Goudar          Enables support for the on-chip OHCI controller on
42030330b8fSManjunath Goudar          NXP chips.
42130330b8fSManjunath Goudar
422b8ad5c37SManjunath Goudarconfig USB_OHCI_HCD_PXA27X
423b8ad5c37SManjunath Goudar	tristate "Support for PXA27X/PXA3XX on-chip OHCI USB controller"
424b8ad5c37SManjunath Goudar	depends on USB_OHCI_HCD && (PXA27x || PXA3xx)
425b8ad5c37SManjunath Goudar	default y
426b8ad5c37SManjunath Goudar	---help---
427b8ad5c37SManjunath Goudar	  Enables support for the on-chip OHCI controller on
428b8ad5c37SManjunath Goudar	  PXA27x/PXA3xx chips.
429b8ad5c37SManjunath Goudar
430e3825b48SManjunath Goudarconfig USB_OHCI_HCD_AT91
431e3825b48SManjunath Goudar        tristate "Support for Atmel on-chip OHCI USB controller"
432e3825b48SManjunath Goudar        depends on USB_OHCI_HCD && ARCH_AT91
433e3825b48SManjunath Goudar        default y
434e3825b48SManjunath Goudar        ---help---
435e3825b48SManjunath Goudar          Enables support for the on-chip OHCI controller on
436e3825b48SManjunath Goudar          Atmel chips.
437e3825b48SManjunath Goudar
438968b448bSAnand Gadiyarconfig USB_OHCI_HCD_OMAP3
4393a48fef1SManjunath Goudar	tristate "OHCI support for OMAP3 and later chips"
4403ad3ca05SFlorian Fainelli	depends on (ARCH_OMAP3 || ARCH_OMAP4)
441968b448bSAnand Gadiyar	default y
442968b448bSAnand Gadiyar	---help---
443968b448bSAnand Gadiyar	  Enables support for the on-chip OHCI controller on
444968b448bSAnand Gadiyar	  OMAP3 and later chips.
445968b448bSAnand Gadiyar
446068413e9SArnd Bergmannconfig USB_OHCI_HCD_DAVINCI
447068413e9SArnd Bergmann	bool "OHCI support for TI DaVinci DA8xx"
448068413e9SArnd Bergmann	depends on ARCH_DAVINCI_DA8XX
449068413e9SArnd Bergmann	depends on USB_OHCI_HCD=y
450068413e9SArnd Bergmann	default y
451068413e9SArnd Bergmann	help
452068413e9SArnd Bergmann	  Enables support for the DaVinci DA8xx integrated OHCI
453068413e9SArnd Bergmann	  controller. This driver cannot currently be a loadable
454068413e9SArnd Bergmann	  module because it lacks a proper PHY abstraction.
455068413e9SArnd Bergmann
45690e6ca5cSGabor Juhosconfig USB_OHCI_ATH79
4575d98cd4eSHauke Mehrtens	bool "USB OHCI support for the Atheros AR71XX/AR7240 SoCs (DEPRECATED)"
4583ad3ca05SFlorian Fainelli	depends on (SOC_AR71XX || SOC_AR724X)
4595d98cd4eSHauke Mehrtens	select USB_OHCI_HCD_PLATFORM
46090e6ca5cSGabor Juhos	default y
46190e6ca5cSGabor Juhos	help
4625d98cd4eSHauke Mehrtens	  This option is deprecated now and the driver was removed, use
4635d98cd4eSHauke Mehrtens	  USB_OHCI_HCD_PLATFORM instead.
4645d98cd4eSHauke Mehrtens
46590e6ca5cSGabor Juhos	  Enables support for the built-in OHCI controller present on the
46690e6ca5cSGabor Juhos	  Atheros AR71XX/AR7240 SoCs.
46790e6ca5cSGabor Juhos
468495a678fSSylvain Munautconfig USB_OHCI_HCD_PPC_OF_BE
46945e83889SArnd Bergmann	bool "OHCI support for OF platform bus (big endian)"
4703ad3ca05SFlorian Fainelli	depends on PPC_OF
471495a678fSSylvain Munaut	select USB_OHCI_BIG_ENDIAN_DESC
472495a678fSSylvain Munaut	select USB_OHCI_BIG_ENDIAN_MMIO
47345e83889SArnd Bergmann	---help---
47445e83889SArnd Bergmann	  Enables support for big-endian USB controllers present on the
47545e83889SArnd Bergmann	  OpenFirmware platform bus.
476495a678fSSylvain Munaut
477495a678fSSylvain Munautconfig USB_OHCI_HCD_PPC_OF_LE
47845e83889SArnd Bergmann	bool "OHCI support for OF platform bus (little endian)"
4793ad3ca05SFlorian Fainelli	depends on PPC_OF
480495a678fSSylvain Munaut	select USB_OHCI_LITTLE_ENDIAN
48145e83889SArnd Bergmann	---help---
48245e83889SArnd Bergmann	  Enables support for little-endian USB controllers present on the
48345e83889SArnd Bergmann	  OpenFirmware platform bus.
48445e83889SArnd Bergmann
48545e83889SArnd Bergmannconfig USB_OHCI_HCD_PPC_OF
48645e83889SArnd Bergmann	bool
4873ad3ca05SFlorian Fainelli	depends on PPC_OF
48845e83889SArnd Bergmann	default USB_OHCI_HCD_PPC_OF_BE || USB_OHCI_HCD_PPC_OF_LE
489495a678fSSylvain Munaut
4901da177e4SLinus Torvaldsconfig USB_OHCI_HCD_PCI
491c1117afbSManjunath Goudar	tristate "OHCI support for PCI-bus USB controllers"
492c1117afbSManjunath Goudar	depends on PCI
4931da177e4SLinus Torvalds	default y
4941da177e4SLinus Torvalds	select USB_OHCI_LITTLE_ENDIAN
4951da177e4SLinus Torvalds	---help---
4961da177e4SLinus Torvalds	  Enables support for PCI-bus plug-in USB controller cards.
4971da177e4SLinus Torvalds	  If unsure, say Y.
4981da177e4SLinus Torvalds
499c604e851SMichael Bueschconfig USB_OHCI_HCD_SSB
500259b83a3SHauke Mehrtens	bool "OHCI support for Broadcom SSB OHCI core (DEPRECATED)"
5013ad3ca05SFlorian Fainelli	depends on (SSB = y || SSB = USB_OHCI_HCD)
502259b83a3SHauke Mehrtens	select USB_HCD_SSB
503259b83a3SHauke Mehrtens	select USB_OHCI_HCD_PLATFORM
504c604e851SMichael Buesch	default n
505c604e851SMichael Buesch	---help---
506259b83a3SHauke Mehrtens	  This option is deprecated now and the driver was removed, use
507259b83a3SHauke Mehrtens	  USB_HCD_SSB and USB_OHCI_HCD_PLATFORM instead.
508259b83a3SHauke Mehrtens
509c604e851SMichael Buesch	  Support for the Sonics Silicon Backplane (SSB) attached
510c604e851SMichael Buesch	  Broadcom USB OHCI core.
511c604e851SMichael Buesch
512c604e851SMichael Buesch	  This device is present in some embedded devices with
513c604e851SMichael Buesch	  Broadcom based SSB bus.
514c604e851SMichael Buesch
515c604e851SMichael Buesch	  If unsure, say N.
516c604e851SMichael Buesch
51760b0bf0fSYoshihiro Shimodaconfig USB_OHCI_SH
518231a72e0SFlorian Fainelli	bool "OHCI support for SuperH USB controller (DEPRECATED)"
5193ad3ca05SFlorian Fainelli	depends on SUPERH
520231a72e0SFlorian Fainelli	select USB_OHCI_HCD_PLATFORM
52160b0bf0fSYoshihiro Shimoda	---help---
522231a72e0SFlorian Fainelli	  This option is deprecated now and the driver was removed, use
523231a72e0SFlorian Fainelli	  USB_OHCI_HCD_PLATFORM instead.
524231a72e0SFlorian Fainelli
52560b0bf0fSYoshihiro Shimoda	  Enables support for the on-chip OHCI controller on the SuperH.
52660b0bf0fSYoshihiro Shimoda	  If you use the PCI OHCI controller, this option is not necessary.
52760b0bf0fSYoshihiro Shimoda
52862194244SJingoo Hanconfig USB_OHCI_EXYNOS
52950a97e05SManjunath Goudar	tristate "OHCI support for Samsung S5P/EXYNOS SoC Series"
53050a97e05SManjunath Goudar	depends on PLAT_S5P || ARCH_EXYNOS
53162194244SJingoo Han	help
53262194244SJingoo Han	 Enable support for the Samsung Exynos SOC's on-chip OHCI controller.
53362194244SJingoo Han
534760efe69SMac Linconfig USB_CNS3XXX_OHCI
535c23920b0SFlorian Fainelli	bool "Cavium CNS3XXX OHCI Module (DEPRECATED)"
5363ad3ca05SFlorian Fainelli	depends on ARCH_CNS3XXX
537c23920b0SFlorian Fainelli	select USB_OHCI_HCD_PLATFORM
538760efe69SMac Lin	---help---
539c23920b0SFlorian Fainelli	  This option is deprecated now and the driver was removed, use
540c23920b0SFlorian Fainelli	  USB_OHCI_HCD_PLATFORM instead.
541c23920b0SFlorian Fainelli
542760efe69SMac Lin	  Enable support for the CNS3XXX SOC's on-chip OHCI controller.
543760efe69SMac Lin	  It is needed for low-speed USB 1.0 device support.
544760efe69SMac Lin
545fa3364b5SHauke Mehrtensconfig USB_OHCI_HCD_PLATFORM
546928fb68eSManjunath Goudar	tristate "Generic OHCI driver for a platform device"
547fa3364b5SHauke Mehrtens	default n
548fa3364b5SHauke Mehrtens	---help---
549fa3364b5SHauke Mehrtens	  Adds an OHCI host driver for a generic platform device, which
550898d828bSPeter Meerwald	  provides a memory space and an irq.
551fa3364b5SHauke Mehrtens
552fa3364b5SHauke Mehrtens	  If unsure, say N.
553fa3364b5SHauke Mehrtens
5543ad3ca05SFlorian Fainelliconfig USB_OCTEON_OHCI
5553ad3ca05SFlorian Fainelli	bool "Octeon on-chip OHCI support"
5569ddebc46SDavid Daney	depends on CAVIUM_OCTEON_SOC
5573ad3ca05SFlorian Fainelli	default USB_OCTEON_EHCI
5583ad3ca05SFlorian Fainelli	select USB_OHCI_BIG_ENDIAN_MMIO
5593ad3ca05SFlorian Fainelli	select USB_OHCI_LITTLE_ENDIAN
5603ad3ca05SFlorian Fainelli	help
5613ad3ca05SFlorian Fainelli	  Enable support for the Octeon II SOC's on-chip OHCI
5623ad3ca05SFlorian Fainelli	  controller.  It is needed for low-speed USB 1.0 device
5633ad3ca05SFlorian Fainelli	  support.  All CN6XXX based chips with USB are supported.
5643ad3ca05SFlorian Fainelli
5653ad3ca05SFlorian Fainelliendif # USB_OHCI_HCD
5663ad3ca05SFlorian Fainelli
5671da177e4SLinus Torvaldsconfig USB_UHCI_HCD
5681da177e4SLinus Torvalds	tristate "UHCI HCD (most Intel and VIA) support"
569ccd9509aSAlan Stern	depends on PCI || USB_UHCI_SUPPORT_NON_PCI_HC
5701da177e4SLinus Torvalds	---help---
5711da177e4SLinus Torvalds	  The Universal Host Controller Interface is a standard by Intel for
5721da177e4SLinus Torvalds	  accessing the USB hardware in the PC (which is also called the USB
5731da177e4SLinus Torvalds	  host controller). If your USB host controller conforms to this
5741da177e4SLinus Torvalds	  standard, you may want to say Y, but see below. All recent boards
5751da177e4SLinus Torvalds	  with Intel PCI chipsets (like intel 430TX, 440FX, 440LX, 440BX,
5761da177e4SLinus Torvalds	  i810, i820) conform to this standard. Also all VIA PCI chipsets
5771da177e4SLinus Torvalds	  (like VIA VP2, VP3, MVP3, Apollo Pro, Apollo Pro II or Apollo Pro
5783db7739cSJan Andersson	  133) and LEON/GRLIB SoCs with the GRUSBHC controller.
5793db7739cSJan Andersson	  If unsure, say Y.
5801da177e4SLinus Torvalds
5811da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
5821da177e4SLinus Torvalds	  module will be called uhci-hcd.
5831da177e4SLinus Torvalds
584d3219d1cSJan Anderssonconfig USB_UHCI_SUPPORT_NON_PCI_HC
585d3219d1cSJan Andersson	bool
586ccd9509aSAlan Stern	default y if (SPARC_LEON || USB_UHCI_PLATFORM)
587100d4597STony Prisk
588100d4597STony Priskconfig USB_UHCI_PLATFORM
589ccd9509aSAlan Stern	bool
590100d4597STony Prisk	default y if ARCH_VT8500
591d3219d1cSJan Andersson
5928452c674SJan Anderssonconfig USB_UHCI_BIG_ENDIAN_MMIO
5938452c674SJan Andersson	bool
594ccd9509aSAlan Stern	default y if SPARC_LEON
5958452c674SJan Andersson
59651e2f62fSJan Anderssonconfig USB_UHCI_BIG_ENDIAN_DESC
59751e2f62fSJan Andersson	bool
598ccd9509aSAlan Stern	default y if SPARC_LEON
59951e2f62fSJan Andersson
600236dd4d1SAnton Vorontsovconfig USB_FHCI_HCD
601236dd4d1SAnton Vorontsov	tristate "Freescale QE USB Host Controller support"
60225e11ec4SFlorian Fainelli	depends on OF_GPIO && QE_GPIO && QUICC_ENGINE
603236dd4d1SAnton Vorontsov	select FSL_GTM
604236dd4d1SAnton Vorontsov	select QE_USB
605236dd4d1SAnton Vorontsov	help
606236dd4d1SAnton Vorontsov	  This driver enables support for Freescale QE USB Host Controller
607236dd4d1SAnton Vorontsov	  (as found on MPC8360 and MPC8323 processors), the driver supports
608236dd4d1SAnton Vorontsov	  Full and Low Speed USB.
609236dd4d1SAnton Vorontsov
610236dd4d1SAnton Vorontsovconfig FHCI_DEBUG
611236dd4d1SAnton Vorontsov	bool "Freescale QE USB Host Controller debug support"
612236dd4d1SAnton Vorontsov	depends on USB_FHCI_HCD && DEBUG_FS
613236dd4d1SAnton Vorontsov	help
614236dd4d1SAnton Vorontsov	  Say "y" to see some FHCI debug information and statistics
61525985edcSLucas De Marchi	  through debugfs.
616236dd4d1SAnton Vorontsov
617d774efeaSTony Olechconfig USB_U132_HCD
618d774efeaSTony Olech	tristate "Elan U132 Adapter Host Controller"
61925e11ec4SFlorian Fainelli	depends on USB_FTDI_ELAN
620d774efeaSTony Olech	help
621d774efeaSTony Olech	  The U132 adapter is a USB to CardBus adapter specifically designed
622d774efeaSTony Olech	  for PC cards that contain an OHCI host controller. Typical PC cards
623d774efeaSTony Olech	  are the Orange Mobile 3G Option GlobeTrotter Fusion card. The U132
624d774efeaSTony Olech	  adapter will *NOT* work with PC cards that do not contain an OHCI
625d774efeaSTony Olech	  controller.
626d774efeaSTony Olech
6273cb2fcccSMatt LaPlante	  For those PC cards that contain multiple OHCI controllers only the
628d774efeaSTony Olech	  first one is used.
629d774efeaSTony Olech
630d774efeaSTony Olech	  The driver consists of two modules, the "ftdi-elan" module is a
631d774efeaSTony Olech	  USB client driver that interfaces to the FTDI chip within ELAN's
632d774efeaSTony Olech	  USB-to-PCMCIA adapter, and this "u132-hcd" module is a USB host
633d774efeaSTony Olech	  controller driver that talks to the OHCI controller within the
634d774efeaSTony Olech	  CardBus cards that are inserted in the U132 adapter.
635d774efeaSTony Olech
636d774efeaSTony Olech	  This driver has been tested with a CardBus OHCI USB adapter, and
637d774efeaSTony Olech	  worked with a USB PEN Drive inserted into the first USB port of
638d774efeaSTony Olech	  the PCCARD. A rather pointless thing to do, but useful for testing.
639d774efeaSTony Olech
640d774efeaSTony Olech	  It is safe to say M here.
641d774efeaSTony Olech
642d774efeaSTony Olech	  See also <http://www.elandigitalsystems.com/support/ufaq/u132linux.php>
643d774efeaSTony Olech
6441da177e4SLinus Torvaldsconfig USB_SL811_HCD
6451da177e4SLinus Torvalds	tristate "SL811HS HCD support"
6461da177e4SLinus Torvalds	help
6471da177e4SLinus Torvalds	  The SL811HS is a single-port USB controller that supports either
6481da177e4SLinus Torvalds	  host side or peripheral side roles.  Enable this option if your
6491da177e4SLinus Torvalds	  board has this chip, and you want to use it as a host controller.
6501da177e4SLinus Torvalds	  If unsure, say N.
6511da177e4SLinus Torvalds
6521da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
6531da177e4SLinus Torvalds	  module will be called sl811-hcd.
6541da177e4SLinus Torvalds
655ad7c56f0SMike Frysingerconfig USB_SL811_HCD_ISO
656ad7c56f0SMike Frysinger	bool "partial ISO support"
657ad7c56f0SMike Frysinger	depends on USB_SL811_HCD
658ad7c56f0SMike Frysinger	help
659ad7c56f0SMike Frysinger	  The driver doesn't support iso_frame_desc (yet), but for some simple
660ad7c56f0SMike Frysinger	  devices that just queue one ISO frame per URB, then ISO transfers
661ad7c56f0SMike Frysinger	  "should" work using the normal urb status fields.
662ad7c56f0SMike Frysinger
663ad7c56f0SMike Frysinger	  If unsure, say N.
664ad7c56f0SMike Frysinger
665c6de2b64SDavid Brownellconfig USB_SL811_CS
666c6de2b64SDavid Brownell	tristate "CF/PCMCIA support for SL811HS HCD"
667c6de2b64SDavid Brownell	depends on USB_SL811_HCD && PCMCIA
668c6de2b64SDavid Brownell	help
669c6de2b64SDavid Brownell	  Wraps a PCMCIA driver around the SL811HS HCD, supporting the RATOC
670c6de2b64SDavid Brownell	  REX-CFU1U CF card (often used with PDAs).  If unsure, say N.
671c6de2b64SDavid Brownell
672c6de2b64SDavid Brownell	  To compile this driver as a module, choose M here: the
673c6de2b64SDavid Brownell	  module will be called "sl811_cs".
674c6de2b64SDavid Brownell
6755d304358SYoshihiro Shimodaconfig USB_R8A66597_HCD
676fa0de2b6SM4rkusXXL	tristate "R8A66597 HCD support"
6775d304358SYoshihiro Shimoda	help
6785d304358SYoshihiro Shimoda	  The R8A66597 is a USB 2.0 host and peripheral controller.
6795d304358SYoshihiro Shimoda
6805d304358SYoshihiro Shimoda	  Enable this option if your board has this chip, and you want
6815d304358SYoshihiro Shimoda	  to use it as a host controller.  If unsure, say N.
6825d304358SYoshihiro Shimoda
6835d304358SYoshihiro Shimoda	  To compile this driver as a module, choose M here: the
6845d304358SYoshihiro Shimoda	  module will be called r8a66597-hcd.
6855d304358SYoshihiro Shimoda
686034d7c13SKuninori Morimotoconfig USB_RENESAS_USBHS_HCD
687034d7c13SKuninori Morimoto	tristate "Renesas USBHS HCD support"
688034d7c13SKuninori Morimoto	depends on USB_RENESAS_USBHS
689034d7c13SKuninori Morimoto	help
690034d7c13SKuninori Morimoto	  The Renesas USBHS is a USB 2.0 host and peripheral controller.
691034d7c13SKuninori Morimoto
692034d7c13SKuninori Morimoto	  Enable this option if your board has this chip, and you want
693034d7c13SKuninori Morimoto	  to use it as a host controller.  If unsure, say N.
694034d7c13SKuninori Morimoto
695034d7c13SKuninori Morimoto	  To compile this driver as a module, choose M here: the
696034d7c13SKuninori Morimoto	  module will be called renesas-usbhs.
697034d7c13SKuninori Morimoto
6987e6133aaSDavid Vrabelconfig USB_WHCI_HCD
699eb83be98SGreg Kroah-Hartman	tristate "Wireless USB Host Controller Interface (WHCI) driver"
70036f8ecbfSRandy Dunlap	depends on PCI && USB && UWB
7017e6133aaSDavid Vrabel	select USB_WUSB
7027e6133aaSDavid Vrabel	select UWB_WHCI
7037e6133aaSDavid Vrabel	help
7047e6133aaSDavid Vrabel	  A driver for PCI-based Wireless USB Host Controllers that are
7057e6133aaSDavid Vrabel	  compliant with the WHCI specification.
7067e6133aaSDavid Vrabel
7077e6133aaSDavid Vrabel	  To compile this driver a module, choose M here: the module
7087e6133aaSDavid Vrabel	  will be called "whci-hcd".
709d09318b8SInaky Perez-Gonzalez
710d09318b8SInaky Perez-Gonzalezconfig USB_HWA_HCD
711eb83be98SGreg Kroah-Hartman	tristate "Host Wire Adapter (HWA) driver"
71225e11ec4SFlorian Fainelli	depends on UWB
713d09318b8SInaky Perez-Gonzalez	select USB_WUSB
714d09318b8SInaky Perez-Gonzalez	select UWB_HWA
715d09318b8SInaky Perez-Gonzalez	help
716d09318b8SInaky Perez-Gonzalez	  This driver enables you to connect Wireless USB devices to
717d09318b8SInaky Perez-Gonzalez	  your system using a Host Wire Adaptor USB dongle. This is an
718d09318b8SInaky Perez-Gonzalez	  UWB Radio Controller and WUSB Host Controller connected to
719d09318b8SInaky Perez-Gonzalez	  your machine via USB (specified in WUSB1.0).
720d09318b8SInaky Perez-Gonzalez
721d09318b8SInaky Perez-Gonzalez	  To compile this driver a module, choose M here: the module
722d09318b8SInaky Perez-Gonzalez	  will be called "hwa-hc".
72323d3e7a6SMartin Fuzzey
72423d3e7a6SMartin Fuzzeyconfig USB_IMX21_HCD
7255de9ec4dSSascha Hauer       tristate "i.MX21 HCD support"
72625e11ec4SFlorian Fainelli       depends on ARM && ARCH_MXC
72723d3e7a6SMartin Fuzzey       help
72823d3e7a6SMartin Fuzzey         This driver enables support for the on-chip USB host in the
7295de9ec4dSSascha Hauer         i.MX21 processor.
73023d3e7a6SMartin Fuzzey
73123d3e7a6SMartin Fuzzey         To compile this driver as a module, choose M here: the
73223d3e7a6SMartin Fuzzey         module will be called "imx21-hcd".
73323d3e7a6SMartin Fuzzey
7341643accdSDavid Daney
7351643accdSDavid Daney
7361643accdSDavid Daneyconfig USB_OCTEON2_COMMON
7371643accdSDavid Daney	bool
7381643accdSDavid Daney	default y if USB_OCTEON_EHCI || USB_OCTEON_OHCI
73962e11d1bSHauke Mehrtens
74062e11d1bSHauke Mehrtensconfig USB_HCD_BCMA
74162e11d1bSHauke Mehrtens	tristate "BCMA usb host driver"
742eb83be98SGreg Kroah-Hartman	depends on BCMA
74362e11d1bSHauke Mehrtens	select USB_OHCI_HCD_PLATFORM if USB_OHCI_HCD
74462e11d1bSHauke Mehrtens	select USB_EHCI_HCD_PLATFORM if USB_EHCI_HCD
74562e11d1bSHauke Mehrtens	help
74671c421dbSJesper Dangaard Brouer	  Enable support for the EHCI and OCHI host controller on an bcma bus.
74762e11d1bSHauke Mehrtens	  It converts the bcma driver into two platform device drivers
74862e11d1bSHauke Mehrtens	  for ehci and ohci.
74962e11d1bSHauke Mehrtens
75062e11d1bSHauke Mehrtens	  If unsure, say N.
7517043c2ccSHauke Mehrtens
7527043c2ccSHauke Mehrtensconfig USB_HCD_SSB
7537043c2ccSHauke Mehrtens	tristate "SSB usb host driver"
754eb83be98SGreg Kroah-Hartman	depends on SSB
7557043c2ccSHauke Mehrtens	select USB_OHCI_HCD_PLATFORM if USB_OHCI_HCD
7567043c2ccSHauke Mehrtens	select USB_EHCI_HCD_PLATFORM if USB_EHCI_HCD
7577043c2ccSHauke Mehrtens	help
75871c421dbSJesper Dangaard Brouer	  Enable support for the EHCI and OCHI host controller on an bcma bus.
7597043c2ccSHauke Mehrtens	  It converts the bcma driver into two platform device drivers
7607043c2ccSHauke Mehrtens	  for ehci and ohci.
7617043c2ccSHauke Mehrtens
7627043c2ccSHauke Mehrtens	  If unsure, say N.
763726a85caSJack Pham
764726a85caSJack Phamconfig USB_HCD_TEST_MODE
765726a85caSJack Pham	bool "HCD test mode support"
766726a85caSJack Pham	---help---
767726a85caSJack Pham	  Say 'Y' to enable additional software test modes that may be
768726a85caSJack Pham	  supported by the host controller drivers.
769726a85caSJack Pham
770726a85caSJack Pham	  One such test mode is the Embedded High-speed Host Electrical Test
771726a85caSJack Pham	  (EHSET) for EHCI host controller hardware, specifically the "Single
772726a85caSJack Pham	  Step Set Feature" test.  Typically this will be enabled for On-the-Go
773726a85caSJack Pham	  or embedded hosts that need to undergo USB-IF compliance testing with
774726a85caSJack Pham	  the aid of special testing hardware.  In the future, this may expand
775726a85caSJack Pham	  to include other tests that require support from a HCD driver.
776726a85caSJack Pham
777726a85caSJack Pham	  This option is of interest only to developers who need to validate
778726a85caSJack Pham	  their USB hardware designs.  It is not needed for normal use.  If
779726a85caSJack Pham	  unsure, say N.
780