Kconfig 25 KB

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