Kconfig 19 KB

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