Kconfig 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576
  1. #
  2. # USB Serial device configuration
  3. #
  4. menuconfig USB_SERIAL
  5. tristate "USB Serial Converter support"
  6. depends on USB
  7. ---help---
  8. Say Y here if you have a USB device that provides normal serial
  9. ports, or acts like a serial device, and you want to connect it to
  10. your USB bus.
  11. Please read <file:Documentation/usb/usb-serial.txt> for more
  12. information on the specifics of the different devices that are
  13. supported, and on how to use them.
  14. To compile this driver as a module, choose M here: the
  15. module will be called usbserial.
  16. if USB_SERIAL
  17. config USB_SERIAL_CONSOLE
  18. bool "USB Serial Console device support"
  19. depends on USB_SERIAL=y
  20. ---help---
  21. If you say Y here, it will be possible to use a USB to serial
  22. converter port as the system console (the system console is the
  23. device which receives all kernel messages and warnings and which
  24. allows logins in single user mode). This could be useful if some
  25. terminal or printer is connected to that serial port.
  26. Even if you say Y here, the currently visible virtual console
  27. (/dev/tty0) will still be used as the system console by default, but
  28. you can alter that using a kernel command line option such as
  29. "console=ttyUSB0". (Try "man bootparam" or see the documentation of
  30. your boot loader (lilo or loadlin) about how to pass options to the
  31. kernel at boot time.)
  32. If you don't have a VGA card installed and you say Y here, the
  33. kernel will automatically use the first USB to serial converter
  34. port, /dev/ttyUSB0, as system console.
  35. If unsure, say N.
  36. config USB_EZUSB
  37. bool "Functions for loading firmware on EZUSB chips"
  38. help
  39. Say Y here if you need EZUSB device support.
  40. config USB_SERIAL_GENERIC
  41. bool "USB Generic Serial Driver"
  42. help
  43. Say Y here if you want to use the generic USB serial driver. Please
  44. read <file:Documentation/usb/usb-serial.txt> for more information on
  45. using this driver. It is recommended that the "USB Serial converter
  46. support" be compiled as a module for this driver to be used
  47. properly.
  48. config USB_SERIAL_AIRCABLE
  49. tristate "USB AIRcable Bluetooth Dongle Driver"
  50. help
  51. Say Y here if you want to use USB AIRcable Bluetooth Dongle.
  52. To compile this driver as a module, choose M here: the module
  53. will be called aircable.
  54. config USB_SERIAL_AIRPRIME
  55. tristate "USB AirPrime CDMA Wireless Driver"
  56. help
  57. Say Y here if you want to use a AirPrime CDMA Wireless PC card.
  58. To compile this driver as a module, choose M here: the
  59. module will be called airprime.
  60. config USB_SERIAL_ARK3116
  61. tristate "USB ARK Micro 3116 USB Serial Driver"
  62. help
  63. Say Y here if you want to use a ARK Micro 3116 USB to Serial
  64. device.
  65. To compile this driver as a module, choose M here: the
  66. module will be called ark3116
  67. config USB_SERIAL_BELKIN
  68. tristate "USB Belkin and Peracom Single Port Serial Driver"
  69. help
  70. Say Y here if you want to use a Belkin USB Serial single port
  71. adaptor (F5U103 is one of the model numbers) or the Peracom single
  72. port USB to serial adapter.
  73. To compile this driver as a module, choose M here: the
  74. module will be called belkin_sa.
  75. config USB_SERIAL_CH341
  76. tristate "USB Winchiphead CH341 Single Port Serial Driver"
  77. help
  78. Say Y here if you want to use a Winchiphead CH341 single port
  79. USB to serial adapter.
  80. To compile this driver as a module, choose M here: the
  81. module will be called ch341.
  82. config USB_SERIAL_WHITEHEAT
  83. tristate "USB ConnectTech WhiteHEAT Serial Driver"
  84. select USB_EZUSB
  85. help
  86. Say Y here if you want to use a ConnectTech WhiteHEAT 4 port
  87. USB to serial converter device.
  88. To compile this driver as a module, choose M here: the
  89. module will be called whiteheat.
  90. config USB_SERIAL_DIGI_ACCELEPORT
  91. tristate "USB Digi International AccelePort USB Serial Driver"
  92. ---help---
  93. Say Y here if you want to use Digi AccelePort USB 2 or 4 devices,
  94. 2 port (plus parallel port) and 4 port USB serial converters. The
  95. parallel port on the USB 2 appears as a third serial port on Linux.
  96. The Digi Acceleport USB 8 is not yet supported by this driver.
  97. This driver works under SMP with the usb-uhci driver. It does not
  98. work under SMP with the uhci driver.
  99. To compile this driver as a module, choose M here: the
  100. module will be called digi_acceleport.
  101. config USB_SERIAL_CP2101
  102. tristate "USB CP2101 UART Bridge Controller"
  103. help
  104. Say Y here if you want to use a CP2101/CP2102 based USB to RS232
  105. converter.
  106. To compile this driver as a module, choose M here: the
  107. module will be called cp2101.
  108. config USB_SERIAL_CYPRESS_M8
  109. tristate "USB Cypress M8 USB Serial Driver"
  110. help
  111. Say Y here if you want to use a device that contains the Cypress
  112. USB to Serial microcontroller, such as the DeLorme Earthmate GPS.
  113. Attempted SMP support... send bug reports!
  114. Supported microcontrollers in the CY4601 family are:
  115. CY7C63741 CY7C63742 CY7C63743 CY7C64013
  116. To compile this driver as a module, choose M here: the
  117. module will be called cypress_m8.
  118. config USB_SERIAL_EMPEG
  119. tristate "USB Empeg empeg-car Mark I/II Driver"
  120. help
  121. Say Y here if you want to connect to your Empeg empeg-car Mark I/II
  122. mp3 player via USB. The driver uses a single ttyUSB{0,1,2,...}
  123. device node. See <file:Documentation/usb/usb-serial.txt> for more
  124. tidbits of information.
  125. To compile this driver as a module, choose M here: the
  126. module will be called empeg.
  127. config USB_SERIAL_FTDI_SIO
  128. tristate "USB FTDI Single Port Serial Driver"
  129. ---help---
  130. Say Y here if you want to use a FTDI SIO single port USB to serial
  131. converter device. The implementation I have is called the USC-1000.
  132. This driver has also be tested with the 245 and 232 devices.
  133. See <http://ftdi-usb-sio.sourceforge.net/> for more
  134. information on this driver and the device.
  135. To compile this driver as a module, choose M here: the
  136. module will be called ftdi_sio.
  137. config USB_SERIAL_FUNSOFT
  138. tristate "USB Fundamental Software Dongle Driver"
  139. ---help---
  140. Say Y here if you want to use the Fundamental Software dongle.
  141. To compile this driver as a module, choose M here: the
  142. module will be called funsoft.
  143. config USB_SERIAL_VISOR
  144. tristate "USB Handspring Visor / Palm m50x / Sony Clie Driver"
  145. help
  146. Say Y here if you want to connect to your HandSpring Visor, Palm
  147. m500 or m505 through its USB docking station. See
  148. <http://usbvisor.sourceforge.net/> for more information on using this
  149. driver.
  150. To compile this driver as a module, choose M here: the
  151. module will be called visor.
  152. config USB_SERIAL_IPAQ
  153. tristate "USB PocketPC PDA Driver"
  154. help
  155. Say Y here if you want to connect to your Compaq iPAQ, HP Jornada
  156. or any other PDA running Windows CE 3.0 or PocketPC 2002
  157. using a USB cradle/cable. For information on using the driver,
  158. read <file:Documentation/usb/usb-serial.txt>.
  159. To compile this driver as a module, choose M here: the
  160. module will be called ipaq.
  161. config USB_SERIAL_IR
  162. tristate "USB IR Dongle Serial Driver"
  163. help
  164. Say Y here if you want to enable simple serial support for USB IrDA
  165. devices. This is useful if you do not want to use the full IrDA
  166. stack.
  167. To compile this driver as a module, choose M here: the
  168. module will be called ir-usb.
  169. config USB_SERIAL_EDGEPORT
  170. tristate "USB Inside Out Edgeport Serial Driver"
  171. ---help---
  172. Say Y here if you want to use any of the following devices from
  173. Inside Out Networks (Digi):
  174. Edgeport/4
  175. Rapidport/4
  176. Edgeport/4t
  177. Edgeport/2
  178. Edgeport/4i
  179. Edgeport/2i
  180. Edgeport/421
  181. Edgeport/21
  182. Edgeport/8
  183. Edgeport/8 Dual
  184. Edgeport/2D8
  185. Edgeport/4D8
  186. Edgeport/8i
  187. Edgeport/2 DIN
  188. Edgeport/4 DIN
  189. Edgeport/16 Dual
  190. To compile this driver as a module, choose M here: the
  191. module will be called io_edgeport.
  192. config USB_SERIAL_EDGEPORT_TI
  193. tristate "USB Inside Out Edgeport Serial Driver (TI devices)"
  194. help
  195. Say Y here if you want to use any of the devices from Inside Out
  196. Networks (Digi) that are not supported by the io_edgeport driver.
  197. This includes the Edgeport/1 device.
  198. To compile this driver as a module, choose M here: the
  199. module will be called io_ti.
  200. config USB_SERIAL_GARMIN
  201. tristate "USB Garmin GPS driver"
  202. help
  203. Say Y here if you want to connect to your Garmin GPS.
  204. Should work with most Garmin GPS devices which have a native USB port.
  205. See <http://sourceforge.net/projects/garmin-gps> for the latest
  206. version of the driver.
  207. To compile this driver as a module, choose M here: the
  208. module will be called garmin_gps.
  209. config USB_SERIAL_IPW
  210. tristate "USB IPWireless (3G UMTS TDD) Driver"
  211. help
  212. Say Y here if you want to use a IPWireless USB modem such as
  213. the ones supplied by Axity3G/Sentech South Africa.
  214. To compile this driver as a module, choose M here: the
  215. module will be called ipw.
  216. config USB_SERIAL_IUU
  217. tristate "USB Infinity USB Unlimited Phoenix Driver"
  218. help
  219. Say Y here if you want to use a IUU in phoenix mode and get
  220. an extra ttyUSBx device. More information available on
  221. http://eczema.ecze.com/iuu_phoenix.html
  222. To compile this driver as a module, choose M here: the
  223. module will be called iuu_phoenix.o
  224. config USB_SERIAL_KEYSPAN_PDA
  225. tristate "USB Keyspan PDA Single Port Serial Driver"
  226. select USB_EZUSB
  227. help
  228. Say Y here if you want to use a Keyspan PDA single port USB to
  229. serial converter device. This driver makes use of firmware
  230. developed from scratch by Brian Warner.
  231. To compile this driver as a module, choose M here: the
  232. module will be called keyspan_pda.
  233. config USB_SERIAL_KEYSPAN
  234. tristate "USB Keyspan USA-xxx Serial Driver"
  235. select USB_EZUSB
  236. ---help---
  237. Say Y here if you want to use Keyspan USB to serial converter
  238. devices. This driver makes use of Keyspan's official firmware
  239. and was developed with their support. You must also include
  240. firmware to support your particular device(s).
  241. See <http://misc.nu/hugh/keyspan.html> for more information.
  242. To compile this driver as a module, choose M here: the
  243. module will be called keyspan.
  244. config USB_SERIAL_KEYSPAN_MPR
  245. bool "USB Keyspan MPR Firmware"
  246. depends on USB_SERIAL_KEYSPAN
  247. help
  248. Say Y here to include firmware for the Keyspan MPR converter.
  249. config USB_SERIAL_KEYSPAN_USA28
  250. bool "USB Keyspan USA-28 Firmware"
  251. depends on USB_SERIAL_KEYSPAN
  252. help
  253. Say Y here to include firmware for the USA-28 converter.
  254. config USB_SERIAL_KEYSPAN_USA28X
  255. bool "USB Keyspan USA-28X Firmware"
  256. depends on USB_SERIAL_KEYSPAN
  257. help
  258. Say Y here to include firmware for the USA-28X converter.
  259. Be sure you have a USA-28X, there are also 28XA and 28XB
  260. models, the label underneath has the actual part number.
  261. config USB_SERIAL_KEYSPAN_USA28XA
  262. bool "USB Keyspan USA-28XA Firmware"
  263. depends on USB_SERIAL_KEYSPAN
  264. help
  265. Say Y here to include firmware for the USA-28XA converter.
  266. Be sure you have a USA-28XA, there are also 28X and 28XB
  267. models, the label underneath has the actual part number.
  268. config USB_SERIAL_KEYSPAN_USA28XB
  269. bool "USB Keyspan USA-28XB Firmware"
  270. depends on USB_SERIAL_KEYSPAN
  271. help
  272. Say Y here to include firmware for the USA-28XB converter.
  273. Be sure you have a USA-28XB, there are also 28X and 28XA
  274. models, the label underneath has the actual part number.
  275. config USB_SERIAL_KEYSPAN_USA19
  276. bool "USB Keyspan USA-19 Firmware"
  277. depends on USB_SERIAL_KEYSPAN
  278. help
  279. Say Y here to include firmware for the USA-19 converter.
  280. config USB_SERIAL_KEYSPAN_USA18X
  281. bool "USB Keyspan USA-18X Firmware"
  282. depends on USB_SERIAL_KEYSPAN
  283. help
  284. Say Y here to include firmware for the USA-18X converter.
  285. config USB_SERIAL_KEYSPAN_USA19W
  286. bool "USB Keyspan USA-19W Firmware"
  287. depends on USB_SERIAL_KEYSPAN
  288. help
  289. Say Y here to include firmware for the USA-19W converter.
  290. config USB_SERIAL_KEYSPAN_USA19QW
  291. bool "USB Keyspan USA-19QW Firmware"
  292. depends on USB_SERIAL_KEYSPAN
  293. help
  294. Say Y here to include firmware for the USA-19QW converter.
  295. config USB_SERIAL_KEYSPAN_USA19QI
  296. bool "USB Keyspan USA-19QI Firmware"
  297. depends on USB_SERIAL_KEYSPAN
  298. help
  299. Say Y here to include firmware for the USA-19QI converter.
  300. config USB_SERIAL_KEYSPAN_USA49W
  301. bool "USB Keyspan USA-49W Firmware"
  302. depends on USB_SERIAL_KEYSPAN
  303. help
  304. Say Y here to include firmware for the USA-49W converter.
  305. config USB_SERIAL_KEYSPAN_USA49WLC
  306. bool "USB Keyspan USA-49WLC Firmware"
  307. depends on USB_SERIAL_KEYSPAN
  308. help
  309. Say Y here to include firmware for the USA-49WLC converter.
  310. config USB_SERIAL_KLSI
  311. tristate "USB KL5KUSB105 (Palmconnect) Driver"
  312. ---help---
  313. Say Y here if you want to use a KL5KUSB105 - based single port
  314. serial adapter. The most widely known -- and currently the only
  315. tested -- device in this category is the PalmConnect USB Serial
  316. adapter sold by Palm Inc. for use with their Palm III and Palm V
  317. series PDAs.
  318. Please read <file:Documentation/usb/usb-serial.txt> for more
  319. information.
  320. To compile this driver as a module, choose M here: the
  321. module will be called kl5kusb105.
  322. config USB_SERIAL_KOBIL_SCT
  323. tristate "USB KOBIL chipcard reader"
  324. ---help---
  325. Say Y here if you want to use one of the following KOBIL USB chipcard
  326. readers:
  327. - USB TWIN
  328. - KAAN Standard Plus
  329. - KAAN SIM
  330. - SecOVID Reader Plus
  331. - B1 Professional
  332. - KAAN Professional
  333. Note that you need a current CT-API.
  334. To compile this driver as a module, choose M here: the
  335. module will be called kobil_sct.
  336. config USB_SERIAL_MCT_U232
  337. tristate "USB MCT Single Port Serial Driver"
  338. ---help---
  339. Say Y here if you want to use a USB Serial single port adapter from
  340. Magic Control Technology Corp. (U232 is one of the model numbers).
  341. This driver also works with Sitecom U232-P25 and D-Link DU-H3SP USB
  342. BAY, Belkin F5U109, and Belkin F5U409 devices.
  343. To compile this driver as a module, choose M here: the
  344. module will be called mct_u232.
  345. config USB_SERIAL_MOS7720
  346. tristate "USB Moschip 7720 Serial Driver"
  347. ---help---
  348. Say Y here if you want to use USB Serial single and double
  349. port adapters from Moschip Semiconductor Tech.
  350. To compile this driver as a module, choose M here: the
  351. module will be called mos7720.
  352. config USB_SERIAL_MOS7840
  353. tristate "USB Moschip 7840/7820 USB Serial Driver"
  354. ---help---
  355. Say Y here if you want to use a MCS7840 Quad-Serial or MCS7820
  356. Dual-Serial port device from MosChip Semiconductor.
  357. The MCS7840 and MCS7820 have been developed to connect a wide range
  358. of standard serial devices to a USB host. The MCS7840 has a USB
  359. device controller connected to four (4) individual UARTs while the
  360. MCS7820 controller connects to two (2) individual UARTs.
  361. To compile this driver as a module, choose M here: the
  362. module will be called mos7840. If unsure, choose N.
  363. config USB_SERIAL_NAVMAN
  364. tristate "USB Navman GPS device"
  365. help
  366. To compile this driver as a module, choose M here: the
  367. module will be called navman.
  368. config USB_SERIAL_PL2303
  369. tristate "USB Prolific 2303 Single Port Serial Driver"
  370. help
  371. Say Y here if you want to use the PL2303 USB Serial single port
  372. adapter from Prolific.
  373. To compile this driver as a module, choose M here: the
  374. module will be called pl2303.
  375. config USB_SERIAL_OTI6858
  376. tristate "USB Ours Technology Inc. OTi-6858 USB To RS232 Bridge Controller"
  377. help
  378. Say Y here if you want to use the OTi-6858 single port USB to serial
  379. converter device.
  380. To compile this driver as a module, choose M here: the
  381. module will be called oti6858.
  382. config USB_SERIAL_SPCP8X5
  383. tristate "USB SPCP8x5 USB To Serial Driver"
  384. help
  385. Say Y here if you want to use the spcp8x5 converter chip. This is
  386. commonly found in some Z-Wave USB devices.
  387. To compile this driver as a module, choose M here: the
  388. module will be called spcp8x5.
  389. config USB_SERIAL_HP4X
  390. tristate "USB HP4x Calculators support"
  391. help
  392. Say Y here if you want to use an Hewlett-Packard 4x Calculator.
  393. To compile this driver as a module, choose M here: the
  394. module will be called hp4x.
  395. config USB_SERIAL_SAFE
  396. tristate "USB Safe Serial (Encapsulated) Driver"
  397. config USB_SERIAL_SAFE_PADDED
  398. bool "USB Secure Encapsulated Driver - Padded"
  399. depends on USB_SERIAL_SAFE
  400. config USB_SERIAL_SIERRAWIRELESS
  401. tristate "USB Sierra Wireless Driver"
  402. help
  403. Say M here if you want to use a Sierra Wireless device (if
  404. using an PC 5220 or AC580 please use the Airprime driver
  405. instead).
  406. To compile this driver as a module, choose M here: the
  407. module will be called sierra.
  408. config USB_SERIAL_TI
  409. tristate "USB TI 3410/5052 Serial Driver"
  410. help
  411. Say Y here if you want to use the TI USB 3410 or 5052
  412. serial devices.
  413. To compile this driver as a module, choose M here: the
  414. module will be called ti_usb_3410_5052.
  415. config USB_SERIAL_CYBERJACK
  416. tristate "USB REINER SCT cyberJack pinpad/e-com chipcard reader"
  417. ---help---
  418. Say Y here if you want to use a cyberJack pinpad/e-com USB chipcard
  419. reader. This is an interface to ISO 7816 compatible contact-based
  420. chipcards, e.g. GSM SIMs.
  421. To compile this driver as a module, choose M here: the
  422. module will be called cyberjack.
  423. If unsure, say N.
  424. config USB_SERIAL_XIRCOM
  425. tristate "USB Xircom / Entregra Single Port Serial Driver"
  426. select USB_EZUSB
  427. help
  428. Say Y here if you want to use a Xircom or Entregra single port USB to
  429. serial converter device. This driver makes use of firmware
  430. developed from scratch by Brian Warner.
  431. To compile this driver as a module, choose M here: the
  432. module will be called keyspan_pda.
  433. config USB_SERIAL_OPTION
  434. tristate "USB driver for GSM and CDMA modems"
  435. help
  436. Say Y here if you have a GSM or CDMA modem that's connected to USB.
  437. This driver also supports several PCMCIA cards which have a
  438. built-in OHCI-USB adapter and an internally-connected GSM modem.
  439. The USB bus on these cards is not accessible externally.
  440. Supported devices include (some of?) those made by:
  441. Option, Huawei, Audiovox, Novatel Wireless, or Anydata.
  442. To compile this driver as a module, choose M here: the
  443. module will be called option.
  444. If this driver doesn't recognize your device,
  445. it might be accessible via the FTDI_SIO driver.
  446. config USB_SERIAL_OMNINET
  447. tristate "USB ZyXEL omni.net LCD Plus Driver"
  448. help
  449. Say Y here if you want to use a ZyXEL omni.net LCD ISDN TA.
  450. To compile this driver as a module, choose M here: the
  451. module will be called omninet.
  452. config USB_SERIAL_DEBUG
  453. tristate "USB Debugging Device"
  454. help
  455. Say Y here if you have a USB debugging device used to receive
  456. debugging data from another machine. The most common of these
  457. devices is the NetChip TurboCONNECT device.
  458. To compile this driver as a module, choose M here: the
  459. module will be called usb-debug.
  460. endif # USB_SERIAL