Kconfig 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  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 && PCI && 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_HCD_DEBUGGING
  25. bool "Debugging for the xHCI host controller"
  26. depends on USB_XHCI_HCD
  27. ---help---
  28. Say 'Y' to turn on debugging for the xHCI host controller driver.
  29. This will spew debugging output, even in interrupt context.
  30. This should only be used for debugging xHCI driver bugs.
  31. If unsure, say N.
  32. config USB_EHCI_HCD
  33. tristate "EHCI HCD (USB 2.0) support"
  34. depends on USB && USB_ARCH_HAS_EHCI
  35. ---help---
  36. The Enhanced Host Controller Interface (EHCI) is standard for USB 2.0
  37. "high speed" (480 Mbit/sec, 60 Mbyte/sec) host controller hardware.
  38. If your USB host controller supports USB 2.0, you will likely want to
  39. configure this Host Controller Driver.
  40. EHCI controllers are packaged with "companion" host controllers (OHCI
  41. or UHCI) to handle USB 1.1 devices connected to root hub ports. Ports
  42. will connect to EHCI if the device is high speed, otherwise they
  43. connect to a companion controller. If you configure EHCI, you should
  44. probably configure the OHCI (for NEC and some other vendors) USB Host
  45. Controller Driver or UHCI (for Via motherboards) Host Controller
  46. Driver too.
  47. You may want to read <file:Documentation/usb/ehci.txt>.
  48. To compile this driver as a module, choose M here: the
  49. module will be called ehci-hcd.
  50. config USB_EHCI_ROOT_HUB_TT
  51. bool "Root Hub Transaction Translators"
  52. depends on USB_EHCI_HCD
  53. ---help---
  54. Some EHCI chips have vendor-specific extensions to integrate
  55. transaction translators, so that no OHCI or UHCI companion
  56. controller is needed. It's safe to say "y" even if your
  57. controller doesn't support this feature.
  58. This supports the EHCI implementation that's originally
  59. from ARC, and has since changed hands a few times.
  60. config USB_EHCI_TT_NEWSCHED
  61. bool "Improved Transaction Translator scheduling"
  62. depends on USB_EHCI_HCD
  63. default y
  64. ---help---
  65. This changes the periodic scheduling code to fill more of the low
  66. and full speed bandwidth available from the Transaction Translator
  67. (TT) in USB 2.0 hubs. Without this, only one transfer will be
  68. issued in each microframe, significantly reducing the number of
  69. periodic low/fullspeed transfers possible.
  70. If you have multiple periodic low/fullspeed devices connected to a
  71. highspeed USB hub which is connected to a highspeed USB Host
  72. Controller, and some of those devices will not work correctly
  73. (possibly due to "ENOSPC" or "-28" errors), say Y. Conversely, if
  74. you have only one such device and it doesn't work, you could try
  75. saying N.
  76. If unsure, say Y.
  77. config USB_EHCI_BIG_ENDIAN_MMIO
  78. bool
  79. depends on USB_EHCI_HCD && (PPC_CELLEB || PPC_PS3 || 440EPX || \
  80. ARCH_IXP4XX || XPS_USB_HCD_XILINX || \
  81. PPC_MPC512x || CPU_CAVIUM_OCTEON)
  82. default y
  83. config USB_EHCI_BIG_ENDIAN_DESC
  84. bool
  85. depends on USB_EHCI_HCD && (440EPX || ARCH_IXP4XX || XPS_USB_HCD_XILINX || \
  86. PPC_MPC512x)
  87. default y
  88. config XPS_USB_HCD_XILINX
  89. bool "Use Xilinx usb host EHCI controller core"
  90. depends on USB_EHCI_HCD && (PPC32 || MICROBLAZE)
  91. select USB_EHCI_BIG_ENDIAN_DESC
  92. select USB_EHCI_BIG_ENDIAN_MMIO
  93. ---help---
  94. Xilinx xps USB host controller core is EHCI compilant and has
  95. transaction translator built-in. It can be configured to either
  96. support both high speed and full speed devices, or high speed
  97. devices only.
  98. config USB_FSL_MPH_DR_OF
  99. tristate
  100. config USB_EHCI_FSL
  101. bool "Support for Freescale on-chip EHCI USB controller"
  102. depends on USB_EHCI_HCD && FSL_SOC
  103. select USB_EHCI_ROOT_HUB_TT
  104. select USB_FSL_MPH_DR_OF if OF
  105. ---help---
  106. Variation of ARC USB block used in some Freescale chips.
  107. config USB_EHCI_MXC
  108. bool "Support for Freescale on-chip EHCI USB controller"
  109. depends on USB_EHCI_HCD && ARCH_MXC
  110. select USB_EHCI_ROOT_HUB_TT
  111. ---help---
  112. Variation of ARC USB block used in some Freescale chips.
  113. config USB_EHCI_HCD_OMAP
  114. bool "EHCI support for OMAP3 and later chips"
  115. depends on USB_EHCI_HCD && ARCH_OMAP
  116. default y
  117. --- help ---
  118. Enables support for the on-chip EHCI controller on
  119. OMAP3 and later chips.
  120. config USB_EHCI_MSM
  121. bool "Support for MSM on-chip EHCI USB controller"
  122. depends on USB_EHCI_HCD && ARCH_MSM
  123. select USB_EHCI_ROOT_HUB_TT
  124. select USB_MSM_OTG_72K
  125. ---help---
  126. Enables support for the USB Host controller present on the
  127. Qualcomm chipsets. Root Hub has inbuilt TT.
  128. This driver depends on OTG driver for PHY initialization,
  129. clock management, powering up VBUS, and power management.
  130. This driver is not supported on boards like trout which
  131. has an external PHY.
  132. config USB_EHCI_HCD_PPC_OF
  133. bool "EHCI support for PPC USB controller on OF platform bus"
  134. depends on USB_EHCI_HCD && PPC_OF
  135. default y
  136. ---help---
  137. Enables support for the USB controller present on the PowerPC
  138. OpenFirmware platform bus.
  139. config USB_W90X900_EHCI
  140. bool "W90X900(W90P910) EHCI support"
  141. depends on USB_EHCI_HCD && ARCH_W90X900
  142. ---help---
  143. Enables support for the W90X900 USB controller
  144. config USB_CNS3XXX_EHCI
  145. bool "Cavium CNS3XXX EHCI Module"
  146. depends on USB_EHCI_HCD && ARCH_CNS3XXX
  147. ---help---
  148. Enable support for the CNS3XXX SOC's on-chip EHCI controller.
  149. It is needed for high-speed (480Mbit/sec) USB 2.0 device
  150. support.
  151. config USB_OXU210HP_HCD
  152. tristate "OXU210HP HCD support"
  153. depends on USB
  154. ---help---
  155. The OXU210HP is an USB host/OTG/device controller. Enable this
  156. option if your board has this chip. If unsure, say N.
  157. This driver does not support isochronous transfers and doesn't
  158. implement OTG nor USB device controllers.
  159. To compile this driver as a module, choose M here: the
  160. module will be called oxu210hp-hcd.
  161. config USB_ISP116X_HCD
  162. tristate "ISP116X HCD support"
  163. depends on USB
  164. ---help---
  165. The ISP1160 and ISP1161 chips are USB host controllers. Enable this
  166. option if your board has this chip. If unsure, say N.
  167. This driver does not support isochronous transfers.
  168. To compile this driver as a module, choose M here: the
  169. module will be called isp116x-hcd.
  170. config USB_ISP1760_HCD
  171. tristate "ISP 1760 HCD support"
  172. depends on USB && EXPERIMENTAL
  173. ---help---
  174. The ISP1760 chip is a USB 2.0 host controller.
  175. This driver does not support isochronous transfers or OTG.
  176. This USB controller is usually attached to a non-DMA-Master
  177. capable bus. NXP's eval kit brings this chip on PCI card
  178. where the chip itself is behind a PLB to simulate such
  179. a bus.
  180. To compile this driver as a module, choose M here: the
  181. module will be called isp1760.
  182. config USB_ISP1362_HCD
  183. tristate "ISP1362 HCD support"
  184. depends on USB
  185. default N
  186. ---help---
  187. Supports the Philips ISP1362 chip as a host controller
  188. This driver does not support isochronous transfers.
  189. To compile this driver as a module, choose M here: the
  190. module will be called isp1362-hcd.
  191. config USB_OHCI_HCD
  192. tristate "OHCI HCD support"
  193. depends on USB && USB_ARCH_HAS_OHCI
  194. select ISP1301_OMAP if MACH_OMAP_H2 || MACH_OMAP_H3
  195. select USB_OTG_UTILS if ARCH_OMAP
  196. ---help---
  197. The Open Host Controller Interface (OHCI) is a standard for accessing
  198. USB 1.1 host controller hardware. It does more in hardware than Intel's
  199. UHCI specification. If your USB host controller follows the OHCI spec,
  200. say Y. On most non-x86 systems, and on x86 hardware that's not using a
  201. USB controller from Intel or VIA, this is appropriate. If your host
  202. controller doesn't use PCI, this is probably appropriate. For a PCI
  203. based system where you're not sure, the "lspci -v" entry will list the
  204. right "prog-if" for your USB controller(s): EHCI, OHCI, or UHCI.
  205. To compile this driver as a module, choose M here: the
  206. module will be called ohci-hcd.
  207. config USB_OHCI_HCD_OMAP1
  208. bool "OHCI support for OMAP1/2 chips"
  209. depends on USB_OHCI_HCD && (ARCH_OMAP1 || ARCH_OMAP2)
  210. default y
  211. ---help---
  212. Enables support for the OHCI controller on OMAP1/2 chips.
  213. config USB_OHCI_HCD_OMAP3
  214. bool "OHCI support for OMAP3 and later chips"
  215. depends on USB_OHCI_HCD && (ARCH_OMAP3 || ARCH_OMAP4)
  216. default y
  217. ---help---
  218. Enables support for the on-chip OHCI controller on
  219. OMAP3 and later chips.
  220. config USB_OHCI_HCD_PPC_SOC
  221. bool "OHCI support for on-chip PPC USB controller"
  222. depends on USB_OHCI_HCD && (STB03xxx || PPC_MPC52xx)
  223. default y
  224. select USB_OHCI_BIG_ENDIAN_DESC
  225. select USB_OHCI_BIG_ENDIAN_MMIO
  226. ---help---
  227. Enables support for the USB controller on the MPC52xx or
  228. STB03xxx processor chip. If unsure, say Y.
  229. config USB_OHCI_HCD_PPC_OF_BE
  230. bool "OHCI support for OF platform bus (big endian)"
  231. depends on USB_OHCI_HCD && PPC_OF
  232. select USB_OHCI_BIG_ENDIAN_DESC
  233. select USB_OHCI_BIG_ENDIAN_MMIO
  234. ---help---
  235. Enables support for big-endian USB controllers present on the
  236. OpenFirmware platform bus.
  237. config USB_OHCI_HCD_PPC_OF_LE
  238. bool "OHCI support for OF platform bus (little endian)"
  239. depends on USB_OHCI_HCD && PPC_OF
  240. select USB_OHCI_LITTLE_ENDIAN
  241. ---help---
  242. Enables support for little-endian USB controllers present on the
  243. OpenFirmware platform bus.
  244. config USB_OHCI_HCD_PPC_OF
  245. bool
  246. depends on USB_OHCI_HCD && PPC_OF
  247. default USB_OHCI_HCD_PPC_OF_BE || USB_OHCI_HCD_PPC_OF_LE
  248. config USB_OHCI_HCD_PCI
  249. bool "OHCI support for PCI-bus USB controllers"
  250. depends on USB_OHCI_HCD && PCI && (STB03xxx || PPC_MPC52xx || USB_OHCI_HCD_PPC_OF)
  251. default y
  252. select USB_OHCI_LITTLE_ENDIAN
  253. ---help---
  254. Enables support for PCI-bus plug-in USB controller cards.
  255. If unsure, say Y.
  256. config USB_OHCI_HCD_SSB
  257. bool "OHCI support for Broadcom SSB OHCI core"
  258. depends on USB_OHCI_HCD && (SSB = y || SSB = USB_OHCI_HCD) && EXPERIMENTAL
  259. default n
  260. ---help---
  261. Support for the Sonics Silicon Backplane (SSB) attached
  262. Broadcom USB OHCI core.
  263. This device is present in some embedded devices with
  264. Broadcom based SSB bus.
  265. If unsure, say N.
  266. config USB_CNS3XXX_OHCI
  267. bool "Cavium CNS3XXX OHCI Module"
  268. depends on USB_OHCI_HCD && ARCH_CNS3XXX
  269. ---help---
  270. Enable support for the CNS3XXX SOC's on-chip OHCI controller.
  271. It is needed for low-speed USB 1.0 device support.
  272. config USB_OHCI_BIG_ENDIAN_DESC
  273. bool
  274. depends on USB_OHCI_HCD
  275. default n
  276. config USB_OHCI_BIG_ENDIAN_MMIO
  277. bool
  278. depends on USB_OHCI_HCD
  279. default n
  280. config USB_OHCI_LITTLE_ENDIAN
  281. bool
  282. depends on USB_OHCI_HCD
  283. default n if STB03xxx || PPC_MPC52xx
  284. default y
  285. config USB_UHCI_HCD
  286. tristate "UHCI HCD (most Intel and VIA) support"
  287. depends on USB && PCI
  288. ---help---
  289. The Universal Host Controller Interface is a standard by Intel for
  290. accessing the USB hardware in the PC (which is also called the USB
  291. host controller). If your USB host controller conforms to this
  292. standard, you may want to say Y, but see below. All recent boards
  293. with Intel PCI chipsets (like intel 430TX, 440FX, 440LX, 440BX,
  294. i810, i820) conform to this standard. Also all VIA PCI chipsets
  295. (like VIA VP2, VP3, MVP3, Apollo Pro, Apollo Pro II or Apollo Pro
  296. 133). If unsure, say Y.
  297. To compile this driver as a module, choose M here: the
  298. module will be called uhci-hcd.
  299. config USB_FHCI_HCD
  300. tristate "Freescale QE USB Host Controller support"
  301. depends on USB && OF_GPIO && QE_GPIO && QUICC_ENGINE
  302. select FSL_GTM
  303. select QE_USB
  304. help
  305. This driver enables support for Freescale QE USB Host Controller
  306. (as found on MPC8360 and MPC8323 processors), the driver supports
  307. Full and Low Speed USB.
  308. config FHCI_DEBUG
  309. bool "Freescale QE USB Host Controller debug support"
  310. depends on USB_FHCI_HCD && DEBUG_FS
  311. help
  312. Say "y" to see some FHCI debug information and statistics
  313. throught debugfs.
  314. config USB_U132_HCD
  315. tristate "Elan U132 Adapter Host Controller"
  316. depends on USB && USB_FTDI_ELAN
  317. default M
  318. help
  319. The U132 adapter is a USB to CardBus adapter specifically designed
  320. for PC cards that contain an OHCI host controller. Typical PC cards
  321. are the Orange Mobile 3G Option GlobeTrotter Fusion card. The U132
  322. adapter will *NOT* work with PC cards that do not contain an OHCI
  323. controller.
  324. For those PC cards that contain multiple OHCI controllers only the
  325. first one is used.
  326. The driver consists of two modules, the "ftdi-elan" module is a
  327. USB client driver that interfaces to the FTDI chip within ELAN's
  328. USB-to-PCMCIA adapter, and this "u132-hcd" module is a USB host
  329. controller driver that talks to the OHCI controller within the
  330. CardBus cards that are inserted in the U132 adapter.
  331. This driver has been tested with a CardBus OHCI USB adapter, and
  332. worked with a USB PEN Drive inserted into the first USB port of
  333. the PCCARD. A rather pointless thing to do, but useful for testing.
  334. It is safe to say M here.
  335. See also <http://www.elandigitalsystems.com/support/ufaq/u132linux.php>
  336. config USB_SL811_HCD
  337. tristate "SL811HS HCD support"
  338. depends on USB
  339. help
  340. The SL811HS is a single-port USB controller that supports either
  341. host side or peripheral side roles. Enable this option if your
  342. board has this chip, and you want to use it as a host controller.
  343. If unsure, say N.
  344. To compile this driver as a module, choose M here: the
  345. module will be called sl811-hcd.
  346. config USB_SL811_CS
  347. tristate "CF/PCMCIA support for SL811HS HCD"
  348. depends on USB_SL811_HCD && PCMCIA
  349. help
  350. Wraps a PCMCIA driver around the SL811HS HCD, supporting the RATOC
  351. REX-CFU1U CF card (often used with PDAs). If unsure, say N.
  352. To compile this driver as a module, choose M here: the
  353. module will be called "sl811_cs".
  354. config USB_R8A66597_HCD
  355. tristate "R8A66597 HCD support"
  356. depends on USB
  357. help
  358. The R8A66597 is a USB 2.0 host and peripheral controller.
  359. Enable this option if your board has this chip, and you want
  360. to use it as a host controller. If unsure, say N.
  361. To compile this driver as a module, choose M here: the
  362. module will be called r8a66597-hcd.
  363. config USB_WHCI_HCD
  364. tristate "Wireless USB Host Controller Interface (WHCI) driver (EXPERIMENTAL)"
  365. depends on EXPERIMENTAL
  366. depends on PCI && USB
  367. select USB_WUSB
  368. select UWB_WHCI
  369. help
  370. A driver for PCI-based Wireless USB Host Controllers that are
  371. compliant with the WHCI specification.
  372. To compile this driver a module, choose M here: the module
  373. will be called "whci-hcd".
  374. config USB_HWA_HCD
  375. tristate "Host Wire Adapter (HWA) driver (EXPERIMENTAL)"
  376. depends on EXPERIMENTAL
  377. depends on USB
  378. select USB_WUSB
  379. select UWB_HWA
  380. help
  381. This driver enables you to connect Wireless USB devices to
  382. your system using a Host Wire Adaptor USB dongle. This is an
  383. UWB Radio Controller and WUSB Host Controller connected to
  384. your machine via USB (specified in WUSB1.0).
  385. To compile this driver a module, choose M here: the module
  386. will be called "hwa-hc".
  387. config USB_IMX21_HCD
  388. tristate "iMX21 HCD support"
  389. depends on USB && ARM && MACH_MX21
  390. help
  391. This driver enables support for the on-chip USB host in the
  392. iMX21 processor.
  393. To compile this driver as a module, choose M here: the
  394. module will be called "imx21-hcd".
  395. config USB_OCTEON_EHCI
  396. bool "Octeon on-chip EHCI support"
  397. depends on USB && USB_EHCI_HCD && CPU_CAVIUM_OCTEON
  398. default n
  399. select USB_EHCI_BIG_ENDIAN_MMIO
  400. help
  401. Enable support for the Octeon II SOC's on-chip EHCI
  402. controller. It is needed for high-speed (480Mbit/sec)
  403. USB 2.0 device support. All CN6XXX based chips with USB are
  404. supported.
  405. config USB_OCTEON_OHCI
  406. bool "Octeon on-chip OHCI support"
  407. depends on USB && USB_OHCI_HCD && CPU_CAVIUM_OCTEON
  408. default USB_OCTEON_EHCI
  409. select USB_OHCI_BIG_ENDIAN_MMIO
  410. select USB_OHCI_LITTLE_ENDIAN
  411. help
  412. Enable support for the Octeon II SOC's on-chip OHCI
  413. controller. It is needed for low-speed USB 1.0 device
  414. support. All CN6XXX based chips with USB are supported.
  415. config USB_OCTEON2_COMMON
  416. bool
  417. default y if USB_OCTEON_EHCI || USB_OCTEON_OHCI