Kconfig 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670
  1. #
  2. # USB Host Controller Drivers
  3. #
  4. comment "USB Host Controller Drivers"
  5. depends on USB
  6. config USB_C67X00_HCD
  7. tristate "Cypress C67x00 HCD support"
  8. depends on USB
  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 (EXPERIMENTAL)"
  18. depends on USB && USB_ARCH_HAS_XHCI && EXPERIMENTAL
  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. config USB_XHCI_PLATFORM
  25. tristate
  26. depends on USB_XHCI_HCD
  27. config USB_XHCI_HCD_DEBUGGING
  28. bool "Debugging for the xHCI host controller"
  29. depends on USB_XHCI_HCD
  30. ---help---
  31. Say 'Y' to turn on debugging for the xHCI host controller driver.
  32. This will spew debugging output, even in interrupt context.
  33. This should only be used for debugging xHCI driver bugs.
  34. If unsure, say N.
  35. config USB_EHCI_HCD
  36. tristate "EHCI HCD (USB 2.0) support"
  37. depends on USB && USB_ARCH_HAS_EHCI
  38. ---help---
  39. The Enhanced Host Controller Interface (EHCI) is standard for USB 2.0
  40. "high speed" (480 Mbit/sec, 60 Mbyte/sec) host controller hardware.
  41. If your USB host controller supports USB 2.0, you will likely want to
  42. configure this Host Controller Driver.
  43. EHCI controllers are packaged with "companion" host controllers (OHCI
  44. or UHCI) to handle USB 1.1 devices connected to root hub ports. Ports
  45. will connect to EHCI if the device is high speed, otherwise they
  46. connect to a companion controller. If you configure EHCI, you should
  47. probably configure the OHCI (for NEC and some other vendors) USB Host
  48. Controller Driver or UHCI (for Via motherboards) Host Controller
  49. Driver too.
  50. You may want to read <file:Documentation/usb/ehci.txt>.
  51. To compile this driver as a module, choose M here: the
  52. module will be called ehci-hcd.
  53. config USB_EHCI_ROOT_HUB_TT
  54. bool "Root Hub Transaction Translators"
  55. depends on USB_EHCI_HCD
  56. ---help---
  57. Some EHCI chips have vendor-specific extensions to integrate
  58. transaction translators, so that no OHCI or UHCI companion
  59. controller is needed. It's safe to say "y" even if your
  60. controller doesn't support this feature.
  61. This supports the EHCI implementation that's originally
  62. from ARC, and has since changed hands a few times.
  63. config USB_EHCI_TT_NEWSCHED
  64. bool "Improved Transaction Translator scheduling"
  65. depends on USB_EHCI_HCD
  66. default y
  67. ---help---
  68. This changes the periodic scheduling code to fill more of the low
  69. and full speed bandwidth available from the Transaction Translator
  70. (TT) in USB 2.0 hubs. Without this, only one transfer will be
  71. issued in each microframe, significantly reducing the number of
  72. periodic low/fullspeed transfers possible.
  73. If you have multiple periodic low/fullspeed devices connected to a
  74. highspeed USB hub which is connected to a highspeed USB Host
  75. Controller, and some of those devices will not work correctly
  76. (possibly due to "ENOSPC" or "-28" errors), say Y. Conversely, if
  77. you have only one such device and it doesn't work, you could try
  78. saying N.
  79. If unsure, say Y.
  80. config USB_EHCI_HCD_PMC_MSP
  81. tristate "EHCI support for on-chip PMC MSP71xx USB controller"
  82. depends on USB_EHCI_HCD && MSP_HAS_USB
  83. default n
  84. select USB_EHCI_BIG_ENDIAN_DESC
  85. select USB_EHCI_BIG_ENDIAN_MMIO
  86. ---help---
  87. Enables support for the onchip USB controller on the PMC_MSP7100 Family SoC's.
  88. If unsure, say N.
  89. config USB_EHCI_BIG_ENDIAN_MMIO
  90. bool
  91. depends on USB_EHCI_HCD && (PPC_CELLEB || PPC_PS3 || 440EPX || \
  92. ARCH_IXP4XX || XPS_USB_HCD_XILINX || \
  93. PPC_MPC512x || CPU_CAVIUM_OCTEON || \
  94. PMC_MSP || SPARC_LEON || MIPS_SEAD3)
  95. default y
  96. config USB_EHCI_BIG_ENDIAN_DESC
  97. bool
  98. depends on USB_EHCI_HCD && (440EPX || ARCH_IXP4XX || XPS_USB_HCD_XILINX || \
  99. PPC_MPC512x || PMC_MSP || SPARC_LEON || \
  100. MIPS_SEAD3)
  101. default y
  102. config XPS_USB_HCD_XILINX
  103. bool "Use Xilinx usb host EHCI controller core"
  104. depends on USB_EHCI_HCD && (PPC32 || MICROBLAZE)
  105. select USB_EHCI_BIG_ENDIAN_DESC
  106. select USB_EHCI_BIG_ENDIAN_MMIO
  107. ---help---
  108. Xilinx xps USB host controller core is EHCI compilant and has
  109. transaction translator built-in. It can be configured to either
  110. support both high speed and full speed devices, or high speed
  111. devices only.
  112. config USB_FSL_MPH_DR_OF
  113. tristate
  114. config USB_EHCI_FSL
  115. bool "Support for Freescale PPC on-chip EHCI USB controller"
  116. depends on USB_EHCI_HCD && FSL_SOC
  117. select USB_EHCI_ROOT_HUB_TT
  118. select USB_FSL_MPH_DR_OF if OF
  119. ---help---
  120. Variation of ARC USB block used in some Freescale chips.
  121. config USB_EHCI_MXC
  122. bool "Support for Freescale i.MX on-chip EHCI USB controller"
  123. depends on USB_EHCI_HCD && ARCH_MXC
  124. select USB_EHCI_ROOT_HUB_TT
  125. ---help---
  126. Variation of ARC USB block used in some Freescale chips.
  127. config USB_EHCI_HCD_OMAP
  128. bool "EHCI support for OMAP3 and later chips"
  129. depends on USB_EHCI_HCD && ARCH_OMAP
  130. default y
  131. --- help ---
  132. Enables support for the on-chip EHCI controller on
  133. OMAP3 and later chips.
  134. config USB_EHCI_MSM
  135. bool "Support for MSM on-chip EHCI USB controller"
  136. depends on USB_EHCI_HCD && ARCH_MSM
  137. select USB_EHCI_ROOT_HUB_TT
  138. select USB_MSM_OTG
  139. ---help---
  140. Enables support for the USB Host controller present on the
  141. Qualcomm chipsets. Root Hub has inbuilt TT.
  142. This driver depends on OTG driver for PHY initialization,
  143. clock management, powering up VBUS, and power management.
  144. This driver is not supported on boards like trout which
  145. has an external PHY.
  146. config USB_EHCI_TEGRA
  147. boolean "NVIDIA Tegra HCD support"
  148. depends on USB_EHCI_HCD && ARCH_TEGRA
  149. select USB_EHCI_ROOT_HUB_TT
  150. help
  151. This driver enables support for the internal USB Host Controllers
  152. found in NVIDIA Tegra SoCs. The controllers are EHCI compliant.
  153. config USB_EHCI_HCD_PPC_OF
  154. bool "EHCI support for PPC USB controller on OF platform bus"
  155. depends on USB_EHCI_HCD && PPC_OF
  156. default y
  157. ---help---
  158. Enables support for the USB controller present on the PowerPC
  159. OpenFirmware platform bus.
  160. config USB_EHCI_SH
  161. bool "EHCI support for SuperH USB controller"
  162. depends on USB_EHCI_HCD && SUPERH
  163. ---help---
  164. Enables support for the on-chip EHCI controller on the SuperH.
  165. If you use the PCI EHCI controller, this option is not necessary.
  166. config USB_EHCI_S5P
  167. boolean "S5P EHCI support"
  168. depends on USB_EHCI_HCD && PLAT_S5P
  169. help
  170. Enable support for the S5P SOC's on-chip EHCI controller.
  171. config USB_EHCI_MV
  172. bool "EHCI support for Marvell on-chip controller"
  173. depends on USB_EHCI_HCD && (ARCH_PXA || ARCH_MMP)
  174. select USB_EHCI_ROOT_HUB_TT
  175. ---help---
  176. Enables support for Marvell (including PXA and MMP series) on-chip
  177. USB SPH and OTG controller. SPH is a single port host, and it can
  178. only be EHCI host. OTG is controller that can switch to host mode.
  179. config USB_W90X900_EHCI
  180. bool "W90X900(W90P910) EHCI support"
  181. depends on USB_EHCI_HCD && ARCH_W90X900
  182. ---help---
  183. Enables support for the W90X900 USB controller
  184. config USB_CNS3XXX_EHCI
  185. bool "Cavium CNS3XXX EHCI Module"
  186. depends on USB_EHCI_HCD && ARCH_CNS3XXX
  187. ---help---
  188. Enable support for the CNS3XXX SOC's on-chip EHCI controller.
  189. It is needed for high-speed (480Mbit/sec) USB 2.0 device
  190. support.
  191. config USB_EHCI_ATH79
  192. bool "EHCI support for AR7XXX/AR9XXX SoCs (DEPRECATED)"
  193. depends on USB_EHCI_HCD && (SOC_AR71XX || SOC_AR724X || SOC_AR913X || SOC_AR933X)
  194. select USB_EHCI_ROOT_HUB_TT
  195. select USB_EHCI_HCD_PLATFORM
  196. default y
  197. ---help---
  198. This option is deprecated now and the driver was removed, use
  199. USB_EHCI_HCD_PLATFORM instead.
  200. Enables support for the built-in EHCI controller present
  201. on the Atheros AR7XXX/AR9XXX SoCs.
  202. config USB_OXU210HP_HCD
  203. tristate "OXU210HP HCD support"
  204. depends on USB
  205. ---help---
  206. The OXU210HP is an USB host/OTG/device controller. Enable this
  207. option if your board has this chip. If unsure, say N.
  208. This driver does not support isochronous transfers and doesn't
  209. implement OTG nor USB device controllers.
  210. To compile this driver as a module, choose M here: the
  211. module will be called oxu210hp-hcd.
  212. config USB_ISP116X_HCD
  213. tristate "ISP116X HCD support"
  214. depends on USB
  215. ---help---
  216. The ISP1160 and ISP1161 chips are USB host controllers. Enable this
  217. option if your board has this chip. If unsure, say N.
  218. This driver does not support isochronous transfers.
  219. To compile this driver as a module, choose M here: the
  220. module will be called isp116x-hcd.
  221. config USB_ISP1760_HCD
  222. tristate "ISP 1760 HCD support"
  223. depends on USB && EXPERIMENTAL
  224. ---help---
  225. The ISP1760 chip is a USB 2.0 host controller.
  226. This driver does not support isochronous transfers or OTG.
  227. This USB controller is usually attached to a non-DMA-Master
  228. capable bus. NXP's eval kit brings this chip on PCI card
  229. where the chip itself is behind a PLB to simulate such
  230. a bus.
  231. To compile this driver as a module, choose M here: the
  232. module will be called isp1760.
  233. config USB_ISP1362_HCD
  234. tristate "ISP1362 HCD support"
  235. depends on USB
  236. default N
  237. ---help---
  238. Supports the Philips ISP1362 chip as a host controller
  239. This driver does not support isochronous transfers.
  240. To compile this driver as a module, choose M here: the
  241. module will be called isp1362-hcd.
  242. config USB_OHCI_HCD
  243. tristate "OHCI HCD support"
  244. depends on USB && USB_ARCH_HAS_OHCI
  245. select ISP1301_OMAP if MACH_OMAP_H2 || MACH_OMAP_H3
  246. select USB_OTG_UTILS if ARCH_OMAP
  247. ---help---
  248. The Open Host Controller Interface (OHCI) is a standard for accessing
  249. USB 1.1 host controller hardware. It does more in hardware than Intel's
  250. UHCI specification. If your USB host controller follows the OHCI spec,
  251. say Y. On most non-x86 systems, and on x86 hardware that's not using a
  252. USB controller from Intel or VIA, this is appropriate. If your host
  253. controller doesn't use PCI, this is probably appropriate. For a PCI
  254. based system where you're not sure, the "lspci -v" entry will list the
  255. right "prog-if" for your USB controller(s): EHCI, OHCI, or UHCI.
  256. To compile this driver as a module, choose M here: the
  257. module will be called ohci-hcd.
  258. config USB_OHCI_HCD_OMAP1
  259. bool "OHCI support for OMAP1/2 chips"
  260. depends on USB_OHCI_HCD && (ARCH_OMAP1 || ARCH_OMAP2)
  261. default y
  262. ---help---
  263. Enables support for the OHCI controller on OMAP1/2 chips.
  264. config USB_OHCI_HCD_OMAP3
  265. bool "OHCI support for OMAP3 and later chips"
  266. depends on USB_OHCI_HCD && (ARCH_OMAP3 || ARCH_OMAP4)
  267. default y
  268. ---help---
  269. Enables support for the on-chip OHCI controller on
  270. OMAP3 and later chips.
  271. config USB_OHCI_ATH79
  272. bool "USB OHCI support for the Atheros AR71XX/AR7240 SoCs (DEPRECATED)"
  273. depends on USB_OHCI_HCD && (SOC_AR71XX || SOC_AR724X)
  274. select USB_OHCI_HCD_PLATFORM
  275. default y
  276. help
  277. This option is deprecated now and the driver was removed, use
  278. USB_OHCI_HCD_PLATFORM instead.
  279. Enables support for the built-in OHCI controller present on the
  280. Atheros AR71XX/AR7240 SoCs.
  281. config USB_OHCI_HCD_PPC_SOC
  282. bool "OHCI support for on-chip PPC USB controller"
  283. depends on USB_OHCI_HCD && (STB03xxx || PPC_MPC52xx)
  284. default y
  285. select USB_OHCI_BIG_ENDIAN_DESC
  286. select USB_OHCI_BIG_ENDIAN_MMIO
  287. ---help---
  288. Enables support for the USB controller on the MPC52xx or
  289. STB03xxx processor chip. If unsure, say Y.
  290. config USB_OHCI_HCD_PPC_OF_BE
  291. bool "OHCI support for OF platform bus (big endian)"
  292. depends on USB_OHCI_HCD && PPC_OF
  293. select USB_OHCI_BIG_ENDIAN_DESC
  294. select USB_OHCI_BIG_ENDIAN_MMIO
  295. ---help---
  296. Enables support for big-endian USB controllers present on the
  297. OpenFirmware platform bus.
  298. config USB_OHCI_HCD_PPC_OF_LE
  299. bool "OHCI support for OF platform bus (little endian)"
  300. depends on USB_OHCI_HCD && PPC_OF
  301. select USB_OHCI_LITTLE_ENDIAN
  302. ---help---
  303. Enables support for little-endian USB controllers present on the
  304. OpenFirmware platform bus.
  305. config USB_OHCI_HCD_PPC_OF
  306. bool
  307. depends on USB_OHCI_HCD && PPC_OF
  308. default USB_OHCI_HCD_PPC_OF_BE || USB_OHCI_HCD_PPC_OF_LE
  309. config USB_OHCI_HCD_PCI
  310. bool "OHCI support for PCI-bus USB controllers"
  311. depends on USB_OHCI_HCD && PCI && (STB03xxx || PPC_MPC52xx || USB_OHCI_HCD_PPC_OF)
  312. default y
  313. select USB_OHCI_LITTLE_ENDIAN
  314. ---help---
  315. Enables support for PCI-bus plug-in USB controller cards.
  316. If unsure, say Y.
  317. config USB_OHCI_HCD_SSB
  318. bool "OHCI support for Broadcom SSB OHCI core (DEPRECATED)"
  319. depends on USB_OHCI_HCD && (SSB = y || SSB = USB_OHCI_HCD) && EXPERIMENTAL
  320. select USB_HCD_SSB
  321. select USB_OHCI_HCD_PLATFORM
  322. default n
  323. ---help---
  324. This option is deprecated now and the driver was removed, use
  325. USB_HCD_SSB and USB_OHCI_HCD_PLATFORM instead.
  326. Support for the Sonics Silicon Backplane (SSB) attached
  327. Broadcom USB OHCI core.
  328. This device is present in some embedded devices with
  329. Broadcom based SSB bus.
  330. If unsure, say N.
  331. config USB_OHCI_SH
  332. bool "OHCI support for SuperH USB controller"
  333. depends on USB_OHCI_HCD && SUPERH
  334. ---help---
  335. Enables support for the on-chip OHCI controller on the SuperH.
  336. If you use the PCI OHCI controller, this option is not necessary.
  337. config USB_OHCI_EXYNOS
  338. boolean "OHCI support for Samsung EXYNOS SoC Series"
  339. depends on USB_OHCI_HCD && ARCH_EXYNOS
  340. help
  341. Enable support for the Samsung Exynos SOC's on-chip OHCI controller.
  342. config USB_CNS3XXX_OHCI
  343. bool "Cavium CNS3XXX OHCI Module"
  344. depends on USB_OHCI_HCD && ARCH_CNS3XXX
  345. ---help---
  346. Enable support for the CNS3XXX SOC's on-chip OHCI controller.
  347. It is needed for low-speed USB 1.0 device support.
  348. config USB_OHCI_HCD_PLATFORM
  349. bool "Generic OHCI driver for a platform device"
  350. depends on USB_OHCI_HCD && EXPERIMENTAL
  351. default n
  352. ---help---
  353. Adds an OHCI host driver for a generic platform device, which
  354. provieds a memory space and an irq.
  355. If unsure, say N.
  356. config USB_EHCI_HCD_PLATFORM
  357. bool "Generic EHCI driver for a platform device"
  358. depends on USB_EHCI_HCD && EXPERIMENTAL
  359. default n
  360. ---help---
  361. Adds an EHCI host driver for a generic platform device, which
  362. provieds a memory space and an irq.
  363. If unsure, say N.
  364. config USB_OHCI_BIG_ENDIAN_DESC
  365. bool
  366. depends on USB_OHCI_HCD
  367. default n
  368. config USB_OHCI_BIG_ENDIAN_MMIO
  369. bool
  370. depends on USB_OHCI_HCD
  371. default n
  372. config USB_OHCI_LITTLE_ENDIAN
  373. bool
  374. depends on USB_OHCI_HCD
  375. default n if STB03xxx || PPC_MPC52xx
  376. default y
  377. config USB_UHCI_HCD
  378. tristate "UHCI HCD (most Intel and VIA) support"
  379. depends on USB && (PCI || SPARC_LEON)
  380. ---help---
  381. The Universal Host Controller Interface is a standard by Intel for
  382. accessing the USB hardware in the PC (which is also called the USB
  383. host controller). If your USB host controller conforms to this
  384. standard, you may want to say Y, but see below. All recent boards
  385. with Intel PCI chipsets (like intel 430TX, 440FX, 440LX, 440BX,
  386. i810, i820) conform to this standard. Also all VIA PCI chipsets
  387. (like VIA VP2, VP3, MVP3, Apollo Pro, Apollo Pro II or Apollo Pro
  388. 133) and LEON/GRLIB SoCs with the GRUSBHC controller.
  389. If unsure, say Y.
  390. To compile this driver as a module, choose M here: the
  391. module will be called uhci-hcd.
  392. config USB_UHCI_SUPPORT_NON_PCI_HC
  393. bool
  394. depends on USB_UHCI_HCD
  395. default y if SPARC_LEON
  396. config USB_UHCI_BIG_ENDIAN_MMIO
  397. bool
  398. depends on USB_UHCI_SUPPORT_NON_PCI_HC && SPARC_LEON
  399. default y
  400. config USB_UHCI_BIG_ENDIAN_DESC
  401. bool
  402. depends on USB_UHCI_SUPPORT_NON_PCI_HC && SPARC_LEON
  403. default y
  404. config USB_FHCI_HCD
  405. tristate "Freescale QE USB Host Controller support"
  406. depends on USB && OF_GPIO && QE_GPIO && QUICC_ENGINE
  407. select FSL_GTM
  408. select QE_USB
  409. help
  410. This driver enables support for Freescale QE USB Host Controller
  411. (as found on MPC8360 and MPC8323 processors), the driver supports
  412. Full and Low Speed USB.
  413. config FHCI_DEBUG
  414. bool "Freescale QE USB Host Controller debug support"
  415. depends on USB_FHCI_HCD && DEBUG_FS
  416. help
  417. Say "y" to see some FHCI debug information and statistics
  418. through debugfs.
  419. config USB_U132_HCD
  420. tristate "Elan U132 Adapter Host Controller"
  421. depends on USB && USB_FTDI_ELAN
  422. default M
  423. help
  424. The U132 adapter is a USB to CardBus adapter specifically designed
  425. for PC cards that contain an OHCI host controller. Typical PC cards
  426. are the Orange Mobile 3G Option GlobeTrotter Fusion card. The U132
  427. adapter will *NOT* work with PC cards that do not contain an OHCI
  428. controller.
  429. For those PC cards that contain multiple OHCI controllers only the
  430. first one is used.
  431. The driver consists of two modules, the "ftdi-elan" module is a
  432. USB client driver that interfaces to the FTDI chip within ELAN's
  433. USB-to-PCMCIA adapter, and this "u132-hcd" module is a USB host
  434. controller driver that talks to the OHCI controller within the
  435. CardBus cards that are inserted in the U132 adapter.
  436. This driver has been tested with a CardBus OHCI USB adapter, and
  437. worked with a USB PEN Drive inserted into the first USB port of
  438. the PCCARD. A rather pointless thing to do, but useful for testing.
  439. It is safe to say M here.
  440. See also <http://www.elandigitalsystems.com/support/ufaq/u132linux.php>
  441. config USB_SL811_HCD
  442. tristate "SL811HS HCD support"
  443. depends on USB
  444. help
  445. The SL811HS is a single-port USB controller that supports either
  446. host side or peripheral side roles. Enable this option if your
  447. board has this chip, and you want to use it as a host controller.
  448. If unsure, say N.
  449. To compile this driver as a module, choose M here: the
  450. module will be called sl811-hcd.
  451. config USB_SL811_HCD_ISO
  452. bool "partial ISO support"
  453. depends on USB_SL811_HCD
  454. help
  455. The driver doesn't support iso_frame_desc (yet), but for some simple
  456. devices that just queue one ISO frame per URB, then ISO transfers
  457. "should" work using the normal urb status fields.
  458. If unsure, say N.
  459. config USB_SL811_CS
  460. tristate "CF/PCMCIA support for SL811HS HCD"
  461. depends on USB_SL811_HCD && PCMCIA
  462. help
  463. Wraps a PCMCIA driver around the SL811HS HCD, supporting the RATOC
  464. REX-CFU1U CF card (often used with PDAs). If unsure, say N.
  465. To compile this driver as a module, choose M here: the
  466. module will be called "sl811_cs".
  467. config USB_R8A66597_HCD
  468. tristate "R8A66597 HCD support"
  469. depends on USB
  470. help
  471. The R8A66597 is a USB 2.0 host and peripheral controller.
  472. Enable this option if your board has this chip, and you want
  473. to use it as a host controller. If unsure, say N.
  474. To compile this driver as a module, choose M here: the
  475. module will be called r8a66597-hcd.
  476. config USB_RENESAS_USBHS_HCD
  477. tristate "Renesas USBHS HCD support"
  478. depends on USB
  479. depends on USB_RENESAS_USBHS
  480. help
  481. The Renesas USBHS is a USB 2.0 host and peripheral controller.
  482. Enable this option if your board has this chip, and you want
  483. to use it as a host controller. If unsure, say N.
  484. To compile this driver as a module, choose M here: the
  485. module will be called renesas-usbhs.
  486. config USB_WHCI_HCD
  487. tristate "Wireless USB Host Controller Interface (WHCI) driver (EXPERIMENTAL)"
  488. depends on EXPERIMENTAL
  489. depends on PCI && USB && UWB
  490. select USB_WUSB
  491. select UWB_WHCI
  492. help
  493. A driver for PCI-based Wireless USB Host Controllers that are
  494. compliant with the WHCI specification.
  495. To compile this driver a module, choose M here: the module
  496. will be called "whci-hcd".
  497. config USB_HWA_HCD
  498. tristate "Host Wire Adapter (HWA) driver (EXPERIMENTAL)"
  499. depends on EXPERIMENTAL
  500. depends on USB && UWB
  501. select USB_WUSB
  502. select UWB_HWA
  503. help
  504. This driver enables you to connect Wireless USB devices to
  505. your system using a Host Wire Adaptor USB dongle. This is an
  506. UWB Radio Controller and WUSB Host Controller connected to
  507. your machine via USB (specified in WUSB1.0).
  508. To compile this driver a module, choose M here: the module
  509. will be called "hwa-hc".
  510. config USB_IMX21_HCD
  511. tristate "i.MX21 HCD support"
  512. depends on USB && ARM && ARCH_MXC
  513. help
  514. This driver enables support for the on-chip USB host in the
  515. i.MX21 processor.
  516. To compile this driver as a module, choose M here: the
  517. module will be called "imx21-hcd".
  518. config USB_OCTEON_EHCI
  519. bool "Octeon on-chip EHCI support"
  520. depends on USB && USB_EHCI_HCD && CPU_CAVIUM_OCTEON
  521. default n
  522. select USB_EHCI_BIG_ENDIAN_MMIO
  523. help
  524. Enable support for the Octeon II SOC's on-chip EHCI
  525. controller. It is needed for high-speed (480Mbit/sec)
  526. USB 2.0 device support. All CN6XXX based chips with USB are
  527. supported.
  528. config USB_OCTEON_OHCI
  529. bool "Octeon on-chip OHCI support"
  530. depends on USB && USB_OHCI_HCD && CPU_CAVIUM_OCTEON
  531. default USB_OCTEON_EHCI
  532. select USB_OHCI_BIG_ENDIAN_MMIO
  533. select USB_OHCI_LITTLE_ENDIAN
  534. help
  535. Enable support for the Octeon II SOC's on-chip OHCI
  536. controller. It is needed for low-speed USB 1.0 device
  537. support. All CN6XXX based chips with USB are supported.
  538. config USB_OCTEON2_COMMON
  539. bool
  540. default y if USB_OCTEON_EHCI || USB_OCTEON_OHCI
  541. config USB_HCD_BCMA
  542. tristate "BCMA usb host driver"
  543. depends on BCMA && EXPERIMENTAL
  544. select USB_OHCI_HCD_PLATFORM if USB_OHCI_HCD
  545. select USB_EHCI_HCD_PLATFORM if USB_EHCI_HCD
  546. help
  547. Enbale support for the EHCI and OCHI host controller on an bcma bus.
  548. It converts the bcma driver into two platform device drivers
  549. for ehci and ohci.
  550. If unsure, say N.
  551. config USB_HCD_SSB
  552. tristate "SSB usb host driver"
  553. depends on SSB && EXPERIMENTAL
  554. select USB_OHCI_HCD_PLATFORM if USB_OHCI_HCD
  555. select USB_EHCI_HCD_PLATFORM if USB_EHCI_HCD
  556. help
  557. Enbale support for the EHCI and OCHI host controller on an bcma bus.
  558. It converts the bcma driver into two platform device drivers
  559. for ehci and ohci.
  560. If unsure, say N.