Kconfig 25 KB

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