Config.in.usb 10 KB

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