Config.in.usb 11 KB

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