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