xref: /openbmc/linux/drivers/comedi/Kconfig (revision 98a15816)
18ffdff6aSGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0
228ecbbaeSRandy Dunlapmenuconfig COMEDI
38ffdff6aSGreg Kroah-Hartman	tristate "Data acquisition support (comedi)"
48ffdff6aSGreg Kroah-Hartman	help
58ffdff6aSGreg Kroah-Hartman	  Enable support for a wide range of data acquisition devices
68ffdff6aSGreg Kroah-Hartman	  for Linux.
78ffdff6aSGreg Kroah-Hartman
88ffdff6aSGreg Kroah-Hartmanif COMEDI
98ffdff6aSGreg Kroah-Hartman
108ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DEBUG
118ffdff6aSGreg Kroah-Hartman	bool "Comedi debugging"
128ffdff6aSGreg Kroah-Hartman	help
138ffdff6aSGreg Kroah-Hartman	  This is an option for use by developers; most people should
148ffdff6aSGreg Kroah-Hartman	  say N here. This enables comedi core and driver debugging.
158ffdff6aSGreg Kroah-Hartman
168ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DEFAULT_BUF_SIZE_KB
178ffdff6aSGreg Kroah-Hartman	int "Comedi default initial asynchronous buffer size in KiB"
188ffdff6aSGreg Kroah-Hartman	default "2048"
198ffdff6aSGreg Kroah-Hartman	help
208ffdff6aSGreg Kroah-Hartman	  This is the default asynchronous buffer size which is used for
218ffdff6aSGreg Kroah-Hartman	  commands running in the background in kernel space.  This
228ffdff6aSGreg Kroah-Hartman	  defaults to 2048 KiB of memory so that a 16 channel card
238ffdff6aSGreg Kroah-Hartman	  running at 10 kHz has of 2-4 seconds of buffer.
248ffdff6aSGreg Kroah-Hartman
258ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DEFAULT_BUF_MAXSIZE_KB
268ffdff6aSGreg Kroah-Hartman	int "Comedi default maximum asynchronous buffer size in KiB"
278ffdff6aSGreg Kroah-Hartman	default "20480"
288ffdff6aSGreg Kroah-Hartman	help
298ffdff6aSGreg Kroah-Hartman	  This is the default maximum asynchronous buffer size which can
308ffdff6aSGreg Kroah-Hartman	  be requested by a userspace program without root privileges.
318ffdff6aSGreg Kroah-Hartman	  This is set to 20480 KiB so that a fast I/O card with 16
328ffdff6aSGreg Kroah-Hartman	  channels running at 100 kHz has 2-4 seconds of buffer.
338ffdff6aSGreg Kroah-Hartman
348ffdff6aSGreg Kroah-Hartmanmenuconfig COMEDI_MISC_DRIVERS
358ffdff6aSGreg Kroah-Hartman	bool "Comedi misc drivers"
368ffdff6aSGreg Kroah-Hartman	help
378ffdff6aSGreg Kroah-Hartman	  Enable comedi misc drivers to be built
388ffdff6aSGreg Kroah-Hartman
398ffdff6aSGreg Kroah-Hartman	  Note that the answer to this question won't directly affect the
408ffdff6aSGreg Kroah-Hartman	  kernel: saying N will just cause the configurator to skip all
418ffdff6aSGreg Kroah-Hartman	  the questions about misc non-hardware comedi drivers.
428ffdff6aSGreg Kroah-Hartman
438ffdff6aSGreg Kroah-Hartmanif COMEDI_MISC_DRIVERS
448ffdff6aSGreg Kroah-Hartman
458ffdff6aSGreg Kroah-Hartmanconfig COMEDI_BOND
468ffdff6aSGreg Kroah-Hartman	tristate "Comedi device bonding support"
478ffdff6aSGreg Kroah-Hartman	select COMEDI_KCOMEDILIB
488ffdff6aSGreg Kroah-Hartman	help
498ffdff6aSGreg Kroah-Hartman	  Enable support for a driver to 'bond' (merge) multiple subdevices
508ffdff6aSGreg Kroah-Hartman	  from multiple devices together as one.
518ffdff6aSGreg Kroah-Hartman
528ffdff6aSGreg Kroah-Hartman	  Currently, it only handles digital I/O subdevices.
538ffdff6aSGreg Kroah-Hartman
548ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
558ffdff6aSGreg Kroah-Hartman	  called comedi_bond.
568ffdff6aSGreg Kroah-Hartman
578ffdff6aSGreg Kroah-Hartmanconfig COMEDI_TEST
588ffdff6aSGreg Kroah-Hartman	tristate "Fake waveform generator support"
598ffdff6aSGreg Kroah-Hartman	help
608ffdff6aSGreg Kroah-Hartman	  Enable support for the fake waveform generator.
618ffdff6aSGreg Kroah-Hartman	  This driver is mainly for testing purposes, but can also be used to
628ffdff6aSGreg Kroah-Hartman	  generate sample waveforms on systems that don't have data acquisition
638ffdff6aSGreg Kroah-Hartman	  hardware.
648ffdff6aSGreg Kroah-Hartman
658ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
668ffdff6aSGreg Kroah-Hartman	  called comedi_test.
678ffdff6aSGreg Kroah-Hartman
688ffdff6aSGreg Kroah-Hartmanconfig COMEDI_PARPORT
698ffdff6aSGreg Kroah-Hartman	tristate "Parallel port support"
708ffdff6aSGreg Kroah-Hartman	help
718ffdff6aSGreg Kroah-Hartman	  Enable support for the standard parallel port.
728ffdff6aSGreg Kroah-Hartman	  A cheap and easy way to get a few more digital I/O lines. Steal
738ffdff6aSGreg Kroah-Hartman	  additional parallel ports from old computers or your neighbors'
748ffdff6aSGreg Kroah-Hartman	  computers.
758ffdff6aSGreg Kroah-Hartman
768ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
778ffdff6aSGreg Kroah-Hartman	  called comedi_parport.
788ffdff6aSGreg Kroah-Hartman
798ffdff6aSGreg Kroah-Hartmanconfig COMEDI_SSV_DNP
808ffdff6aSGreg Kroah-Hartman	tristate "SSV Embedded Systems DIL/Net-PC support"
818ffdff6aSGreg Kroah-Hartman	depends on X86_32 || COMPILE_TEST
828ffdff6aSGreg Kroah-Hartman	help
838ffdff6aSGreg Kroah-Hartman	  Enable support for SSV Embedded Systems DIL/Net-PC
848ffdff6aSGreg Kroah-Hartman
858ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
868ffdff6aSGreg Kroah-Hartman	  called ssv_dnp.
878ffdff6aSGreg Kroah-Hartman
888ffdff6aSGreg Kroah-Hartmanendif # COMEDI_MISC_DRIVERS
898ffdff6aSGreg Kroah-Hartman
908ffdff6aSGreg Kroah-Hartmanmenuconfig COMEDI_ISA_DRIVERS
918ffdff6aSGreg Kroah-Hartman	bool "Comedi ISA and PC/104 drivers"
928ffdff6aSGreg Kroah-Hartman	help
938ffdff6aSGreg Kroah-Hartman	  Enable comedi ISA and PC/104 drivers to be built
948ffdff6aSGreg Kroah-Hartman
958ffdff6aSGreg Kroah-Hartman	  Note that the answer to this question won't directly affect the
968ffdff6aSGreg Kroah-Hartman	  kernel: saying N will just cause the configurator to skip all
978ffdff6aSGreg Kroah-Hartman	  the questions about ISA and PC/104 comedi drivers.
988ffdff6aSGreg Kroah-Hartman
998ffdff6aSGreg Kroah-Hartmanif COMEDI_ISA_DRIVERS
1008ffdff6aSGreg Kroah-Hartman
1018ffdff6aSGreg Kroah-Hartmanconfig COMEDI_PCL711
1028ffdff6aSGreg Kroah-Hartman	tristate "Advantech PCL-711/711b and ADlink ACL-8112 ISA card support"
103*98a15816SIan Abbott	select COMEDI_8254
1048ffdff6aSGreg Kroah-Hartman	help
1058ffdff6aSGreg Kroah-Hartman	  Enable support for Advantech PCL-711 and 711b, ADlink ACL-8112
1068ffdff6aSGreg Kroah-Hartman
1078ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
1088ffdff6aSGreg Kroah-Hartman	  called pcl711.
1098ffdff6aSGreg Kroah-Hartman
1108ffdff6aSGreg Kroah-Hartmanconfig COMEDI_PCL724
1118ffdff6aSGreg Kroah-Hartman	tristate "Advantech PCL-722/724/731 and ADlink ACL-7122/7124/PET-48DIO"
1128ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
1138ffdff6aSGreg Kroah-Hartman	help
1148ffdff6aSGreg Kroah-Hartman	  Enable support for ISA and PC/104 based 8255 digital i/o boards. This
1158ffdff6aSGreg Kroah-Hartman	  driver provides a legacy comedi driver wrapper for the generic 8255
1168ffdff6aSGreg Kroah-Hartman	  support driver.
1178ffdff6aSGreg Kroah-Hartman
1188ffdff6aSGreg Kroah-Hartman	  Supported boards include:
1198ffdff6aSGreg Kroah-Hartman	    Advantech PCL-724            24 channels
1208ffdff6aSGreg Kroah-Hartman	    Advantech PCL-722            144 (or 96) channels
1218ffdff6aSGreg Kroah-Hartman	    Advantech PCL-731            48 channels
1228ffdff6aSGreg Kroah-Hartman	    ADlink ACL-7122              144 (or 96) channels
1238ffdff6aSGreg Kroah-Hartman	    ADlink ACL-7124              24 channels
1248ffdff6aSGreg Kroah-Hartman	    ADlink PET-48DIO             48 channels
1258ffdff6aSGreg Kroah-Hartman	    WinSystems PCM-IO48          48 channels (PC/104)
1268ffdff6aSGreg Kroah-Hartman	    Diamond Systems ONYX-MM-DIO  48 channels (PC/104)
1278ffdff6aSGreg Kroah-Hartman
1288ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
1298ffdff6aSGreg Kroah-Hartman	  called pcl724.
1308ffdff6aSGreg Kroah-Hartman
1318ffdff6aSGreg Kroah-Hartmanconfig COMEDI_PCL726
1328ffdff6aSGreg Kroah-Hartman	tristate "Advantech PCL-726 and compatible ISA card support"
1338ffdff6aSGreg Kroah-Hartman	help
1348ffdff6aSGreg Kroah-Hartman	  Enable support for Advantech PCL-726 and compatible ISA cards.
1358ffdff6aSGreg Kroah-Hartman
1368ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
1378ffdff6aSGreg Kroah-Hartman	  called pcl726.
1388ffdff6aSGreg Kroah-Hartman
1398ffdff6aSGreg Kroah-Hartmanconfig COMEDI_PCL730
1408ffdff6aSGreg Kroah-Hartman	tristate "Simple Digital I/O board support (8-bit ports)"
1418ffdff6aSGreg Kroah-Hartman	help
1428ffdff6aSGreg Kroah-Hartman	  Enable support for various simple ISA or PC/104 Digital I/O boards.
1438ffdff6aSGreg Kroah-Hartman	  These boards all use 8-bit I/O ports.
1448ffdff6aSGreg Kroah-Hartman
1458ffdff6aSGreg Kroah-Hartman	  Advantech PCL-730             iso - 16 in/16 out  ttl - 16 in/16 out
1468ffdff6aSGreg Kroah-Hartman	  ICP ISO-730                   iso - 16 in/16 out  ttl - 16 in/16 out
1478ffdff6aSGreg Kroah-Hartman	  ADlink ACL-7130               iso - 16 in/16 out  ttl - 16 in/16 out
1488ffdff6aSGreg Kroah-Hartman	  Advantech PCM-3730            iso - 8 in/8 out    ttl - 16 in/16 out
1498ffdff6aSGreg Kroah-Hartman	  Advantech PCL-725             iso - 8 in/8 out
1508ffdff6aSGreg Kroah-Hartman	  ICP P8R8-DIO                  iso - 8 in/8 out
1518ffdff6aSGreg Kroah-Hartman	  ADlink ACL-7225b              iso - 16 in/16 out
1528ffdff6aSGreg Kroah-Hartman	  ICP P16R16-DIO                iso - 16 in/16 out
1538ffdff6aSGreg Kroah-Hartman	  Advantech PCL-733             iso - 32 in
1548ffdff6aSGreg Kroah-Hartman	  Advantech PCL-734             iso - 32 out
1558ffdff6aSGreg Kroah-Hartman	  Diamond Systems OPMM-1616-XT  iso - 16 in/16 out
1568ffdff6aSGreg Kroah-Hartman	  Diamond Systems PEARL-MM-P    iso - 16 out
1578ffdff6aSGreg Kroah-Hartman	  Diamond Systems IR104-PBF     iso - 20 in/20 out
1588ffdff6aSGreg Kroah-Hartman
1598ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
1608ffdff6aSGreg Kroah-Hartman	  called pcl730.
1618ffdff6aSGreg Kroah-Hartman
1628ffdff6aSGreg Kroah-Hartmanconfig COMEDI_PCL812
1638ffdff6aSGreg Kroah-Hartman	tristate "Advantech PCL-812/813 and ADlink ACL-8112/8113/8113/8216"
1648ffdff6aSGreg Kroah-Hartman	select COMEDI_ISADMA if ISA_DMA_API
165*98a15816SIan Abbott	select COMEDI_8254
1668ffdff6aSGreg Kroah-Hartman	help
1678ffdff6aSGreg Kroah-Hartman	  Enable support for Advantech PCL-812/PG, PCL-813/B, ADLink
1688ffdff6aSGreg Kroah-Hartman	  ACL-8112DG/HG/PG, ACL-8113, ACL-8216, ICP DAS A-821PGH/PGL/PGL-NDA,
1698ffdff6aSGreg Kroah-Hartman	  A-822PGH/PGL, A-823PGH/PGL, A-826PG and ICP DAS ISO-813 ISA cards
1708ffdff6aSGreg Kroah-Hartman
1718ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
1728ffdff6aSGreg Kroah-Hartman	  called pcl812.
1738ffdff6aSGreg Kroah-Hartman
1748ffdff6aSGreg Kroah-Hartmanconfig COMEDI_PCL816
1758ffdff6aSGreg Kroah-Hartman	tristate "Advantech PCL-814 and PCL-816 ISA card support"
1768ffdff6aSGreg Kroah-Hartman	select COMEDI_ISADMA if ISA_DMA_API
177*98a15816SIan Abbott	select COMEDI_8254
1788ffdff6aSGreg Kroah-Hartman	help
1798ffdff6aSGreg Kroah-Hartman	  Enable support for Advantech PCL-814 and PCL-816 ISA cards
1808ffdff6aSGreg Kroah-Hartman
1818ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
1828ffdff6aSGreg Kroah-Hartman	  called pcl816.
1838ffdff6aSGreg Kroah-Hartman
1848ffdff6aSGreg Kroah-Hartmanconfig COMEDI_PCL818
1858ffdff6aSGreg Kroah-Hartman	tristate "Advantech PCL-718 and PCL-818 ISA card support"
1868ffdff6aSGreg Kroah-Hartman	select COMEDI_ISADMA if ISA_DMA_API
187*98a15816SIan Abbott	select COMEDI_8254
1888ffdff6aSGreg Kroah-Hartman	help
1898ffdff6aSGreg Kroah-Hartman	  Enable support for Advantech PCL-818 ISA cards
1908ffdff6aSGreg Kroah-Hartman	  PCL-818L, PCL-818H, PCL-818HD, PCL-818HG, PCL-818 and PCL-718
1918ffdff6aSGreg Kroah-Hartman
1928ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
1938ffdff6aSGreg Kroah-Hartman	  called pcl818.
1948ffdff6aSGreg Kroah-Hartman
1958ffdff6aSGreg Kroah-Hartmanconfig COMEDI_PCM3724
1968ffdff6aSGreg Kroah-Hartman	tristate "Advantech PCM-3724 PC/104 card support"
1978ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
1988ffdff6aSGreg Kroah-Hartman	help
1998ffdff6aSGreg Kroah-Hartman	  Enable support for Advantech PCM-3724 PC/104 cards.
2008ffdff6aSGreg Kroah-Hartman
2018ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
2028ffdff6aSGreg Kroah-Hartman	  called pcm3724.
2038ffdff6aSGreg Kroah-Hartman
2048ffdff6aSGreg Kroah-Hartmanconfig COMEDI_AMPLC_DIO200_ISA
2058ffdff6aSGreg Kroah-Hartman	tristate "Amplicon PC212E/PC214E/PC215E/PC218E/PC272E"
206*98a15816SIan Abbott	select COMEDI_AMPLC_DIO200
2078ffdff6aSGreg Kroah-Hartman	help
2088ffdff6aSGreg Kroah-Hartman	  Enable support for Amplicon PC212E, PC214E, PC215E, PC218E and
2098ffdff6aSGreg Kroah-Hartman	  PC272E ISA DIO boards
2108ffdff6aSGreg Kroah-Hartman
2118ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
2128ffdff6aSGreg Kroah-Hartman	  called amplc_dio200.
2138ffdff6aSGreg Kroah-Hartman
2148ffdff6aSGreg Kroah-Hartmanconfig COMEDI_AMPLC_PC236_ISA
2158ffdff6aSGreg Kroah-Hartman	tristate "Amplicon PC36AT DIO board support"
2168ffdff6aSGreg Kroah-Hartman	select COMEDI_AMPLC_PC236
2178ffdff6aSGreg Kroah-Hartman	help
2188ffdff6aSGreg Kroah-Hartman	  Enable support for Amplicon PC36AT ISA DIO board.
2198ffdff6aSGreg Kroah-Hartman
2208ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
2218ffdff6aSGreg Kroah-Hartman	  called amplc_pc236.
2228ffdff6aSGreg Kroah-Hartman
2238ffdff6aSGreg Kroah-Hartmanconfig COMEDI_AMPLC_PC263_ISA
2248ffdff6aSGreg Kroah-Hartman	tristate "Amplicon PC263 relay board support"
2258ffdff6aSGreg Kroah-Hartman	help
2268ffdff6aSGreg Kroah-Hartman	  Enable support for Amplicon PC263 ISA relay board.  This board has
2278ffdff6aSGreg Kroah-Hartman	  16 reed relay output channels.
2288ffdff6aSGreg Kroah-Hartman
2298ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
2308ffdff6aSGreg Kroah-Hartman	  called amplc_pc263.
2318ffdff6aSGreg Kroah-Hartman
2328ffdff6aSGreg Kroah-Hartmanconfig COMEDI_RTI800
2338ffdff6aSGreg Kroah-Hartman	tristate "Analog Devices RTI-800/815 ISA card support"
2348ffdff6aSGreg Kroah-Hartman	help
2358ffdff6aSGreg Kroah-Hartman	  Enable support for Analog Devices RTI-800/815 ISA cards
2368ffdff6aSGreg Kroah-Hartman
2378ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
2388ffdff6aSGreg Kroah-Hartman	  called rti800.
2398ffdff6aSGreg Kroah-Hartman
2408ffdff6aSGreg Kroah-Hartmanconfig COMEDI_RTI802
2418ffdff6aSGreg Kroah-Hartman	tristate "Analog Devices RTI-802 ISA card support"
2428ffdff6aSGreg Kroah-Hartman	help
2438ffdff6aSGreg Kroah-Hartman	  Enable support for Analog Devices RTI-802 ISA cards
2448ffdff6aSGreg Kroah-Hartman
2458ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
2468ffdff6aSGreg Kroah-Hartman	  called rti802.
2478ffdff6aSGreg Kroah-Hartman
2488ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DAC02
2498ffdff6aSGreg Kroah-Hartman	tristate "Keithley Metrabyte DAC02 compatible ISA card support"
2508ffdff6aSGreg Kroah-Hartman	help
2518ffdff6aSGreg Kroah-Hartman	  Enable support for Keithley Metrabyte DAC02 compatible ISA cards.
2528ffdff6aSGreg Kroah-Hartman
2538ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
2548ffdff6aSGreg Kroah-Hartman	  called dac02.
2558ffdff6aSGreg Kroah-Hartman
2568ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DAS16M1
2578ffdff6aSGreg Kroah-Hartman	tristate "MeasurementComputing CIO-DAS16/M1DAS-16 ISA card support"
258*98a15816SIan Abbott	select COMEDI_8254
2598ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
2608ffdff6aSGreg Kroah-Hartman	help
2618ffdff6aSGreg Kroah-Hartman	  Enable support for Measurement Computing CIO-DAS16/M1 ISA cards.
2628ffdff6aSGreg Kroah-Hartman
2638ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
2648ffdff6aSGreg Kroah-Hartman	  called das16m1.
2658ffdff6aSGreg Kroah-Hartman
2668ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DAS08_ISA
2678ffdff6aSGreg Kroah-Hartman	tristate "DAS-08 compatible ISA and PC/104 card support"
268*98a15816SIan Abbott	select COMEDI_DAS08
2698ffdff6aSGreg Kroah-Hartman	help
2708ffdff6aSGreg Kroah-Hartman	  Enable support for Keithley Metrabyte/ComputerBoards DAS08
2718ffdff6aSGreg Kroah-Hartman	  and compatible ISA and PC/104 cards:
2728ffdff6aSGreg Kroah-Hartman	  Keithley Metrabyte/ComputerBoards DAS08, DAS08-PGM, DAS08-PGH,
2738ffdff6aSGreg Kroah-Hartman	  DAS08-PGL, DAS08-AOH, DAS08-AOL, DAS08-AOM, DAS08/JR-AO,
2748ffdff6aSGreg Kroah-Hartman	  DAS08/JR-16-AO, PC104-DAS08, DAS08/JR/16.
2758ffdff6aSGreg Kroah-Hartman
2768ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
2778ffdff6aSGreg Kroah-Hartman	  called das08_isa.
2788ffdff6aSGreg Kroah-Hartman
2798ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DAS16
2808ffdff6aSGreg Kroah-Hartman	tristate "DAS-16 compatible ISA and PC/104 card support"
2818ffdff6aSGreg Kroah-Hartman	select COMEDI_ISADMA if ISA_DMA_API
282*98a15816SIan Abbott	select COMEDI_8254
2838ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
2848ffdff6aSGreg Kroah-Hartman	help
2858ffdff6aSGreg Kroah-Hartman	  Enable support for Keithley Metrabyte/ComputerBoards DAS16
2868ffdff6aSGreg Kroah-Hartman	  and compatible ISA and PC/104 cards:
2878ffdff6aSGreg Kroah-Hartman	  Keithley Metrabyte DAS-16, DAS-16G, DAS-16F, DAS-1201, DAS-1202,
2888ffdff6aSGreg Kroah-Hartman	  DAS-1401, DAS-1402, DAS-1601, DAS-1602 and
2898ffdff6aSGreg Kroah-Hartman	  ComputerBoards/MeasurementComputing PC104-DAS16/JR/,
2908ffdff6aSGreg Kroah-Hartman	  PC104-DAS16JR/16, CIO-DAS16JR/16, CIO-DAS16/JR, CIO-DAS1401/12,
2918ffdff6aSGreg Kroah-Hartman	  CIO-DAS1402/12, CIO-DAS1402/16, CIO-DAS1601/12, CIO-DAS1602/12,
2928ffdff6aSGreg Kroah-Hartman	  CIO-DAS1602/16, CIO-DAS16/330
2938ffdff6aSGreg Kroah-Hartman
2948ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
2958ffdff6aSGreg Kroah-Hartman	  called das16.
2968ffdff6aSGreg Kroah-Hartman
2978ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DAS800
2988ffdff6aSGreg Kroah-Hartman	tristate "DAS800 and compatible ISA card support"
299*98a15816SIan Abbott	select COMEDI_8254
3008ffdff6aSGreg Kroah-Hartman	help
3018ffdff6aSGreg Kroah-Hartman	  Enable support for Keithley Metrabyte DAS800 and compatible ISA cards
3028ffdff6aSGreg Kroah-Hartman	  Keithley Metrabyte DAS-800, DAS-801, DAS-802
3038ffdff6aSGreg Kroah-Hartman	  Measurement Computing CIO-DAS800, CIO-DAS801, CIO-DAS802 and
3048ffdff6aSGreg Kroah-Hartman	  CIO-DAS802/16
3058ffdff6aSGreg Kroah-Hartman
3068ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
3078ffdff6aSGreg Kroah-Hartman	  called das800.
3088ffdff6aSGreg Kroah-Hartman
3098ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DAS1800
3108ffdff6aSGreg Kroah-Hartman	tristate "DAS1800 and compatible ISA card support"
3118ffdff6aSGreg Kroah-Hartman	select COMEDI_ISADMA if ISA_DMA_API
312*98a15816SIan Abbott	select COMEDI_8254
3138ffdff6aSGreg Kroah-Hartman	help
3148ffdff6aSGreg Kroah-Hartman	  Enable support for DAS1800 and compatible ISA cards
3158ffdff6aSGreg Kroah-Hartman	  Keithley Metrabyte DAS-1701ST, DAS-1701ST-DA, DAS-1701/AO,
3168ffdff6aSGreg Kroah-Hartman	  DAS-1702ST, DAS-1702ST-DA, DAS-1702HR, DAS-1702HR-DA, DAS-1702/AO,
3178ffdff6aSGreg Kroah-Hartman	  DAS-1801ST, DAS-1801ST-DA, DAS-1801HC, DAS-1801AO, DAS-1802ST,
3188ffdff6aSGreg Kroah-Hartman	  DAS-1802ST-DA, DAS-1802HR, DAS-1802HR-DA, DAS-1802HC and
3198ffdff6aSGreg Kroah-Hartman	  DAS-1802AO
3208ffdff6aSGreg Kroah-Hartman
3218ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
3228ffdff6aSGreg Kroah-Hartman	  called das1800.
3238ffdff6aSGreg Kroah-Hartman
3248ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DAS6402
3258ffdff6aSGreg Kroah-Hartman	tristate "DAS6402 and compatible ISA card support"
326*98a15816SIan Abbott	select COMEDI_8254
3278ffdff6aSGreg Kroah-Hartman	help
3288ffdff6aSGreg Kroah-Hartman	  Enable support for DAS6402 and compatible ISA cards
3298ffdff6aSGreg Kroah-Hartman	  Computerboards, Keithley Metrabyte DAS6402 and compatibles
3308ffdff6aSGreg Kroah-Hartman
3318ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
3328ffdff6aSGreg Kroah-Hartman	  called das6402.
3338ffdff6aSGreg Kroah-Hartman
3348ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DT2801
3358ffdff6aSGreg Kroah-Hartman	tristate "Data Translation DT2801 ISA card support"
3368ffdff6aSGreg Kroah-Hartman	help
3378ffdff6aSGreg Kroah-Hartman	  Enable support for Data Translation DT2801 ISA cards
3388ffdff6aSGreg Kroah-Hartman
3398ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
3408ffdff6aSGreg Kroah-Hartman	  called dt2801.
3418ffdff6aSGreg Kroah-Hartman
3428ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DT2811
3438ffdff6aSGreg Kroah-Hartman	tristate "Data Translation DT2811 ISA card support"
3448ffdff6aSGreg Kroah-Hartman	help
3458ffdff6aSGreg Kroah-Hartman	  Enable support for Data Translation DT2811 ISA cards
3468ffdff6aSGreg Kroah-Hartman
3478ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
3488ffdff6aSGreg Kroah-Hartman	  called dt2811.
3498ffdff6aSGreg Kroah-Hartman
3508ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DT2814
3518ffdff6aSGreg Kroah-Hartman	tristate "Data Translation DT2814 ISA card support"
3528ffdff6aSGreg Kroah-Hartman	help
3538ffdff6aSGreg Kroah-Hartman	  Enable support for Data Translation DT2814 ISA cards
3548ffdff6aSGreg Kroah-Hartman
3558ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
3568ffdff6aSGreg Kroah-Hartman	  called dt2814.
3578ffdff6aSGreg Kroah-Hartman
3588ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DT2815
3598ffdff6aSGreg Kroah-Hartman	tristate "Data Translation DT2815 ISA card support"
3608ffdff6aSGreg Kroah-Hartman	help
3618ffdff6aSGreg Kroah-Hartman	  Enable support for Data Translation DT2815 ISA cards
3628ffdff6aSGreg Kroah-Hartman
3638ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
3648ffdff6aSGreg Kroah-Hartman	  called dt2815.
3658ffdff6aSGreg Kroah-Hartman
3668ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DT2817
3678ffdff6aSGreg Kroah-Hartman	tristate "Data Translation DT2817 ISA card support"
3688ffdff6aSGreg Kroah-Hartman	help
3698ffdff6aSGreg Kroah-Hartman	  Enable support for Data Translation DT2817 ISA cards
3708ffdff6aSGreg Kroah-Hartman
3718ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
3728ffdff6aSGreg Kroah-Hartman	  called dt2817.
3738ffdff6aSGreg Kroah-Hartman
3748ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DT282X
3758ffdff6aSGreg Kroah-Hartman	tristate "Data Translation DT2821 series and DT-EZ ISA card support"
3768ffdff6aSGreg Kroah-Hartman	select COMEDI_ISADMA if ISA_DMA_API
3778ffdff6aSGreg Kroah-Hartman	help
3788ffdff6aSGreg Kroah-Hartman	  Enable support for Data Translation DT2821 series including DT-EZ
3798ffdff6aSGreg Kroah-Hartman	  DT2821, DT2821-F-16SE, DT2821-F-8DI, DT2821-G-16SE, DT2821-G-8DI,
3808ffdff6aSGreg Kroah-Hartman	  DT2823 (dt2823), DT2824-PGH, DT2824-PGL, DT2825, DT2827, DT2828,
3818ffdff6aSGreg Kroah-Hartman	  DT21-EZ, DT23-EZ, DT24-EZ and DT24-EZ-PGL
3828ffdff6aSGreg Kroah-Hartman
3838ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
3848ffdff6aSGreg Kroah-Hartman	  called dt282x.
3858ffdff6aSGreg Kroah-Hartman
3868ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DMM32AT
3878ffdff6aSGreg Kroah-Hartman	tristate "Diamond Systems MM-32-AT PC/104 board support"
3888ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
3898ffdff6aSGreg Kroah-Hartman	help
3908ffdff6aSGreg Kroah-Hartman	  Enable support for Diamond Systems MM-32-AT PC/104 boards
3918ffdff6aSGreg Kroah-Hartman
3928ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
3938ffdff6aSGreg Kroah-Hartman	  called dmm32at.
3948ffdff6aSGreg Kroah-Hartman
3958ffdff6aSGreg Kroah-Hartmanconfig COMEDI_FL512
3968ffdff6aSGreg Kroah-Hartman	tristate "FL512 ISA card support"
3978ffdff6aSGreg Kroah-Hartman	help
3988ffdff6aSGreg Kroah-Hartman	  Enable support for FL512 ISA card
3998ffdff6aSGreg Kroah-Hartman
4008ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
4018ffdff6aSGreg Kroah-Hartman	  called fl512.
4028ffdff6aSGreg Kroah-Hartman
4038ffdff6aSGreg Kroah-Hartmanconfig COMEDI_AIO_AIO12_8
4048ffdff6aSGreg Kroah-Hartman	tristate "I/O Products PC/104 AIO12-8 Analog I/O Board support"
405*98a15816SIan Abbott	select COMEDI_8254
4068ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
4078ffdff6aSGreg Kroah-Hartman	help
4088ffdff6aSGreg Kroah-Hartman	  Enable support for I/O Products PC/104 AIO12-8 Analog I/O Board
4098ffdff6aSGreg Kroah-Hartman
4108ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
4118ffdff6aSGreg Kroah-Hartman	  called aio_aio12_8.
4128ffdff6aSGreg Kroah-Hartman
4138ffdff6aSGreg Kroah-Hartmanconfig COMEDI_AIO_IIRO_16
4148ffdff6aSGreg Kroah-Hartman	tristate "I/O Products PC/104 IIRO16 Board support"
4158ffdff6aSGreg Kroah-Hartman	help
4168ffdff6aSGreg Kroah-Hartman	  Enable support for I/O Products PC/104 IIRO16 Relay And Isolated
4178ffdff6aSGreg Kroah-Hartman	  Input Board
4188ffdff6aSGreg Kroah-Hartman
4198ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
4208ffdff6aSGreg Kroah-Hartman	  called aio_iiro_16.
4218ffdff6aSGreg Kroah-Hartman
4228ffdff6aSGreg Kroah-Hartmanconfig COMEDI_II_PCI20KC
4238ffdff6aSGreg Kroah-Hartman	tristate "Intelligent Instruments PCI-20001C carrier support"
4248ffdff6aSGreg Kroah-Hartman	depends on HAS_IOMEM
4258ffdff6aSGreg Kroah-Hartman	help
4268ffdff6aSGreg Kroah-Hartman	  Enable support for Intelligent Instruments PCI-20001C carrier
4278ffdff6aSGreg Kroah-Hartman	  PCI-20001, PCI-20006 and PCI-20341
4288ffdff6aSGreg Kroah-Hartman
4298ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
4308ffdff6aSGreg Kroah-Hartman	  called ii_pci20kc.
4318ffdff6aSGreg Kroah-Hartman
4328ffdff6aSGreg Kroah-Hartmanconfig COMEDI_C6XDIGIO
4338ffdff6aSGreg Kroah-Hartman	tristate "Mechatronic Systems Inc. C6x_DIGIO DSP daughter card support"
4348ffdff6aSGreg Kroah-Hartman	help
4358ffdff6aSGreg Kroah-Hartman	  Enable support for Mechatronic Systems Inc. C6x_DIGIO DSP daughter
4368ffdff6aSGreg Kroah-Hartman	  card
4378ffdff6aSGreg Kroah-Hartman
4388ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
4398ffdff6aSGreg Kroah-Hartman	  called c6xdigio.
4408ffdff6aSGreg Kroah-Hartman
4418ffdff6aSGreg Kroah-Hartmanconfig COMEDI_MPC624
4428ffdff6aSGreg Kroah-Hartman	tristate "Micro/sys MPC-624 PC/104 board support"
4438ffdff6aSGreg Kroah-Hartman	help
4448ffdff6aSGreg Kroah-Hartman	  Enable support for Micro/sys MPC-624 PC/104 board
4458ffdff6aSGreg Kroah-Hartman
4468ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
4478ffdff6aSGreg Kroah-Hartman	  called mpc624.
4488ffdff6aSGreg Kroah-Hartman
4498ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADQ12B
4508ffdff6aSGreg Kroah-Hartman	tristate "MicroAxial ADQ12-B data acquisition and control card support"
4518ffdff6aSGreg Kroah-Hartman	help
4528ffdff6aSGreg Kroah-Hartman	  Enable MicroAxial ADQ12-B daq and control card support.
4538ffdff6aSGreg Kroah-Hartman
4548ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
4558ffdff6aSGreg Kroah-Hartman	  called adq12b.
4568ffdff6aSGreg Kroah-Hartman
4578ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_AT_A2150
4588ffdff6aSGreg Kroah-Hartman	tristate "NI AT-A2150 ISA card support"
4598ffdff6aSGreg Kroah-Hartman	select COMEDI_ISADMA if ISA_DMA_API
460*98a15816SIan Abbott	select COMEDI_8254
4618ffdff6aSGreg Kroah-Hartman	help
4628ffdff6aSGreg Kroah-Hartman	  Enable support for National Instruments AT-A2150 cards
4638ffdff6aSGreg Kroah-Hartman
4648ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
4658ffdff6aSGreg Kroah-Hartman	  called ni_at_a2150.
4668ffdff6aSGreg Kroah-Hartman
4678ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_AT_AO
4688ffdff6aSGreg Kroah-Hartman	tristate "NI AT-AO-6/10 EISA card support"
469*98a15816SIan Abbott	select COMEDI_8254
4708ffdff6aSGreg Kroah-Hartman	help
4718ffdff6aSGreg Kroah-Hartman	  Enable support for National Instruments AT-AO-6/10 cards
4728ffdff6aSGreg Kroah-Hartman
4738ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
4748ffdff6aSGreg Kroah-Hartman	  called ni_at_ao.
4758ffdff6aSGreg Kroah-Hartman
4768ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_ATMIO
4778ffdff6aSGreg Kroah-Hartman	tristate "NI AT-MIO E series ISA-PNP card support"
4788ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
4798ffdff6aSGreg Kroah-Hartman	select COMEDI_NI_TIO
4808ffdff6aSGreg Kroah-Hartman	help
4818ffdff6aSGreg Kroah-Hartman	  Enable support for National Instruments AT-MIO E series cards
4828ffdff6aSGreg Kroah-Hartman	  National Instruments AT-MIO-16E-1 (ni_atmio),
4838ffdff6aSGreg Kroah-Hartman	  AT-MIO-16E-2, AT-MIO-16E-10, AT-MIO-16DE-10, AT-MIO-64E-3,
4848ffdff6aSGreg Kroah-Hartman	  AT-MIO-16XE-50, AT-MIO-16XE-10, AT-AI-16XE-10
4858ffdff6aSGreg Kroah-Hartman
4868ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
4878ffdff6aSGreg Kroah-Hartman	  called ni_atmio.
4888ffdff6aSGreg Kroah-Hartman
4898ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_ATMIO16D
4908ffdff6aSGreg Kroah-Hartman	tristate "NI AT-MIO-16/AT-MIO-16D series ISA card support"
4918ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
4928ffdff6aSGreg Kroah-Hartman	help
4938ffdff6aSGreg Kroah-Hartman	  Enable support for National Instruments AT-MIO-16/AT-MIO-16D cards.
4948ffdff6aSGreg Kroah-Hartman
4958ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
4968ffdff6aSGreg Kroah-Hartman	  called ni_atmio16d.
4978ffdff6aSGreg Kroah-Hartman
4988ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_LABPC_ISA
4998ffdff6aSGreg Kroah-Hartman	tristate "NI Lab-PC and compatibles ISA support"
500*98a15816SIan Abbott	select COMEDI_NI_LABPC
5018ffdff6aSGreg Kroah-Hartman	help
5028ffdff6aSGreg Kroah-Hartman	  Enable support for National Instruments Lab-PC and compatibles
5038ffdff6aSGreg Kroah-Hartman	  Lab-PC-1200, Lab-PC-1200AI, Lab-PC+.
5048ffdff6aSGreg Kroah-Hartman	  Kernel-level ISA plug-and-play support for the lab-pc-1200 boards has
5058ffdff6aSGreg Kroah-Hartman	  not yet been added to the driver.
5068ffdff6aSGreg Kroah-Hartman
5078ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
5088ffdff6aSGreg Kroah-Hartman	  called ni_labpc.
5098ffdff6aSGreg Kroah-Hartman
5108ffdff6aSGreg Kroah-Hartmanconfig COMEDI_PCMAD
5118ffdff6aSGreg Kroah-Hartman	tristate "Winsystems PCM-A/D12 and PCM-A/D16 PC/104 board support"
5128ffdff6aSGreg Kroah-Hartman	help
5138ffdff6aSGreg Kroah-Hartman	  Enable support for Winsystems PCM-A/D12 and PCM-A/D16 PC/104 boards.
5148ffdff6aSGreg Kroah-Hartman
5158ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
5168ffdff6aSGreg Kroah-Hartman	  called pcmad.
5178ffdff6aSGreg Kroah-Hartman
5188ffdff6aSGreg Kroah-Hartmanconfig COMEDI_PCMDA12
5198ffdff6aSGreg Kroah-Hartman	tristate "Winsystems PCM-D/A-12 8-channel AO PC/104 board support"
5208ffdff6aSGreg Kroah-Hartman	help
5218ffdff6aSGreg Kroah-Hartman	  Enable support for Winsystems PCM-D/A-12 8-channel AO PC/104 boards.
5228ffdff6aSGreg Kroah-Hartman	  Note that the board is not ISA-PNP capable and thus needs the I/O
5238ffdff6aSGreg Kroah-Hartman	  port comedi_config parameter.
5248ffdff6aSGreg Kroah-Hartman
5258ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
5268ffdff6aSGreg Kroah-Hartman	  called pcmda12.
5278ffdff6aSGreg Kroah-Hartman
5288ffdff6aSGreg Kroah-Hartmanconfig COMEDI_PCMMIO
5298ffdff6aSGreg Kroah-Hartman	tristate "Winsystems PCM-MIO PC/104 board support"
5308ffdff6aSGreg Kroah-Hartman	help
5318ffdff6aSGreg Kroah-Hartman	  Enable support for Winsystems PCM-MIO multifunction PC/104 boards.
5328ffdff6aSGreg Kroah-Hartman
5338ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
5348ffdff6aSGreg Kroah-Hartman	  called pcmmio.
5358ffdff6aSGreg Kroah-Hartman
5368ffdff6aSGreg Kroah-Hartmanconfig COMEDI_PCMUIO
5378ffdff6aSGreg Kroah-Hartman	tristate "Winsystems PCM-UIO48A and PCM-UIO96A PC/104 board support"
5388ffdff6aSGreg Kroah-Hartman	help
5398ffdff6aSGreg Kroah-Hartman	  Enable support for PCM-UIO48A and PCM-UIO96A PC/104 boards.
5408ffdff6aSGreg Kroah-Hartman
5418ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
5428ffdff6aSGreg Kroah-Hartman	  called pcmuio.
5438ffdff6aSGreg Kroah-Hartman
5448ffdff6aSGreg Kroah-Hartmanconfig COMEDI_MULTIQ3
5458ffdff6aSGreg Kroah-Hartman	tristate "Quanser Consulting MultiQ-3 ISA card support"
5468ffdff6aSGreg Kroah-Hartman	help
5478ffdff6aSGreg Kroah-Hartman	  Enable support for Quanser Consulting MultiQ-3 ISA cards
5488ffdff6aSGreg Kroah-Hartman
5498ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
5508ffdff6aSGreg Kroah-Hartman	  called multiq3.
5518ffdff6aSGreg Kroah-Hartman
5528ffdff6aSGreg Kroah-Hartmanconfig COMEDI_S526
5538ffdff6aSGreg Kroah-Hartman	tristate "Sensoray s526 support"
5548ffdff6aSGreg Kroah-Hartman	help
5558ffdff6aSGreg Kroah-Hartman	  Enable support for Sensoray s526
5568ffdff6aSGreg Kroah-Hartman
5578ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
5588ffdff6aSGreg Kroah-Hartman	  called s526.
5598ffdff6aSGreg Kroah-Hartman
5608ffdff6aSGreg Kroah-Hartmanendif # COMEDI_ISA_DRIVERS
5618ffdff6aSGreg Kroah-Hartman
5628ffdff6aSGreg Kroah-Hartmanmenuconfig COMEDI_PCI_DRIVERS
5638ffdff6aSGreg Kroah-Hartman	tristate "Comedi PCI drivers"
564*98a15816SIan Abbott	depends on PCI
5658ffdff6aSGreg Kroah-Hartman	help
5668ffdff6aSGreg Kroah-Hartman	  Enable support for comedi PCI drivers.
5678ffdff6aSGreg Kroah-Hartman
5688ffdff6aSGreg Kroah-Hartman	  To compile this support as a module, choose M here: the module will
5698ffdff6aSGreg Kroah-Hartman	  be called comedi_pci.
5708ffdff6aSGreg Kroah-Hartman
5718ffdff6aSGreg Kroah-Hartmanif COMEDI_PCI_DRIVERS
5728ffdff6aSGreg Kroah-Hartman
5738ffdff6aSGreg Kroah-Hartmanconfig COMEDI_8255_PCI
5748ffdff6aSGreg Kroah-Hartman	tristate "Generic PCI based 8255 digital i/o board support"
5758ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
5768ffdff6aSGreg Kroah-Hartman	help
5778ffdff6aSGreg Kroah-Hartman	  Enable support for PCI based 8255 digital i/o boards. This driver
5788ffdff6aSGreg Kroah-Hartman	  provides a PCI wrapper around the generic 8255 driver.
5798ffdff6aSGreg Kroah-Hartman
5808ffdff6aSGreg Kroah-Hartman	  Supported boards:
5818ffdff6aSGreg Kroah-Hartman	    ADlink - PCI-7224, PCI-7248, and PCI-7296
5828ffdff6aSGreg Kroah-Hartman	    Measurement Computing - PCI-DIO24, PCI-DIO24H, PCI-DIO48H and
5838ffdff6aSGreg Kroah-Hartman	                            PCI-DIO96H
5848ffdff6aSGreg Kroah-Hartman	    National Instruments - PCI-DIO-96, PCI-DIO-96B, PXI-6508, PCI-6503,
5858ffdff6aSGreg Kroah-Hartman	                           PCI-6503B, PCI-6503X, and PXI-6503
5868ffdff6aSGreg Kroah-Hartman
5878ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will
5888ffdff6aSGreg Kroah-Hartman	  be called 8255_pci.
5898ffdff6aSGreg Kroah-Hartman
5908ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADDI_WATCHDOG
5918ffdff6aSGreg Kroah-Hartman	tristate
5928ffdff6aSGreg Kroah-Hartman	help
5938ffdff6aSGreg Kroah-Hartman	  Provides support for the watchdog subdevice found on many ADDI-DATA
5948ffdff6aSGreg Kroah-Hartman	  boards. This module will be automatically selected when needed. The
5958ffdff6aSGreg Kroah-Hartman	  module will be called addi_watchdog.
5968ffdff6aSGreg Kroah-Hartman
5978ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADDI_APCI_1032
5988ffdff6aSGreg Kroah-Hartman	tristate "ADDI-DATA APCI_1032 support"
5998ffdff6aSGreg Kroah-Hartman	help
6008ffdff6aSGreg Kroah-Hartman	  Enable support for ADDI-DATA APCI_1032 cards
6018ffdff6aSGreg Kroah-Hartman
6028ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
6038ffdff6aSGreg Kroah-Hartman	  called addi_apci_1032.
6048ffdff6aSGreg Kroah-Hartman
6058ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADDI_APCI_1500
6068ffdff6aSGreg Kroah-Hartman	tristate "ADDI-DATA APCI_1500 support"
6078ffdff6aSGreg Kroah-Hartman	help
6088ffdff6aSGreg Kroah-Hartman	  Enable support for ADDI-DATA APCI_1500 cards
6098ffdff6aSGreg Kroah-Hartman
6108ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
6118ffdff6aSGreg Kroah-Hartman	  called addi_apci_1500.
6128ffdff6aSGreg Kroah-Hartman
6138ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADDI_APCI_1516
6148ffdff6aSGreg Kroah-Hartman	tristate "ADDI-DATA APCI-1016/1516/2016 support"
6158ffdff6aSGreg Kroah-Hartman	select COMEDI_ADDI_WATCHDOG
6168ffdff6aSGreg Kroah-Hartman	help
6178ffdff6aSGreg Kroah-Hartman	  Enable support for ADDI-DATA APCI-1016, APCI-1516 and APCI-2016 boards.
6188ffdff6aSGreg Kroah-Hartman	  These are 16 channel, optically isolated, digital I/O boards. The 1516
6198ffdff6aSGreg Kroah-Hartman	  and 2016 boards also have a watchdog for resetting the outputs to "0".
6208ffdff6aSGreg Kroah-Hartman
6218ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
6228ffdff6aSGreg Kroah-Hartman	  called addi_apci_1516.
6238ffdff6aSGreg Kroah-Hartman
6248ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADDI_APCI_1564
6258ffdff6aSGreg Kroah-Hartman	tristate "ADDI-DATA APCI_1564 support"
6268ffdff6aSGreg Kroah-Hartman	select COMEDI_ADDI_WATCHDOG
6278ffdff6aSGreg Kroah-Hartman	help
6288ffdff6aSGreg Kroah-Hartman	  Enable support for ADDI-DATA APCI_1564 cards
6298ffdff6aSGreg Kroah-Hartman
6308ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
6318ffdff6aSGreg Kroah-Hartman	  called addi_apci_1564.
6328ffdff6aSGreg Kroah-Hartman
6338ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADDI_APCI_16XX
6348ffdff6aSGreg Kroah-Hartman	tristate "ADDI-DATA APCI_16xx support"
6358ffdff6aSGreg Kroah-Hartman	help
6368ffdff6aSGreg Kroah-Hartman	  Enable support for ADDI-DATA APCI_16xx cards
6378ffdff6aSGreg Kroah-Hartman
6388ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
6398ffdff6aSGreg Kroah-Hartman	  called addi_apci_16xx.
6408ffdff6aSGreg Kroah-Hartman
6418ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADDI_APCI_2032
6428ffdff6aSGreg Kroah-Hartman	tristate "ADDI-DATA APCI_2032 support"
6438ffdff6aSGreg Kroah-Hartman	select COMEDI_ADDI_WATCHDOG
6448ffdff6aSGreg Kroah-Hartman	help
6458ffdff6aSGreg Kroah-Hartman	  Enable support for ADDI-DATA APCI_2032 cards
6468ffdff6aSGreg Kroah-Hartman
6478ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
6488ffdff6aSGreg Kroah-Hartman	  called addi_apci_2032.
6498ffdff6aSGreg Kroah-Hartman
6508ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADDI_APCI_2200
6518ffdff6aSGreg Kroah-Hartman	tristate "ADDI-DATA APCI_2200 support"
6528ffdff6aSGreg Kroah-Hartman	select COMEDI_ADDI_WATCHDOG
6538ffdff6aSGreg Kroah-Hartman	help
6548ffdff6aSGreg Kroah-Hartman	  Enable support for ADDI-DATA APCI_2200 cards
6558ffdff6aSGreg Kroah-Hartman
6568ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
6578ffdff6aSGreg Kroah-Hartman	  called addi_apci_2200.
6588ffdff6aSGreg Kroah-Hartman
6598ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADDI_APCI_3120
6608ffdff6aSGreg Kroah-Hartman	tristate "ADDI-DATA APCI_3120/3001 support"
6618ffdff6aSGreg Kroah-Hartman	depends on HAS_DMA
6628ffdff6aSGreg Kroah-Hartman	help
6638ffdff6aSGreg Kroah-Hartman	  Enable support for ADDI-DATA APCI_3120/3001 cards
6648ffdff6aSGreg Kroah-Hartman
6658ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
6668ffdff6aSGreg Kroah-Hartman	  called addi_apci_3120.
6678ffdff6aSGreg Kroah-Hartman
6688ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADDI_APCI_3501
6698ffdff6aSGreg Kroah-Hartman	tristate "ADDI-DATA APCI_3501 support"
6708ffdff6aSGreg Kroah-Hartman	help
6718ffdff6aSGreg Kroah-Hartman	  Enable support for ADDI-DATA APCI_3501 cards
6728ffdff6aSGreg Kroah-Hartman
6738ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
6748ffdff6aSGreg Kroah-Hartman	  called addi_apci_3501.
6758ffdff6aSGreg Kroah-Hartman
6768ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADDI_APCI_3XXX
6778ffdff6aSGreg Kroah-Hartman	tristate "ADDI-DATA APCI_3xxx support"
6788ffdff6aSGreg Kroah-Hartman	help
6798ffdff6aSGreg Kroah-Hartman	  Enable support for ADDI-DATA APCI_3xxx cards
6808ffdff6aSGreg Kroah-Hartman
6818ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
6828ffdff6aSGreg Kroah-Hartman	  called addi_apci_3xxx.
6838ffdff6aSGreg Kroah-Hartman
6848ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADL_PCI6208
6858ffdff6aSGreg Kroah-Hartman	tristate "ADLink PCI-6208A support"
6868ffdff6aSGreg Kroah-Hartman	help
6878ffdff6aSGreg Kroah-Hartman	  Enable support for ADLink PCI-6208A cards
6888ffdff6aSGreg Kroah-Hartman
6898ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
6908ffdff6aSGreg Kroah-Hartman	  called adl_pci6208.
6918ffdff6aSGreg Kroah-Hartman
6928ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADL_PCI7X3X
6938ffdff6aSGreg Kroah-Hartman	tristate "ADLink PCI-723X/743X isolated digital i/o board support"
6948ffdff6aSGreg Kroah-Hartman	help
6958ffdff6aSGreg Kroah-Hartman	  Enable support for ADlink PCI-723X/743X isolated digital i/o boards.
6968ffdff6aSGreg Kroah-Hartman	  Supported boards include the 32-channel PCI-7230 (16 in/16 out),
6978ffdff6aSGreg Kroah-Hartman	  PCI-7233 (32 in), and PCI-7234 (32 out) as well as the 64-channel
6988ffdff6aSGreg Kroah-Hartman	  PCI-7432 (32 in/32 out), PCI-7433 (64 in), and PCI-7434 (64 out).
6998ffdff6aSGreg Kroah-Hartman
7008ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
7018ffdff6aSGreg Kroah-Hartman	  called adl_pci7x3x.
7028ffdff6aSGreg Kroah-Hartman
7038ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADL_PCI8164
7048ffdff6aSGreg Kroah-Hartman	tristate "ADLink PCI-8164 4 Axes Motion Control board support"
7058ffdff6aSGreg Kroah-Hartman	help
7068ffdff6aSGreg Kroah-Hartman	  Enable support for ADlink PCI-8164 4 Axes Motion Control board
7078ffdff6aSGreg Kroah-Hartman
7088ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
7098ffdff6aSGreg Kroah-Hartman	  called adl_pci8164.
7108ffdff6aSGreg Kroah-Hartman
7118ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADL_PCI9111
7128ffdff6aSGreg Kroah-Hartman	tristate "ADLink PCI-9111HR support"
713*98a15816SIan Abbott	select COMEDI_8254
7148ffdff6aSGreg Kroah-Hartman	help
7158ffdff6aSGreg Kroah-Hartman	  Enable support for ADlink PCI9111 cards
7168ffdff6aSGreg Kroah-Hartman
7178ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
7188ffdff6aSGreg Kroah-Hartman	  called adl_pci9111.
7198ffdff6aSGreg Kroah-Hartman
7208ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADL_PCI9118
7218ffdff6aSGreg Kroah-Hartman	tristate "ADLink PCI-9118DG, PCI-9118HG, PCI-9118HR support"
7228ffdff6aSGreg Kroah-Hartman	depends on HAS_DMA
723*98a15816SIan Abbott	select COMEDI_8254
7248ffdff6aSGreg Kroah-Hartman	help
7258ffdff6aSGreg Kroah-Hartman	  Enable support for ADlink PCI-9118DG, PCI-9118HG, PCI-9118HR cards
7268ffdff6aSGreg Kroah-Hartman
7278ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
7288ffdff6aSGreg Kroah-Hartman	  called adl_pci9118.
7298ffdff6aSGreg Kroah-Hartman
7308ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADV_PCI1710
7318ffdff6aSGreg Kroah-Hartman	tristate "Advantech PCI-171x and PCI-1731 support"
732*98a15816SIan Abbott	select COMEDI_8254
7338ffdff6aSGreg Kroah-Hartman	help
7348ffdff6aSGreg Kroah-Hartman	  Enable support for Advantech PCI-1710, PCI-1710HG, PCI-1711,
7358ffdff6aSGreg Kroah-Hartman	  PCI-1713 and PCI-1731
7368ffdff6aSGreg Kroah-Hartman
7378ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
7388ffdff6aSGreg Kroah-Hartman	  called adv_pci1710.
7398ffdff6aSGreg Kroah-Hartman
7408ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADV_PCI1720
7418ffdff6aSGreg Kroah-Hartman	tristate "Advantech PCI-1720 support"
7428ffdff6aSGreg Kroah-Hartman	help
7438ffdff6aSGreg Kroah-Hartman	  Enable support for Advantech PCI-1720 Analog Output board.
7448ffdff6aSGreg Kroah-Hartman
7458ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
7468ffdff6aSGreg Kroah-Hartman	  called adv_pci1720.
7478ffdff6aSGreg Kroah-Hartman
7488ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADV_PCI1723
7498ffdff6aSGreg Kroah-Hartman	tristate "Advantech PCI-1723 support"
7508ffdff6aSGreg Kroah-Hartman	help
7518ffdff6aSGreg Kroah-Hartman	  Enable support for Advantech PCI-1723 cards
7528ffdff6aSGreg Kroah-Hartman
7538ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
7548ffdff6aSGreg Kroah-Hartman	  called adv_pci1723.
7558ffdff6aSGreg Kroah-Hartman
7568ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADV_PCI1724
7578ffdff6aSGreg Kroah-Hartman	tristate "Advantech PCI-1724U support"
7588ffdff6aSGreg Kroah-Hartman	help
7598ffdff6aSGreg Kroah-Hartman	  Enable support for Advantech PCI-1724U cards.  These are 32-channel
7608ffdff6aSGreg Kroah-Hartman	  analog output cards with voltage and current loop output ranges and
7618ffdff6aSGreg Kroah-Hartman	  14-bit resolution.
7628ffdff6aSGreg Kroah-Hartman
7638ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
7648ffdff6aSGreg Kroah-Hartman	  called adv_pci1724.
7658ffdff6aSGreg Kroah-Hartman
7668ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADV_PCI1760
7678ffdff6aSGreg Kroah-Hartman	tristate "Advantech PCI-1760 support"
7688ffdff6aSGreg Kroah-Hartman	help
7698ffdff6aSGreg Kroah-Hartman	  Enable support for Advantech PCI-1760 board.
7708ffdff6aSGreg Kroah-Hartman
7718ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
7728ffdff6aSGreg Kroah-Hartman	  called adv_pci1760.
7738ffdff6aSGreg Kroah-Hartman
7748ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ADV_PCI_DIO
7758ffdff6aSGreg Kroah-Hartman	tristate "Advantech PCI DIO card support"
776*98a15816SIan Abbott	select COMEDI_8254
7778ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
7788ffdff6aSGreg Kroah-Hartman	help
7798ffdff6aSGreg Kroah-Hartman	  Enable support for Advantech PCI DIO cards
7808ffdff6aSGreg Kroah-Hartman	  PCI-1730, PCI-1733, PCI-1734, PCI-1735U, PCI-1736UP, PCI-1739U,
7818ffdff6aSGreg Kroah-Hartman	  PCI-1750, PCI-1751, PCI-1752, PCI-1753/E, PCI-1754, PCI-1756,
7828ffdff6aSGreg Kroah-Hartman	  PCI-1761 and PCI-1762
7838ffdff6aSGreg Kroah-Hartman
7848ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
7858ffdff6aSGreg Kroah-Hartman	  called adv_pci_dio.
7868ffdff6aSGreg Kroah-Hartman
7878ffdff6aSGreg Kroah-Hartmanconfig COMEDI_AMPLC_DIO200_PCI
7888ffdff6aSGreg Kroah-Hartman	tristate "Amplicon PCI215/PCI272/PCIe215/PCIe236/PCIe296 DIO support"
789*98a15816SIan Abbott	select COMEDI_AMPLC_DIO200
7908ffdff6aSGreg Kroah-Hartman	help
7918ffdff6aSGreg Kroah-Hartman	  Enable support for Amplicon PCI215, PCI272, PCIe215, PCIe236
7928ffdff6aSGreg Kroah-Hartman	  and PCIe296 DIO boards.
7938ffdff6aSGreg Kroah-Hartman
7948ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
7958ffdff6aSGreg Kroah-Hartman	  called amplc_dio200_pci.
7968ffdff6aSGreg Kroah-Hartman
7978ffdff6aSGreg Kroah-Hartmanconfig COMEDI_AMPLC_PC236_PCI
7988ffdff6aSGreg Kroah-Hartman	tristate "Amplicon PCI236 DIO board support"
7998ffdff6aSGreg Kroah-Hartman	select COMEDI_AMPLC_PC236
8008ffdff6aSGreg Kroah-Hartman	help
8018ffdff6aSGreg Kroah-Hartman	  Enable support for Amplicon PCI236 DIO board.
8028ffdff6aSGreg Kroah-Hartman
8038ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
8048ffdff6aSGreg Kroah-Hartman	  called amplc_pci236.
8058ffdff6aSGreg Kroah-Hartman
8068ffdff6aSGreg Kroah-Hartmanconfig COMEDI_AMPLC_PC263_PCI
8078ffdff6aSGreg Kroah-Hartman	tristate "Amplicon PCI263 relay board support"
8088ffdff6aSGreg Kroah-Hartman	help
8098ffdff6aSGreg Kroah-Hartman	  Enable support for Amplicon PCI263 relay board.  This is a PCI board
8108ffdff6aSGreg Kroah-Hartman	  with 16 reed relay output channels.
8118ffdff6aSGreg Kroah-Hartman
8128ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
8138ffdff6aSGreg Kroah-Hartman	  called amplc_pci263.
8148ffdff6aSGreg Kroah-Hartman
8158ffdff6aSGreg Kroah-Hartmanconfig COMEDI_AMPLC_PCI224
8168ffdff6aSGreg Kroah-Hartman	tristate "Amplicon PCI224 and PCI234 support"
817*98a15816SIan Abbott	select COMEDI_8254
8188ffdff6aSGreg Kroah-Hartman	help
8198ffdff6aSGreg Kroah-Hartman	  Enable support for Amplicon PCI224 and PCI234 AO boards
8208ffdff6aSGreg Kroah-Hartman
8218ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
8228ffdff6aSGreg Kroah-Hartman	  called amplc_pci224.
8238ffdff6aSGreg Kroah-Hartman
8248ffdff6aSGreg Kroah-Hartmanconfig COMEDI_AMPLC_PCI230
8258ffdff6aSGreg Kroah-Hartman	tristate "Amplicon PCI230 and PCI260 support"
826*98a15816SIan Abbott	select COMEDI_8254
8278ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
8288ffdff6aSGreg Kroah-Hartman	help
8298ffdff6aSGreg Kroah-Hartman	  Enable support for Amplicon PCI230 and PCI260 Multifunction I/O
8308ffdff6aSGreg Kroah-Hartman	  boards
8318ffdff6aSGreg Kroah-Hartman
8328ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
8338ffdff6aSGreg Kroah-Hartman	  called amplc_pci230.
8348ffdff6aSGreg Kroah-Hartman
8358ffdff6aSGreg Kroah-Hartmanconfig COMEDI_CONTEC_PCI_DIO
8368ffdff6aSGreg Kroah-Hartman	tristate "Contec PIO1616L digital I/O board support"
8378ffdff6aSGreg Kroah-Hartman	help
8388ffdff6aSGreg Kroah-Hartman	  Enable support for the Contec PIO1616L digital I/O board
8398ffdff6aSGreg Kroah-Hartman
8408ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
8418ffdff6aSGreg Kroah-Hartman	  called contec_pci_dio.
8428ffdff6aSGreg Kroah-Hartman
8438ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DAS08_PCI
8448ffdff6aSGreg Kroah-Hartman	tristate "DAS-08 PCI support"
845*98a15816SIan Abbott	select COMEDI_DAS08
8468ffdff6aSGreg Kroah-Hartman	help
8478ffdff6aSGreg Kroah-Hartman	  Enable support for PCI DAS-08 cards.
8488ffdff6aSGreg Kroah-Hartman
8498ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
8508ffdff6aSGreg Kroah-Hartman	  called das08_pci.
8518ffdff6aSGreg Kroah-Hartman
8528ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DT3000
8538ffdff6aSGreg Kroah-Hartman	tristate "Data Translation DT3000 series support"
8548ffdff6aSGreg Kroah-Hartman	help
8558ffdff6aSGreg Kroah-Hartman	  Enable support for Data Translation DT3000 series
8568ffdff6aSGreg Kroah-Hartman	  DT3001, DT3001-PGL, DT3002, DT3003, DT3003-PGL, DT3004, DT3005 and
8578ffdff6aSGreg Kroah-Hartman	  DT3004-200
8588ffdff6aSGreg Kroah-Hartman
8598ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
8608ffdff6aSGreg Kroah-Hartman	  called dt3000.
8618ffdff6aSGreg Kroah-Hartman
8628ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DYNA_PCI10XX
8638ffdff6aSGreg Kroah-Hartman	tristate "Dynalog PCI DAQ series support"
8648ffdff6aSGreg Kroah-Hartman	help
8658ffdff6aSGreg Kroah-Hartman	  Enable support for Dynalog PCI DAQ series
8668ffdff6aSGreg Kroah-Hartman	  PCI-1050
8678ffdff6aSGreg Kroah-Hartman
8688ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
8698ffdff6aSGreg Kroah-Hartman	  called dyna_pci10xx.
8708ffdff6aSGreg Kroah-Hartman
8718ffdff6aSGreg Kroah-Hartmanconfig COMEDI_GSC_HPDI
8728ffdff6aSGreg Kroah-Hartman	tristate "General Standards PCI-HPDI32 / PMC-HPDI32 support"
8738ffdff6aSGreg Kroah-Hartman	help
8748ffdff6aSGreg Kroah-Hartman	  Enable support for General Standards Corporation high speed parallel
8758ffdff6aSGreg Kroah-Hartman	  digital interface rs485 boards PCI-HPDI32 and PMC-HPDI32.
8768ffdff6aSGreg Kroah-Hartman	  Only receive mode works, transmit not supported.
8778ffdff6aSGreg Kroah-Hartman
8788ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
8798ffdff6aSGreg Kroah-Hartman	  called gsc_hpdi.
8808ffdff6aSGreg Kroah-Hartman
8818ffdff6aSGreg Kroah-Hartmanconfig COMEDI_MF6X4
8828ffdff6aSGreg Kroah-Hartman	tristate "Humusoft MF634 and MF624 DAQ Card support"
8838ffdff6aSGreg Kroah-Hartman	help
8848ffdff6aSGreg Kroah-Hartman	  This driver supports both Humusoft MF634 and MF624 Data acquisition
8858ffdff6aSGreg Kroah-Hartman	  cards. The legacy Humusoft MF614 card is not supported.
8868ffdff6aSGreg Kroah-Hartman
8878ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ICP_MULTI
8888ffdff6aSGreg Kroah-Hartman	tristate "Inova ICP_MULTI support"
8898ffdff6aSGreg Kroah-Hartman	help
8908ffdff6aSGreg Kroah-Hartman	  Enable support for Inova ICP_MULTI card
8918ffdff6aSGreg Kroah-Hartman
8928ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
8938ffdff6aSGreg Kroah-Hartman	  called icp_multi.
8948ffdff6aSGreg Kroah-Hartman
8958ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DAQBOARD2000
8968ffdff6aSGreg Kroah-Hartman	tristate "IOtech DAQboard/2000 support"
8978ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
8988ffdff6aSGreg Kroah-Hartman	help
8998ffdff6aSGreg Kroah-Hartman	  Enable support for the IOtech DAQboard/2000
9008ffdff6aSGreg Kroah-Hartman
9018ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
9028ffdff6aSGreg Kroah-Hartman	  called daqboard2000.
9038ffdff6aSGreg Kroah-Hartman
9048ffdff6aSGreg Kroah-Hartmanconfig COMEDI_JR3_PCI
9058ffdff6aSGreg Kroah-Hartman	tristate "JR3/PCI force sensor board support"
9068ffdff6aSGreg Kroah-Hartman	help
9078ffdff6aSGreg Kroah-Hartman	  Enable support for JR3/PCI force sensor boards
9088ffdff6aSGreg Kroah-Hartman
9098ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
9108ffdff6aSGreg Kroah-Hartman	  called jr3_pci.
9118ffdff6aSGreg Kroah-Hartman
9128ffdff6aSGreg Kroah-Hartmanconfig COMEDI_KE_COUNTER
9138ffdff6aSGreg Kroah-Hartman	tristate "Kolter-Electronic PCI Counter 1 card support"
9148ffdff6aSGreg Kroah-Hartman	help
9158ffdff6aSGreg Kroah-Hartman	  Enable support for Kolter-Electronic PCI Counter 1 cards
9168ffdff6aSGreg Kroah-Hartman
9178ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
9188ffdff6aSGreg Kroah-Hartman	  called ke_counter.
9198ffdff6aSGreg Kroah-Hartman
9208ffdff6aSGreg Kroah-Hartmanconfig COMEDI_CB_PCIDAS64
9218ffdff6aSGreg Kroah-Hartman	tristate "MeasurementComputing PCI-DAS 64xx, 60xx, and 4020 support"
9228ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
9238ffdff6aSGreg Kroah-Hartman	help
9248ffdff6aSGreg Kroah-Hartman	  Enable support for ComputerBoards/MeasurementComputing PCI-DAS 64xx,
9258ffdff6aSGreg Kroah-Hartman	  60xx, and 4020 series with the PLX 9080 PCI controller
9268ffdff6aSGreg Kroah-Hartman
9278ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
9288ffdff6aSGreg Kroah-Hartman	  called cb_pcidas64.
9298ffdff6aSGreg Kroah-Hartman
9308ffdff6aSGreg Kroah-Hartmanconfig COMEDI_CB_PCIDAS
9318ffdff6aSGreg Kroah-Hartman	tristate "MeasurementComputing PCI-DAS support"
932*98a15816SIan Abbott	select COMEDI_8254
9338ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
9348ffdff6aSGreg Kroah-Hartman	help
9358ffdff6aSGreg Kroah-Hartman	  Enable support for ComputerBoards/MeasurementComputing PCI-DAS with
9368ffdff6aSGreg Kroah-Hartman	  AMCC S5933 PCIcontroller: PCI-DAS1602/16, PCI-DAS1602/16jr,
9378ffdff6aSGreg Kroah-Hartman	  PCI-DAS1602/12, PCI-DAS1200, PCI-DAS1200jr, PCI-DAS1000, PCI-DAS1001
9388ffdff6aSGreg Kroah-Hartman	  and PCI_DAS1002.
9398ffdff6aSGreg Kroah-Hartman
9408ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
9418ffdff6aSGreg Kroah-Hartman	  called cb_pcidas.
9428ffdff6aSGreg Kroah-Hartman
9438ffdff6aSGreg Kroah-Hartmanconfig COMEDI_CB_PCIDDA
9448ffdff6aSGreg Kroah-Hartman	tristate "MeasurementComputing PCI-DDA series support"
9458ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
9468ffdff6aSGreg Kroah-Hartman	help
9478ffdff6aSGreg Kroah-Hartman	  Enable support for ComputerBoards/MeasurementComputing PCI-DDA
9488ffdff6aSGreg Kroah-Hartman	  series: PCI-DDA08/12, PCI-DDA04/12, PCI-DDA02/12, PCI-DDA08/16,
9498ffdff6aSGreg Kroah-Hartman	  PCI-DDA04/16 and PCI-DDA02/16
9508ffdff6aSGreg Kroah-Hartman
9518ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
9528ffdff6aSGreg Kroah-Hartman	  called cb_pcidda.
9538ffdff6aSGreg Kroah-Hartman
9548ffdff6aSGreg Kroah-Hartmanconfig COMEDI_CB_PCIMDAS
9558ffdff6aSGreg Kroah-Hartman	tristate "MeasurementComputing PCIM-DAS1602/16, PCIe-DAS1602/16 support"
956*98a15816SIan Abbott	select COMEDI_8254
9578ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
9588ffdff6aSGreg Kroah-Hartman	help
9598ffdff6aSGreg Kroah-Hartman	  Enable support for ComputerBoards/MeasurementComputing PCI Migration
9608ffdff6aSGreg Kroah-Hartman	  series PCIM-DAS1602/16 and PCIe-DAS1602/16.
9618ffdff6aSGreg Kroah-Hartman
9628ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
9638ffdff6aSGreg Kroah-Hartman	  called cb_pcimdas.
9648ffdff6aSGreg Kroah-Hartman
9658ffdff6aSGreg Kroah-Hartmanconfig COMEDI_CB_PCIMDDA
9668ffdff6aSGreg Kroah-Hartman	tristate "MeasurementComputing PCIM-DDA06-16 support"
9678ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
9688ffdff6aSGreg Kroah-Hartman	help
9698ffdff6aSGreg Kroah-Hartman	  Enable support for ComputerBoards/MeasurementComputing PCIM-DDA06-16
9708ffdff6aSGreg Kroah-Hartman
9718ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
9728ffdff6aSGreg Kroah-Hartman	  called cb_pcimdda.
9738ffdff6aSGreg Kroah-Hartman
9748ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ME4000
9758ffdff6aSGreg Kroah-Hartman	tristate "Meilhaus ME-4000 support"
976*98a15816SIan Abbott	select COMEDI_8254
9778ffdff6aSGreg Kroah-Hartman	help
9788ffdff6aSGreg Kroah-Hartman	  Enable support for Meilhaus PCI data acquisition cards
9798ffdff6aSGreg Kroah-Hartman	  ME-4650, ME-4670i, ME-4680, ME-4680i and ME-4680is
9808ffdff6aSGreg Kroah-Hartman
9818ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
9828ffdff6aSGreg Kroah-Hartman	  called me4000.
9838ffdff6aSGreg Kroah-Hartman
9848ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ME_DAQ
9858ffdff6aSGreg Kroah-Hartman	tristate "Meilhaus ME-2000i, ME-2600i, ME-3000vm1 support"
9868ffdff6aSGreg Kroah-Hartman	help
9878ffdff6aSGreg Kroah-Hartman	  Enable support for Meilhaus PCI data acquisition cards
9888ffdff6aSGreg Kroah-Hartman	  ME-2000i, ME-2600i and ME-3000vm1
9898ffdff6aSGreg Kroah-Hartman
9908ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
9918ffdff6aSGreg Kroah-Hartman	  called me_daq.
9928ffdff6aSGreg Kroah-Hartman
9938ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_6527
9948ffdff6aSGreg Kroah-Hartman	tristate "NI 6527 support"
9958ffdff6aSGreg Kroah-Hartman	help
9968ffdff6aSGreg Kroah-Hartman	  Enable support for the National Instruments 6527 PCI card
9978ffdff6aSGreg Kroah-Hartman
9988ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
9998ffdff6aSGreg Kroah-Hartman	  called ni_6527.
10008ffdff6aSGreg Kroah-Hartman
10018ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_65XX
10028ffdff6aSGreg Kroah-Hartman	tristate "NI 65xx static dio PCI card support"
10038ffdff6aSGreg Kroah-Hartman	help
10048ffdff6aSGreg Kroah-Hartman	  Enable support for National Instruments 65xx static dio boards.
10058ffdff6aSGreg Kroah-Hartman	  Supported devices: National Instruments PCI-6509 (ni_65xx),
10068ffdff6aSGreg Kroah-Hartman	  PXI-6509, PCI-6510, PCI-6511, PXI-6511, PCI-6512, PXI-6512, PCI-6513,
10078ffdff6aSGreg Kroah-Hartman	  PXI-6513, PCI-6514, PXI-6514, PCI-6515, PXI-6515, PCI-6516, PCI-6517,
10088ffdff6aSGreg Kroah-Hartman	  PCI-6518, PCI-6519, PCI-6520, PCI-6521, PXI-6521, PCI-6528, PXI-6528
10098ffdff6aSGreg Kroah-Hartman
10108ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
10118ffdff6aSGreg Kroah-Hartman	  called ni_65xx.
10128ffdff6aSGreg Kroah-Hartman
10138ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_660X
10148ffdff6aSGreg Kroah-Hartman	tristate "NI 660x counter/timer PCI card support"
10158ffdff6aSGreg Kroah-Hartman	depends on HAS_DMA
10168ffdff6aSGreg Kroah-Hartman	select COMEDI_NI_TIOCMD
10178ffdff6aSGreg Kroah-Hartman	help
10188ffdff6aSGreg Kroah-Hartman	  Enable support for National Instruments PCI-6601 (ni_660x), PCI-6602,
10198ffdff6aSGreg Kroah-Hartman	  PXI-6602, PXI-6608, PCI-6624, and PXI-6624.
10208ffdff6aSGreg Kroah-Hartman
10218ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
10228ffdff6aSGreg Kroah-Hartman	  called ni_660x.
10238ffdff6aSGreg Kroah-Hartman
10248ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_670X
10258ffdff6aSGreg Kroah-Hartman	tristate "NI 670x PCI card support"
10268ffdff6aSGreg Kroah-Hartman	help
10278ffdff6aSGreg Kroah-Hartman	  Enable support for National Instruments PCI-6703 and PCI-6704
10288ffdff6aSGreg Kroah-Hartman
10298ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
10308ffdff6aSGreg Kroah-Hartman	  called ni_670x.
10318ffdff6aSGreg Kroah-Hartman
10328ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_LABPC_PCI
10338ffdff6aSGreg Kroah-Hartman	tristate "NI Lab-PC PCI-1200 support"
1034*98a15816SIan Abbott	select COMEDI_NI_LABPC
10358ffdff6aSGreg Kroah-Hartman	help
10368ffdff6aSGreg Kroah-Hartman	  Enable support for National Instruments Lab-PC PCI-1200.
10378ffdff6aSGreg Kroah-Hartman
10388ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
10398ffdff6aSGreg Kroah-Hartman	  called ni_labpc_pci.
10408ffdff6aSGreg Kroah-Hartman
10418ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_PCIDIO
10428ffdff6aSGreg Kroah-Hartman	tristate "NI PCI-DIO32HS, PCI-6533, PCI-6534 support"
10438ffdff6aSGreg Kroah-Hartman	depends on HAS_DMA
10448ffdff6aSGreg Kroah-Hartman	select COMEDI_MITE
10458ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
10468ffdff6aSGreg Kroah-Hartman	help
10478ffdff6aSGreg Kroah-Hartman	  Enable support for National Instruments PCI-DIO-32HS, PXI-6533,
10488ffdff6aSGreg Kroah-Hartman	  PCI-6533 and PCI-6534
10498ffdff6aSGreg Kroah-Hartman
10508ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
10518ffdff6aSGreg Kroah-Hartman	  called ni_pcidio.
10528ffdff6aSGreg Kroah-Hartman
10538ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_PCIMIO
10548ffdff6aSGreg Kroah-Hartman	tristate "NI PCI-MIO-E series and M series support"
10558ffdff6aSGreg Kroah-Hartman	depends on HAS_DMA
10568ffdff6aSGreg Kroah-Hartman	select COMEDI_NI_TIOCMD
10578ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
10588ffdff6aSGreg Kroah-Hartman	help
10598ffdff6aSGreg Kroah-Hartman	  Enable support for National Instruments PCI-MIO-E series and M series
10608ffdff6aSGreg Kroah-Hartman	  (all boards): PCI-MIO-16XE-10, PXI-6030E, PCI-MIO-16E-1,
10618ffdff6aSGreg Kroah-Hartman	  PCI-MIO-16E-4, PCI-6014, PCI-6040E, PXI-6040E, PCI-6030E, PCI-6031E,
10628ffdff6aSGreg Kroah-Hartman	  PCI-6032E, PCI-6033E, PCI-6071E, PCI-6023E, PCI-6024E, PCI-6025E,
10638ffdff6aSGreg Kroah-Hartman	  PXI-6025E, PCI-6034E, PCI-6035E, PCI-6052E, PCI-6110, PCI-6111,
10648ffdff6aSGreg Kroah-Hartman	  PCI-6220, PXI-6220, PCI-6221, PXI-6221, PCI-6224, PXI-6224, PCI-6225,
10658ffdff6aSGreg Kroah-Hartman	  PXI-6225, PCI-6229, PXI-6229, PCI-6250, PXI-6250, PCI-6251, PXI-6251,
10668ffdff6aSGreg Kroah-Hartman	  PCIe-6251, PXIe-6251, PCI-6254, PXI-6254, PCI-6259, PXI-6259,
10678ffdff6aSGreg Kroah-Hartman	  PCIe-6259, PXIe-6259, PCI-6280, PXI-6280, PCI-6281, PXI-6281,
10688ffdff6aSGreg Kroah-Hartman	  PCI-6284, PXI-6284, PCI-6289, PXI-6289, PCI-6711, PXI-6711,
10698ffdff6aSGreg Kroah-Hartman	  PCI-6713, PXI-6713, PXI-6071E, PCI-6070E, PXI-6070E, PXI-6052E,
10708ffdff6aSGreg Kroah-Hartman	  PCI-6036E, PCI-6731, PCI-6733, PXI-6733, PCI-6143, PXI-6143
10718ffdff6aSGreg Kroah-Hartman
10728ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
10738ffdff6aSGreg Kroah-Hartman	  called ni_pcimio.
10748ffdff6aSGreg Kroah-Hartman
10758ffdff6aSGreg Kroah-Hartmanconfig COMEDI_RTD520
10768ffdff6aSGreg Kroah-Hartman	tristate "Real Time Devices PCI4520/DM7520 support"
1077*98a15816SIan Abbott	select COMEDI_8254
10788ffdff6aSGreg Kroah-Hartman	help
10798ffdff6aSGreg Kroah-Hartman	  Enable support for Real Time Devices PCI4520/DM7520
10808ffdff6aSGreg Kroah-Hartman
10818ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
10828ffdff6aSGreg Kroah-Hartman	  called rtd520.
10838ffdff6aSGreg Kroah-Hartman
10848ffdff6aSGreg Kroah-Hartmanconfig COMEDI_S626
10858ffdff6aSGreg Kroah-Hartman	tristate "Sensoray 626 support"
10868ffdff6aSGreg Kroah-Hartman	help
10878ffdff6aSGreg Kroah-Hartman	  Enable support for Sensoray 626
10888ffdff6aSGreg Kroah-Hartman
10898ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
10908ffdff6aSGreg Kroah-Hartman	  called s626.
10918ffdff6aSGreg Kroah-Hartman
10928ffdff6aSGreg Kroah-Hartmanconfig COMEDI_MITE
10938ffdff6aSGreg Kroah-Hartman	depends on HAS_DMA
10948ffdff6aSGreg Kroah-Hartman	tristate
10958ffdff6aSGreg Kroah-Hartman
10968ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_TIOCMD
10978ffdff6aSGreg Kroah-Hartman	tristate
10988ffdff6aSGreg Kroah-Hartman	depends on HAS_DMA
10998ffdff6aSGreg Kroah-Hartman	select COMEDI_NI_TIO
11008ffdff6aSGreg Kroah-Hartman	select COMEDI_MITE
11018ffdff6aSGreg Kroah-Hartman
11028ffdff6aSGreg Kroah-Hartmanendif # COMEDI_PCI_DRIVERS
11038ffdff6aSGreg Kroah-Hartman
11048ffdff6aSGreg Kroah-Hartmanmenuconfig COMEDI_PCMCIA_DRIVERS
11058ffdff6aSGreg Kroah-Hartman	tristate "Comedi PCMCIA drivers"
11068ffdff6aSGreg Kroah-Hartman	depends on PCMCIA
11078ffdff6aSGreg Kroah-Hartman	help
11088ffdff6aSGreg Kroah-Hartman	  Enable support for comedi PCMCIA drivers.
11098ffdff6aSGreg Kroah-Hartman
11108ffdff6aSGreg Kroah-Hartman	  To compile this support as a module, choose M here: the module will
11118ffdff6aSGreg Kroah-Hartman	  be called comedi_pcmcia.
11128ffdff6aSGreg Kroah-Hartman
11138ffdff6aSGreg Kroah-Hartmanif COMEDI_PCMCIA_DRIVERS
11148ffdff6aSGreg Kroah-Hartman
11158ffdff6aSGreg Kroah-Hartmanconfig COMEDI_CB_DAS16_CS
11168ffdff6aSGreg Kroah-Hartman	tristate "CB DAS16 series PCMCIA support"
1117*98a15816SIan Abbott	select COMEDI_8254
11188ffdff6aSGreg Kroah-Hartman	help
11198ffdff6aSGreg Kroah-Hartman	  Enable support for the ComputerBoards/MeasurementComputing PCMCIA
11208ffdff6aSGreg Kroah-Hartman	  cards DAS16/16, PCM-DAS16D/12 and PCM-DAS16s/16
11218ffdff6aSGreg Kroah-Hartman
11228ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
11238ffdff6aSGreg Kroah-Hartman	  called cb_das16_cs.
11248ffdff6aSGreg Kroah-Hartman
11258ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DAS08_CS
11268ffdff6aSGreg Kroah-Hartman	tristate "CB DAS08 PCMCIA support"
1127*98a15816SIan Abbott	select COMEDI_DAS08
11288ffdff6aSGreg Kroah-Hartman	help
11298ffdff6aSGreg Kroah-Hartman	  Enable support for the ComputerBoards/MeasurementComputing DAS-08
11308ffdff6aSGreg Kroah-Hartman	  PCMCIA card
11318ffdff6aSGreg Kroah-Hartman
11328ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
11338ffdff6aSGreg Kroah-Hartman	  called das08_cs.
11348ffdff6aSGreg Kroah-Hartman
11358ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_DAQ_700_CS
11368ffdff6aSGreg Kroah-Hartman	tristate "NI DAQCard-700 PCMCIA support"
11378ffdff6aSGreg Kroah-Hartman	help
11388ffdff6aSGreg Kroah-Hartman	  Enable support for the National Instruments PCMCIA DAQCard-700 DIO
11398ffdff6aSGreg Kroah-Hartman
11408ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
11418ffdff6aSGreg Kroah-Hartman	  called ni_daq_700.
11428ffdff6aSGreg Kroah-Hartman
11438ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_DAQ_DIO24_CS
11448ffdff6aSGreg Kroah-Hartman	tristate "NI DAQ-Card DIO-24 PCMCIA support"
11458ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
11468ffdff6aSGreg Kroah-Hartman	help
11478ffdff6aSGreg Kroah-Hartman	  Enable support for the National Instruments PCMCIA DAQ-Card DIO-24
11488ffdff6aSGreg Kroah-Hartman
11498ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
11508ffdff6aSGreg Kroah-Hartman	  called ni_daq_dio24.
11518ffdff6aSGreg Kroah-Hartman
11528ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_LABPC_CS
11538ffdff6aSGreg Kroah-Hartman	tristate "NI DAQCard-1200 PCMCIA support"
1154*98a15816SIan Abbott	select COMEDI_NI_LABPC
11558ffdff6aSGreg Kroah-Hartman	help
11568ffdff6aSGreg Kroah-Hartman	  Enable support for the National Instruments PCMCIA DAQCard-1200
11578ffdff6aSGreg Kroah-Hartman
11588ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
11598ffdff6aSGreg Kroah-Hartman	  called ni_labpc_cs.
11608ffdff6aSGreg Kroah-Hartman
11618ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_MIO_CS
11628ffdff6aSGreg Kroah-Hartman	tristate "NI DAQCard E series PCMCIA support"
11638ffdff6aSGreg Kroah-Hartman	select COMEDI_NI_TIO
11648ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
11658ffdff6aSGreg Kroah-Hartman	help
11668ffdff6aSGreg Kroah-Hartman	  Enable support for the National Instruments PCMCIA DAQCard E series
11678ffdff6aSGreg Kroah-Hartman	  DAQCard-ai-16xe-50, DAQCard-ai-16e-4, DAQCard-6062E, DAQCard-6024E
11688ffdff6aSGreg Kroah-Hartman	  and DAQCard-6036E
11698ffdff6aSGreg Kroah-Hartman
11708ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
11718ffdff6aSGreg Kroah-Hartman	  called ni_mio_cs.
11728ffdff6aSGreg Kroah-Hartman
11738ffdff6aSGreg Kroah-Hartmanconfig COMEDI_QUATECH_DAQP_CS
11748ffdff6aSGreg Kroah-Hartman	tristate "Quatech DAQP PCMCIA data capture card support"
11758ffdff6aSGreg Kroah-Hartman	help
11768ffdff6aSGreg Kroah-Hartman	  Enable support for the Quatech DAQP PCMCIA data capture cards
11778ffdff6aSGreg Kroah-Hartman	  DAQP-208 and DAQP-308
11788ffdff6aSGreg Kroah-Hartman
11798ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
11808ffdff6aSGreg Kroah-Hartman	  called quatech_daqp_cs.
11818ffdff6aSGreg Kroah-Hartman
11828ffdff6aSGreg Kroah-Hartmanendif # COMEDI_PCMCIA_DRIVERS
11838ffdff6aSGreg Kroah-Hartman
11848ffdff6aSGreg Kroah-Hartmanmenuconfig COMEDI_USB_DRIVERS
11858ffdff6aSGreg Kroah-Hartman	tristate "Comedi USB drivers"
11868ffdff6aSGreg Kroah-Hartman	depends on USB
11878ffdff6aSGreg Kroah-Hartman	help
11888ffdff6aSGreg Kroah-Hartman	  Enable support for comedi USB drivers.
11898ffdff6aSGreg Kroah-Hartman
11908ffdff6aSGreg Kroah-Hartman	  To compile this support as a module, choose M here: the module will
11918ffdff6aSGreg Kroah-Hartman	  be called comedi_usb.
11928ffdff6aSGreg Kroah-Hartman
11938ffdff6aSGreg Kroah-Hartmanif COMEDI_USB_DRIVERS
11948ffdff6aSGreg Kroah-Hartman
11958ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DT9812
11968ffdff6aSGreg Kroah-Hartman	tristate "DataTranslation DT9812 USB module support"
11978ffdff6aSGreg Kroah-Hartman	help
11988ffdff6aSGreg Kroah-Hartman	  Enable support for the Data Translation DT9812 USB module
11998ffdff6aSGreg Kroah-Hartman
12008ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
12018ffdff6aSGreg Kroah-Hartman	  called dt9812.
12028ffdff6aSGreg Kroah-Hartman
12038ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_USB6501
12048ffdff6aSGreg Kroah-Hartman	tristate "NI USB-6501 support"
12058ffdff6aSGreg Kroah-Hartman	help
12068ffdff6aSGreg Kroah-Hartman	  Enable support for the National Instruments USB-6501 module.
12078ffdff6aSGreg Kroah-Hartman
12088ffdff6aSGreg Kroah-Hartman	  The NI USB-6501 is a Full-Speed USB 2.0 (12 Mbit/s) device that
12098ffdff6aSGreg Kroah-Hartman	  provides 24 digital I/O lines channels and one 32-bit counter.
12108ffdff6aSGreg Kroah-Hartman
12118ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
12128ffdff6aSGreg Kroah-Hartman	  called ni_usb6501.
12138ffdff6aSGreg Kroah-Hartman
12148ffdff6aSGreg Kroah-Hartmanconfig COMEDI_USBDUX
12158ffdff6aSGreg Kroah-Hartman	tristate "ITL USB-DUX-D support"
12168ffdff6aSGreg Kroah-Hartman	help
12178ffdff6aSGreg Kroah-Hartman	  Enable support for the Incite Technology Ltd USB-DUX-D Board
12188ffdff6aSGreg Kroah-Hartman
12198ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
12208ffdff6aSGreg Kroah-Hartman	  called usbdux.
12218ffdff6aSGreg Kroah-Hartman
12228ffdff6aSGreg Kroah-Hartmanconfig COMEDI_USBDUXFAST
12238ffdff6aSGreg Kroah-Hartman	tristate "ITL USB-DUXfast support"
12248ffdff6aSGreg Kroah-Hartman	help
12258ffdff6aSGreg Kroah-Hartman	  Enable support for the Incite Technology Ltd USB-DUXfast Board
12268ffdff6aSGreg Kroah-Hartman
12278ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
12288ffdff6aSGreg Kroah-Hartman	  called usbduxfast.
12298ffdff6aSGreg Kroah-Hartman
12308ffdff6aSGreg Kroah-Hartmanconfig COMEDI_USBDUXSIGMA
12318ffdff6aSGreg Kroah-Hartman	tristate "ITL USB-DUXsigma support"
12328ffdff6aSGreg Kroah-Hartman	help
12338ffdff6aSGreg Kroah-Hartman	  Enable support for the Incite Technology Ltd USB-DUXsigma Board
12348ffdff6aSGreg Kroah-Hartman
12358ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
12368ffdff6aSGreg Kroah-Hartman	  called usbduxsigma.
12378ffdff6aSGreg Kroah-Hartman
12388ffdff6aSGreg Kroah-Hartmanconfig COMEDI_VMK80XX
12398ffdff6aSGreg Kroah-Hartman	tristate "Velleman VM110/VM140 USB Board support"
12408ffdff6aSGreg Kroah-Hartman	help
12418ffdff6aSGreg Kroah-Hartman	  Build the Velleman USB Board Low-Level Driver supporting the
12428ffdff6aSGreg Kroah-Hartman	  K8055/K8061 aka VM110/VM140 devices
12438ffdff6aSGreg Kroah-Hartman
12448ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
12458ffdff6aSGreg Kroah-Hartman	  called vmk80xx.
12468ffdff6aSGreg Kroah-Hartman
12478ffdff6aSGreg Kroah-Hartmanendif # COMEDI_USB_DRIVERS
12488ffdff6aSGreg Kroah-Hartman
12498ffdff6aSGreg Kroah-Hartmanconfig COMEDI_8254
12508ffdff6aSGreg Kroah-Hartman	tristate
12518ffdff6aSGreg Kroah-Hartman
12528ffdff6aSGreg Kroah-Hartmanconfig COMEDI_8255
12538ffdff6aSGreg Kroah-Hartman	tristate
12548ffdff6aSGreg Kroah-Hartman
12558ffdff6aSGreg Kroah-Hartmanconfig COMEDI_8255_SA
12568ffdff6aSGreg Kroah-Hartman	tristate "Standalone 8255 support"
12578ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
12588ffdff6aSGreg Kroah-Hartman	help
12598ffdff6aSGreg Kroah-Hartman	  Enable support for 8255 digital I/O as a standalone driver.
12608ffdff6aSGreg Kroah-Hartman
12618ffdff6aSGreg Kroah-Hartman	  You should enable compilation this driver if you plan to use a board
12628ffdff6aSGreg Kroah-Hartman	  that has an 8255 chip at a known I/O base address and there are no
12638ffdff6aSGreg Kroah-Hartman	  other Comedi drivers for the board.
12648ffdff6aSGreg Kroah-Hartman
12658ffdff6aSGreg Kroah-Hartman	  Note that Comedi drivers for most multi-function boards incorporating
12668ffdff6aSGreg Kroah-Hartman	  an 8255 chip use the 'comedi_8255' module.  Most PCI-based 8255
12678ffdff6aSGreg Kroah-Hartman	  boards use the 8255_pci driver as a wrapper around the 'comedi_8255'
12688ffdff6aSGreg Kroah-Hartman	  module.
12698ffdff6aSGreg Kroah-Hartman
12708ffdff6aSGreg Kroah-Hartman	  To compile this driver as a module, choose M here: the module will be
12718ffdff6aSGreg Kroah-Hartman	  called 8255.
12728ffdff6aSGreg Kroah-Hartman
12738ffdff6aSGreg Kroah-Hartmanconfig COMEDI_KCOMEDILIB
12748ffdff6aSGreg Kroah-Hartman	tristate "Comedi kcomedilib"
12758ffdff6aSGreg Kroah-Hartman	help
12768ffdff6aSGreg Kroah-Hartman	  Build the kcomedilib.
12778ffdff6aSGreg Kroah-Hartman
12788ffdff6aSGreg Kroah-Hartman	  This is a kernel module used to open and manipulate Comedi devices
12798ffdff6aSGreg Kroah-Hartman	  from within kernel code.  It is currently only used by the
12808ffdff6aSGreg Kroah-Hartman	  comedi_bond driver, and its functionality has been stripped down to
12818ffdff6aSGreg Kroah-Hartman	  the needs of that driver, so is currently not very useful for
12828ffdff6aSGreg Kroah-Hartman	  anything else.
12838ffdff6aSGreg Kroah-Hartman
12848ffdff6aSGreg Kroah-Hartman	  To compile kcomedilib as a module, choose M here: the module will be
12858ffdff6aSGreg Kroah-Hartman	  called kcomedilib.
12868ffdff6aSGreg Kroah-Hartman
12878ffdff6aSGreg Kroah-Hartmanconfig COMEDI_AMPLC_DIO200
1288*98a15816SIan Abbott	select COMEDI_8254
12898ffdff6aSGreg Kroah-Hartman	tristate
12908ffdff6aSGreg Kroah-Hartman
12918ffdff6aSGreg Kroah-Hartmanconfig COMEDI_AMPLC_PC236
12928ffdff6aSGreg Kroah-Hartman	tristate
12938ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
12948ffdff6aSGreg Kroah-Hartman
12958ffdff6aSGreg Kroah-Hartmanconfig COMEDI_DAS08
12968ffdff6aSGreg Kroah-Hartman	tristate
1297*98a15816SIan Abbott	select COMEDI_8254
12988ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
12998ffdff6aSGreg Kroah-Hartman
13008ffdff6aSGreg Kroah-Hartmanconfig COMEDI_ISADMA
13018ffdff6aSGreg Kroah-Hartman	tristate
13028ffdff6aSGreg Kroah-Hartman
13038ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_LABPC
13048ffdff6aSGreg Kroah-Hartman	tristate
1305*98a15816SIan Abbott	select COMEDI_8254
13068ffdff6aSGreg Kroah-Hartman	select COMEDI_8255
13078ffdff6aSGreg Kroah-Hartman
13088ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_LABPC_ISADMA
13098ffdff6aSGreg Kroah-Hartman	tristate
13108ffdff6aSGreg Kroah-Hartman	default COMEDI_NI_LABPC
13118ffdff6aSGreg Kroah-Hartman	depends on COMEDI_NI_LABPC_ISA != n
13128ffdff6aSGreg Kroah-Hartman	depends on ISA_DMA_API
13138ffdff6aSGreg Kroah-Hartman	select COMEDI_ISADMA
13148ffdff6aSGreg Kroah-Hartman
13158ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_TIO
13168ffdff6aSGreg Kroah-Hartman	tristate
13178ffdff6aSGreg Kroah-Hartman	select COMEDI_NI_ROUTING
13188ffdff6aSGreg Kroah-Hartman
13198ffdff6aSGreg Kroah-Hartmanconfig COMEDI_NI_ROUTING
13208ffdff6aSGreg Kroah-Hartman	tristate
13218ffdff6aSGreg Kroah-Hartman
13228ffdff6aSGreg Kroah-Hartmanconfig COMEDI_TESTS
13238ffdff6aSGreg Kroah-Hartman	tristate "Comedi unit tests"
13248ffdff6aSGreg Kroah-Hartman	help
13258ffdff6aSGreg Kroah-Hartman	  Enable comedi unit-test modules to be built.
13268ffdff6aSGreg Kroah-Hartman
13278ffdff6aSGreg Kroah-Hartman	  Note that the answer to this question won't directly affect the
13288ffdff6aSGreg Kroah-Hartman	  kernel: saying N will just cause the configurator to skip all
13298ffdff6aSGreg Kroah-Hartman	  the questions about comedi unit-test modules.
13308ffdff6aSGreg Kroah-Hartman
13318ffdff6aSGreg Kroah-Hartmanif COMEDI_TESTS
13328ffdff6aSGreg Kroah-Hartman
13338ffdff6aSGreg Kroah-Hartmanconfig COMEDI_TESTS_EXAMPLE
13348ffdff6aSGreg Kroah-Hartman	tristate "Comedi example unit-test module"
13358ffdff6aSGreg Kroah-Hartman	help
13368ffdff6aSGreg Kroah-Hartman	  Enable support for an example unit-test module.  This is just a
13378ffdff6aSGreg Kroah-Hartman	  silly example to be used as a basis for writing other unit-test
13388ffdff6aSGreg Kroah-Hartman	  modules.
13398ffdff6aSGreg Kroah-Hartman
13408ffdff6aSGreg Kroah-Hartman	  To compile this as a module, choose M here: the module will be called
13418ffdff6aSGreg Kroah-Hartman	  comedi_example_test.
13428ffdff6aSGreg Kroah-Hartman
13438ffdff6aSGreg Kroah-Hartmanconfig COMEDI_TESTS_NI_ROUTES
13448ffdff6aSGreg Kroah-Hartman	tristate "NI routing unit-test module"
13458ffdff6aSGreg Kroah-Hartman	select COMEDI_NI_ROUTING
13468ffdff6aSGreg Kroah-Hartman	help
13478ffdff6aSGreg Kroah-Hartman	  Enable support for a unit-test module to test the signal routing
13488ffdff6aSGreg Kroah-Hartman	  code used by comedi drivers for various National Instruments cards.
13498ffdff6aSGreg Kroah-Hartman
13508ffdff6aSGreg Kroah-Hartman	  To compile this as a module, choose M here: the module will be called
13518ffdff6aSGreg Kroah-Hartman	  ni_routes_test.
13528ffdff6aSGreg Kroah-Hartman
13538ffdff6aSGreg Kroah-Hartmanendif # COMEDI_TESTS
13548ffdff6aSGreg Kroah-Hartman
13558ffdff6aSGreg Kroah-Hartmanendif # COMEDI
1356