Kconfig 22 KB

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