Config.in.usb 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. menu "USB support"
  4. depends on ADK_TARGET_WITH_USB || ADK_TARGET_SYSTEM_QEMU_X86_64 || ADK_TARGET_SYSTEM_QEMU_X86
  5. config ADK_KERNEL_USB_SUPPORT
  6. bool
  7. config ADK_KERNEL_USB_EHCI_ROOT_HUB_TT
  8. bool
  9. config ADK_KERNEL_USB_EHCI_TT_NEWSCHED
  10. bool
  11. config ADK_KERNEL_USB_GADGET
  12. tristate
  13. config ADK_KERNEL_USB_PHY
  14. bool
  15. config ADK_KERNEL_USB_MXS_PHY
  16. tristate
  17. select ADK_KERNEL_USB_PHY
  18. default m if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  19. default n
  20. config ADK_KERNEL_USB_OHCI_HCD_PLATFORM
  21. bool
  22. select ADK_KERNEL_USB_OHCI_HCD
  23. config ADK_KERNEL_USB_LIBUSUAL
  24. tristate
  25. config ADK_KERNEL_USB_NET_DRIVERS
  26. bool
  27. config ADK_KERNEL_USB_USBNET
  28. select ADK_KERNEL_USB_NET_DRIVERS
  29. tristate
  30. config ADK_KERNEL_USB
  31. tristate "USB support"
  32. select ADK_KERNEL_NLS
  33. select ADK_KERNEL_USB_SUPPORT
  34. default m if ADK_TARGET_SYSTEM_PCENGINES_APU
  35. default m if ADK_TARGET_SYSTEM_PCENGINES_ALIX
  36. default m if ADK_TARGET_SYSTEM_IBM_X40
  37. default m if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  38. default m if ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20
  39. default m if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  40. default y if ADK_TARGET_SYSTEM_KINETIS_K70
  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. menu "USB controller support"
  67. config ADK_KERNEL_USB_EHCI_HCD
  68. tristate "Support for USB EHCI 2.0 controllers"
  69. select ADK_KERNEL_USB_EHCI_ROOT_HUB_TT
  70. select ADK_KERNEL_USB_EHCI_TT_NEWSCHED
  71. select ADK_KERNEL_USB_MXS_PHY if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  72. depends on !ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20
  73. depends on !ADK_TARGET_BOARD_BCM28XX
  74. depends on ADK_KERNEL_USB
  75. default m if ADK_TARGET_SYSTEM_PCENGINES_APU
  76. default m if ADK_TARGET_SYSTEM_PCENGINES_ALIX
  77. default m if ADK_TARGET_SYSTEM_IBM_X40
  78. default m if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  79. default m if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  80. default n
  81. help
  82. The Enhanced Host Controller Interface (EHCI) is standard for USB 2.0
  83. "high speed" (480 Mbit/sec, 60 Mbyte/sec) host controller hardware.
  84. If your USB host controller supports USB 2.0, you will likely want to
  85. configure this Host Controller Driver. At the time of this writing,
  86. the primary implementation of EHCI is a chip from NEC, widely available
  87. in add-on PCI cards, but implementations are in the works from other
  88. vendors including Intel and Philips. Motherboard support is appearing.
  89. EHCI controllers are packaged with "companion" host controllers (OHCI
  90. or UHCI) to handle USB 1.1 devices connected to root hub ports. Ports
  91. will connect to EHCI if the device is high speed, otherwise they
  92. connect to a companion controller. If you configure EHCI, you should
  93. probably configure the OHCI (for NEC and some other vendors) USB Host
  94. Controller Driver or UHCI (for Via motherboards) Host Controller
  95. Driver too.
  96. You may want to read <file:Documentation/usb/ehci.txt>.
  97. config ADK_KERNEL_USB_UHCI_HCD
  98. tristate "Support for UHCI controllers"
  99. depends on ADK_KERNEL_USB
  100. depends on !ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20
  101. depends on !ADK_TARGET_BOARD_BCM28XX
  102. default m if ADK_TARGET_SYSTEM_PCENGINES_APU
  103. default m if ADK_TARGET_SYSTEM_IBM_X40
  104. default m if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  105. default n
  106. help
  107. The Universal Host Controller Interface is a standard by Intel for
  108. accessing the USB hardware in the PC (which is also called the USB
  109. host controller). If your USB host controller conforms to this
  110. standard, you may want to say Y, but see below. All recent boards
  111. with Intel PCI chipsets (like intel 430TX, 440FX, 440LX, 440BX,
  112. i810, i820) conform to this standard. Also all VIA PCI chipsets
  113. (like VIA VP2, VP3, MVP3, Apollo Pro, Apollo Pro II or Apollo Pro
  114. 133). If unsure, say Y.
  115. config ADK_KERNEL_USB_OHCI_HCD
  116. tristate "Support for OHCI controllers"
  117. depends on ADK_KERNEL_USB
  118. depends on !ADK_TARGET_BOARD_BCM28XX
  119. default m if ADK_TARGET_SYSTEM_PCENGINES_APU
  120. default m if ADK_TARGET_SYSTEM_PCENGINES_ALIX
  121. default m if ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20
  122. default m if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  123. default n
  124. help
  125. The Open Host Controller Interface (OHCI) is a standard for accessing
  126. USB 1.1 host controller hardware. It does more in hardware than Intel's
  127. UHCI specification. If your USB host controller follows the OHCI spec,
  128. say Y. On most non-x86 systems, and on x86 hardware that's not using a
  129. USB controller from Intel or VIA, this is appropriate. If your host
  130. controller doesn't use PCI, this is probably appropriate. For a PCI
  131. based system where you're not sure, the "lspci -v" entry will list the
  132. right "prog-if" for your USB controller(s): EHCI, OHCI, or UHCI.
  133. config ADK_KERNEL_USB_DWCOTG
  134. bool "Support for DWCOTG controller"
  135. select ADK_KERNEL_USB
  136. depends on ADK_TARGET_BOARD_BCM28XX
  137. default y if ADK_TARGET_BOARD_BCM28XX
  138. default n
  139. help
  140. The Synopsis DWC controller is a dual-role
  141. host/peripheral/OTG ("On The Go") USB controllers.
  142. config ADK_KERNEL_USB_CHIPIDEA_UDC
  143. bool
  144. config ADK_KERNEL_USB_CHIPIDEA_HOST
  145. bool
  146. config ADK_KERNEL_USB_CHIPIDEA
  147. tristate "Support for ChipIdea controller"
  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. depends on ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  153. default m if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  154. default n
  155. config ADK_KERNEL_USB_ISP116X_HCD
  156. tristate "Support for ISP116X"
  157. depends on ADK_KERNEL_USB
  158. depends on !ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20
  159. depends on !ADK_TARGET_BOARD_BCM28XX
  160. help
  161. The ISP1160 and ISP1161 chips are USB host controllers. Enable this
  162. option if your board has this chip. If unsure, say N.
  163. This driver does not support isochronous transfers.
  164. config ADK_KERNEL_USB_SL811_HCD
  165. tristate "Support for SL811HS"
  166. depends on ADK_KERNEL_USB
  167. depends on !ADK_TARGET_SYSTEM_ACMESYSTEMS_FOXG20
  168. depends on !ADK_TARGET_BOARD_BCM28XX
  169. default n
  170. help
  171. The SL811HS is a single-port USB controller that supports either
  172. host side or peripheral side roles. Enable this option if your
  173. board has this chip, and you want to use it as a host controller.
  174. If unsure, say N.
  175. config ADK_KERNEL_USB_EHCI_MXC
  176. bool "Freescale EHCI MXC USB controller"
  177. depends on ADK_KERNEL_USB
  178. depends on ADK_TARGET_SYSTEM_KINETIS_K70
  179. select ADK_KERNEL_GPIOLIB
  180. default y if ADK_TARGET_SYSTEM_KINETIS_K70
  181. default n
  182. help
  183. Freescale USB controller.
  184. endmenu
  185. menu "USB devices support"
  186. config ADK_KERNEL_USB_STORAGE
  187. tristate "Support for USB storage devices"
  188. select ADK_KERNEL_SCSI
  189. select ADK_KERNEL_BLK_DEV_SD
  190. config ADK_KERNEL_SND_USB_AUDIO
  191. tristate "Support for USB sound adapter"
  192. select ADK_KERNEL_SND
  193. select ADK_KERNEL_SND_USB
  194. select ADK_KERNEL_SND_RAWMIDI
  195. config ADK_KERNEL_USB_HSO
  196. tristate "Support for USB HSO devices"
  197. select ADK_KERNEL_RFKILL
  198. select ADK_KERNEL_USB_STORAGE
  199. config ADK_KERNEL_USB_PRINTER
  200. tristate "Support for USB printers"
  201. config ADK_KERNEL_USB_ACM
  202. tristate "Support for USB modems/isdn controllers"
  203. config ADK_KERNEL_USB_PEGASUS
  204. tristate "Support for USB Pegasus network cards"
  205. select ADK_KERNEL_USB_NET_DRIVERS
  206. config ADK_KERNEL_USB_SERIAL
  207. tristate "Support for USB-to-serial converters"
  208. help
  209. Say Y here if you have a USB device that provides normal serial
  210. ports, or acts like a serial device, and you want to connect it to
  211. your USB bus.
  212. Please read <file:Documentation/usb/usb-serial.txt> for more
  213. information on the specifics of the different devices that are
  214. supported, and on how to use them.
  215. config ADK_KERNEL_USB_SERIAL_BELKIN
  216. tristate "Support for Belkin USB-to-serial converters"
  217. depends on ADK_KERNEL_USB_SERIAL
  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. tristate "Support for FTDI USB-to-serial converter"
  224. depends on ADK_KERNEL_USB_SERIAL
  225. help
  226. Say Y here if you want to use a FTDI SIO single port USB to serial
  227. converter device. The implementation I have is called the USC-1000.
  228. This driver has also be tested with the 245 and 232 devices.
  229. See <http://ftdi-usb-sio.sourceforge.net/> for more
  230. information on this driver and the device.
  231. config ADK_KERNEL_USB_SERIAL_MCT_U232
  232. tristate "Support for Magic Control Technology USB-to-Serial converters"
  233. depends on ADK_KERNEL_USB_SERIAL
  234. help
  235. Say Y here if you want to use a USB Serial single port adapter from
  236. Magic Control Technology Corp. (U232 is one of the model numbers).
  237. This driver also works with Sitecom U232-P25 and D-Link DU-H3SP USB
  238. BAY, Belkin F5U109, and Belkin F5U409 devices.
  239. config ADK_KERNEL_USB_SERIAL_PL2303
  240. tristate "Support for Prolific PL2303 USB-to-Serial converters"
  241. depends on ADK_KERNEL_USB_SERIAL
  242. help
  243. Say Y here if you want to use the PL2303 USB Serial single port
  244. adapter from Prolific.
  245. config ADK_KERNEL_USB_SERIAL_VISOR
  246. tristate "Support for Handspring Visor / Palm m50x / Sony Clie Driver"
  247. depends on ADK_KERNEL_USB_SERIAL
  248. help
  249. Say Y here if you want to connect to your HandSpring Visor, Palm
  250. m500 or m505 through its USB docking station. See
  251. <http://usbvisor.sourceforge.net/> for more information on using this
  252. driver.
  253. config ADK_KERNEL_USB_SERIAL_SIERRAWIRELESS
  254. tristate "Support for Sierra Wireless USB-to-Serial converters"
  255. depends on ADK_KERNEL_USB_SERIAL
  256. config ADK_KERNEL_USB_ATM
  257. tristate "Support for USB ATM devices"
  258. config ADK_KERNEL_USB_ATM_SPEEDTOUCH
  259. tristate "Support for USB Speedtouch ADSL modem"
  260. depends on ADK_KERNEL_USB_ATM
  261. config ADK_KERNEL_USB_SISUSBVGA
  262. tristate "USB 2.0 SVGA dongle support (Net2280/SiS315)"
  263. config ADK_KERNEL_USB_NET_QMI_WWAN
  264. tristate "Qualcomm LTE modems"
  265. select ADK_KERNEL_USB_USBNET
  266. help
  267. config ADK_KERNEL_USB_SIERRA_NET
  268. tristate "Sierra Wireless MC8775 PCI Express"
  269. select ADK_KERNEL_USB_USBNET
  270. help
  271. Driver for WWAN modem Sierra Wireless MC8775 PCI Express
  272. endmenu
  273. endmenu