blob: c0be25c8e61c4ce25bddd63e001c47ff6d77314b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# USB Host Controller Drivers
3#
4comment "USB Host Controller Drivers"
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Peter Korsgaarde9b29ff2008-04-27 08:59:45 +02006config USB_C67X00_HCD
7 tristate "Cypress C67x00 HCD support"
Peter Korsgaarde9b29ff2008-04-27 08:59:45 +02008 help
9 The Cypress C67x00 (EZ-Host/EZ-OTG) chips are dual-role
10 host/peripheral/OTG USB controllers.
11
12 Enable this option to support this chip in host controller mode.
13 If unsure, say N.
14
15 To compile this driver as a module, choose M here: the
16 module will be called c67x00.
17
Sarah Sharpeb6bab12009-04-29 19:07:13 -070018config USB_XHCI_HCD
Greg Kroah-Hartmaneb83be92012-09-14 21:15:50 -070019 tristate "xHCI HCD (USB 3.0) support"
Florian Fainelli25e11ec2013-04-09 14:29:25 +020020 depends on USB_ARCH_HAS_XHCI
Sarah Sharpeb6bab12009-04-29 19:07:13 -070021 ---help---
22 The eXtensible Host Controller Interface (xHCI) is standard for USB 3.0
23 "SuperSpeed" host controller hardware.
24
25 To compile this driver as a module, choose M here: the
26 module will be called xhci-hcd.
27
Florian Fainelli0fcb9982013-04-09 14:29:29 +020028if USB_XHCI_HCD
29
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +020030config USB_XHCI_PLATFORM
31 tristate
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +020032
Sarah Sharpeb6bab12009-04-29 19:07:13 -070033config USB_XHCI_HCD_DEBUGGING
34 bool "Debugging for the xHCI host controller"
Sarah Sharpeb6bab12009-04-29 19:07:13 -070035 ---help---
36 Say 'Y' to turn on debugging for the xHCI host controller driver.
37 This will spew debugging output, even in interrupt context.
38 This should only be used for debugging xHCI driver bugs.
39
40 If unsure, say N.
41
Florian Fainelli0fcb9982013-04-09 14:29:29 +020042endif # USB_XHCI_HCD
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044config USB_EHCI_HCD
45 tristate "EHCI HCD (USB 2.0) support"
Florian Fainelli25e11ec2013-04-09 14:29:25 +020046 depends on USB_ARCH_HAS_EHCI
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 ---help---
48 The Enhanced Host Controller Interface (EHCI) is standard for USB 2.0
49 "high speed" (480 Mbit/sec, 60 Mbyte/sec) host controller hardware.
50 If your USB host controller supports USB 2.0, you will likely want to
Thierry Vignaudb967c882009-02-11 13:31:05 -080051 configure this Host Controller Driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 EHCI controllers are packaged with "companion" host controllers (OHCI
54 or UHCI) to handle USB 1.1 devices connected to root hub ports. Ports
Jesper Juhlb3c29d82006-01-10 00:35:22 +010055 will connect to EHCI if the device is high speed, otherwise they
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 connect to a companion controller. If you configure EHCI, you should
57 probably configure the OHCI (for NEC and some other vendors) USB Host
58 Controller Driver or UHCI (for Via motherboards) Host Controller
59 Driver too.
60
61 You may want to read <file:Documentation/usb/ehci.txt>.
62
63 To compile this driver as a module, choose M here: the
64 module will be called ehci-hcd.
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066config USB_EHCI_ROOT_HUB_TT
Robert P. J. Day9ec249a2008-03-08 03:27:44 -050067 bool "Root Hub Transaction Translators"
Marek Vasutb12909b2012-05-15 06:10:20 +020068 depends on USB_EHCI_HCD || USB_CHIPIDEA_HOST
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 ---help---
70 Some EHCI chips have vendor-specific extensions to integrate
71 transaction translators, so that no OHCI or UHCI companion
72 controller is needed. It's safe to say "y" even if your
73 controller doesn't support this feature.
74
Dan Streetmanba47f662006-05-24 09:39:16 -070075 This supports the EHCI implementation that's originally
76 from ARC, and has since changed hands a few times.
77
78config USB_EHCI_TT_NEWSCHED
Alan Stern37cd6812010-05-21 17:08:21 -040079 bool "Improved Transaction Translator scheduling"
Marek Vasutb12909b2012-05-15 06:10:20 +020080 depends on USB_EHCI_HCD || USB_CHIPIDEA_HOST
Alan Stern37cd6812010-05-21 17:08:21 -040081 default y
Dan Streetmanba47f662006-05-24 09:39:16 -070082 ---help---
83 This changes the periodic scheduling code to fill more of the low
84 and full speed bandwidth available from the Transaction Translator
85 (TT) in USB 2.0 hubs. Without this, only one transfer will be
86 issued in each microframe, significantly reducing the number of
87 periodic low/fullspeed transfers possible.
88
89 If you have multiple periodic low/fullspeed devices connected to a
90 highspeed USB hub which is connected to a highspeed USB Host
91 Controller, and some of those devices will not work correctly
Alan Stern37cd6812010-05-21 17:08:21 -040092 (possibly due to "ENOSPC" or "-28" errors), say Y. Conversely, if
93 you have only one such device and it doesn't work, you could try
94 saying N.
Dan Streetmanba47f662006-05-24 09:39:16 -070095
Alan Stern37cd6812010-05-21 17:08:21 -040096 If unsure, say Y.
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Florian Fainelli42443dc2013-04-09 14:29:27 +020098config USB_FSL_MPH_DR_OF
99 tristate
100
101if USB_EHCI_HCD
102
Alan Sternadfa79d2012-11-01 11:13:04 -0400103config USB_EHCI_PCI
104 tristate
Florian Fainelli42443dc2013-04-09 14:29:27 +0200105 depends on PCI
Alan Sternadfa79d2012-11-01 11:13:04 -0400106 default y
107
Anoop22ced6872011-02-24 19:26:28 +0530108config USB_EHCI_HCD_PMC_MSP
109 tristate "EHCI support for on-chip PMC MSP71xx USB controller"
Florian Fainelli42443dc2013-04-09 14:29:27 +0200110 depends on MSP_HAS_USB
Anoop22ced6872011-02-24 19:26:28 +0530111 default n
112 select USB_EHCI_BIG_ENDIAN_DESC
113 select USB_EHCI_BIG_ENDIAN_MMIO
114 ---help---
115 Enables support for the onchip USB controller on the PMC_MSP7100 Family SoC's.
116 If unsure, say N.
117
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100118config USB_EHCI_BIG_ENDIAN_MMIO
119 bool
Benjamin Herrenschmidt083522d2006-12-15 06:54:08 +1100120
Stefan Roese6dbd6822007-05-01 09:29:37 -0700121config USB_EHCI_BIG_ENDIAN_DESC
122 bool
Stefan Roese6dbd6822007-05-01 09:29:37 -0700123
Julie Zhu08d3c182009-09-21 16:08:19 -0600124config XPS_USB_HCD_XILINX
125 bool "Use Xilinx usb host EHCI controller core"
Florian Fainelli42443dc2013-04-09 14:29:27 +0200126 depends on (PPC32 || MICROBLAZE)
Julie Zhu08d3c182009-09-21 16:08:19 -0600127 select USB_EHCI_BIG_ENDIAN_DESC
128 select USB_EHCI_BIG_ENDIAN_MMIO
129 ---help---
130 Xilinx xps USB host controller core is EHCI compilant and has
131 transaction translator built-in. It can be configured to either
132 support both high speed and full speed devices, or high speed
133 devices only.
134
Li Yangba029782007-05-11 17:09:55 +0800135config USB_EHCI_FSL
Fabio Estevamc0ca9bc2012-02-02 14:23:34 -0200136 bool "Support for Freescale PPC on-chip EHCI USB controller"
Florian Fainelli42443dc2013-04-09 14:29:27 +0200137 depends on FSL_SOC
Li Yangba029782007-05-11 17:09:55 +0800138 select USB_EHCI_ROOT_HUB_TT
Marc Kleine-Budde018b97d2010-10-29 11:04:49 +0200139 select USB_FSL_MPH_DR_OF if OF
Li Yangba029782007-05-11 17:09:55 +0800140 ---help---
141 Variation of ARC USB block used in some Freescale chips.
142
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100143config USB_EHCI_MXC
Alan Sterndba63b22013-01-23 13:26:15 -0500144 tristate "Support for Freescale i.MX on-chip EHCI USB controller"
Florian Fainelli42443dc2013-04-09 14:29:27 +0200145 depends on ARCH_MXC
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100146 select USB_EHCI_ROOT_HUB_TT
147 ---help---
148 Variation of ARC USB block used in some Freescale chips.
149
Keshava Munegowda7f124f42010-11-21 23:23:41 +0530150config USB_EHCI_HCD_OMAP
Alan Stern54a419662013-03-12 12:44:39 +0200151 tristate "EHCI support for OMAP3 and later chips"
Florian Fainelli42443dc2013-04-09 14:29:27 +0200152 depends on ARCH_OMAP
Roger Quadrosdfdf9ad2013-03-12 12:44:44 +0200153 select NOP_USB_XCEIV
Keshava Munegowda7f124f42010-11-21 23:23:41 +0530154 default y
Paul Bolled132d7f2012-05-07 11:14:59 +0200155 ---help---
Keshava Munegowda7f124f42010-11-21 23:23:41 +0530156 Enables support for the on-chip EHCI controller on
157 OMAP3 and later chips.
158
Manjunath Goudara76dd462013-04-02 18:23:59 +0200159config USB_EHCI_HCD_ORION
160 tristate "Support for Marvell EBU on-chip EHCI USB controller"
161 depends on USB_EHCI_HCD && PLAT_ORION
162 default y
163 ---help---
164 Enables support for the on-chip EHCI controller on Marvell's
165 embedded ARM SoCs, including Orion, Kirkwood, Dove, Armada XP,
166 Armada 370. This is different from the EHCI implementation
167 on Marvell's mobile PXA and MMP SoC, see "EHCI support for
168 Marvell PXA/MMP USB controller" for those.
169
Manjunath Goudar7675d6b2013-04-02 18:24:00 +0200170config USB_EHCI_HCD_SPEAR
171 tristate "Support for ST SPEAr on-chip EHCI USB controller"
172 depends on USB_EHCI_HCD && PLAT_SPEAR
173 default y
174 ---help---
175 Enables support for the on-chip EHCI controller on
176 ST SPEAr chips.
177
Manjunath Goudar97736962013-04-02 18:24:02 +0200178config USB_EHCI_HCD_AT91
179 tristate "Support for Atmel on-chip EHCI USB controller"
180 depends on USB_EHCI_HCD && ARCH_AT91
181 default y
182 ---help---
183 Enables support for the on-chip EHCI controller on
184 Atmel chips.
185
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530186config USB_EHCI_MSM
Manjunath Goudar8c68e842013-04-02 18:24:03 +0200187 tristate "Support for Qualcomm QSD/MSM on-chip EHCI USB controller"
Florian Fainelli42443dc2013-04-09 14:29:27 +0200188 depends on ARCH_MSM
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530189 select USB_EHCI_ROOT_HUB_TT
Pavankumar Kondetidfb21302011-03-04 22:45:02 +0530190 select USB_MSM_OTG
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530191 ---help---
192 Enables support for the USB Host controller present on the
193 Qualcomm chipsets. Root Hub has inbuilt TT.
194 This driver depends on OTG driver for PHY initialization,
Pavankumar Kondeti8bb6a162010-12-07 17:53:57 +0530195 clock management, powering up VBUS, and power management.
Pavankumar Kondeti8cf28f12011-02-04 10:08:18 +0530196 This driver is not supported on boards like trout which
197 has an external PHY.
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530198
Benoit Goby79ad3b52011-03-09 16:28:56 -0800199config USB_EHCI_TEGRA
200 boolean "NVIDIA Tegra HCD support"
Florian Fainelli42443dc2013-04-09 14:29:27 +0200201 depends on ARCH_TEGRA
Benoit Goby79ad3b52011-03-09 16:28:56 -0800202 select USB_EHCI_ROOT_HUB_TT
Felipe Balbi75f32ec2013-03-20 14:18:28 +0200203 select USB_PHY
Benoit Goby79ad3b52011-03-09 16:28:56 -0800204 help
205 This driver enables support for the internal USB Host Controllers
206 found in NVIDIA Tegra SoCs. The controllers are EHCI compliant.
207
Valentine Barshakda0e8fb2007-12-30 15:28:50 -0800208config USB_EHCI_HCD_PPC_OF
209 bool "EHCI support for PPC USB controller on OF platform bus"
Florian Fainelli42443dc2013-04-09 14:29:27 +0200210 depends on PPC_OF
Valentine Barshakda0e8fb2007-12-30 15:28:50 -0800211 default y
212 ---help---
213 Enables support for the USB controller present on the PowerPC
214 OpenFirmware platform bus.
215
Yoshihiro Shimoda60b0bf02011-03-01 16:58:37 +0900216config USB_EHCI_SH
217 bool "EHCI support for SuperH USB controller"
Florian Fainelli42443dc2013-04-09 14:29:27 +0200218 depends on SUPERH
Yoshihiro Shimoda60b0bf02011-03-01 16:58:37 +0900219 ---help---
220 Enables support for the on-chip EHCI controller on the SuperH.
221 If you use the PCI EHCI controller, this option is not necessary.
222
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900223config USB_EHCI_S5P
Manjunath Goudar7edb3da2013-04-02 18:24:01 +0200224 tristate "EHCI support for Samsung S5P/EXYNOS SoC Series"
Florian Fainelli42443dc2013-04-09 14:29:27 +0200225 depends on PLAT_S5P
Greg Kroah-Hartmane9a92b22013-02-20 10:25:05 -0800226 help
Manjunath Goudar7edb3da2013-04-02 18:24:01 +0200227 Enable support for the Samsung S5Pxxxx and Exynos3/4/5 SOC's
228 on-chip EHCI controller.
Joonyoung Shim1bcc5aa2011-04-08 14:08:50 +0900229
Neil Zhang3a082ec2011-12-20 13:20:23 +0800230config USB_EHCI_MV
Manjunath Goudara76dd462013-04-02 18:23:59 +0200231 bool "EHCI support for Marvell PXA/MMP USB controller"
Florian Fainelli42443dc2013-04-09 14:29:27 +0200232 depends on (ARCH_PXA || ARCH_MMP)
Neil Zhang3a082ec2011-12-20 13:20:23 +0800233 select USB_EHCI_ROOT_HUB_TT
234 ---help---
235 Enables support for Marvell (including PXA and MMP series) on-chip
236 USB SPH and OTG controller. SPH is a single port host, and it can
237 only be EHCI host. OTG is controller that can switch to host mode.
Manjunath Goudara76dd462013-04-02 18:23:59 +0200238 Note that this driver will not work on Marvell's other EHCI
239 controller used by the EBU-type SoCs including Orion, Kirkwood,
240 Dova, Armada 370 and Armada XP. See "Support for Marvell EBU
241 on-chip EHCI USB controller" for those.
Neil Zhang3a082ec2011-12-20 13:20:23 +0800242
Wan ZongShun586dfc82009-06-13 09:14:28 +0800243config USB_W90X900_EHCI
244 bool "W90X900(W90P910) EHCI support"
Florian Fainelli42443dc2013-04-09 14:29:27 +0200245 depends on ARCH_W90X900
Wan ZongShun586dfc82009-06-13 09:14:28 +0800246 ---help---
247 Enables support for the W90X900 USB controller
248
Mac Lin760efe62010-11-25 23:58:00 +0800249config USB_CNS3XXX_EHCI
Florian Fainellif3a958d2012-10-08 15:11:25 +0200250 bool "Cavium CNS3XXX EHCI Module (DEPRECATED)"
Florian Fainelli42443dc2013-04-09 14:29:27 +0200251 depends on ARCH_CNS3XXX
Florian Fainellif3a958d2012-10-08 15:11:25 +0200252 select USB_EHCI_HCD_PLATFORM
Mac Lin760efe62010-11-25 23:58:00 +0800253 ---help---
Florian Fainellif3a958d2012-10-08 15:11:25 +0200254 This option is deprecated now and the driver was removed, use
255 USB_EHCI_HCD_PLATFORM instead.
256
Mac Lin760efe62010-11-25 23:58:00 +0800257 Enable support for the CNS3XXX SOC's on-chip EHCI controller.
258 It is needed for high-speed (480Mbit/sec) USB 2.0 device
259 support.
260
Gabor Juhos502fa842011-04-13 10:54:22 +0200261config USB_EHCI_ATH79
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +0100262 bool "EHCI support for AR7XXX/AR9XXX SoCs (DEPRECATED)"
Florian Fainelli42443dc2013-04-09 14:29:27 +0200263 depends on (SOC_AR71XX || SOC_AR724X || SOC_AR913X || SOC_AR933X)
Gabor Juhos502fa842011-04-13 10:54:22 +0200264 select USB_EHCI_ROOT_HUB_TT
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +0100265 select USB_EHCI_HCD_PLATFORM
Gabor Juhos502fa842011-04-13 10:54:22 +0200266 default y
267 ---help---
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +0100268 This option is deprecated now and the driver was removed, use
269 USB_EHCI_HCD_PLATFORM instead.
270
Gabor Juhos502fa842011-04-13 10:54:22 +0200271 Enables support for the built-in EHCI controller present
272 on the Atheros AR7XXX/AR9XXX SoCs.
273
Florian Fainelli42443dc2013-04-09 14:29:27 +0200274config USB_EHCI_HCD_PLATFORM
275 tristate "Generic EHCI driver for a platform device"
276 default n
277 ---help---
278 Adds an EHCI host driver for a generic platform device, which
279 provides a memory space and an irq.
280
281 If unsure, say N.
282
283config USB_OCTEON_EHCI
284 bool "Octeon on-chip EHCI support"
285 depends on CPU_CAVIUM_OCTEON
286 default n
287 select USB_EHCI_BIG_ENDIAN_MMIO
288 help
289 Enable support for the Octeon II SOC's on-chip EHCI
290 controller. It is needed for high-speed (480Mbit/sec)
291 USB 2.0 device support. All CN6XXX based chips with USB are
292 supported.
293
294endif # USB_EHCI_HCD
295
Rodolfo Giomettib92a78e2008-10-23 10:08:07 +0200296config USB_OXU210HP_HCD
297 tristate "OXU210HP HCD support"
Florian Fainelli25e11ec2013-04-09 14:29:25 +0200298 depends on GENERIC_HARDIRQS
Rodolfo Giomettib92a78e2008-10-23 10:08:07 +0200299 ---help---
300 The OXU210HP is an USB host/OTG/device controller. Enable this
301 option if your board has this chip. If unsure, say N.
302
303 This driver does not support isochronous transfers and doesn't
304 implement OTG nor USB device controllers.
305
306 To compile this driver as a module, choose M here: the
307 module will be called oxu210hp-hcd.
308
Olav Kongas4808a1c2005-04-09 22:57:39 +0300309config USB_ISP116X_HCD
310 tristate "ISP116X HCD support"
Olav Kongas4808a1c2005-04-09 22:57:39 +0300311 ---help---
312 The ISP1160 and ISP1161 chips are USB host controllers. Enable this
313 option if your board has this chip. If unsure, say N.
314
315 This driver does not support isochronous transfers.
316
317 To compile this driver as a module, choose M here: the
318 module will be called isp116x-hcd.
319
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200320config USB_ISP1760_HCD
321 tristate "ISP 1760 HCD support"
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200322 ---help---
323 The ISP1760 chip is a USB 2.0 host controller.
324
325 This driver does not support isochronous transfers or OTG.
Sebastian Andrzej Siewiorff30bf12008-11-02 15:25:42 +0100326 This USB controller is usually attached to a non-DMA-Master
327 capable bus. NXP's eval kit brings this chip on PCI card
328 where the chip itself is behind a PLB to simulate such
329 a bus.
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200330
331 To compile this driver as a module, choose M here: the
Sebastian Andrzej Siewiorff30bf12008-11-02 15:25:42 +0100332 module will be called isp1760.
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200333
Lothar Wassmanna9d43092009-07-16 20:51:21 -0400334config USB_ISP1362_HCD
335 tristate "ISP1362 HCD support"
Lothar Wassmanna9d43092009-07-16 20:51:21 -0400336 default N
337 ---help---
338 Supports the Philips ISP1362 chip as a host controller
339
340 This driver does not support isochronous transfers.
341
342 To compile this driver as a module, choose M here: the
343 module will be called isp1362-hcd.
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345config USB_OHCI_HCD
346 tristate "OHCI HCD support"
Florian Fainelli25e11ec2013-04-09 14:29:25 +0200347 depends on USB_ARCH_HAS_OHCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 select ISP1301_OMAP if MACH_OMAP_H2 || MACH_OMAP_H3
Linus Torvalds61464c82012-10-01 18:19:05 -0700349 depends on USB_ISP1301 || !ARCH_LPC32XX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 ---help---
351 The Open Host Controller Interface (OHCI) is a standard for accessing
352 USB 1.1 host controller hardware. It does more in hardware than Intel's
353 UHCI specification. If your USB host controller follows the OHCI spec,
354 say Y. On most non-x86 systems, and on x86 hardware that's not using a
355 USB controller from Intel or VIA, this is appropriate. If your host
356 controller doesn't use PCI, this is probably appropriate. For a PCI
357 based system where you're not sure, the "lspci -v" entry will list the
358 right "prog-if" for your USB controller(s): EHCI, OHCI, or UHCI.
359
360 To compile this driver as a module, choose M here: the
361 module will be called ohci-hcd.
362
Florian Fainelli3ad3ca02013-04-09 14:29:28 +0200363if USB_OHCI_HCD
364
Anand Gadiyar968b4482010-05-10 21:56:12 +0530365config USB_OHCI_HCD_OMAP1
366 bool "OHCI support for OMAP1/2 chips"
Florian Fainelli3ad3ca02013-04-09 14:29:28 +0200367 depends on ARCH_OMAP1
Anand Gadiyar968b4482010-05-10 21:56:12 +0530368 default y
369 ---help---
370 Enables support for the OHCI controller on OMAP1/2 chips.
371
372config USB_OHCI_HCD_OMAP3
373 bool "OHCI support for OMAP3 and later chips"
Florian Fainelli3ad3ca02013-04-09 14:29:28 +0200374 depends on (ARCH_OMAP3 || ARCH_OMAP4)
Anand Gadiyar968b4482010-05-10 21:56:12 +0530375 default y
376 ---help---
377 Enables support for the on-chip OHCI controller on
378 OMAP3 and later chips.
379
Gabor Juhos90e6ca52011-04-13 10:54:24 +0200380config USB_OHCI_ATH79
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +0100381 bool "USB OHCI support for the Atheros AR71XX/AR7240 SoCs (DEPRECATED)"
Florian Fainelli3ad3ca02013-04-09 14:29:28 +0200382 depends on (SOC_AR71XX || SOC_AR724X)
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +0100383 select USB_OHCI_HCD_PLATFORM
Gabor Juhos90e6ca52011-04-13 10:54:24 +0200384 default y
385 help
Hauke Mehrtens5d98cd42012-03-13 01:04:53 +0100386 This option is deprecated now and the driver was removed, use
387 USB_OHCI_HCD_PLATFORM instead.
388
Gabor Juhos90e6ca52011-04-13 10:54:24 +0200389 Enables support for the built-in OHCI controller present on the
390 Atheros AR71XX/AR7240 SoCs.
391
Sylvain Munaut495a6782006-12-13 21:09:55 +0100392config USB_OHCI_HCD_PPC_OF_BE
Arnd Bergmann45e83882009-06-19 05:35:34 -0700393 bool "OHCI support for OF platform bus (big endian)"
Florian Fainelli3ad3ca02013-04-09 14:29:28 +0200394 depends on PPC_OF
Sylvain Munaut495a6782006-12-13 21:09:55 +0100395 select USB_OHCI_BIG_ENDIAN_DESC
396 select USB_OHCI_BIG_ENDIAN_MMIO
Arnd Bergmann45e83882009-06-19 05:35:34 -0700397 ---help---
398 Enables support for big-endian USB controllers present on the
399 OpenFirmware platform bus.
Sylvain Munaut495a6782006-12-13 21:09:55 +0100400
401config USB_OHCI_HCD_PPC_OF_LE
Arnd Bergmann45e83882009-06-19 05:35:34 -0700402 bool "OHCI support for OF platform bus (little endian)"
Florian Fainelli3ad3ca02013-04-09 14:29:28 +0200403 depends on PPC_OF
Sylvain Munaut495a6782006-12-13 21:09:55 +0100404 select USB_OHCI_LITTLE_ENDIAN
Arnd Bergmann45e83882009-06-19 05:35:34 -0700405 ---help---
406 Enables support for little-endian USB controllers present on the
407 OpenFirmware platform bus.
408
409config USB_OHCI_HCD_PPC_OF
410 bool
Florian Fainelli3ad3ca02013-04-09 14:29:28 +0200411 depends on PPC_OF
Arnd Bergmann45e83882009-06-19 05:35:34 -0700412 default USB_OHCI_HCD_PPC_OF_BE || USB_OHCI_HCD_PPC_OF_LE
Sylvain Munaut495a6782006-12-13 21:09:55 +0100413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414config USB_OHCI_HCD_PCI
415 bool "OHCI support for PCI-bus USB controllers"
Florian Fainelli3ad3ca02013-04-09 14:29:28 +0200416 depends on PCI && (STB03xxx || PPC_MPC52xx || USB_OHCI_HCD_PPC_OF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 default y
418 select USB_OHCI_LITTLE_ENDIAN
419 ---help---
420 Enables support for PCI-bus plug-in USB controller cards.
421 If unsure, say Y.
422
Michael Bueschc604e852007-10-09 23:47:17 -0700423config USB_OHCI_HCD_SSB
Hauke Mehrtens259b83a2012-03-15 23:49:59 +0100424 bool "OHCI support for Broadcom SSB OHCI core (DEPRECATED)"
Florian Fainelli3ad3ca02013-04-09 14:29:28 +0200425 depends on (SSB = y || SSB = USB_OHCI_HCD)
Hauke Mehrtens259b83a2012-03-15 23:49:59 +0100426 select USB_HCD_SSB
427 select USB_OHCI_HCD_PLATFORM
Michael Bueschc604e852007-10-09 23:47:17 -0700428 default n
429 ---help---
Hauke Mehrtens259b83a2012-03-15 23:49:59 +0100430 This option is deprecated now and the driver was removed, use
431 USB_HCD_SSB and USB_OHCI_HCD_PLATFORM instead.
432
Michael Bueschc604e852007-10-09 23:47:17 -0700433 Support for the Sonics Silicon Backplane (SSB) attached
434 Broadcom USB OHCI core.
435
436 This device is present in some embedded devices with
437 Broadcom based SSB bus.
438
439 If unsure, say N.
440
Yoshihiro Shimoda60b0bf02011-03-01 16:58:37 +0900441config USB_OHCI_SH
Florian Fainelli231a72e2012-10-08 15:11:37 +0200442 bool "OHCI support for SuperH USB controller (DEPRECATED)"
Florian Fainelli3ad3ca02013-04-09 14:29:28 +0200443 depends on SUPERH
Florian Fainelli231a72e2012-10-08 15:11:37 +0200444 select USB_OHCI_HCD_PLATFORM
Yoshihiro Shimoda60b0bf02011-03-01 16:58:37 +0900445 ---help---
Florian Fainelli231a72e2012-10-08 15:11:37 +0200446 This option is deprecated now and the driver was removed, use
447 USB_OHCI_HCD_PLATFORM instead.
448
Yoshihiro Shimoda60b0bf02011-03-01 16:58:37 +0900449 Enables support for the on-chip OHCI controller on the SuperH.
450 If you use the PCI OHCI controller, this option is not necessary.
451
Jingoo Han62194242011-12-23 11:20:54 +0900452config USB_OHCI_EXYNOS
453 boolean "OHCI support for Samsung EXYNOS SoC Series"
Florian Fainelli3ad3ca02013-04-09 14:29:28 +0200454 depends on ARCH_EXYNOS
Jingoo Han62194242011-12-23 11:20:54 +0900455 help
456 Enable support for the Samsung Exynos SOC's on-chip OHCI controller.
457
Mac Lin760efe62010-11-25 23:58:00 +0800458config USB_CNS3XXX_OHCI
Florian Fainellic23920b02012-10-08 15:11:33 +0200459 bool "Cavium CNS3XXX OHCI Module (DEPRECATED)"
Florian Fainelli3ad3ca02013-04-09 14:29:28 +0200460 depends on ARCH_CNS3XXX
Florian Fainellic23920b02012-10-08 15:11:33 +0200461 select USB_OHCI_HCD_PLATFORM
Mac Lin760efe62010-11-25 23:58:00 +0800462 ---help---
Florian Fainellic23920b02012-10-08 15:11:33 +0200463 This option is deprecated now and the driver was removed, use
464 USB_OHCI_HCD_PLATFORM instead.
465
Mac Lin760efe62010-11-25 23:58:00 +0800466 Enable support for the CNS3XXX SOC's on-chip OHCI controller.
467 It is needed for low-speed USB 1.0 device support.
468
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100469config USB_OHCI_HCD_PLATFORM
470 bool "Generic OHCI driver for a platform device"
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100471 default n
472 ---help---
473 Adds an OHCI host driver for a generic platform device, which
Peter Meerwald898d8282012-08-18 15:53:12 +0200474 provides a memory space and an irq.
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100475
476 If unsure, say N.
477
Florian Fainelli3ad3ca02013-04-09 14:29:28 +0200478config USB_OCTEON_OHCI
479 bool "Octeon on-chip OHCI support"
480 depends on CPU_CAVIUM_OCTEON
481 default USB_OCTEON_EHCI
482 select USB_OHCI_BIG_ENDIAN_MMIO
483 select USB_OHCI_LITTLE_ENDIAN
484 help
485 Enable support for the Octeon II SOC's on-chip OHCI
486 controller. It is needed for low-speed USB 1.0 device
487 support. All CN6XXX based chips with USB are supported.
488
Hauke Mehrtens7a7a4a592012-03-13 01:04:48 +0100489
Benjamin Herrenschmidt11d1a4a2006-12-15 06:54:03 +1100490config USB_OHCI_BIG_ENDIAN_DESC
491 bool
Benjamin Herrenschmidt11d1a4a2006-12-15 06:54:03 +1100492 default n
493
494config USB_OHCI_BIG_ENDIAN_MMIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 default n
497
498config USB_OHCI_LITTLE_ENDIAN
499 bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 default n if STB03xxx || PPC_MPC52xx
501 default y
502
Florian Fainelli3ad3ca02013-04-09 14:29:28 +0200503endif # USB_OHCI_HCD
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505config USB_UHCI_HCD
506 tristate "UHCI HCD (most Intel and VIA) support"
Florian Fainelli25e11ec2013-04-09 14:29:25 +0200507 depends on PCI || SPARC_LEON || ARCH_VT8500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 ---help---
509 The Universal Host Controller Interface is a standard by Intel for
510 accessing the USB hardware in the PC (which is also called the USB
511 host controller). If your USB host controller conforms to this
512 standard, you may want to say Y, but see below. All recent boards
513 with Intel PCI chipsets (like intel 430TX, 440FX, 440LX, 440BX,
514 i810, i820) conform to this standard. Also all VIA PCI chipsets
515 (like VIA VP2, VP3, MVP3, Apollo Pro, Apollo Pro II or Apollo Pro
Jan Andersson3db77392011-05-06 12:00:18 +0200516 133) and LEON/GRLIB SoCs with the GRUSBHC controller.
517 If unsure, say Y.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 To compile this driver as a module, choose M here: the
520 module will be called uhci-hcd.
521
Jan Anderssond3219d12011-05-06 12:00:17 +0200522config USB_UHCI_SUPPORT_NON_PCI_HC
523 bool
524 depends on USB_UHCI_HCD
Tony Prisk100d4592012-07-21 22:58:53 +1200525 default y if (SPARC_LEON || ARCH_VT8500)
526
527config USB_UHCI_PLATFORM
528 bool "Generic UHCI Platform Driver support"
529 depends on USB_UHCI_SUPPORT_NON_PCI_HC
530 default y if ARCH_VT8500
531 ---help---
532 Enable support for generic UHCI platform devices that require no
533 additional configuration.
Jan Anderssond3219d12011-05-06 12:00:17 +0200534
Jan Andersson8452c672011-05-18 10:44:49 +0200535config USB_UHCI_BIG_ENDIAN_MMIO
536 bool
Jan Anderssonfda928a2011-05-18 10:44:53 +0200537 depends on USB_UHCI_SUPPORT_NON_PCI_HC && SPARC_LEON
538 default y
Jan Andersson8452c672011-05-18 10:44:49 +0200539
Jan Andersson51e2f622011-05-18 10:44:51 +0200540config USB_UHCI_BIG_ENDIAN_DESC
541 bool
Jan Anderssonfda928a2011-05-18 10:44:53 +0200542 depends on USB_UHCI_SUPPORT_NON_PCI_HC && SPARC_LEON
543 default y
Jan Andersson51e2f622011-05-18 10:44:51 +0200544
Anton Vorontsov236dd4d2009-01-10 05:03:21 +0300545config USB_FHCI_HCD
546 tristate "Freescale QE USB Host Controller support"
Florian Fainelli25e11ec2013-04-09 14:29:25 +0200547 depends on OF_GPIO && QE_GPIO && QUICC_ENGINE
Anton Vorontsov236dd4d2009-01-10 05:03:21 +0300548 select FSL_GTM
549 select QE_USB
550 help
551 This driver enables support for Freescale QE USB Host Controller
552 (as found on MPC8360 and MPC8323 processors), the driver supports
553 Full and Low Speed USB.
554
555config FHCI_DEBUG
556 bool "Freescale QE USB Host Controller debug support"
557 depends on USB_FHCI_HCD && DEBUG_FS
558 help
559 Say "y" to see some FHCI debug information and statistics
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300560 through debugfs.
Anton Vorontsov236dd4d2009-01-10 05:03:21 +0300561
Tony Olechd774efe2006-09-13 11:27:35 +0100562config USB_U132_HCD
563 tristate "Elan U132 Adapter Host Controller"
Florian Fainelli25e11ec2013-04-09 14:29:25 +0200564 depends on USB_FTDI_ELAN
Tony Olechd774efe2006-09-13 11:27:35 +0100565 default M
566 help
567 The U132 adapter is a USB to CardBus adapter specifically designed
568 for PC cards that contain an OHCI host controller. Typical PC cards
569 are the Orange Mobile 3G Option GlobeTrotter Fusion card. The U132
570 adapter will *NOT* work with PC cards that do not contain an OHCI
571 controller.
572
Matt LaPlante3cb2fcc2006-11-30 05:22:59 +0100573 For those PC cards that contain multiple OHCI controllers only the
Tony Olechd774efe2006-09-13 11:27:35 +0100574 first one is used.
575
576 The driver consists of two modules, the "ftdi-elan" module is a
577 USB client driver that interfaces to the FTDI chip within ELAN's
578 USB-to-PCMCIA adapter, and this "u132-hcd" module is a USB host
579 controller driver that talks to the OHCI controller within the
580 CardBus cards that are inserted in the U132 adapter.
581
582 This driver has been tested with a CardBus OHCI USB adapter, and
583 worked with a USB PEN Drive inserted into the first USB port of
584 the PCCARD. A rather pointless thing to do, but useful for testing.
585
586 It is safe to say M here.
587
588 See also <http://www.elandigitalsystems.com/support/ufaq/u132linux.php>
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590config USB_SL811_HCD
591 tristate "SL811HS HCD support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 help
593 The SL811HS is a single-port USB controller that supports either
594 host side or peripheral side roles. Enable this option if your
595 board has this chip, and you want to use it as a host controller.
596 If unsure, say N.
597
598 To compile this driver as a module, choose M here: the
599 module will be called sl811-hcd.
600
Mike Frysingerad7c56f2011-03-22 15:35:39 -0400601config USB_SL811_HCD_ISO
602 bool "partial ISO support"
603 depends on USB_SL811_HCD
604 help
605 The driver doesn't support iso_frame_desc (yet), but for some simple
606 devices that just queue one ISO frame per URB, then ISO transfers
607 "should" work using the normal urb status fields.
608
609 If unsure, say N.
610
David Brownellc6de2b62005-05-26 05:55:55 -0700611config USB_SL811_CS
612 tristate "CF/PCMCIA support for SL811HS HCD"
613 depends on USB_SL811_HCD && PCMCIA
David Brownellc6de2b62005-05-26 05:55:55 -0700614 help
615 Wraps a PCMCIA driver around the SL811HS HCD, supporting the RATOC
616 REX-CFU1U CF card (often used with PDAs). If unsure, say N.
617
618 To compile this driver as a module, choose M here: the
619 module will be called "sl811_cs".
620
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900621config USB_R8A66597_HCD
M4rkusXXLfa0de2b2007-08-10 14:53:32 -0700622 tristate "R8A66597 HCD support"
Yoshihiro Shimoda5d304352007-05-10 13:18:19 +0900623 help
624 The R8A66597 is a USB 2.0 host and peripheral controller.
625
626 Enable this option if your board has this chip, and you want
627 to use it as a host controller. If unsure, say N.
628
629 To compile this driver as a module, choose M here: the
630 module will be called r8a66597-hcd.
631
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700632config USB_RENESAS_USBHS_HCD
633 tristate "Renesas USBHS HCD support"
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700634 depends on USB_RENESAS_USBHS
635 help
636 The Renesas USBHS is a USB 2.0 host and peripheral controller.
637
638 Enable this option if your board has this chip, and you want
639 to use it as a host controller. If unsure, say N.
640
641 To compile this driver as a module, choose M here: the
642 module will be called renesas-usbhs.
643
David Vrabel7e6133a2008-09-17 16:34:28 +0100644config USB_WHCI_HCD
Greg Kroah-Hartmaneb83be92012-09-14 21:15:50 -0700645 tristate "Wireless USB Host Controller Interface (WHCI) driver"
Randy Dunlap36f8ecb2012-01-27 15:47:03 -0800646 depends on PCI && USB && UWB
David Vrabel7e6133a2008-09-17 16:34:28 +0100647 select USB_WUSB
648 select UWB_WHCI
649 help
650 A driver for PCI-based Wireless USB Host Controllers that are
651 compliant with the WHCI specification.
652
653 To compile this driver a module, choose M here: the module
654 will be called "whci-hcd".
Inaky Perez-Gonzalezd09318b2008-09-17 16:34:30 +0100655
656config USB_HWA_HCD
Greg Kroah-Hartmaneb83be92012-09-14 21:15:50 -0700657 tristate "Host Wire Adapter (HWA) driver"
Florian Fainelli25e11ec2013-04-09 14:29:25 +0200658 depends on UWB
Inaky Perez-Gonzalezd09318b2008-09-17 16:34:30 +0100659 select USB_WUSB
660 select UWB_HWA
661 help
662 This driver enables you to connect Wireless USB devices to
663 your system using a Host Wire Adaptor USB dongle. This is an
664 UWB Radio Controller and WUSB Host Controller connected to
665 your machine via USB (specified in WUSB1.0).
666
667 To compile this driver a module, choose M here: the module
668 will be called "hwa-hc".
Martin Fuzzey23d3e7a2009-11-21 12:14:48 +0100669
670config USB_IMX21_HCD
Sascha Hauer5de9ec42011-08-24 08:41:10 +0200671 tristate "i.MX21 HCD support"
Florian Fainelli25e11ec2013-04-09 14:29:25 +0200672 depends on ARM && ARCH_MXC
Martin Fuzzey23d3e7a2009-11-21 12:14:48 +0100673 help
674 This driver enables support for the on-chip USB host in the
Sascha Hauer5de9ec42011-08-24 08:41:10 +0200675 i.MX21 processor.
Martin Fuzzey23d3e7a2009-11-21 12:14:48 +0100676
677 To compile this driver as a module, choose M here: the
678 module will be called "imx21-hcd".
679
David Daney1643acc2010-10-08 14:47:52 -0700680
David Daney1643acc2010-10-08 14:47:52 -0700681
682config USB_OCTEON2_COMMON
683 bool
684 default y if USB_OCTEON_EHCI || USB_OCTEON_OHCI
Hauke Mehrtens62e11d12012-03-15 23:49:57 +0100685
686config USB_HCD_BCMA
687 tristate "BCMA usb host driver"
Greg Kroah-Hartmaneb83be92012-09-14 21:15:50 -0700688 depends on BCMA
Hauke Mehrtens62e11d12012-03-15 23:49:57 +0100689 select USB_OHCI_HCD_PLATFORM if USB_OHCI_HCD
690 select USB_EHCI_HCD_PLATFORM if USB_EHCI_HCD
691 help
Jesper Dangaard Brouer71c421d2012-06-15 12:01:33 +0200692 Enable support for the EHCI and OCHI host controller on an bcma bus.
Hauke Mehrtens62e11d12012-03-15 23:49:57 +0100693 It converts the bcma driver into two platform device drivers
694 for ehci and ohci.
695
696 If unsure, say N.
Hauke Mehrtens7043c2c2012-03-15 23:49:58 +0100697
698config USB_HCD_SSB
699 tristate "SSB usb host driver"
Greg Kroah-Hartmaneb83be92012-09-14 21:15:50 -0700700 depends on SSB
Hauke Mehrtens7043c2c2012-03-15 23:49:58 +0100701 select USB_OHCI_HCD_PLATFORM if USB_OHCI_HCD
702 select USB_EHCI_HCD_PLATFORM if USB_EHCI_HCD
703 help
Jesper Dangaard Brouer71c421d2012-06-15 12:01:33 +0200704 Enable support for the EHCI and OCHI host controller on an bcma bus.
Hauke Mehrtens7043c2c2012-03-15 23:49:58 +0100705 It converts the bcma driver into two platform device drivers
706 for ehci and ohci.
707
708 If unsure, say N.