Kconfig 22 KB

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