Kconfig 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322
  1. # SPDX-License-Identifier: GPL-2.0
  2. config COMEDI
  3. tristate "Data acquisition support (comedi)"
  4. help
  5. Enable support for a wide range of data acquisition devices
  6. for Linux.
  7. if COMEDI
  8. config COMEDI_DEBUG
  9. bool "Comedi debugging"
  10. help
  11. This is an option for use by developers; most people should
  12. say N here. This enables comedi core and driver debugging.
  13. config COMEDI_DEFAULT_BUF_SIZE_KB
  14. int "Comedi default initial asynchronous buffer size in KiB"
  15. default "2048"
  16. help
  17. This is the default asynchronous buffer size which is used for
  18. commands running in the background in kernel space. This
  19. defaults to 2048 KiB of memory so that a 16 channel card
  20. running at 10 kHz has of 2-4 seconds of buffer.
  21. config COMEDI_DEFAULT_BUF_MAXSIZE_KB
  22. int "Comedi default maximum asynchronous buffer size in KiB"
  23. default "20480"
  24. help
  25. This is the default maximum asynchronous buffer size which can
  26. be requested by a userspace program without root privileges.
  27. This is set to 20480 KiB so that a fast I/O card with 16
  28. channels running at 100 kHz has 2-4 seconds of buffer.
  29. menuconfig COMEDI_MISC_DRIVERS
  30. bool "Comedi misc drivers"
  31. help
  32. Enable comedi misc drivers to be built
  33. Note that the answer to this question won't directly affect the
  34. kernel: saying N will just cause the configurator to skip all
  35. the questions about misc non-hardware comedi drivers.
  36. if COMEDI_MISC_DRIVERS
  37. config COMEDI_BOND
  38. tristate "Comedi device bonding support"
  39. select COMEDI_KCOMEDILIB
  40. help
  41. Enable support for a driver to 'bond' (merge) multiple subdevices
  42. from multiple devices together as one.
  43. Currently, it only handles digital I/O subdevices.
  44. To compile this driver as a module, choose M here: the module will be
  45. called comedi_bond.
  46. config COMEDI_TEST
  47. tristate "Fake waveform generator support"
  48. help
  49. Enable support for the fake waveform generator.
  50. This driver is mainly for testing purposes, but can also be used to
  51. generate sample waveforms on systems that don't have data acquisition
  52. hardware.
  53. To compile this driver as a module, choose M here: the module will be
  54. called comedi_test.
  55. config COMEDI_PARPORT
  56. tristate "Parallel port support"
  57. help
  58. Enable support for the standard parallel port.
  59. A cheap and easy way to get a few more digital I/O lines. Steal
  60. additional parallel ports from old computers or your neighbors'
  61. computers.
  62. To compile this driver as a module, choose M here: the module will be
  63. called comedi_parport.
  64. config COMEDI_SSV_DNP
  65. tristate "SSV Embedded Systems DIL/Net-PC support"
  66. depends on X86_32 || COMPILE_TEST
  67. help
  68. Enable support for SSV Embedded Systems DIL/Net-PC
  69. To compile this driver as a module, choose M here: the module will be
  70. called ssv_dnp.
  71. endif # COMEDI_MISC_DRIVERS
  72. menuconfig COMEDI_ISA_DRIVERS
  73. bool "Comedi ISA and PC/104 drivers"
  74. help
  75. Enable comedi ISA and PC/104 drivers to be built
  76. Note that the answer to this question won't directly affect the
  77. kernel: saying N will just cause the configurator to skip all
  78. the questions about ISA and PC/104 comedi drivers.
  79. if COMEDI_ISA_DRIVERS
  80. config COMEDI_PCL711
  81. tristate "Advantech PCL-711/711b and ADlink ACL-8112 ISA card support"
  82. select COMEDI_8254
  83. help
  84. Enable support for Advantech PCL-711 and 711b, ADlink ACL-8112
  85. To compile this driver as a module, choose M here: the module will be
  86. called pcl711.
  87. config COMEDI_PCL724
  88. tristate "Advantech PCL-722/724/731 and ADlink ACL-7122/7124/PET-48DIO"
  89. select COMEDI_8255
  90. help
  91. Enable support for ISA and PC/104 based 8255 digital i/o boards. This
  92. driver provides a legacy comedi driver wrapper for the generic 8255
  93. support driver.
  94. Supported boards include:
  95. Advantech PCL-724 24 channels
  96. Advantech PCL-722 144 (or 96) channels
  97. Advantech PCL-731 48 channels
  98. ADlink ACL-7122 144 (or 96) channels
  99. ADlink ACL-7124 24 channels
  100. ADlink PET-48DIO 48 channels
  101. WinSystems PCM-IO48 48 channels (PC/104)
  102. Diamond Systems ONYX-MM-DIO 48 channels (PC/104)
  103. To compile this driver as a module, choose M here: the module will be
  104. called pcl724.
  105. config COMEDI_PCL726
  106. tristate "Advantech PCL-726 and compatible ISA card support"
  107. help
  108. Enable support for Advantech PCL-726 and compatible ISA cards.
  109. To compile this driver as a module, choose M here: the module will be
  110. called pcl726.
  111. config COMEDI_PCL730
  112. tristate "Simple Digital I/O board support (8-bit ports)"
  113. help
  114. Enable support for various simple ISA or PC/104 Digital I/O boards.
  115. These boards all use 8-bit I/O ports.
  116. Advantech PCL-730 iso - 16 in/16 out ttl - 16 in/16 out
  117. ICP ISO-730 iso - 16 in/16 out ttl - 16 in/16 out
  118. ADlink ACL-7130 iso - 16 in/16 out ttl - 16 in/16 out
  119. Advantech PCM-3730 iso - 8 in/8 out ttl - 16 in/16 out
  120. Advantech PCL-725 iso - 8 in/8 out
  121. ICP P8R8-DIO iso - 8 in/8 out
  122. ADlink ACL-7225b iso - 16 in/16 out
  123. ICP P16R16-DIO iso - 16 in/16 out
  124. Advantech PCL-733 iso - 32 in
  125. Advantech PCL-734 iso - 32 out
  126. Diamond Systems OPMM-1616-XT iso - 16 in/16 out
  127. Diamond Systems PEARL-MM-P iso - 16 out
  128. Diamond Systems IR104-PBF iso - 20 in/20 out
  129. To compile this driver as a module, choose M here: the module will be
  130. called pcl730.
  131. config COMEDI_PCL812
  132. tristate "Advantech PCL-812/813 and ADlink ACL-8112/8113/8113/8216"
  133. select COMEDI_ISADMA if ISA_DMA_API
  134. select COMEDI_8254
  135. help
  136. Enable support for Advantech PCL-812/PG, PCL-813/B, ADLink
  137. ACL-8112DG/HG/PG, ACL-8113, ACL-8216, ICP DAS A-821PGH/PGL/PGL-NDA,
  138. A-822PGH/PGL, A-823PGH/PGL, A-826PG and ICP DAS ISO-813 ISA cards
  139. To compile this driver as a module, choose M here: the module will be
  140. called pcl812.
  141. config COMEDI_PCL816
  142. tristate "Advantech PCL-814 and PCL-816 ISA card support"
  143. select COMEDI_ISADMA if ISA_DMA_API
  144. select COMEDI_8254
  145. help
  146. Enable support for Advantech PCL-814 and PCL-816 ISA cards
  147. To compile this driver as a module, choose M here: the module will be
  148. called pcl816.
  149. config COMEDI_PCL818
  150. tristate "Advantech PCL-718 and PCL-818 ISA card support"
  151. select COMEDI_ISADMA if ISA_DMA_API
  152. select COMEDI_8254
  153. help
  154. Enable support for Advantech PCL-818 ISA cards
  155. PCL-818L, PCL-818H, PCL-818HD, PCL-818HG, PCL-818 and PCL-718
  156. To compile this driver as a module, choose M here: the module will be
  157. called pcl818.
  158. config COMEDI_PCM3724
  159. tristate "Advantech PCM-3724 PC/104 card support"
  160. select COMEDI_8255
  161. help
  162. Enable support for Advantech PCM-3724 PC/104 cards.
  163. To compile this driver as a module, choose M here: the module will be
  164. called pcm3724.
  165. config COMEDI_AMPLC_DIO200_ISA
  166. tristate "Amplicon PC212E/PC214E/PC215E/PC218E/PC272E"
  167. select COMEDI_AMPLC_DIO200
  168. help
  169. Enable support for Amplicon PC212E, PC214E, PC215E, PC218E and
  170. PC272E ISA DIO boards
  171. To compile this driver as a module, choose M here: the module will be
  172. called amplc_dio200.
  173. config COMEDI_AMPLC_PC236_ISA
  174. tristate "Amplicon PC36AT DIO board support"
  175. select COMEDI_AMPLC_PC236
  176. help
  177. Enable support for Amplicon PC36AT ISA DIO board.
  178. To compile this driver as a module, choose M here: the module will be
  179. called amplc_pc236.
  180. config COMEDI_AMPLC_PC263_ISA
  181. tristate "Amplicon PC263 relay board support"
  182. help
  183. Enable support for Amplicon PC263 ISA relay board. This board has
  184. 16 reed relay output channels.
  185. To compile this driver as a module, choose M here: the module will be
  186. called amplc_pc263.
  187. config COMEDI_RTI800
  188. tristate "Analog Devices RTI-800/815 ISA card support"
  189. help
  190. Enable support for Analog Devices RTI-800/815 ISA cards
  191. To compile this driver as a module, choose M here: the module will be
  192. called rti800.
  193. config COMEDI_RTI802
  194. tristate "Analog Devices RTI-802 ISA card support"
  195. help
  196. Enable support for Analog Devices RTI-802 ISA cards
  197. To compile this driver as a module, choose M here: the module will be
  198. called rti802.
  199. config COMEDI_DAC02
  200. tristate "Keithley Metrabyte DAC02 compatible ISA card support"
  201. help
  202. Enable support for Keithley Metrabyte DAC02 compatible ISA cards.
  203. To compile this driver as a module, choose M here: the module will be
  204. called dac02.
  205. config COMEDI_DAS16M1
  206. tristate "MeasurementComputing CIO-DAS16/M1DAS-16 ISA card support"
  207. select COMEDI_8254
  208. select COMEDI_8255
  209. help
  210. Enable support for Measurement Computing CIO-DAS16/M1 ISA cards.
  211. To compile this driver as a module, choose M here: the module will be
  212. called das16m1.
  213. config COMEDI_DAS08_ISA
  214. tristate "DAS-08 compatible ISA and PC/104 card support"
  215. select COMEDI_DAS08
  216. help
  217. Enable support for Keithley Metrabyte/ComputerBoards DAS08
  218. and compatible ISA and PC/104 cards:
  219. Keithley Metrabyte/ComputerBoards DAS08, DAS08-PGM, DAS08-PGH,
  220. DAS08-PGL, DAS08-AOH, DAS08-AOL, DAS08-AOM, DAS08/JR-AO,
  221. DAS08/JR-16-AO, PC104-DAS08, DAS08/JR/16.
  222. To compile this driver as a module, choose M here: the module will be
  223. called das08_isa.
  224. config COMEDI_DAS16
  225. tristate "DAS-16 compatible ISA and PC/104 card support"
  226. select COMEDI_ISADMA if ISA_DMA_API
  227. select COMEDI_8254
  228. select COMEDI_8255
  229. help
  230. Enable support for Keithley Metrabyte/ComputerBoards DAS16
  231. and compatible ISA and PC/104 cards:
  232. Keithley Metrabyte DAS-16, DAS-16G, DAS-16F, DAS-1201, DAS-1202,
  233. DAS-1401, DAS-1402, DAS-1601, DAS-1602 and
  234. ComputerBoards/MeasurementComputing PC104-DAS16/JR/,
  235. PC104-DAS16JR/16, CIO-DAS16JR/16, CIO-DAS16/JR, CIO-DAS1401/12,
  236. CIO-DAS1402/12, CIO-DAS1402/16, CIO-DAS1601/12, CIO-DAS1602/12,
  237. CIO-DAS1602/16, CIO-DAS16/330
  238. To compile this driver as a module, choose M here: the module will be
  239. called das16.
  240. config COMEDI_DAS800
  241. tristate "DAS800 and compatible ISA card support"
  242. select COMEDI_8254
  243. help
  244. Enable support for Keithley Metrabyte DAS800 and compatible ISA cards
  245. Keithley Metrabyte DAS-800, DAS-801, DAS-802
  246. Measurement Computing CIO-DAS800, CIO-DAS801, CIO-DAS802 and
  247. CIO-DAS802/16
  248. To compile this driver as a module, choose M here: the module will be
  249. called das800.
  250. config COMEDI_DAS1800
  251. tristate "DAS1800 and compatible ISA card support"
  252. select COMEDI_ISADMA if ISA_DMA_API
  253. select COMEDI_8254
  254. help
  255. Enable support for DAS1800 and compatible ISA cards
  256. Keithley Metrabyte DAS-1701ST, DAS-1701ST-DA, DAS-1701/AO,
  257. DAS-1702ST, DAS-1702ST-DA, DAS-1702HR, DAS-1702HR-DA, DAS-1702/AO,
  258. DAS-1801ST, DAS-1801ST-DA, DAS-1801HC, DAS-1801AO, DAS-1802ST,
  259. DAS-1802ST-DA, DAS-1802HR, DAS-1802HR-DA, DAS-1802HC and
  260. DAS-1802AO
  261. To compile this driver as a module, choose M here: the module will be
  262. called das1800.
  263. config COMEDI_DAS6402
  264. tristate "DAS6402 and compatible ISA card support"
  265. select COMEDI_8254
  266. help
  267. Enable support for DAS6402 and compatible ISA cards
  268. Computerboards, Keithley Metrabyte DAS6402 and compatibles
  269. To compile this driver as a module, choose M here: the module will be
  270. called das6402.
  271. config COMEDI_DT2801
  272. tristate "Data Translation DT2801 ISA card support"
  273. help
  274. Enable support for Data Translation DT2801 ISA cards
  275. To compile this driver as a module, choose M here: the module will be
  276. called dt2801.
  277. config COMEDI_DT2811
  278. tristate "Data Translation DT2811 ISA card support"
  279. help
  280. Enable support for Data Translation DT2811 ISA cards
  281. To compile this driver as a module, choose M here: the module will be
  282. called dt2811.
  283. config COMEDI_DT2814
  284. tristate "Data Translation DT2814 ISA card support"
  285. help
  286. Enable support for Data Translation DT2814 ISA cards
  287. To compile this driver as a module, choose M here: the module will be
  288. called dt2814.
  289. config COMEDI_DT2815
  290. tristate "Data Translation DT2815 ISA card support"
  291. help
  292. Enable support for Data Translation DT2815 ISA cards
  293. To compile this driver as a module, choose M here: the module will be
  294. called dt2815.
  295. config COMEDI_DT2817
  296. tristate "Data Translation DT2817 ISA card support"
  297. help
  298. Enable support for Data Translation DT2817 ISA cards
  299. To compile this driver as a module, choose M here: the module will be
  300. called dt2817.
  301. config COMEDI_DT282X
  302. tristate "Data Translation DT2821 series and DT-EZ ISA card support"
  303. select COMEDI_ISADMA if ISA_DMA_API
  304. help
  305. Enable support for Data Translation DT2821 series including DT-EZ
  306. DT2821, DT2821-F-16SE, DT2821-F-8DI, DT2821-G-16SE, DT2821-G-8DI,
  307. DT2823 (dt2823), DT2824-PGH, DT2824-PGL, DT2825, DT2827, DT2828,
  308. DT21-EZ, DT23-EZ, DT24-EZ and DT24-EZ-PGL
  309. To compile this driver as a module, choose M here: the module will be
  310. called dt282x.
  311. config COMEDI_DMM32AT
  312. tristate "Diamond Systems MM-32-AT PC/104 board support"
  313. select COMEDI_8255
  314. help
  315. Enable support for Diamond Systems MM-32-AT PC/104 boards
  316. To compile this driver as a module, choose M here: the module will be
  317. called dmm32at.
  318. config COMEDI_FL512
  319. tristate "FL512 ISA card support"
  320. help
  321. Enable support for FL512 ISA card
  322. To compile this driver as a module, choose M here: the module will be
  323. called fl512.
  324. config COMEDI_AIO_AIO12_8
  325. tristate "I/O Products PC/104 AIO12-8 Analog I/O Board support"
  326. select COMEDI_8254
  327. select COMEDI_8255
  328. help
  329. Enable support for I/O Products PC/104 AIO12-8 Analog I/O Board
  330. To compile this driver as a module, choose M here: the module will be
  331. called aio_aio12_8.
  332. config COMEDI_AIO_IIRO_16
  333. tristate "I/O Products PC/104 IIRO16 Board support"
  334. help
  335. Enable support for I/O Products PC/104 IIRO16 Relay And Isolated
  336. Input Board
  337. To compile this driver as a module, choose M here: the module will be
  338. called aio_iiro_16.
  339. config COMEDI_II_PCI20KC
  340. tristate "Intelligent Instruments PCI-20001C carrier support"
  341. depends on HAS_IOMEM
  342. help
  343. Enable support for Intelligent Instruments PCI-20001C carrier
  344. PCI-20001, PCI-20006 and PCI-20341
  345. To compile this driver as a module, choose M here: the module will be
  346. called ii_pci20kc.
  347. config COMEDI_C6XDIGIO
  348. tristate "Mechatronic Systems Inc. C6x_DIGIO DSP daughter card support"
  349. help
  350. Enable support for Mechatronic Systems Inc. C6x_DIGIO DSP daughter
  351. card
  352. To compile this driver as a module, choose M here: the module will be
  353. called c6xdigio.
  354. config COMEDI_MPC624
  355. tristate "Micro/sys MPC-624 PC/104 board support"
  356. help
  357. Enable support for Micro/sys MPC-624 PC/104 board
  358. To compile this driver as a module, choose M here: the module will be
  359. called mpc624.
  360. config COMEDI_ADQ12B
  361. tristate "MicroAxial ADQ12-B data acquisition and control card support"
  362. help
  363. Enable MicroAxial ADQ12-B daq and control card support.
  364. To compile this driver as a module, choose M here: the module will be
  365. called adq12b.
  366. config COMEDI_NI_AT_A2150
  367. tristate "NI AT-A2150 ISA card support"
  368. select COMEDI_ISADMA if ISA_DMA_API
  369. select COMEDI_8254
  370. help
  371. Enable support for National Instruments AT-A2150 cards
  372. To compile this driver as a module, choose M here: the module will be
  373. called ni_at_a2150.
  374. config COMEDI_NI_AT_AO
  375. tristate "NI AT-AO-6/10 EISA card support"
  376. select COMEDI_8254
  377. help
  378. Enable support for National Instruments AT-AO-6/10 cards
  379. To compile this driver as a module, choose M here: the module will be
  380. called ni_at_ao.
  381. config COMEDI_NI_ATMIO
  382. tristate "NI AT-MIO E series ISA-PNP card support"
  383. select COMEDI_8255
  384. select COMEDI_NI_TIO
  385. help
  386. Enable support for National Instruments AT-MIO E series cards
  387. National Instruments AT-MIO-16E-1 (ni_atmio),
  388. AT-MIO-16E-2, AT-MIO-16E-10, AT-MIO-16DE-10, AT-MIO-64E-3,
  389. AT-MIO-16XE-50, AT-MIO-16XE-10, AT-AI-16XE-10
  390. To compile this driver as a module, choose M here: the module will be
  391. called ni_atmio.
  392. config COMEDI_NI_ATMIO16D
  393. tristate "NI AT-MIO-16/AT-MIO-16D series ISA card support"
  394. select COMEDI_8255
  395. help
  396. Enable support for National Instruments AT-MIO-16/AT-MIO-16D cards.
  397. To compile this driver as a module, choose M here: the module will be
  398. called ni_atmio16d.
  399. config COMEDI_NI_LABPC_ISA
  400. tristate "NI Lab-PC and compatibles ISA support"
  401. select COMEDI_NI_LABPC
  402. help
  403. Enable support for National Instruments Lab-PC and compatibles
  404. Lab-PC-1200, Lab-PC-1200AI, Lab-PC+.
  405. Kernel-level ISA plug-and-play support for the lab-pc-1200 boards has
  406. not yet been added to the driver.
  407. To compile this driver as a module, choose M here: the module will be
  408. called ni_labpc.
  409. config COMEDI_PCMAD
  410. tristate "Winsystems PCM-A/D12 and PCM-A/D16 PC/104 board support"
  411. help
  412. Enable support for Winsystems PCM-A/D12 and PCM-A/D16 PC/104 boards.
  413. To compile this driver as a module, choose M here: the module will be
  414. called pcmad.
  415. config COMEDI_PCMDA12
  416. tristate "Winsystems PCM-D/A-12 8-channel AO PC/104 board support"
  417. help
  418. Enable support for Winsystems PCM-D/A-12 8-channel AO PC/104 boards.
  419. Note that the board is not ISA-PNP capable and thus needs the I/O
  420. port comedi_config parameter.
  421. To compile this driver as a module, choose M here: the module will be
  422. called pcmda12.
  423. config COMEDI_PCMMIO
  424. tristate "Winsystems PCM-MIO PC/104 board support"
  425. help
  426. Enable support for Winsystems PCM-MIO multifunction PC/104 boards.
  427. To compile this driver as a module, choose M here: the module will be
  428. called pcmmio.
  429. config COMEDI_PCMUIO
  430. tristate "Winsystems PCM-UIO48A and PCM-UIO96A PC/104 board support"
  431. help
  432. Enable support for PCM-UIO48A and PCM-UIO96A PC/104 boards.
  433. To compile this driver as a module, choose M here: the module will be
  434. called pcmuio.
  435. config COMEDI_MULTIQ3
  436. tristate "Quanser Consulting MultiQ-3 ISA card support"
  437. help
  438. Enable support for Quanser Consulting MultiQ-3 ISA cards
  439. To compile this driver as a module, choose M here: the module will be
  440. called multiq3.
  441. config COMEDI_S526
  442. tristate "Sensoray s526 support"
  443. help
  444. Enable support for Sensoray s526
  445. To compile this driver as a module, choose M here: the module will be
  446. called s526.
  447. endif # COMEDI_ISA_DRIVERS
  448. menuconfig COMEDI_PCI_DRIVERS
  449. tristate "Comedi PCI drivers"
  450. depends on PCI
  451. help
  452. Enable support for comedi PCI drivers.
  453. To compile this support as a module, choose M here: the module will
  454. be called comedi_pci.
  455. if COMEDI_PCI_DRIVERS
  456. config COMEDI_8255_PCI
  457. tristate "Generic PCI based 8255 digital i/o board support"
  458. select COMEDI_8255
  459. help
  460. Enable support for PCI based 8255 digital i/o boards. This driver
  461. provides a PCI wrapper around the generic 8255 driver.
  462. Supported boards:
  463. ADlink - PCI-7224, PCI-7248, and PCI-7296
  464. Measurement Computing - PCI-DIO24, PCI-DIO24H, PCI-DIO48H and
  465. PCI-DIO96H
  466. National Instruments - PCI-DIO-96, PCI-DIO-96B, PXI-6508, PCI-6503,
  467. PCI-6503B, PCI-6503X, and PXI-6503
  468. To compile this driver as a module, choose M here: the module will
  469. be called 8255_pci.
  470. config COMEDI_ADDI_WATCHDOG
  471. tristate
  472. help
  473. Provides support for the watchdog subdevice found on many ADDI-DATA
  474. boards. This module will be automatically selected when needed. The
  475. module will be called addi_watchdog.
  476. config COMEDI_ADDI_APCI_1032
  477. tristate "ADDI-DATA APCI_1032 support"
  478. help
  479. Enable support for ADDI-DATA APCI_1032 cards
  480. To compile this driver as a module, choose M here: the module will be
  481. called addi_apci_1032.
  482. config COMEDI_ADDI_APCI_1500
  483. tristate "ADDI-DATA APCI_1500 support"
  484. help
  485. Enable support for ADDI-DATA APCI_1500 cards
  486. To compile this driver as a module, choose M here: the module will be
  487. called addi_apci_1500.
  488. config COMEDI_ADDI_APCI_1516
  489. tristate "ADDI-DATA APCI-1016/1516/2016 support"
  490. select COMEDI_ADDI_WATCHDOG
  491. help
  492. Enable support for ADDI-DATA APCI-1016, APCI-1516 and APCI-2016 boards.
  493. These are 16 channel, optically isolated, digital I/O boards. The 1516
  494. and 2016 boards also have a watchdog for resetting the outputs to "0".
  495. To compile this driver as a module, choose M here: the module will be
  496. called addi_apci_1516.
  497. config COMEDI_ADDI_APCI_1564
  498. tristate "ADDI-DATA APCI_1564 support"
  499. select COMEDI_ADDI_WATCHDOG
  500. help
  501. Enable support for ADDI-DATA APCI_1564 cards
  502. To compile this driver as a module, choose M here: the module will be
  503. called addi_apci_1564.
  504. config COMEDI_ADDI_APCI_16XX
  505. tristate "ADDI-DATA APCI_16xx support"
  506. help
  507. Enable support for ADDI-DATA APCI_16xx cards
  508. To compile this driver as a module, choose M here: the module will be
  509. called addi_apci_16xx.
  510. config COMEDI_ADDI_APCI_2032
  511. tristate "ADDI-DATA APCI_2032 support"
  512. select COMEDI_ADDI_WATCHDOG
  513. help
  514. Enable support for ADDI-DATA APCI_2032 cards
  515. To compile this driver as a module, choose M here: the module will be
  516. called addi_apci_2032.
  517. config COMEDI_ADDI_APCI_2200
  518. tristate "ADDI-DATA APCI_2200 support"
  519. select COMEDI_ADDI_WATCHDOG
  520. help
  521. Enable support for ADDI-DATA APCI_2200 cards
  522. To compile this driver as a module, choose M here: the module will be
  523. called addi_apci_2200.
  524. config COMEDI_ADDI_APCI_3120
  525. tristate "ADDI-DATA APCI_3120/3001 support"
  526. depends on HAS_DMA
  527. help
  528. Enable support for ADDI-DATA APCI_3120/3001 cards
  529. To compile this driver as a module, choose M here: the module will be
  530. called addi_apci_3120.
  531. config COMEDI_ADDI_APCI_3501
  532. tristate "ADDI-DATA APCI_3501 support"
  533. help
  534. Enable support for ADDI-DATA APCI_3501 cards
  535. To compile this driver as a module, choose M here: the module will be
  536. called addi_apci_3501.
  537. config COMEDI_ADDI_APCI_3XXX
  538. tristate "ADDI-DATA APCI_3xxx support"
  539. help
  540. Enable support for ADDI-DATA APCI_3xxx cards
  541. To compile this driver as a module, choose M here: the module will be
  542. called addi_apci_3xxx.
  543. config COMEDI_ADL_PCI6208
  544. tristate "ADLink PCI-6208A support"
  545. help
  546. Enable support for ADLink PCI-6208A cards
  547. To compile this driver as a module, choose M here: the module will be
  548. called adl_pci6208.
  549. config COMEDI_ADL_PCI7X3X
  550. tristate "ADLink PCI-723X/743X isolated digital i/o board support"
  551. help
  552. Enable support for ADlink PCI-723X/743X isolated digital i/o boards.
  553. Supported boards include the 32-channel PCI-7230 (16 in/16 out),
  554. PCI-7233 (32 in), and PCI-7234 (32 out) as well as the 64-channel
  555. PCI-7432 (32 in/32 out), PCI-7433 (64 in), and PCI-7434 (64 out).
  556. To compile this driver as a module, choose M here: the module will be
  557. called adl_pci7x3x.
  558. config COMEDI_ADL_PCI8164
  559. tristate "ADLink PCI-8164 4 Axes Motion Control board support"
  560. help
  561. Enable support for ADlink PCI-8164 4 Axes Motion Control board
  562. To compile this driver as a module, choose M here: the module will be
  563. called adl_pci8164.
  564. config COMEDI_ADL_PCI9111
  565. tristate "ADLink PCI-9111HR support"
  566. select COMEDI_8254
  567. help
  568. Enable support for ADlink PCI9111 cards
  569. To compile this driver as a module, choose M here: the module will be
  570. called adl_pci9111.
  571. config COMEDI_ADL_PCI9118
  572. tristate "ADLink PCI-9118DG, PCI-9118HG, PCI-9118HR support"
  573. depends on HAS_DMA
  574. select COMEDI_8254
  575. help
  576. Enable support for ADlink PCI-9118DG, PCI-9118HG, PCI-9118HR cards
  577. To compile this driver as a module, choose M here: the module will be
  578. called adl_pci9118.
  579. config COMEDI_ADV_PCI1710
  580. tristate "Advantech PCI-171x and PCI-1731 support"
  581. select COMEDI_8254
  582. help
  583. Enable support for Advantech PCI-1710, PCI-1710HG, PCI-1711,
  584. PCI-1713 and PCI-1731
  585. To compile this driver as a module, choose M here: the module will be
  586. called adv_pci1710.
  587. config COMEDI_ADV_PCI1720
  588. tristate "Advantech PCI-1720 support"
  589. help
  590. Enable support for Advantech PCI-1720 Analog Output board.
  591. To compile this driver as a module, choose M here: the module will be
  592. called adv_pci1720.
  593. config COMEDI_ADV_PCI1723
  594. tristate "Advantech PCI-1723 support"
  595. help
  596. Enable support for Advantech PCI-1723 cards
  597. To compile this driver as a module, choose M here: the module will be
  598. called adv_pci1723.
  599. config COMEDI_ADV_PCI1724
  600. tristate "Advantech PCI-1724U support"
  601. help
  602. Enable support for Advantech PCI-1724U cards. These are 32-channel
  603. analog output cards with voltage and current loop output ranges and
  604. 14-bit resolution.
  605. To compile this driver as a module, choose M here: the module will be
  606. called adv_pci1724.
  607. config COMEDI_ADV_PCI1760
  608. tristate "Advantech PCI-1760 support"
  609. help
  610. Enable support for Advantech PCI-1760 board.
  611. To compile this driver as a module, choose M here: the module will be
  612. called adv_pci1760.
  613. config COMEDI_ADV_PCI_DIO
  614. tristate "Advantech PCI DIO card support"
  615. select COMEDI_8254
  616. select COMEDI_8255
  617. help
  618. Enable support for Advantech PCI DIO cards
  619. PCI-1730, PCI-1733, PCI-1734, PCI-1735U, PCI-1736UP, PCI-1739U,
  620. PCI-1750, PCI-1751, PCI-1752, PCI-1753/E, PCI-1754, PCI-1756,
  621. PCI-1761 and PCI-1762
  622. To compile this driver as a module, choose M here: the module will be
  623. called adv_pci_dio.
  624. config COMEDI_AMPLC_DIO200_PCI
  625. tristate "Amplicon PCI215/PCI272/PCIe215/PCIe236/PCIe296 DIO support"
  626. select COMEDI_AMPLC_DIO200
  627. help
  628. Enable support for Amplicon PCI215, PCI272, PCIe215, PCIe236
  629. and PCIe296 DIO boards.
  630. To compile this driver as a module, choose M here: the module will be
  631. called amplc_dio200_pci.
  632. config COMEDI_AMPLC_PC236_PCI
  633. tristate "Amplicon PCI236 DIO board support"
  634. select COMEDI_AMPLC_PC236
  635. help
  636. Enable support for Amplicon PCI236 DIO board.
  637. To compile this driver as a module, choose M here: the module will be
  638. called amplc_pci236.
  639. config COMEDI_AMPLC_PC263_PCI
  640. tristate "Amplicon PCI263 relay board support"
  641. help
  642. Enable support for Amplicon PCI263 relay board. This is a PCI board
  643. with 16 reed relay output channels.
  644. To compile this driver as a module, choose M here: the module will be
  645. called amplc_pci263.
  646. config COMEDI_AMPLC_PCI224
  647. tristate "Amplicon PCI224 and PCI234 support"
  648. select COMEDI_8254
  649. help
  650. Enable support for Amplicon PCI224 and PCI234 AO boards
  651. To compile this driver as a module, choose M here: the module will be
  652. called amplc_pci224.
  653. config COMEDI_AMPLC_PCI230
  654. tristate "Amplicon PCI230 and PCI260 support"
  655. select COMEDI_8254
  656. select COMEDI_8255
  657. help
  658. Enable support for Amplicon PCI230 and PCI260 Multifunction I/O
  659. boards
  660. To compile this driver as a module, choose M here: the module will be
  661. called amplc_pci230.
  662. config COMEDI_CONTEC_PCI_DIO
  663. tristate "Contec PIO1616L digital I/O board support"
  664. help
  665. Enable support for the Contec PIO1616L digital I/O board
  666. To compile this driver as a module, choose M here: the module will be
  667. called contec_pci_dio.
  668. config COMEDI_DAS08_PCI
  669. tristate "DAS-08 PCI support"
  670. select COMEDI_DAS08
  671. help
  672. Enable support for PCI DAS-08 cards.
  673. To compile this driver as a module, choose M here: the module will be
  674. called das08_pci.
  675. config COMEDI_DT3000
  676. tristate "Data Translation DT3000 series support"
  677. help
  678. Enable support for Data Translation DT3000 series
  679. DT3001, DT3001-PGL, DT3002, DT3003, DT3003-PGL, DT3004, DT3005 and
  680. DT3004-200
  681. To compile this driver as a module, choose M here: the module will be
  682. called dt3000.
  683. config COMEDI_DYNA_PCI10XX
  684. tristate "Dynalog PCI DAQ series support"
  685. help
  686. Enable support for Dynalog PCI DAQ series
  687. PCI-1050
  688. To compile this driver as a module, choose M here: the module will be
  689. called dyna_pci10xx.
  690. config COMEDI_GSC_HPDI
  691. tristate "General Standards PCI-HPDI32 / PMC-HPDI32 support"
  692. help
  693. Enable support for General Standards Corporation high speed parallel
  694. digital interface rs485 boards PCI-HPDI32 and PMC-HPDI32.
  695. Only receive mode works, transmit not supported.
  696. To compile this driver as a module, choose M here: the module will be
  697. called gsc_hpdi.
  698. config COMEDI_MF6X4
  699. tristate "Humusoft MF634 and MF624 DAQ Card support"
  700. help
  701. This driver supports both Humusoft MF634 and MF624 Data acquisition
  702. cards. The legacy Humusoft MF614 card is not supported.
  703. config COMEDI_ICP_MULTI
  704. tristate "Inova ICP_MULTI support"
  705. help
  706. Enable support for Inova ICP_MULTI card
  707. To compile this driver as a module, choose M here: the module will be
  708. called icp_multi.
  709. config COMEDI_DAQBOARD2000
  710. tristate "IOtech DAQboard/2000 support"
  711. select COMEDI_8255
  712. help
  713. Enable support for the IOtech DAQboard/2000
  714. To compile this driver as a module, choose M here: the module will be
  715. called daqboard2000.
  716. config COMEDI_JR3_PCI
  717. tristate "JR3/PCI force sensor board support"
  718. help
  719. Enable support for JR3/PCI force sensor boards
  720. To compile this driver as a module, choose M here: the module will be
  721. called jr3_pci.
  722. config COMEDI_KE_COUNTER
  723. tristate "Kolter-Electronic PCI Counter 1 card support"
  724. help
  725. Enable support for Kolter-Electronic PCI Counter 1 cards
  726. To compile this driver as a module, choose M here: the module will be
  727. called ke_counter.
  728. config COMEDI_CB_PCIDAS64
  729. tristate "MeasurementComputing PCI-DAS 64xx, 60xx, and 4020 support"
  730. select COMEDI_8255
  731. help
  732. Enable support for ComputerBoards/MeasurementComputing PCI-DAS 64xx,
  733. 60xx, and 4020 series with the PLX 9080 PCI controller
  734. To compile this driver as a module, choose M here: the module will be
  735. called cb_pcidas64.
  736. config COMEDI_CB_PCIDAS
  737. tristate "MeasurementComputing PCI-DAS support"
  738. select COMEDI_8254
  739. select COMEDI_8255
  740. help
  741. Enable support for ComputerBoards/MeasurementComputing PCI-DAS with
  742. AMCC S5933 PCIcontroller: PCI-DAS1602/16, PCI-DAS1602/16jr,
  743. PCI-DAS1602/12, PCI-DAS1200, PCI-DAS1200jr, PCI-DAS1000, PCI-DAS1001
  744. and PCI_DAS1002.
  745. To compile this driver as a module, choose M here: the module will be
  746. called cb_pcidas.
  747. config COMEDI_CB_PCIDDA
  748. tristate "MeasurementComputing PCI-DDA series support"
  749. select COMEDI_8255
  750. help
  751. Enable support for ComputerBoards/MeasurementComputing PCI-DDA
  752. series: PCI-DDA08/12, PCI-DDA04/12, PCI-DDA02/12, PCI-DDA08/16,
  753. PCI-DDA04/16 and PCI-DDA02/16
  754. To compile this driver as a module, choose M here: the module will be
  755. called cb_pcidda.
  756. config COMEDI_CB_PCIMDAS
  757. tristate "MeasurementComputing PCIM-DAS1602/16, PCIe-DAS1602/16 support"
  758. select COMEDI_8254
  759. select COMEDI_8255
  760. help
  761. Enable support for ComputerBoards/MeasurementComputing PCI Migration
  762. series PCIM-DAS1602/16 and PCIe-DAS1602/16.
  763. To compile this driver as a module, choose M here: the module will be
  764. called cb_pcimdas.
  765. config COMEDI_CB_PCIMDDA
  766. tristate "MeasurementComputing PCIM-DDA06-16 support"
  767. select COMEDI_8255
  768. help
  769. Enable support for ComputerBoards/MeasurementComputing PCIM-DDA06-16
  770. To compile this driver as a module, choose M here: the module will be
  771. called cb_pcimdda.
  772. config COMEDI_ME4000
  773. tristate "Meilhaus ME-4000 support"
  774. select COMEDI_8254
  775. help
  776. Enable support for Meilhaus PCI data acquisition cards
  777. ME-4650, ME-4670i, ME-4680, ME-4680i and ME-4680is
  778. To compile this driver as a module, choose M here: the module will be
  779. called me4000.
  780. config COMEDI_ME_DAQ
  781. tristate "Meilhaus ME-2000i, ME-2600i, ME-3000vm1 support"
  782. help
  783. Enable support for Meilhaus PCI data acquisition cards
  784. ME-2000i, ME-2600i and ME-3000vm1
  785. To compile this driver as a module, choose M here: the module will be
  786. called me_daq.
  787. config COMEDI_NI_6527
  788. tristate "NI 6527 support"
  789. help
  790. Enable support for the National Instruments 6527 PCI card
  791. To compile this driver as a module, choose M here: the module will be
  792. called ni_6527.
  793. config COMEDI_NI_65XX
  794. tristate "NI 65xx static dio PCI card support"
  795. help
  796. Enable support for National Instruments 65xx static dio boards.
  797. Supported devices: National Instruments PCI-6509 (ni_65xx),
  798. PXI-6509, PCI-6510, PCI-6511, PXI-6511, PCI-6512, PXI-6512, PCI-6513,
  799. PXI-6513, PCI-6514, PXI-6514, PCI-6515, PXI-6515, PCI-6516, PCI-6517,
  800. PCI-6518, PCI-6519, PCI-6520, PCI-6521, PXI-6521, PCI-6528, PXI-6528
  801. To compile this driver as a module, choose M here: the module will be
  802. called ni_65xx.
  803. config COMEDI_NI_660X
  804. tristate "NI 660x counter/timer PCI card support"
  805. depends on HAS_DMA
  806. select COMEDI_NI_TIOCMD
  807. help
  808. Enable support for National Instruments PCI-6601 (ni_660x), PCI-6602,
  809. PXI-6602, PXI-6608, PCI-6624, and PXI-6624.
  810. To compile this driver as a module, choose M here: the module will be
  811. called ni_660x.
  812. config COMEDI_NI_670X
  813. tristate "NI 670x PCI card support"
  814. help
  815. Enable support for National Instruments PCI-6703 and PCI-6704
  816. To compile this driver as a module, choose M here: the module will be
  817. called ni_670x.
  818. config COMEDI_NI_LABPC_PCI
  819. tristate "NI Lab-PC PCI-1200 support"
  820. select COMEDI_NI_LABPC
  821. help
  822. Enable support for National Instruments Lab-PC PCI-1200.
  823. To compile this driver as a module, choose M here: the module will be
  824. called ni_labpc_pci.
  825. config COMEDI_NI_PCIDIO
  826. tristate "NI PCI-DIO32HS, PCI-6533, PCI-6534 support"
  827. depends on HAS_DMA
  828. select COMEDI_MITE
  829. select COMEDI_8255
  830. help
  831. Enable support for National Instruments PCI-DIO-32HS, PXI-6533,
  832. PCI-6533 and PCI-6534
  833. To compile this driver as a module, choose M here: the module will be
  834. called ni_pcidio.
  835. config COMEDI_NI_PCIMIO
  836. tristate "NI PCI-MIO-E series and M series support"
  837. depends on HAS_DMA
  838. select COMEDI_NI_TIOCMD
  839. select COMEDI_8255
  840. help
  841. Enable support for National Instruments PCI-MIO-E series and M series
  842. (all boards): PCI-MIO-16XE-10, PXI-6030E, PCI-MIO-16E-1,
  843. PCI-MIO-16E-4, PCI-6014, PCI-6040E, PXI-6040E, PCI-6030E, PCI-6031E,
  844. PCI-6032E, PCI-6033E, PCI-6071E, PCI-6023E, PCI-6024E, PCI-6025E,
  845. PXI-6025E, PCI-6034E, PCI-6035E, PCI-6052E, PCI-6110, PCI-6111,
  846. PCI-6220, PXI-6220, PCI-6221, PXI-6221, PCI-6224, PXI-6224, PCI-6225,
  847. PXI-6225, PCI-6229, PXI-6229, PCI-6250, PXI-6250, PCI-6251, PXI-6251,
  848. PCIe-6251, PXIe-6251, PCI-6254, PXI-6254, PCI-6259, PXI-6259,
  849. PCIe-6259, PXIe-6259, PCI-6280, PXI-6280, PCI-6281, PXI-6281,
  850. PCI-6284, PXI-6284, PCI-6289, PXI-6289, PCI-6711, PXI-6711,
  851. PCI-6713, PXI-6713, PXI-6071E, PCI-6070E, PXI-6070E, PXI-6052E,
  852. PCI-6036E, PCI-6731, PCI-6733, PXI-6733, PCI-6143, PXI-6143
  853. To compile this driver as a module, choose M here: the module will be
  854. called ni_pcimio.
  855. config COMEDI_RTD520
  856. tristate "Real Time Devices PCI4520/DM7520 support"
  857. select COMEDI_8254
  858. help
  859. Enable support for Real Time Devices PCI4520/DM7520
  860. To compile this driver as a module, choose M here: the module will be
  861. called rtd520.
  862. config COMEDI_S626
  863. tristate "Sensoray 626 support"
  864. help
  865. Enable support for Sensoray 626
  866. To compile this driver as a module, choose M here: the module will be
  867. called s626.
  868. config COMEDI_MITE
  869. depends on HAS_DMA
  870. tristate
  871. config COMEDI_NI_TIOCMD
  872. tristate
  873. depends on HAS_DMA
  874. select COMEDI_NI_TIO
  875. select COMEDI_MITE
  876. endif # COMEDI_PCI_DRIVERS
  877. menuconfig COMEDI_PCMCIA_DRIVERS
  878. tristate "Comedi PCMCIA drivers"
  879. depends on PCMCIA
  880. help
  881. Enable support for comedi PCMCIA drivers.
  882. To compile this support as a module, choose M here: the module will
  883. be called comedi_pcmcia.
  884. if COMEDI_PCMCIA_DRIVERS
  885. config COMEDI_CB_DAS16_CS
  886. tristate "CB DAS16 series PCMCIA support"
  887. select COMEDI_8254
  888. help
  889. Enable support for the ComputerBoards/MeasurementComputing PCMCIA
  890. cards DAS16/16, PCM-DAS16D/12 and PCM-DAS16s/16
  891. To compile this driver as a module, choose M here: the module will be
  892. called cb_das16_cs.
  893. config COMEDI_DAS08_CS
  894. tristate "CB DAS08 PCMCIA support"
  895. select COMEDI_DAS08
  896. help
  897. Enable support for the ComputerBoards/MeasurementComputing DAS-08
  898. PCMCIA card
  899. To compile this driver as a module, choose M here: the module will be
  900. called das08_cs.
  901. config COMEDI_NI_DAQ_700_CS
  902. tristate "NI DAQCard-700 PCMCIA support"
  903. help
  904. Enable support for the National Instruments PCMCIA DAQCard-700 DIO
  905. To compile this driver as a module, choose M here: the module will be
  906. called ni_daq_700.
  907. config COMEDI_NI_DAQ_DIO24_CS
  908. tristate "NI DAQ-Card DIO-24 PCMCIA support"
  909. select COMEDI_8255
  910. help
  911. Enable support for the National Instruments PCMCIA DAQ-Card DIO-24
  912. To compile this driver as a module, choose M here: the module will be
  913. called ni_daq_dio24.
  914. config COMEDI_NI_LABPC_CS
  915. tristate "NI DAQCard-1200 PCMCIA support"
  916. select COMEDI_NI_LABPC
  917. help
  918. Enable support for the National Instruments PCMCIA DAQCard-1200
  919. To compile this driver as a module, choose M here: the module will be
  920. called ni_labpc_cs.
  921. config COMEDI_NI_MIO_CS
  922. tristate "NI DAQCard E series PCMCIA support"
  923. select COMEDI_NI_TIO
  924. select COMEDI_8255
  925. help
  926. Enable support for the National Instruments PCMCIA DAQCard E series
  927. DAQCard-ai-16xe-50, DAQCard-ai-16e-4, DAQCard-6062E, DAQCard-6024E
  928. and DAQCard-6036E
  929. To compile this driver as a module, choose M here: the module will be
  930. called ni_mio_cs.
  931. config COMEDI_QUATECH_DAQP_CS
  932. tristate "Quatech DAQP PCMCIA data capture card support"
  933. help
  934. Enable support for the Quatech DAQP PCMCIA data capture cards
  935. DAQP-208 and DAQP-308
  936. To compile this driver as a module, choose M here: the module will be
  937. called quatech_daqp_cs.
  938. endif # COMEDI_PCMCIA_DRIVERS
  939. menuconfig COMEDI_USB_DRIVERS
  940. tristate "Comedi USB drivers"
  941. depends on USB
  942. help
  943. Enable support for comedi USB drivers.
  944. To compile this support as a module, choose M here: the module will
  945. be called comedi_usb.
  946. if COMEDI_USB_DRIVERS
  947. config COMEDI_DT9812
  948. tristate "DataTranslation DT9812 USB module support"
  949. help
  950. Enable support for the Data Translation DT9812 USB module
  951. To compile this driver as a module, choose M here: the module will be
  952. called dt9812.
  953. config COMEDI_NI_USB6501
  954. tristate "NI USB-6501 support"
  955. help
  956. Enable support for the National Instruments USB-6501 module.
  957. The NI USB-6501 is a Full-Speed USB 2.0 (12 Mbit/s) device that
  958. provides 24 digital I/O lines channels and one 32-bit counter.
  959. To compile this driver as a module, choose M here: the module will be
  960. called ni_usb6501.
  961. config COMEDI_USBDUX
  962. tristate "ITL USB-DUX-D support"
  963. help
  964. Enable support for the Incite Technology Ltd USB-DUX-D Board
  965. To compile this driver as a module, choose M here: the module will be
  966. called usbdux.
  967. config COMEDI_USBDUXFAST
  968. tristate "ITL USB-DUXfast support"
  969. help
  970. Enable support for the Incite Technology Ltd USB-DUXfast Board
  971. To compile this driver as a module, choose M here: the module will be
  972. called usbduxfast.
  973. config COMEDI_USBDUXSIGMA
  974. tristate "ITL USB-DUXsigma support"
  975. help
  976. Enable support for the Incite Technology Ltd USB-DUXsigma Board
  977. To compile this driver as a module, choose M here: the module will be
  978. called usbduxsigma.
  979. config COMEDI_VMK80XX
  980. tristate "Velleman VM110/VM140 USB Board support"
  981. help
  982. Build the Velleman USB Board Low-Level Driver supporting the
  983. K8055/K8061 aka VM110/VM140 devices
  984. To compile this driver as a module, choose M here: the module will be
  985. called vmk80xx.
  986. endif # COMEDI_USB_DRIVERS
  987. config COMEDI_8254
  988. tristate
  989. config COMEDI_8255
  990. tristate
  991. config COMEDI_8255_SA
  992. tristate "Standalone 8255 support"
  993. select COMEDI_8255
  994. help
  995. Enable support for 8255 digital I/O as a standalone driver.
  996. You should enable compilation this driver if you plan to use a board
  997. that has an 8255 chip at a known I/O base address and there are no
  998. other Comedi drivers for the board.
  999. Note that Comedi drivers for most multi-function boards incorporating
  1000. an 8255 chip use the 'comedi_8255' module. Most PCI-based 8255
  1001. boards use the 8255_pci driver as a wrapper around the 'comedi_8255'
  1002. module.
  1003. To compile this driver as a module, choose M here: the module will be
  1004. called 8255.
  1005. config COMEDI_KCOMEDILIB
  1006. tristate "Comedi kcomedilib"
  1007. help
  1008. Build the kcomedilib.
  1009. This is a kernel module used to open and manipulate Comedi devices
  1010. from within kernel code. It is currently only used by the
  1011. comedi_bond driver, and its functionality has been stripped down to
  1012. the needs of that driver, so is currently not very useful for
  1013. anything else.
  1014. To compile kcomedilib as a module, choose M here: the module will be
  1015. called kcomedilib.
  1016. config COMEDI_AMPLC_DIO200
  1017. select COMEDI_8254
  1018. tristate
  1019. config COMEDI_AMPLC_PC236
  1020. tristate
  1021. select COMEDI_8255
  1022. config COMEDI_DAS08
  1023. tristate
  1024. select COMEDI_8254
  1025. select COMEDI_8255
  1026. config COMEDI_ISADMA
  1027. tristate
  1028. config COMEDI_NI_LABPC
  1029. tristate
  1030. select COMEDI_8254
  1031. select COMEDI_8255
  1032. config COMEDI_NI_LABPC_ISADMA
  1033. tristate
  1034. default COMEDI_NI_LABPC
  1035. depends on COMEDI_NI_LABPC_ISA != n
  1036. depends on ISA_DMA_API
  1037. select COMEDI_ISADMA
  1038. config COMEDI_NI_TIO
  1039. tristate
  1040. select COMEDI_NI_ROUTING
  1041. config COMEDI_NI_ROUTING
  1042. tristate
  1043. endif # COMEDI