Kconfig 26 KB

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