Kconfig 40 KB

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