Kconfig 9.2 KB

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