Config.in.usb 11 KB

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