Kconfig 22 KB

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