Kconfig 40 KB

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