Config.in.usb 12 KB

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