Config.in.usb 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. menu "USB support"
  2. depends on ADK_TARGET_WITH_USB || ADK_TARGET_SYSTEM_QEMU_X86_64 || ADK_TARGET_SYSTEM_QEMU_X86
  3. config ADK_KERNEL_USB_SUPPORT
  4. bool
  5. config ADK_KERNEL_USB_EHCI_ROOT_HUB_TT
  6. bool
  7. config ADK_KERNEL_USB_EHCI_TT_NEWSCHED
  8. bool
  9. config ADK_KERNEL_USB_GADGET
  10. tristate
  11. config ADK_KERNEL_USB_PHY
  12. bool
  13. config ADK_KERNEL_USB_MXS_PHY
  14. tristate
  15. select ADK_KERNEL_USB_PHY
  16. default m if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  17. default n
  18. config ADK_KERNEL_USB_OHCI_HCD_PLATFORM
  19. bool
  20. select ADK_KERNEL_USB_OHCI_HCD
  21. config ADK_KERNEL_USB_LIBUSUAL
  22. tristate
  23. config ADK_KERNEL_USB
  24. tristate "USB support"
  25. select ADK_KERNEL_NLS
  26. select ADK_KERNEL_USB_SUPPORT
  27. default m if ADK_TARGET_SYSTEM_PCENGINES_ALIX1C
  28. default m if ADK_TARGET_SYSTEM_PCENGINES_ALIX2D2
  29. default m if ADK_TARGET_SYSTEM_PCENGINES_ALIX2D13
  30. default m if ADK_TARGET_SYSTEM_IBM_X40
  31. default m if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  32. default m if ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20
  33. default m if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  34. default n
  35. help
  36. Universal Serial Bus (USB) is a specification for a serial bus
  37. subsystem which offers higher speeds and more features than the
  38. traditional PC serial port. The bus supplies power to peripherals
  39. and allows for hot swapping. Up to 127 USB peripherals can be
  40. connected to a single USB host in a tree structure.
  41. The USB host is the root of the tree, the peripherals are the
  42. leaves and the inner nodes are special USB devices called hubs.
  43. Most PCs now have USB host ports, used to connect peripherals
  44. such as scanners, keyboards, mice, modems, cameras, disks,
  45. flash memory, network links, and printers to the PC.
  46. Say Y here if your computer has a host-side USB port and you want
  47. to use USB devices. You then need to say Y to at least one of the
  48. Host Controller Driver (HCD) options below. Choose a USB 1.1
  49. controller, such as "UHCI HCD support" or "OHCI HCD support",
  50. and "EHCI HCD (USB 2.0) support" except for older systems that
  51. do not have USB 2.0 support. It doesn't normally hurt to select
  52. them all if you are not certain.
  53. If your system has a device-side USB port, used in the peripheral
  54. side of the USB protocol, see the "USB Gadget" framework instead.
  55. After choosing your HCD, then select drivers for the USB peripherals
  56. you'll be using. You may want to check out the information provided
  57. in <file:Documentation/usb/> and especially the links given in
  58. <file:Documentation/usb/usb-help.txt>.
  59. menu "USB controller support"
  60. config ADK_KERNEL_USB_EHCI_HCD
  61. tristate "Support for USB EHCI 2.0 controllers"
  62. select ADK_KERNEL_USB_EHCI_ROOT_HUB_TT
  63. select ADK_KERNEL_USB_EHCI_TT_NEWSCHED
  64. select ADK_KERNEL_USB_MXS_PHY if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  65. depends on !ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20
  66. depends on !ADK_TARGET_BOARD_BCM28XX
  67. depends on ADK_KERNEL_USB
  68. default m if ADK_TARGET_SYSTEM_PCENGINES_ALIX1C
  69. default m if ADK_TARGET_SYSTEM_PCENGINES_ALIX2D2
  70. default m if ADK_TARGET_SYSTEM_PCENGINES_ALIX2D13
  71. default m if ADK_TARGET_SYSTEM_IBM_X40
  72. default m if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  73. default m if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  74. default n
  75. help
  76. The Enhanced Host Controller Interface (EHCI) is standard for USB 2.0
  77. "high speed" (480 Mbit/sec, 60 Mbyte/sec) host controller hardware.
  78. If your USB host controller supports USB 2.0, you will likely want to
  79. configure this Host Controller Driver. At the time of this writing,
  80. the primary implementation of EHCI is a chip from NEC, widely available
  81. in add-on PCI cards, but implementations are in the works from other
  82. vendors including Intel and Philips. Motherboard support is appearing.
  83. EHCI controllers are packaged with "companion" host controllers (OHCI
  84. or UHCI) to handle USB 1.1 devices connected to root hub ports. Ports
  85. will connect to EHCI if the device is high speed, otherwise they
  86. connect to a companion controller. If you configure EHCI, you should
  87. probably configure the OHCI (for NEC and some other vendors) USB Host
  88. Controller Driver or UHCI (for Via motherboards) Host Controller
  89. Driver too.
  90. You may want to read <file:Documentation/usb/ehci.txt>.
  91. config ADK_KERNEL_USB_UHCI_HCD
  92. tristate "Support for UHCI controllers"
  93. depends on ADK_KERNEL_USB
  94. depends on !ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20
  95. depends on !ADK_TARGET_BOARD_BCM28XX
  96. default m if ADK_TARGET_SYSTEM_IBM_X40
  97. default m if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  98. default n
  99. help
  100. The Universal Host Controller Interface is a standard by Intel for
  101. accessing the USB hardware in the PC (which is also called the USB
  102. host controller). If your USB host controller conforms to this
  103. standard, you may want to say Y, but see below. All recent boards
  104. with Intel PCI chipsets (like intel 430TX, 440FX, 440LX, 440BX,
  105. i810, i820) conform to this standard. Also all VIA PCI chipsets
  106. (like VIA VP2, VP3, MVP3, Apollo Pro, Apollo Pro II or Apollo Pro
  107. 133). If unsure, say Y.
  108. config ADK_KERNEL_USB_OHCI_HCD
  109. tristate "Support for OHCI controllers"
  110. depends on ADK_KERNEL_USB
  111. depends on !ADK_TARGET_BOARD_BCM28XX
  112. default m if ADK_TARGET_SYSTEM_PCENGINES_ALIX1C
  113. default m if ADK_TARGET_SYSTEM_PCENGINES_ALIX2D2
  114. default m if ADK_TARGET_SYSTEM_PCENGINES_ALIX2D13
  115. default m if ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20
  116. default m if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  117. default n
  118. help
  119. The Open Host Controller Interface (OHCI) is a standard for accessing
  120. USB 1.1 host controller hardware. It does more in hardware than Intel's
  121. UHCI specification. If your USB host controller follows the OHCI spec,
  122. say Y. On most non-x86 systems, and on x86 hardware that's not using a
  123. USB controller from Intel or VIA, this is appropriate. If your host
  124. controller doesn't use PCI, this is probably appropriate. For a PCI
  125. based system where you're not sure, the "lspci -v" entry will list the
  126. right "prog-if" for your USB controller(s): EHCI, OHCI, or UHCI.
  127. config ADK_KERNEL_USB_DWCOTG
  128. bool "Support for DWCOTG controller"
  129. select ADK_KERNEL_USB
  130. depends on ADK_TARGET_BOARD_BCM28XX
  131. default y if ADK_TARGET_BOARD_BCM28XX
  132. default n
  133. help
  134. The Synopsis DWC controller is a dual-role
  135. host/peripheral/OTG ("On The Go") USB controllers.
  136. config ADK_KERNEL_USB_CHIPIDEA_UDC
  137. bool
  138. config ADK_KERNEL_USB_CHIPIDEA_HOST
  139. bool
  140. config ADK_KERNEL_USB_CHIPIDEA
  141. tristate "Support for ChipIdea controller"
  142. select ADK_KERNEL_USB_CHIPIDEA_UDC
  143. select ADK_KERNEL_USB_CHIPIDEA_HOST
  144. select ADK_KERNEL_USB_GADGET
  145. depends on ADK_KERNEL_USB_EHCI_HCD
  146. depends on ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  147. default m if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  148. default n
  149. config ADK_KERNEL_USB_ISP116X_HCD
  150. tristate "Support for ISP116X"
  151. depends on ADK_KERNEL_USB
  152. depends on !ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20
  153. depends on !ADK_TARGET_BOARD_BCM28XX
  154. help
  155. The ISP1160 and ISP1161 chips are USB host controllers. Enable this
  156. option if your board has this chip. If unsure, say N.
  157. This driver does not support isochronous transfers.
  158. config ADK_KERNEL_USB_SL811_HCD
  159. tristate "Support for SL811HS"
  160. depends on ADK_KERNEL_USB
  161. depends on !ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20
  162. depends on !ADK_TARGET_BOARD_BCM28XX
  163. default n
  164. help
  165. The SL811HS is a single-port USB controller that supports either
  166. host side or peripheral side roles. Enable this option if your
  167. board has this chip, and you want to use it as a host controller.
  168. If unsure, say N.
  169. endmenu
  170. menu "USB devices support"
  171. config ADK_KERNEL_USB_NET_DRIVERS
  172. tristate
  173. config ADK_KERNEL_USB_STORAGE
  174. tristate "Support for USB storage devices"
  175. select ADK_KERNEL_SCSI
  176. select ADK_KERNEL_BLK_DEV_SD
  177. config ADK_KERNEL_SND_USB_AUDIO
  178. tristate "Support for USB sound adapter"
  179. select ADK_KERNEL_SND
  180. select ADK_KERNEL_SND_USB
  181. select ADK_KERNEL_SND_RAWMIDI
  182. config ADK_KERNEL_USB_HSO
  183. tristate "Support for USB HSO devices"
  184. select ADK_KERNEL_RFKILL
  185. select ADK_KERNEL_USB_STORAGE
  186. config ADK_KERNEL_USB_PRINTER
  187. tristate "Support for USB printers"
  188. config ADK_KERNEL_USB_ACM
  189. tristate "Support for USB modems/isdn controllers"
  190. config ADK_KERNEL_USB_PEGASUS
  191. tristate "Support for USB Pegasus network cards"
  192. select ADK_KERNEL_USB_NET_DRIVERS
  193. config ADK_KERNEL_USB_SERIAL
  194. tristate "Support for USB-to-serial converters"
  195. help
  196. Say Y here if you have a USB device that provides normal serial
  197. ports, or acts like a serial device, and you want to connect it to
  198. your USB bus.
  199. Please read <file:Documentation/usb/usb-serial.txt> for more
  200. information on the specifics of the different devices that are
  201. supported, and on how to use them.
  202. config ADK_KERNEL_USB_SERIAL_BELKIN
  203. tristate "Support for Belkin USB-to-serial converters"
  204. depends on ADK_KERNEL_USB_SERIAL
  205. help
  206. Say Y here if you want to use a Belkin USB Serial single port
  207. adaptor (F5U103 is one of the model numbers) or the Peracom single
  208. port USB to serial adapter.
  209. config ADK_KERNEL_USB_SERIAL_FTDI_SIO
  210. tristate "Support for FTDI USB-to-serial converter"
  211. depends on ADK_KERNEL_USB_SERIAL
  212. help
  213. Say Y here if you want to use a FTDI SIO single port USB to serial
  214. converter device. The implementation I have is called the USC-1000.
  215. This driver has also be tested with the 245 and 232 devices.
  216. See <http://ftdi-usb-sio.sourceforge.net/> for more
  217. information on this driver and the device.
  218. config ADK_KERNEL_USB_SERIAL_MCT_U232
  219. tristate "Support for Magic Control Technology USB-to-Serial converters"
  220. depends on ADK_KERNEL_USB_SERIAL
  221. help
  222. Say Y here if you want to use a USB Serial single port adapter from
  223. Magic Control Technology Corp. (U232 is one of the model numbers).
  224. This driver also works with Sitecom U232-P25 and D-Link DU-H3SP USB
  225. BAY, Belkin F5U109, and Belkin F5U409 devices.
  226. config ADK_KERNEL_USB_SERIAL_PL2303
  227. tristate "Support for Prolific PL2303 USB-to-Serial converters"
  228. depends on ADK_KERNEL_USB_SERIAL
  229. help
  230. Say Y here if you want to use the PL2303 USB Serial single port
  231. adapter from Prolific.
  232. config ADK_KERNEL_USB_SERIAL_VISOR
  233. tristate "Support for Handspring Visor / Palm m50x / Sony Clie Driver"
  234. depends on ADK_KERNEL_USB_SERIAL
  235. help
  236. Say Y here if you want to connect to your HandSpring Visor, Palm
  237. m500 or m505 through its USB docking station. See
  238. <http://usbvisor.sourceforge.net/> for more information on using this
  239. driver.
  240. config ADK_KERNEL_USB_ATM
  241. tristate "Support for USB ATM devices"
  242. config ADK_KERNEL_USB_ATM_SPEEDTOUCH
  243. tristate "Support for USB Speedtouch ADSL modem"
  244. depends on ADK_KERNEL_USB_ATM
  245. config ADK_KERNEL_USB_SISUSBVGA
  246. tristate "USB 2.0 SVGA dongle support (Net2280/SiS315)"
  247. config ADK_KERNEL_USB_USBNET
  248. tristate
  249. endmenu
  250. endmenu