Kconfig 26 KB

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