Kconfig 25 KB

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