Kconfig 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712
  1. #
  2. # USB Host Controller Drivers
  3. #
  4. comment "USB Host Controller Drivers"
  5. config USB_C67X00_HCD
  6. tristate "Cypress C67x00 HCD support"
  7. help
  8. The Cypress C67x00 (EZ-Host/EZ-OTG) chips are dual-role
  9. host/peripheral/OTG USB controllers.
  10. Enable this option to support this chip in host controller mode.
  11. If unsure, say N.
  12. To compile this driver as a module, choose M here: the
  13. module will be called c67x00.
  14. config USB_XHCI_HCD
  15. tristate "xHCI HCD (USB 3.0) support"
  16. ---help---
  17. The eXtensible Host Controller Interface (xHCI) is standard for USB 3.0
  18. "SuperSpeed" host controller hardware.
  19. To compile this driver as a module, choose M here: the
  20. module will be called xhci-hcd.
  21. if USB_XHCI_HCD
  22. config USB_XHCI_PLATFORM
  23. tristate
  24. config USB_XHCI_HCD_DEBUGGING
  25. bool "Debugging for the xHCI host controller"
  26. ---help---
  27. Say 'Y' to turn on debugging for the xHCI host controller driver.
  28. This will spew debugging output, even in interrupt context.
  29. This should only be used for debugging xHCI driver bugs.
  30. If unsure, say N.
  31. endif # USB_XHCI_HCD
  32. config USB_EHCI_HCD
  33. tristate "EHCI HCD (USB 2.0) support"
  34. ---help---
  35. The Enhanced Host Controller Interface (EHCI) is standard for USB 2.0
  36. "high speed" (480 Mbit/sec, 60 Mbyte/sec) host controller hardware.
  37. If your USB host controller supports USB 2.0, you will likely want to
  38. configure this Host Controller Driver.
  39. EHCI controllers are packaged with "companion" host controllers (OHCI
  40. or UHCI) to handle USB 1.1 devices connected to root hub ports. Ports
  41. will connect to EHCI if the device is high speed, otherwise they
  42. connect to a companion controller. If you configure EHCI, you should
  43. probably configure the OHCI (for NEC and some other vendors) USB Host
  44. Controller Driver or UHCI (for Via motherboards) Host Controller
  45. Driver too.
  46. You may want to read <file:Documentation/usb/ehci.txt>.
  47. To compile this driver as a module, choose M here: the
  48. module will be called ehci-hcd.
  49. config USB_EHCI_ROOT_HUB_TT
  50. bool "Root Hub Transaction Translators"
  51. depends on USB_EHCI_HCD || USB_CHIPIDEA_HOST
  52. ---help---
  53. Some EHCI chips have vendor-specific extensions to integrate
  54. transaction translators, so that no OHCI or UHCI companion
  55. controller is needed. It's safe to say "y" even if your
  56. controller doesn't support this feature.
  57. This supports the EHCI implementation that's originally
  58. from ARC, and has since changed hands a few times.
  59. config USB_EHCI_TT_NEWSCHED
  60. bool "Improved Transaction Translator scheduling"
  61. depends on USB_EHCI_HCD || USB_CHIPIDEA_HOST
  62. default y
  63. ---help---
  64. This changes the periodic scheduling code to fill more of the low
  65. and full speed bandwidth available from the Transaction Translator
  66. (TT) in USB 2.0 hubs. Without this, only one transfer will be
  67. issued in each microframe, significantly reducing the number of
  68. periodic low/fullspeed transfers possible.
  69. If you have multiple periodic low/fullspeed devices connected to a
  70. highspeed USB hub which is connected to a highspeed USB Host
  71. Controller, and some of those devices will not work correctly
  72. (possibly due to "ENOSPC" or "-28" errors), say Y. Conversely, if
  73. you have only one such device and it doesn't work, you could try
  74. saying N.
  75. If unsure, say Y.
  76. config USB_FSL_MPH_DR_OF
  77. tristate
  78. if USB_EHCI_HCD
  79. config USB_EHCI_PCI
  80. tristate
  81. depends on PCI
  82. default y
  83. config USB_EHCI_HCD_PMC_MSP
  84. tristate "EHCI support for on-chip PMC MSP71xx USB controller"
  85. depends on MSP_HAS_USB
  86. default n
  87. select USB_EHCI_BIG_ENDIAN_DESC
  88. select USB_EHCI_BIG_ENDIAN_MMIO
  89. ---help---
  90. Enables support for the onchip USB controller on the PMC_MSP7100 Family SoC's.
  91. If unsure, say N.
  92. config USB_EHCI_BIG_ENDIAN_MMIO
  93. bool
  94. config USB_EHCI_BIG_ENDIAN_DESC
  95. bool
  96. config XPS_USB_HCD_XILINX
  97. bool "Use Xilinx usb host EHCI controller core"
  98. depends on (PPC32 || MICROBLAZE)
  99. select USB_EHCI_BIG_ENDIAN_DESC
  100. select USB_EHCI_BIG_ENDIAN_MMIO
  101. ---help---
  102. Xilinx xps USB host controller core is EHCI compilant and has
  103. transaction translator built-in. It can be configured to either
  104. support both high speed and full speed devices, or high speed
  105. devices only.
  106. config USB_EHCI_FSL
  107. bool "Support for Freescale PPC on-chip EHCI USB controller"
  108. depends on FSL_SOC
  109. select USB_EHCI_ROOT_HUB_TT
  110. select USB_FSL_MPH_DR_OF if OF
  111. ---help---
  112. Variation of ARC USB block used in some Freescale chips.
  113. config USB_EHCI_MXC
  114. tristate "Support for Freescale i.MX on-chip EHCI USB controller"
  115. depends on ARCH_MXC
  116. select USB_EHCI_ROOT_HUB_TT
  117. ---help---
  118. Variation of ARC USB block used in some Freescale chips.
  119. config USB_EHCI_HCD_OMAP
  120. tristate "EHCI support for OMAP3 and later chips"
  121. depends on ARCH_OMAP
  122. default y
  123. ---help---
  124. Enables support for the on-chip EHCI controller on
  125. OMAP3 and later chips.
  126. If your system uses a PHY on the USB port, you will need to
  127. enable USB_PHY and the appropriate PHY driver as well. Most
  128. boards need the NOP_USB_XCEIV PHY driver.
  129. config USB_EHCI_HCD_ORION
  130. tristate "Support for Marvell EBU on-chip EHCI USB controller"
  131. depends on USB_EHCI_HCD && PLAT_ORION
  132. default y
  133. ---help---
  134. Enables support for the on-chip EHCI controller on Marvell's
  135. embedded ARM SoCs, including Orion, Kirkwood, Dove, Armada XP,
  136. Armada 370. This is different from the EHCI implementation
  137. on Marvell's mobile PXA and MMP SoC, see "EHCI support for
  138. Marvell PXA/MMP USB controller" for those.
  139. config USB_EHCI_HCD_SPEAR
  140. tristate "Support for ST SPEAr on-chip EHCI USB controller"
  141. depends on USB_EHCI_HCD && PLAT_SPEAR
  142. default y
  143. ---help---
  144. Enables support for the on-chip EHCI controller on
  145. ST SPEAr chips.
  146. config USB_EHCI_HCD_AT91
  147. tristate "Support for Atmel on-chip EHCI USB controller"
  148. depends on USB_EHCI_HCD && ARCH_AT91
  149. default y
  150. ---help---
  151. Enables support for the on-chip EHCI controller on
  152. Atmel chips.
  153. config USB_EHCI_MSM
  154. tristate "Support for Qualcomm QSD/MSM on-chip EHCI USB controller"
  155. depends on ARCH_MSM
  156. depends on USB_PHY
  157. select USB_EHCI_ROOT_HUB_TT
  158. select USB_MSM_OTG
  159. ---help---
  160. Enables support for the USB Host controller present on the
  161. Qualcomm chipsets. Root Hub has inbuilt TT.
  162. This driver depends on OTG driver for PHY initialization,
  163. clock management, powering up VBUS, and power management.
  164. This driver is not supported on boards like trout which
  165. has an external PHY.
  166. config USB_EHCI_TEGRA
  167. tristate "NVIDIA Tegra HCD support"
  168. depends on ARCH_TEGRA
  169. select USB_EHCI_ROOT_HUB_TT
  170. select USB_PHY
  171. help
  172. This driver enables support for the internal USB Host Controllers
  173. found in NVIDIA Tegra SoCs. The controllers are EHCI compliant.
  174. config USB_EHCI_HCD_PPC_OF
  175. bool "EHCI support for PPC USB controller on OF platform bus"
  176. depends on PPC_OF
  177. default y
  178. ---help---
  179. Enables support for the USB controller present on the PowerPC
  180. OpenFirmware platform bus.
  181. config USB_EHCI_SH
  182. bool "EHCI support for SuperH USB controller"
  183. depends on SUPERH
  184. ---help---
  185. Enables support for the on-chip EHCI controller on the SuperH.
  186. If you use the PCI EHCI controller, this option is not necessary.
  187. config USB_EHCI_S5P
  188. tristate "EHCI support for Samsung S5P/EXYNOS SoC Series"
  189. depends on PLAT_S5P || ARCH_EXYNOS
  190. help
  191. Enable support for the Samsung S5Pxxxx and Exynos3/4/5 SOC's
  192. on-chip EHCI controller.
  193. config USB_EHCI_MV
  194. bool "EHCI support for Marvell PXA/MMP USB controller"
  195. depends on (ARCH_PXA || ARCH_MMP)
  196. select USB_EHCI_ROOT_HUB_TT
  197. ---help---
  198. Enables support for Marvell (including PXA and MMP series) on-chip
  199. USB SPH and OTG controller. SPH is a single port host, and it can
  200. only be EHCI host. OTG is controller that can switch to host mode.
  201. Note that this driver will not work on Marvell's other EHCI
  202. controller used by the EBU-type SoCs including Orion, Kirkwood,
  203. Dova, Armada 370 and Armada XP. See "Support for Marvell EBU
  204. on-chip EHCI USB controller" for those.
  205. config USB_W90X900_EHCI
  206. bool "W90X900(W90P910) EHCI support"
  207. depends on ARCH_W90X900
  208. ---help---
  209. Enables support for the W90X900 USB controller
  210. config USB_CNS3XXX_EHCI
  211. bool "Cavium CNS3XXX EHCI Module (DEPRECATED)"
  212. depends on ARCH_CNS3XXX
  213. select USB_EHCI_HCD_PLATFORM
  214. ---help---
  215. This option is deprecated now and the driver was removed, use
  216. USB_EHCI_HCD_PLATFORM instead.
  217. Enable support for the CNS3XXX SOC's on-chip EHCI controller.
  218. It is needed for high-speed (480Mbit/sec) USB 2.0 device
  219. support.
  220. config USB_EHCI_ATH79
  221. bool "EHCI support for AR7XXX/AR9XXX SoCs (DEPRECATED)"
  222. depends on (SOC_AR71XX || SOC_AR724X || SOC_AR913X || SOC_AR933X)
  223. select USB_EHCI_ROOT_HUB_TT
  224. select USB_EHCI_HCD_PLATFORM
  225. default y
  226. ---help---
  227. This option is deprecated now and the driver was removed, use
  228. USB_EHCI_HCD_PLATFORM instead.
  229. Enables support for the built-in EHCI controller present
  230. on the Atheros AR7XXX/AR9XXX SoCs.
  231. config USB_EHCI_HCD_PLATFORM
  232. tristate "Generic EHCI driver for a platform device"
  233. default n
  234. ---help---
  235. Adds an EHCI host driver for a generic platform device, which
  236. provides a memory space and an irq.
  237. If unsure, say N.
  238. config USB_OCTEON_EHCI
  239. bool "Octeon on-chip EHCI support"
  240. depends on CAVIUM_OCTEON_SOC
  241. default n
  242. select USB_EHCI_BIG_ENDIAN_MMIO
  243. help
  244. Enable support for the Octeon II SOC's on-chip EHCI
  245. controller. It is needed for high-speed (480Mbit/sec)
  246. USB 2.0 device support. All CN6XXX based chips with USB are
  247. supported.
  248. endif # USB_EHCI_HCD
  249. config USB_OXU210HP_HCD
  250. tristate "OXU210HP HCD support"
  251. depends on GENERIC_HARDIRQS
  252. ---help---
  253. The OXU210HP is an USB host/OTG/device controller. Enable this
  254. option if your board has this chip. If unsure, say N.
  255. This driver does not support isochronous transfers and doesn't
  256. implement OTG nor USB device controllers.
  257. To compile this driver as a module, choose M here: the
  258. module will be called oxu210hp-hcd.
  259. config USB_ISP116X_HCD
  260. tristate "ISP116X HCD support"
  261. ---help---
  262. The ISP1160 and ISP1161 chips are USB host controllers. Enable this
  263. option if your board has this chip. If unsure, say N.
  264. This driver does not support isochronous transfers.
  265. To compile this driver as a module, choose M here: the
  266. module will be called isp116x-hcd.
  267. config USB_ISP1760_HCD
  268. tristate "ISP 1760 HCD support"
  269. ---help---
  270. The ISP1760 chip is a USB 2.0 host controller.
  271. This driver does not support isochronous transfers or OTG.
  272. This USB controller is usually attached to a non-DMA-Master
  273. capable bus. NXP's eval kit brings this chip on PCI card
  274. where the chip itself is behind a PLB to simulate such
  275. a bus.
  276. To compile this driver as a module, choose M here: the
  277. module will be called isp1760.
  278. config USB_ISP1362_HCD
  279. tristate "ISP1362 HCD support"
  280. default N
  281. ---help---
  282. Supports the Philips ISP1362 chip as a host controller
  283. This driver does not support isochronous transfers.
  284. To compile this driver as a module, choose M here: the
  285. module will be called isp1362-hcd.
  286. config USB_FUSBH200_HCD
  287. tristate "FUSBH200 HCD support"
  288. depends on USB
  289. default N
  290. ---help---
  291. Faraday FUSBH200 is designed to meet USB2.0 EHCI specification
  292. with minor modification.
  293. To compile this driver as a module, choose M here: the
  294. module will be called fusbh200-hcd.
  295. config USB_OHCI_HCD
  296. tristate "OHCI HCD (USB 1.1) support"
  297. select ISP1301_OMAP if MACH_OMAP_H2 || MACH_OMAP_H3
  298. depends on USB_ISP1301 || !ARCH_LPC32XX
  299. ---help---
  300. The Open Host Controller Interface (OHCI) is a standard for accessing
  301. USB 1.1 host controller hardware. It does more in hardware than Intel's
  302. UHCI specification. If your USB host controller follows the OHCI spec,
  303. say Y. On most non-x86 systems, and on x86 hardware that's not using a
  304. USB controller from Intel or VIA, this is appropriate. If your host
  305. controller doesn't use PCI, this is probably appropriate. For a PCI
  306. based system where you're not sure, the "lspci -v" entry will list the
  307. right "prog-if" for your USB controller(s): EHCI, OHCI, or UHCI.
  308. To compile this driver as a module, choose M here: the
  309. module will be called ohci-hcd.
  310. if USB_OHCI_HCD
  311. config USB_OHCI_HCD_OMAP1
  312. bool "OHCI support for OMAP1/2 chips"
  313. depends on ARCH_OMAP1
  314. default y
  315. ---help---
  316. Enables support for the OHCI controller on OMAP1/2 chips.
  317. config USB_OHCI_HCD_OMAP3
  318. bool "OHCI support for OMAP3 and later chips"
  319. depends on (ARCH_OMAP3 || ARCH_OMAP4)
  320. default y
  321. ---help---
  322. Enables support for the on-chip OHCI controller on
  323. OMAP3 and later chips.
  324. config USB_OHCI_ATH79
  325. bool "USB OHCI support for the Atheros AR71XX/AR7240 SoCs (DEPRECATED)"
  326. depends on (SOC_AR71XX || SOC_AR724X)
  327. select USB_OHCI_HCD_PLATFORM
  328. default y
  329. help
  330. This option is deprecated now and the driver was removed, use
  331. USB_OHCI_HCD_PLATFORM instead.
  332. Enables support for the built-in OHCI controller present on the
  333. Atheros AR71XX/AR7240 SoCs.
  334. config USB_OHCI_HCD_PPC_OF_BE
  335. bool "OHCI support for OF platform bus (big endian)"
  336. depends on PPC_OF
  337. select USB_OHCI_BIG_ENDIAN_DESC
  338. select USB_OHCI_BIG_ENDIAN_MMIO
  339. ---help---
  340. Enables support for big-endian USB controllers present on the
  341. OpenFirmware platform bus.
  342. config USB_OHCI_HCD_PPC_OF_LE
  343. bool "OHCI support for OF platform bus (little endian)"
  344. depends on PPC_OF
  345. select USB_OHCI_LITTLE_ENDIAN
  346. ---help---
  347. Enables support for little-endian USB controllers present on the
  348. OpenFirmware platform bus.
  349. config USB_OHCI_HCD_PPC_OF
  350. bool
  351. depends on PPC_OF
  352. default USB_OHCI_HCD_PPC_OF_BE || USB_OHCI_HCD_PPC_OF_LE
  353. config USB_OHCI_HCD_PCI
  354. tristate "OHCI support for PCI-bus USB controllers"
  355. depends on PCI
  356. default y
  357. select USB_OHCI_LITTLE_ENDIAN
  358. ---help---
  359. Enables support for PCI-bus plug-in USB controller cards.
  360. If unsure, say Y.
  361. config USB_OHCI_HCD_SSB
  362. bool "OHCI support for Broadcom SSB OHCI core (DEPRECATED)"
  363. depends on (SSB = y || SSB = USB_OHCI_HCD)
  364. select USB_HCD_SSB
  365. select USB_OHCI_HCD_PLATFORM
  366. default n
  367. ---help---
  368. This option is deprecated now and the driver was removed, use
  369. USB_HCD_SSB and USB_OHCI_HCD_PLATFORM instead.
  370. Support for the Sonics Silicon Backplane (SSB) attached
  371. Broadcom USB OHCI core.
  372. This device is present in some embedded devices with
  373. Broadcom based SSB bus.
  374. If unsure, say N.
  375. config USB_OHCI_SH
  376. bool "OHCI support for SuperH USB controller (DEPRECATED)"
  377. depends on SUPERH
  378. select USB_OHCI_HCD_PLATFORM
  379. ---help---
  380. This option is deprecated now and the driver was removed, use
  381. USB_OHCI_HCD_PLATFORM instead.
  382. Enables support for the on-chip OHCI controller on the SuperH.
  383. If you use the PCI OHCI controller, this option is not necessary.
  384. config USB_OHCI_EXYNOS
  385. boolean "OHCI support for Samsung EXYNOS SoC Series"
  386. depends on ARCH_EXYNOS
  387. help
  388. Enable support for the Samsung Exynos SOC's on-chip OHCI controller.
  389. config USB_CNS3XXX_OHCI
  390. bool "Cavium CNS3XXX OHCI Module (DEPRECATED)"
  391. depends on ARCH_CNS3XXX
  392. select USB_OHCI_HCD_PLATFORM
  393. ---help---
  394. This option is deprecated now and the driver was removed, use
  395. USB_OHCI_HCD_PLATFORM instead.
  396. Enable support for the CNS3XXX SOC's on-chip OHCI controller.
  397. It is needed for low-speed USB 1.0 device support.
  398. config USB_OHCI_HCD_PLATFORM
  399. tristate "Generic OHCI driver for a platform device"
  400. default n
  401. ---help---
  402. Adds an OHCI host driver for a generic platform device, which
  403. provides a memory space and an irq.
  404. If unsure, say N.
  405. config USB_OCTEON_OHCI
  406. bool "Octeon on-chip OHCI support"
  407. depends on CAVIUM_OCTEON_SOC
  408. default USB_OCTEON_EHCI
  409. select USB_OHCI_BIG_ENDIAN_MMIO
  410. select USB_OHCI_LITTLE_ENDIAN
  411. help
  412. Enable support for the Octeon II SOC's on-chip OHCI
  413. controller. It is needed for low-speed USB 1.0 device
  414. support. All CN6XXX based chips with USB are supported.
  415. config USB_OHCI_BIG_ENDIAN_DESC
  416. bool
  417. default n
  418. config USB_OHCI_BIG_ENDIAN_MMIO
  419. bool
  420. default n
  421. config USB_OHCI_LITTLE_ENDIAN
  422. bool
  423. default n if STB03xxx || PPC_MPC52xx
  424. default y
  425. endif # USB_OHCI_HCD
  426. config USB_UHCI_HCD
  427. tristate "UHCI HCD (most Intel and VIA) support"
  428. depends on PCI || USB_UHCI_SUPPORT_NON_PCI_HC
  429. ---help---
  430. The Universal Host Controller Interface is a standard by Intel for
  431. accessing the USB hardware in the PC (which is also called the USB
  432. host controller). If your USB host controller conforms to this
  433. standard, you may want to say Y, but see below. All recent boards
  434. with Intel PCI chipsets (like intel 430TX, 440FX, 440LX, 440BX,
  435. i810, i820) conform to this standard. Also all VIA PCI chipsets
  436. (like VIA VP2, VP3, MVP3, Apollo Pro, Apollo Pro II or Apollo Pro
  437. 133) and LEON/GRLIB SoCs with the GRUSBHC controller.
  438. If unsure, say Y.
  439. To compile this driver as a module, choose M here: the
  440. module will be called uhci-hcd.
  441. config USB_UHCI_SUPPORT_NON_PCI_HC
  442. bool
  443. default y if (SPARC_LEON || USB_UHCI_PLATFORM)
  444. config USB_UHCI_PLATFORM
  445. bool
  446. default y if ARCH_VT8500
  447. config USB_UHCI_BIG_ENDIAN_MMIO
  448. bool
  449. default y if SPARC_LEON
  450. config USB_UHCI_BIG_ENDIAN_DESC
  451. bool
  452. default y if SPARC_LEON
  453. config USB_FHCI_HCD
  454. tristate "Freescale QE USB Host Controller support"
  455. depends on OF_GPIO && QE_GPIO && QUICC_ENGINE
  456. select FSL_GTM
  457. select QE_USB
  458. help
  459. This driver enables support for Freescale QE USB Host Controller
  460. (as found on MPC8360 and MPC8323 processors), the driver supports
  461. Full and Low Speed USB.
  462. config FHCI_DEBUG
  463. bool "Freescale QE USB Host Controller debug support"
  464. depends on USB_FHCI_HCD && DEBUG_FS
  465. help
  466. Say "y" to see some FHCI debug information and statistics
  467. through debugfs.
  468. config USB_U132_HCD
  469. tristate "Elan U132 Adapter Host Controller"
  470. depends on USB_FTDI_ELAN
  471. default M
  472. help
  473. The U132 adapter is a USB to CardBus adapter specifically designed
  474. for PC cards that contain an OHCI host controller. Typical PC cards
  475. are the Orange Mobile 3G Option GlobeTrotter Fusion card. The U132
  476. adapter will *NOT* work with PC cards that do not contain an OHCI
  477. controller.
  478. For those PC cards that contain multiple OHCI controllers only the
  479. first one is used.
  480. The driver consists of two modules, the "ftdi-elan" module is a
  481. USB client driver that interfaces to the FTDI chip within ELAN's
  482. USB-to-PCMCIA adapter, and this "u132-hcd" module is a USB host
  483. controller driver that talks to the OHCI controller within the
  484. CardBus cards that are inserted in the U132 adapter.
  485. This driver has been tested with a CardBus OHCI USB adapter, and
  486. worked with a USB PEN Drive inserted into the first USB port of
  487. the PCCARD. A rather pointless thing to do, but useful for testing.
  488. It is safe to say M here.
  489. See also <http://www.elandigitalsystems.com/support/ufaq/u132linux.php>
  490. config USB_SL811_HCD
  491. tristate "SL811HS HCD support"
  492. help
  493. The SL811HS is a single-port USB controller that supports either
  494. host side or peripheral side roles. Enable this option if your
  495. board has this chip, and you want to use it as a host controller.
  496. If unsure, say N.
  497. To compile this driver as a module, choose M here: the
  498. module will be called sl811-hcd.
  499. config USB_SL811_HCD_ISO
  500. bool "partial ISO support"
  501. depends on USB_SL811_HCD
  502. help
  503. The driver doesn't support iso_frame_desc (yet), but for some simple
  504. devices that just queue one ISO frame per URB, then ISO transfers
  505. "should" work using the normal urb status fields.
  506. If unsure, say N.
  507. config USB_SL811_CS
  508. tristate "CF/PCMCIA support for SL811HS HCD"
  509. depends on USB_SL811_HCD && PCMCIA
  510. help
  511. Wraps a PCMCIA driver around the SL811HS HCD, supporting the RATOC
  512. REX-CFU1U CF card (often used with PDAs). If unsure, say N.
  513. To compile this driver as a module, choose M here: the
  514. module will be called "sl811_cs".
  515. config USB_R8A66597_HCD
  516. tristate "R8A66597 HCD support"
  517. help
  518. The R8A66597 is a USB 2.0 host and peripheral controller.
  519. Enable this option if your board has this chip, and you want
  520. to use it as a host controller. If unsure, say N.
  521. To compile this driver as a module, choose M here: the
  522. module will be called r8a66597-hcd.
  523. config USB_RENESAS_USBHS_HCD
  524. tristate "Renesas USBHS HCD support"
  525. depends on USB_RENESAS_USBHS
  526. help
  527. The Renesas USBHS is a USB 2.0 host and peripheral controller.
  528. Enable this option if your board has this chip, and you want
  529. to use it as a host controller. If unsure, say N.
  530. To compile this driver as a module, choose M here: the
  531. module will be called renesas-usbhs.
  532. config USB_WHCI_HCD
  533. tristate "Wireless USB Host Controller Interface (WHCI) driver"
  534. depends on PCI && USB && UWB
  535. select USB_WUSB
  536. select UWB_WHCI
  537. help
  538. A driver for PCI-based Wireless USB Host Controllers that are
  539. compliant with the WHCI specification.
  540. To compile this driver a module, choose M here: the module
  541. will be called "whci-hcd".
  542. config USB_HWA_HCD
  543. tristate "Host Wire Adapter (HWA) driver"
  544. depends on UWB
  545. select USB_WUSB
  546. select UWB_HWA
  547. help
  548. This driver enables you to connect Wireless USB devices to
  549. your system using a Host Wire Adaptor USB dongle. This is an
  550. UWB Radio Controller and WUSB Host Controller connected to
  551. your machine via USB (specified in WUSB1.0).
  552. To compile this driver a module, choose M here: the module
  553. will be called "hwa-hc".
  554. config USB_IMX21_HCD
  555. tristate "i.MX21 HCD support"
  556. depends on ARM && ARCH_MXC
  557. help
  558. This driver enables support for the on-chip USB host in the
  559. i.MX21 processor.
  560. To compile this driver as a module, choose M here: the
  561. module will be called "imx21-hcd".
  562. config USB_OCTEON2_COMMON
  563. bool
  564. default y if USB_OCTEON_EHCI || USB_OCTEON_OHCI
  565. config USB_HCD_BCMA
  566. tristate "BCMA usb host driver"
  567. depends on BCMA
  568. select USB_OHCI_HCD_PLATFORM if USB_OHCI_HCD
  569. select USB_EHCI_HCD_PLATFORM if USB_EHCI_HCD
  570. help
  571. Enable support for the EHCI and OCHI host controller on an bcma bus.
  572. It converts the bcma driver into two platform device drivers
  573. for ehci and ohci.
  574. If unsure, say N.
  575. config USB_HCD_SSB
  576. tristate "SSB usb host driver"
  577. depends on SSB
  578. select USB_OHCI_HCD_PLATFORM if USB_OHCI_HCD
  579. select USB_EHCI_HCD_PLATFORM if USB_EHCI_HCD
  580. help
  581. Enable support for the EHCI and OCHI host controller on an bcma bus.
  582. It converts the bcma driver into two platform device drivers
  583. for ehci and ohci.
  584. If unsure, say N.