Config.in.usb 13 KB

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