Kconfig 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. #
  2. # USB Host Controller Drivers
  3. #
  4. comment "USB Host Controller Drivers"
  5. depends on USB
  6. config USB_EHCI_HCD
  7. tristate "EHCI HCD (USB 2.0) support"
  8. depends on USB && USB_ARCH_HAS_EHCI
  9. ---help---
  10. The Enhanced Host Controller Interface (EHCI) is standard for USB 2.0
  11. "high speed" (480 Mbit/sec, 60 Mbyte/sec) host controller hardware.
  12. If your USB host controller supports USB 2.0, you will likely want to
  13. configure this Host Controller Driver. At the time of this writing,
  14. the primary implementation of EHCI is a chip from NEC, widely available
  15. in add-on PCI cards, but implementations are in the works from other
  16. vendors including Intel and Philips. Motherboard support is appearing.
  17. EHCI controllers are packaged with "companion" host controllers (OHCI
  18. or UHCI) to handle USB 1.1 devices connected to root hub ports. Ports
  19. will connect to EHCI if the device is high speed, otherwise they
  20. connect to a companion controller. If you configure EHCI, you should
  21. probably configure the OHCI (for NEC and some other vendors) USB Host
  22. Controller Driver or UHCI (for Via motherboards) Host Controller
  23. Driver too.
  24. You may want to read <file:Documentation/usb/ehci.txt>.
  25. To compile this driver as a module, choose M here: the
  26. module will be called ehci-hcd.
  27. config USB_EHCI_SPLIT_ISO
  28. bool "Full speed ISO transactions (EXPERIMENTAL)"
  29. depends on USB_EHCI_HCD && EXPERIMENTAL
  30. default n
  31. ---help---
  32. This code is new and hasn't been used with many different
  33. EHCI or USB 2.0 transaction translator implementations.
  34. It should work for ISO-OUT transfers, like audio.
  35. config USB_EHCI_ROOT_HUB_TT
  36. bool "Root Hub Transaction Translators (EXPERIMENTAL)"
  37. depends on USB_EHCI_HCD && EXPERIMENTAL
  38. ---help---
  39. Some EHCI chips have vendor-specific extensions to integrate
  40. transaction translators, so that no OHCI or UHCI companion
  41. controller is needed. It's safe to say "y" even if your
  42. controller doesn't support this feature.
  43. This supports the EHCI implementation that's originally
  44. from ARC, and has since changed hands a few times.
  45. config USB_EHCI_TT_NEWSCHED
  46. bool "Improved Transaction Translator scheduling (EXPERIMENTAL)"
  47. depends on USB_EHCI_HCD && EXPERIMENTAL
  48. ---help---
  49. This changes the periodic scheduling code to fill more of the low
  50. and full speed bandwidth available from the Transaction Translator
  51. (TT) in USB 2.0 hubs. Without this, only one transfer will be
  52. issued in each microframe, significantly reducing the number of
  53. periodic low/fullspeed transfers possible.
  54. If you have multiple periodic low/fullspeed devices connected to a
  55. highspeed USB hub which is connected to a highspeed USB Host
  56. Controller, and some of those devices will not work correctly
  57. (possibly due to "ENOSPC" or "-28" errors), say Y.
  58. If unsure, say N.
  59. config USB_EHCI_BIG_ENDIAN_MMIO
  60. bool
  61. depends on USB_EHCI_HCD && (PPC_CELLEB || PPC_PS3 || 440EPX)
  62. default y
  63. config USB_EHCI_BIG_ENDIAN_DESC
  64. bool
  65. depends on USB_EHCI_HCD && 440EPX
  66. default y
  67. config USB_EHCI_FSL
  68. bool
  69. depends on USB_EHCI_HCD
  70. select USB_EHCI_ROOT_HUB_TT
  71. default y if MPC834x || PPC_MPC831x
  72. ---help---
  73. Variation of ARC USB block used in some Freescale chips.
  74. config USB_EHCI_HCD_PPC_OF
  75. bool "EHCI support for PPC USB controller on OF platform bus"
  76. depends on USB_EHCI_HCD && PPC_OF
  77. default y
  78. ---help---
  79. Enables support for the USB controller present on the PowerPC
  80. OpenFirmware platform bus.
  81. config USB_ISP116X_HCD
  82. tristate "ISP116X HCD support"
  83. depends on USB
  84. ---help---
  85. The ISP1160 and ISP1161 chips are USB host controllers. Enable this
  86. option if your board has this chip. If unsure, say N.
  87. This driver does not support isochronous transfers.
  88. To compile this driver as a module, choose M here: the
  89. module will be called isp116x-hcd.
  90. config USB_OHCI_HCD
  91. tristate "OHCI HCD support"
  92. depends on USB && USB_ARCH_HAS_OHCI
  93. select ISP1301_OMAP if MACH_OMAP_H2 || MACH_OMAP_H3
  94. select I2C if ARCH_PNX4008
  95. ---help---
  96. The Open Host Controller Interface (OHCI) is a standard for accessing
  97. USB 1.1 host controller hardware. It does more in hardware than Intel's
  98. UHCI specification. If your USB host controller follows the OHCI spec,
  99. say Y. On most non-x86 systems, and on x86 hardware that's not using a
  100. USB controller from Intel or VIA, this is appropriate. If your host
  101. controller doesn't use PCI, this is probably appropriate. For a PCI
  102. based system where you're not sure, the "lspci -v" entry will list the
  103. right "prog-if" for your USB controller(s): EHCI, OHCI, or UHCI.
  104. To compile this driver as a module, choose M here: the
  105. module will be called ohci-hcd.
  106. config USB_OHCI_HCD_PPC_SOC
  107. bool "OHCI support for on-chip PPC USB controller"
  108. depends on USB_OHCI_HCD && (STB03xxx || PPC_MPC52xx)
  109. default y
  110. select USB_OHCI_BIG_ENDIAN_DESC
  111. select USB_OHCI_BIG_ENDIAN_MMIO
  112. ---help---
  113. Enables support for the USB controller on the MPC52xx or
  114. STB03xxx processor chip. If unsure, say Y.
  115. config USB_OHCI_HCD_PPC_OF
  116. bool "OHCI support for PPC USB controller on OF platform bus"
  117. depends on USB_OHCI_HCD && PPC_OF
  118. default y
  119. ---help---
  120. Enables support for the USB controller PowerPC present on the
  121. OpenFirmware platform bus.
  122. config USB_OHCI_HCD_PPC_OF_BE
  123. bool "Support big endian HC"
  124. depends on USB_OHCI_HCD_PPC_OF
  125. default y
  126. select USB_OHCI_BIG_ENDIAN_DESC
  127. select USB_OHCI_BIG_ENDIAN_MMIO
  128. config USB_OHCI_HCD_PPC_OF_LE
  129. bool "Support little endian HC"
  130. depends on USB_OHCI_HCD_PPC_OF
  131. default n
  132. select USB_OHCI_LITTLE_ENDIAN
  133. config USB_OHCI_HCD_PCI
  134. bool "OHCI support for PCI-bus USB controllers"
  135. depends on USB_OHCI_HCD && PCI && (STB03xxx || PPC_MPC52xx || USB_OHCI_HCD_PPC_OF)
  136. default y
  137. select USB_OHCI_LITTLE_ENDIAN
  138. ---help---
  139. Enables support for PCI-bus plug-in USB controller cards.
  140. If unsure, say Y.
  141. config USB_OHCI_HCD_SSB
  142. bool "OHCI support for Broadcom SSB OHCI core"
  143. depends on USB_OHCI_HCD && (SSB = y || SSB = USB_OHCI_HCD) && EXPERIMENTAL
  144. default n
  145. ---help---
  146. Support for the Sonics Silicon Backplane (SSB) attached
  147. Broadcom USB OHCI core.
  148. This device is present in some embedded devices with
  149. Broadcom based SSB bus.
  150. If unsure, say N.
  151. config USB_OHCI_BIG_ENDIAN_DESC
  152. bool
  153. depends on USB_OHCI_HCD
  154. default n
  155. config USB_OHCI_BIG_ENDIAN_MMIO
  156. bool
  157. depends on USB_OHCI_HCD
  158. default n
  159. config USB_OHCI_LITTLE_ENDIAN
  160. bool
  161. depends on USB_OHCI_HCD
  162. default n if STB03xxx || PPC_MPC52xx
  163. default y
  164. config USB_UHCI_HCD
  165. tristate "UHCI HCD (most Intel and VIA) support"
  166. depends on USB && PCI
  167. ---help---
  168. The Universal Host Controller Interface is a standard by Intel for
  169. accessing the USB hardware in the PC (which is also called the USB
  170. host controller). If your USB host controller conforms to this
  171. standard, you may want to say Y, but see below. All recent boards
  172. with Intel PCI chipsets (like intel 430TX, 440FX, 440LX, 440BX,
  173. i810, i820) conform to this standard. Also all VIA PCI chipsets
  174. (like VIA VP2, VP3, MVP3, Apollo Pro, Apollo Pro II or Apollo Pro
  175. 133). If unsure, say Y.
  176. To compile this driver as a module, choose M here: the
  177. module will be called uhci-hcd.
  178. config USB_U132_HCD
  179. tristate "Elan U132 Adapter Host Controller"
  180. depends on USB && USB_FTDI_ELAN
  181. default M
  182. help
  183. The U132 adapter is a USB to CardBus adapter specifically designed
  184. for PC cards that contain an OHCI host controller. Typical PC cards
  185. are the Orange Mobile 3G Option GlobeTrotter Fusion card. The U132
  186. adapter will *NOT* work with PC cards that do not contain an OHCI
  187. controller.
  188. For those PC cards that contain multiple OHCI controllers only the
  189. first one is used.
  190. The driver consists of two modules, the "ftdi-elan" module is a
  191. USB client driver that interfaces to the FTDI chip within ELAN's
  192. USB-to-PCMCIA adapter, and this "u132-hcd" module is a USB host
  193. controller driver that talks to the OHCI controller within the
  194. CardBus cards that are inserted in the U132 adapter.
  195. This driver has been tested with a CardBus OHCI USB adapter, and
  196. worked with a USB PEN Drive inserted into the first USB port of
  197. the PCCARD. A rather pointless thing to do, but useful for testing.
  198. It is safe to say M here.
  199. See also <http://www.elandigitalsystems.com/support/ufaq/u132linux.php>
  200. config USB_SL811_HCD
  201. tristate "SL811HS HCD support"
  202. depends on USB
  203. help
  204. The SL811HS is a single-port USB controller that supports either
  205. host side or peripheral side roles. Enable this option if your
  206. board has this chip, and you want to use it as a host controller.
  207. If unsure, say N.
  208. To compile this driver as a module, choose M here: the
  209. module will be called sl811-hcd.
  210. config USB_SL811_CS
  211. tristate "CF/PCMCIA support for SL811HS HCD"
  212. depends on USB_SL811_HCD && PCMCIA
  213. help
  214. Wraps a PCMCIA driver around the SL811HS HCD, supporting the RATOC
  215. REX-CFU1U CF card (often used with PDAs). If unsure, say N.
  216. To compile this driver as a module, choose M here: the
  217. module will be called "sl811_cs".
  218. config USB_R8A66597_HCD
  219. tristate "R8A66597 HCD support"
  220. depends on USB
  221. help
  222. The R8A66597 is a USB 2.0 host and peripheral controller.
  223. Enable this option if your board has this chip, and you want
  224. to use it as a host controller. If unsure, say N.
  225. To compile this driver as a module, choose M here: the
  226. module will be called r8a66597-hcd.