blob: 14b376c8e800b15892f691f17623d81e6ac3cf15 [file] [log] [blame]
David Schleefed9eccb2008-11-04 20:29:31 -08001/*
2 include/comedi.h (installed as /usr/include/comedi.h)
3 header file for comedi
4
5 COMEDI - Linux Control and Measurement Device Interface
6 Copyright (C) 1998-2001 David A. Schleef <ds@schleef.org>
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22*/
23
24#ifndef _COMEDI_H
25#define _COMEDI_H
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31#define COMEDI_MAJORVERSION 0
32#define COMEDI_MINORVERSION 7
33#define COMEDI_MICROVERSION 76
34#define VERSION "0.7.76"
35
36/* comedi's major device number */
37#define COMEDI_MAJOR 98
38
39/*
40 maximum number of minor devices. This can be increased, although
41 kernel structures are currently statically allocated, thus you
42 don't want this to be much more than you actually use.
43 */
44#define COMEDI_NDEVICES 16
45
46/* number of config options in the config structure */
47#define COMEDI_NDEVCONFOPTS 32
48/*length of nth chunk of firmware data*/
49#define COMEDI_DEVCONF_AUX_DATA3_LENGTH 25
50#define COMEDI_DEVCONF_AUX_DATA2_LENGTH 26
51#define COMEDI_DEVCONF_AUX_DATA1_LENGTH 27
52#define COMEDI_DEVCONF_AUX_DATA0_LENGTH 28
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -080053#define COMEDI_DEVCONF_AUX_DATA_HI 29 /* most significant 32 bits of pointer address (if needed) */
54#define COMEDI_DEVCONF_AUX_DATA_LO 30 /* least significant 32 bits of pointer address */
55#define COMEDI_DEVCONF_AUX_DATA_LENGTH 31 /* total data length */
David Schleefed9eccb2008-11-04 20:29:31 -080056
57/* max length of device and driver names */
58#define COMEDI_NAMELEN 20
59
60 typedef unsigned int lsampl_t;
61 typedef unsigned short sampl_t;
62
63/* packs and unpacks a channel/range number */
64
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -080065#define CR_PACK(chan, rng, aref) ((((aref)&0x3)<<24) | (((rng)&0xff)<<16) | (chan))
David Schleefed9eccb2008-11-04 20:29:31 -080066#define CR_PACK_FLAGS(chan, range, aref, flags) (CR_PACK(chan, range, aref) | ((flags) & CR_FLAGS_MASK))
67
68#define CR_CHAN(a) ((a)&0xffff)
69#define CR_RANGE(a) (((a)>>16)&0xff)
70#define CR_AREF(a) (((a)>>24)&0x03)
71
72#define CR_FLAGS_MASK 0xfc000000
73#define CR_ALT_FILTER (1<<26)
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -080074#define CR_DITHER CR_ALT_FILTER
75#define CR_DEGLITCH CR_ALT_FILTER
David Schleefed9eccb2008-11-04 20:29:31 -080076#define CR_ALT_SOURCE (1<<27)
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -080077#define CR_EDGE (1<<30)
David Schleefed9eccb2008-11-04 20:29:31 -080078#define CR_INVERT (1<<31)
79
80#define AREF_GROUND 0x00 /* analog ref = analog ground */
81#define AREF_COMMON 0x01 /* analog ref = analog common */
82#define AREF_DIFF 0x02 /* analog ref = differential */
83#define AREF_OTHER 0x03 /* analog ref = other (undefined) */
84
85/* counters -- these are arbitrary values */
86#define GPCT_RESET 0x0001
87#define GPCT_SET_SOURCE 0x0002
88#define GPCT_SET_GATE 0x0004
89#define GPCT_SET_DIRECTION 0x0008
90#define GPCT_SET_OPERATION 0x0010
91#define GPCT_ARM 0x0020
92#define GPCT_DISARM 0x0040
93#define GPCT_GET_INT_CLK_FRQ 0x0080
94
95#define GPCT_INT_CLOCK 0x0001
96#define GPCT_EXT_PIN 0x0002
97#define GPCT_NO_GATE 0x0004
98#define GPCT_UP 0x0008
99#define GPCT_DOWN 0x0010
100#define GPCT_HWUD 0x0020
101#define GPCT_SIMPLE_EVENT 0x0040
102#define GPCT_SINGLE_PERIOD 0x0080
103#define GPCT_SINGLE_PW 0x0100
104#define GPCT_CONT_PULSE_OUT 0x0200
105#define GPCT_SINGLE_PULSE_OUT 0x0400
106
107/* instructions */
108
109#define INSN_MASK_WRITE 0x8000000
110#define INSN_MASK_READ 0x4000000
111#define INSN_MASK_SPECIAL 0x2000000
112
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800113#define INSN_READ (0 | INSN_MASK_READ)
114#define INSN_WRITE (1 | INSN_MASK_WRITE)
115#define INSN_BITS (2 | INSN_MASK_READ|INSN_MASK_WRITE)
116#define INSN_CONFIG (3 | INSN_MASK_READ|INSN_MASK_WRITE)
117#define INSN_GTOD (4 | INSN_MASK_READ|INSN_MASK_SPECIAL)
118#define INSN_WAIT (5 | INSN_MASK_WRITE|INSN_MASK_SPECIAL)
119#define INSN_INTTRIG (6 | INSN_MASK_WRITE|INSN_MASK_SPECIAL)
David Schleefed9eccb2008-11-04 20:29:31 -0800120
121/* trigger flags */
122/* These flags are used in comedi_trig structures */
123
124#define TRIG_BOGUS 0x0001 /* do the motions */
125#define TRIG_DITHER 0x0002 /* enable dithering */
126#define TRIG_DEGLITCH 0x0004 /* enable deglitching */
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800127/*#define TRIG_RT 0x0008 */ /* perform op in real time */
David Schleefed9eccb2008-11-04 20:29:31 -0800128#define TRIG_CONFIG 0x0010 /* perform configuration, not triggering */
129#define TRIG_WAKE_EOS 0x0020 /* wake up on end-of-scan events */
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800130/*#define TRIG_WRITE 0x0040*/ /* write to bidirectional devices */
David Schleefed9eccb2008-11-04 20:29:31 -0800131
132/* command flags */
133/* These flags are used in comedi_cmd structures */
134
135#define CMDF_PRIORITY 0x00000008 /* try to use a real-time interrupt while performing command */
136
137#define TRIG_RT CMDF_PRIORITY /* compatibility definition */
138
139#define CMDF_WRITE 0x00000040
140#define TRIG_WRITE CMDF_WRITE /* compatibility definition */
141
142#define CMDF_RAWDATA 0x00000080
143
144#define COMEDI_EV_START 0x00040000
145#define COMEDI_EV_SCAN_BEGIN 0x00080000
146#define COMEDI_EV_CONVERT 0x00100000
147#define COMEDI_EV_SCAN_END 0x00200000
148#define COMEDI_EV_STOP 0x00400000
149
150#define TRIG_ROUND_MASK 0x00030000
151#define TRIG_ROUND_NEAREST 0x00000000
152#define TRIG_ROUND_DOWN 0x00010000
153#define TRIG_ROUND_UP 0x00020000
154#define TRIG_ROUND_UP_NEXT 0x00030000
155
156/* trigger sources */
157
158#define TRIG_ANY 0xffffffff
159#define TRIG_INVALID 0x00000000
160
161#define TRIG_NONE 0x00000001 /* never trigger */
162#define TRIG_NOW 0x00000002 /* trigger now + N ns */
163#define TRIG_FOLLOW 0x00000004 /* trigger on next lower level trig */
164#define TRIG_TIME 0x00000008 /* trigger at time N ns */
165#define TRIG_TIMER 0x00000010 /* trigger at rate N ns */
166#define TRIG_COUNT 0x00000020 /* trigger when count reaches N */
167#define TRIG_EXT 0x00000040 /* trigger on external signal N */
168#define TRIG_INT 0x00000080 /* trigger on comedi-internal signal N */
169#define TRIG_OTHER 0x00000100 /* driver defined */
170
171/* subdevice flags */
172
173#define SDF_BUSY 0x0001 /* device is busy */
174#define SDF_BUSY_OWNER 0x0002 /* device is busy with your job */
175#define SDF_LOCKED 0x0004 /* subdevice is locked */
176#define SDF_LOCK_OWNER 0x0008 /* you own lock */
177#define SDF_MAXDATA 0x0010 /* maxdata depends on channel */
178#define SDF_FLAGS 0x0020 /* flags depend on channel */
179#define SDF_RANGETYPE 0x0040 /* range type depends on channel */
180#define SDF_MODE0 0x0080 /* can do mode 0 */
181#define SDF_MODE1 0x0100 /* can do mode 1 */
182#define SDF_MODE2 0x0200 /* can do mode 2 */
183#define SDF_MODE3 0x0400 /* can do mode 3 */
184#define SDF_MODE4 0x0800 /* can do mode 4 */
185#define SDF_CMD 0x1000 /* can do commands (deprecated) */
186#define SDF_SOFT_CALIBRATED 0x2000 /* subdevice uses software calibration */
187#define SDF_CMD_WRITE 0x4000 /* can do output commands */
188#define SDF_CMD_READ 0x8000 /* can do input commands */
189
190#define SDF_READABLE 0x00010000 /* subdevice can be read (e.g. analog input) */
191#define SDF_WRITABLE 0x00020000 /* subdevice can be written (e.g. analog output) */
192#define SDF_WRITEABLE SDF_WRITABLE /* spelling error in API */
193#define SDF_INTERNAL 0x00040000 /* subdevice does not have externally visible lines */
194#define SDF_RT 0x00080000 /* DEPRECATED: subdevice is RT capable */
195#define SDF_GROUND 0x00100000 /* can do aref=ground */
196#define SDF_COMMON 0x00200000 /* can do aref=common */
197#define SDF_DIFF 0x00400000 /* can do aref=diff */
198#define SDF_OTHER 0x00800000 /* can do aref=other */
199#define SDF_DITHER 0x01000000 /* can do dithering */
200#define SDF_DEGLITCH 0x02000000 /* can do deglitching */
201#define SDF_MMAP 0x04000000 /* can do mmap() */
202#define SDF_RUNNING 0x08000000 /* subdevice is acquiring data */
203#define SDF_LSAMPL 0x10000000 /* subdevice uses 32-bit samples */
204#define SDF_PACKED 0x20000000 /* subdevice can do packed DIO */
205/* re recyle these flags for PWM */
206#define SDF_PWM_COUNTER SDF_MODE0 /* PWM can automatically switch off */
207#define SDF_PWM_HBRIDGE SDF_MODE1 /* PWM is signed (H-bridge) */
208
209
210
211/* subdevice types */
212
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800213enum comedi_subdevice_type {
214 COMEDI_SUBD_UNUSED, /* unused by driver */
215 COMEDI_SUBD_AI, /* analog input */
216 COMEDI_SUBD_AO, /* analog output */
217 COMEDI_SUBD_DI, /* digital input */
218 COMEDI_SUBD_DO, /* digital output */
219 COMEDI_SUBD_DIO, /* digital input/output */
220 COMEDI_SUBD_COUNTER, /* counter */
221 COMEDI_SUBD_TIMER, /* timer */
222 COMEDI_SUBD_MEMORY, /* memory, EEPROM, DPRAM */
223 COMEDI_SUBD_CALIB, /* calibration DACs */
224 COMEDI_SUBD_PROC, /* processor, DSP */
225 COMEDI_SUBD_SERIAL, /* serial IO */
226 COMEDI_SUBD_PWM /* PWM */
227};
David Schleefed9eccb2008-11-04 20:29:31 -0800228
229/* configuration instructions */
230
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800231enum configuration_ids {
232 INSN_CONFIG_DIO_INPUT = 0,
233 INSN_CONFIG_DIO_OUTPUT = 1,
234 INSN_CONFIG_DIO_OPENDRAIN = 2,
235 INSN_CONFIG_ANALOG_TRIG = 16,
236/* INSN_CONFIG_WAVEFORM = 17, */
237/* INSN_CONFIG_TRIG = 18, */
238/* INSN_CONFIG_COUNTER = 19, */
239 INSN_CONFIG_ALT_SOURCE = 20,
240 INSN_CONFIG_DIGITAL_TRIG = 21,
241 INSN_CONFIG_BLOCK_SIZE = 22,
242 INSN_CONFIG_TIMER_1 = 23,
243 INSN_CONFIG_FILTER = 24,
244 INSN_CONFIG_CHANGE_NOTIFY = 25,
David Schleefed9eccb2008-11-04 20:29:31 -0800245
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800246 /*ALPHA*/ INSN_CONFIG_SERIAL_CLOCK = 26,
247 INSN_CONFIG_BIDIRECTIONAL_DATA = 27,
248 INSN_CONFIG_DIO_QUERY = 28,
249 INSN_CONFIG_PWM_OUTPUT = 29,
250 INSN_CONFIG_GET_PWM_OUTPUT = 30,
251 INSN_CONFIG_ARM = 31,
252 INSN_CONFIG_DISARM = 32,
253 INSN_CONFIG_GET_COUNTER_STATUS = 33,
254 INSN_CONFIG_RESET = 34,
255 INSN_CONFIG_GPCT_SINGLE_PULSE_GENERATOR = 1001, /* Use CTR as single pulsegenerator */
256 INSN_CONFIG_GPCT_PULSE_TRAIN_GENERATOR = 1002, /* Use CTR as pulsetraingenerator */
257 INSN_CONFIG_GPCT_QUADRATURE_ENCODER = 1003, /* Use the counter as encoder */
258 INSN_CONFIG_SET_GATE_SRC = 2001, /* Set gate source */
259 INSN_CONFIG_GET_GATE_SRC = 2002, /* Get gate source */
260 INSN_CONFIG_SET_CLOCK_SRC = 2003, /* Set master clock source */
261 INSN_CONFIG_GET_CLOCK_SRC = 2004, /* Get master clock source */
262 INSN_CONFIG_SET_OTHER_SRC = 2005, /* Set other source */
263/* INSN_CONFIG_GET_OTHER_SRC = 2006,*/ /* Get other source */
Ian Abbott1b9f6412009-01-30 12:59:26 +0000264 INSN_CONFIG_GET_HARDWARE_BUFFER_SIZE = 2006, /* Get size in bytes of
265 subdevice's on-board
266 fifos used during
267 streaming
268 input/output */
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800269 INSN_CONFIG_SET_COUNTER_MODE = 4097,
270 INSN_CONFIG_8254_SET_MODE = INSN_CONFIG_SET_COUNTER_MODE, /* deprecated */
271 INSN_CONFIG_8254_READ_STATUS = 4098,
272 INSN_CONFIG_SET_ROUTING = 4099,
273 INSN_CONFIG_GET_ROUTING = 4109,
David Schleefed9eccb2008-11-04 20:29:31 -0800274/* PWM */
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800275 INSN_CONFIG_PWM_SET_PERIOD = 5000, /* sets frequency */
276 INSN_CONFIG_PWM_GET_PERIOD = 5001, /* gets frequency */
277 INSN_CONFIG_GET_PWM_STATUS = 5002, /* is it running? */
278 INSN_CONFIG_PWM_SET_H_BRIDGE = 5003, /* sets H bridge: duty cycle and sign bit for a relay at the same time*/
279 INSN_CONFIG_PWM_GET_H_BRIDGE = 5004 /* gets H bridge data: duty cycle and the sign bit */
280};
David Schleefed9eccb2008-11-04 20:29:31 -0800281
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800282enum comedi_io_direction {
283 COMEDI_INPUT = 0,
284 COMEDI_OUTPUT = 1,
285 COMEDI_OPENDRAIN = 2
286};
David Schleefed9eccb2008-11-04 20:29:31 -0800287
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800288enum comedi_support_level {
289 COMEDI_UNKNOWN_SUPPORT = 0,
290 COMEDI_SUPPORTED,
291 COMEDI_UNSUPPORTED
292};
David Schleefed9eccb2008-11-04 20:29:31 -0800293
294/* ioctls */
295
296#define CIO 'd'
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800297#define COMEDI_DEVCONFIG _IOW(CIO, 0, comedi_devconfig)
298#define COMEDI_DEVINFO _IOR(CIO, 1, comedi_devinfo)
299#define COMEDI_SUBDINFO _IOR(CIO, 2, comedi_subdinfo)
300#define COMEDI_CHANINFO _IOR(CIO, 3, comedi_chaninfo)
301#define COMEDI_TRIG _IOWR(CIO, 4, comedi_trig)
302#define COMEDI_LOCK _IO(CIO, 5)
303#define COMEDI_UNLOCK _IO(CIO, 6)
304#define COMEDI_CANCEL _IO(CIO, 7)
305#define COMEDI_RANGEINFO _IOR(CIO, 8, comedi_rangeinfo)
306#define COMEDI_CMD _IOR(CIO, 9, comedi_cmd)
307#define COMEDI_CMDTEST _IOR(CIO, 10, comedi_cmd)
308#define COMEDI_INSNLIST _IOR(CIO, 11, comedi_insnlist)
309#define COMEDI_INSN _IOR(CIO, 12, comedi_insn)
310#define COMEDI_BUFCONFIG _IOR(CIO, 13, comedi_bufconfig)
311#define COMEDI_BUFINFO _IOWR(CIO, 14, comedi_bufinfo)
312#define COMEDI_POLL _IO(CIO, 15)
David Schleefed9eccb2008-11-04 20:29:31 -0800313
314/* structures */
315
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800316typedef struct comedi_trig_struct comedi_trig;
317typedef struct comedi_cmd_struct comedi_cmd;
318typedef struct comedi_insn_struct comedi_insn;
319typedef struct comedi_insnlist_struct comedi_insnlist;
320typedef struct comedi_chaninfo_struct comedi_chaninfo;
321typedef struct comedi_subdinfo_struct comedi_subdinfo;
322typedef struct comedi_devinfo_struct comedi_devinfo;
323typedef struct comedi_devconfig_struct comedi_devconfig;
324typedef struct comedi_rangeinfo_struct comedi_rangeinfo;
325typedef struct comedi_krange_struct comedi_krange;
326typedef struct comedi_bufconfig_struct comedi_bufconfig;
327typedef struct comedi_bufinfo_struct comedi_bufinfo;
David Schleefed9eccb2008-11-04 20:29:31 -0800328
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800329struct comedi_trig_struct {
330 unsigned int subdev; /* subdevice */
331 unsigned int mode; /* mode */
332 unsigned int flags;
333 unsigned int n_chan; /* number of channels */
334 unsigned int *chanlist; /* channel/range list */
335 sampl_t *data; /* data list, size depends on subd flags */
336 unsigned int n; /* number of scans */
337 unsigned int trigsrc;
338 unsigned int trigvar;
339 unsigned int trigvar1;
340 unsigned int data_len;
341 unsigned int unused[3];
342};
David Schleefed9eccb2008-11-04 20:29:31 -0800343
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800344struct comedi_insn_struct {
345 unsigned int insn;
346 unsigned int n;
347 lsampl_t *data;
348 unsigned int subdev;
349 unsigned int chanspec;
350 unsigned int unused[3];
351};
David Schleefed9eccb2008-11-04 20:29:31 -0800352
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800353struct comedi_insnlist_struct {
354 unsigned int n_insns;
355 comedi_insn *insns;
356};
David Schleefed9eccb2008-11-04 20:29:31 -0800357
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800358struct comedi_cmd_struct {
359 unsigned int subdev;
360 unsigned int flags;
David Schleefed9eccb2008-11-04 20:29:31 -0800361
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800362 unsigned int start_src;
363 unsigned int start_arg;
David Schleefed9eccb2008-11-04 20:29:31 -0800364
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800365 unsigned int scan_begin_src;
366 unsigned int scan_begin_arg;
David Schleefed9eccb2008-11-04 20:29:31 -0800367
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800368 unsigned int convert_src;
369 unsigned int convert_arg;
David Schleefed9eccb2008-11-04 20:29:31 -0800370
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800371 unsigned int scan_end_src;
372 unsigned int scan_end_arg;
David Schleefed9eccb2008-11-04 20:29:31 -0800373
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800374 unsigned int stop_src;
375 unsigned int stop_arg;
David Schleefed9eccb2008-11-04 20:29:31 -0800376
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800377 unsigned int *chanlist; /* channel/range list */
378 unsigned int chanlist_len;
David Schleefed9eccb2008-11-04 20:29:31 -0800379
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800380 sampl_t *data; /* data list, size depends on subd flags */
381 unsigned int data_len;
382};
David Schleefed9eccb2008-11-04 20:29:31 -0800383
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800384struct comedi_chaninfo_struct {
385 unsigned int subdev;
386 lsampl_t *maxdata_list;
387 unsigned int *flaglist;
388 unsigned int *rangelist;
389 unsigned int unused[4];
390};
David Schleefed9eccb2008-11-04 20:29:31 -0800391
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800392struct comedi_rangeinfo_struct {
393 unsigned int range_type;
394 void *range_ptr;
395};
David Schleefed9eccb2008-11-04 20:29:31 -0800396
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800397struct comedi_krange_struct {
398 int min; /* fixed point, multiply by 1e-6 */
399 int max; /* fixed point, multiply by 1e-6 */
400 unsigned int flags;
401};
David Schleefed9eccb2008-11-04 20:29:31 -0800402
403
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800404struct comedi_subdinfo_struct {
405 unsigned int type;
406 unsigned int n_chan;
407 unsigned int subd_flags;
408 unsigned int timer_type;
409 unsigned int len_chanlist;
410 lsampl_t maxdata;
411 unsigned int flags; /* channel flags */
412 unsigned int range_type; /* lookup in kernel */
413 unsigned int settling_time_0;
414 unsigned insn_bits_support; /* see support_level enum for values*/
415 unsigned int unused[8];
416};
David Schleefed9eccb2008-11-04 20:29:31 -0800417
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800418struct comedi_devinfo_struct {
419 unsigned int version_code;
420 unsigned int n_subdevs;
421 char driver_name[COMEDI_NAMELEN];
422 char board_name[COMEDI_NAMELEN];
423 int read_subdevice;
424 int write_subdevice;
425 int unused[30];
426};
David Schleefed9eccb2008-11-04 20:29:31 -0800427
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800428struct comedi_devconfig_struct {
429 char board_name[COMEDI_NAMELEN];
430 int options[COMEDI_NDEVCONFOPTS];
431};
David Schleefed9eccb2008-11-04 20:29:31 -0800432
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800433struct comedi_bufconfig_struct {
434 unsigned int subdevice;
435 unsigned int flags;
David Schleefed9eccb2008-11-04 20:29:31 -0800436
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800437 unsigned int maximum_size;
438 unsigned int size;
David Schleefed9eccb2008-11-04 20:29:31 -0800439
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800440 unsigned int unused[4];
441};
David Schleefed9eccb2008-11-04 20:29:31 -0800442
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800443struct comedi_bufinfo_struct {
444 unsigned int subdevice;
445 unsigned int bytes_read;
David Schleefed9eccb2008-11-04 20:29:31 -0800446
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800447 unsigned int buf_write_ptr;
448 unsigned int buf_read_ptr;
449 unsigned int buf_write_count;
450 unsigned int buf_read_count;
David Schleefed9eccb2008-11-04 20:29:31 -0800451
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800452 unsigned int bytes_written;
David Schleefed9eccb2008-11-04 20:29:31 -0800453
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800454 unsigned int unused[4];
455};
David Schleefed9eccb2008-11-04 20:29:31 -0800456
457/* range stuff */
458
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800459#define __RANGE(a, b) ((((a)&0xffff)<<16)|((b)&0xffff))
David Schleefed9eccb2008-11-04 20:29:31 -0800460
461#define RANGE_OFFSET(a) (((a)>>16)&0xffff)
462#define RANGE_LENGTH(b) ((b)&0xffff)
463
464#define RF_UNIT(flags) ((flags)&0xff)
465#define RF_EXTERNAL (1<<8)
466
467#define UNIT_volt 0
468#define UNIT_mA 1
469#define UNIT_none 2
470
471#define COMEDI_MIN_SPEED ((unsigned int)0xffffffff)
472
473/* callback stuff */
474/* only relevant to kernel modules. */
475
476#define COMEDI_CB_EOS 1 /* end of scan */
477#define COMEDI_CB_EOA 2 /* end of acquisition */
478#define COMEDI_CB_BLOCK 4 /* DEPRECATED: convenient block size */
479#define COMEDI_CB_EOBUF 8 /* DEPRECATED: end of buffer */
480#define COMEDI_CB_ERROR 16 /* card error during acquisition */
481#define COMEDI_CB_OVERFLOW 32 /* buffer overflow/underflow */
482
483/**********************************************************/
484/* everything after this line is ALPHA */
485/**********************************************************/
486
487/*
488 8254 specific configuration.
489
490 It supports two config commands:
491
492 0 ID: INSN_CONFIG_SET_COUNTER_MODE
493 1 8254 Mode
494 I8254_MODE0, I8254_MODE1, ..., I8254_MODE5
495 OR'ed with:
496 I8254_BCD, I8254_BINARY
497
498 0 ID: INSN_CONFIG_8254_READ_STATUS
499 1 <-- Status byte returned here.
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800500 B7 = Output
501 B6 = NULL Count
502 B5 - B0 Current mode.
David Schleefed9eccb2008-11-04 20:29:31 -0800503
504*/
505
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800506enum i8254_mode {
507 I8254_MODE0 = (0 << 1), /* Interrupt on terminal count */
508 I8254_MODE1 = (1 << 1), /* Hardware retriggerable one-shot */
509 I8254_MODE2 = (2 << 1), /* Rate generator */
510 I8254_MODE3 = (3 << 1), /* Square wave mode */
511 I8254_MODE4 = (4 << 1), /* Software triggered strobe */
512 I8254_MODE5 = (5 << 1), /* Hardware triggered strobe (retriggerable) */
513 I8254_BCD = 1, /* use binary-coded decimal instead of binary (pretty useless) */
514 I8254_BINARY = 0
515};
David Schleefed9eccb2008-11-04 20:29:31 -0800516
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800517static inline unsigned NI_USUAL_PFI_SELECT(unsigned pfi_channel)
518{
519 if (pfi_channel < 10)
520 return 0x1 + pfi_channel;
521 else
522 return 0xb + pfi_channel;
523}
524static inline unsigned NI_USUAL_RTSI_SELECT(unsigned rtsi_channel)
525{
526 if (rtsi_channel < 7)
527 return 0xb + rtsi_channel;
528 else
529 return 0x1b;
530}
531/* mode bits for NI general-purpose counters, set with
532 * INSN_CONFIG_SET_COUNTER_MODE */
David Schleefed9eccb2008-11-04 20:29:31 -0800533#define NI_GPCT_COUNTING_MODE_SHIFT 16
534#define NI_GPCT_INDEX_PHASE_BITSHIFT 20
535#define NI_GPCT_COUNTING_DIRECTION_SHIFT 24
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800536enum ni_gpct_mode_bits {
537 NI_GPCT_GATE_ON_BOTH_EDGES_BIT = 0x4,
538 NI_GPCT_EDGE_GATE_MODE_MASK = 0x18,
539 NI_GPCT_EDGE_GATE_STARTS_STOPS_BITS = 0x0,
540 NI_GPCT_EDGE_GATE_STOPS_STARTS_BITS = 0x8,
541 NI_GPCT_EDGE_GATE_STARTS_BITS = 0x10,
542 NI_GPCT_EDGE_GATE_NO_STARTS_NO_STOPS_BITS = 0x18,
543 NI_GPCT_STOP_MODE_MASK = 0x60,
544 NI_GPCT_STOP_ON_GATE_BITS = 0x00,
545 NI_GPCT_STOP_ON_GATE_OR_TC_BITS = 0x20,
546 NI_GPCT_STOP_ON_GATE_OR_SECOND_TC_BITS = 0x40,
547 NI_GPCT_LOAD_B_SELECT_BIT = 0x80,
548 NI_GPCT_OUTPUT_MODE_MASK = 0x300,
549 NI_GPCT_OUTPUT_TC_PULSE_BITS = 0x100,
550 NI_GPCT_OUTPUT_TC_TOGGLE_BITS = 0x200,
551 NI_GPCT_OUTPUT_TC_OR_GATE_TOGGLE_BITS = 0x300,
552 NI_GPCT_HARDWARE_DISARM_MASK = 0xc00,
553 NI_GPCT_NO_HARDWARE_DISARM_BITS = 0x000,
554 NI_GPCT_DISARM_AT_TC_BITS = 0x400,
555 NI_GPCT_DISARM_AT_GATE_BITS = 0x800,
556 NI_GPCT_DISARM_AT_TC_OR_GATE_BITS = 0xc00,
557 NI_GPCT_LOADING_ON_TC_BIT = 0x1000,
558 NI_GPCT_LOADING_ON_GATE_BIT = 0x4000,
559 NI_GPCT_COUNTING_MODE_MASK = 0x7 << NI_GPCT_COUNTING_MODE_SHIFT,
560 NI_GPCT_COUNTING_MODE_NORMAL_BITS =
561 0x0 << NI_GPCT_COUNTING_MODE_SHIFT,
562 NI_GPCT_COUNTING_MODE_QUADRATURE_X1_BITS =
563 0x1 << NI_GPCT_COUNTING_MODE_SHIFT,
564 NI_GPCT_COUNTING_MODE_QUADRATURE_X2_BITS =
565 0x2 << NI_GPCT_COUNTING_MODE_SHIFT,
566 NI_GPCT_COUNTING_MODE_QUADRATURE_X4_BITS =
567 0x3 << NI_GPCT_COUNTING_MODE_SHIFT,
568 NI_GPCT_COUNTING_MODE_TWO_PULSE_BITS =
569 0x4 << NI_GPCT_COUNTING_MODE_SHIFT,
570 NI_GPCT_COUNTING_MODE_SYNC_SOURCE_BITS =
571 0x6 << NI_GPCT_COUNTING_MODE_SHIFT,
572 NI_GPCT_INDEX_PHASE_MASK = 0x3 << NI_GPCT_INDEX_PHASE_BITSHIFT,
573 NI_GPCT_INDEX_PHASE_LOW_A_LOW_B_BITS =
574 0x0 << NI_GPCT_INDEX_PHASE_BITSHIFT,
575 NI_GPCT_INDEX_PHASE_LOW_A_HIGH_B_BITS =
576 0x1 << NI_GPCT_INDEX_PHASE_BITSHIFT,
577 NI_GPCT_INDEX_PHASE_HIGH_A_LOW_B_BITS =
578 0x2 << NI_GPCT_INDEX_PHASE_BITSHIFT,
579 NI_GPCT_INDEX_PHASE_HIGH_A_HIGH_B_BITS =
580 0x3 << NI_GPCT_INDEX_PHASE_BITSHIFT,
581 NI_GPCT_INDEX_ENABLE_BIT = 0x400000,
582 NI_GPCT_COUNTING_DIRECTION_MASK =
583 0x3 << NI_GPCT_COUNTING_DIRECTION_SHIFT,
584 NI_GPCT_COUNTING_DIRECTION_DOWN_BITS =
585 0x00 << NI_GPCT_COUNTING_DIRECTION_SHIFT,
586 NI_GPCT_COUNTING_DIRECTION_UP_BITS =
587 0x1 << NI_GPCT_COUNTING_DIRECTION_SHIFT,
588 NI_GPCT_COUNTING_DIRECTION_HW_UP_DOWN_BITS =
589 0x2 << NI_GPCT_COUNTING_DIRECTION_SHIFT,
590 NI_GPCT_COUNTING_DIRECTION_HW_GATE_BITS =
591 0x3 << NI_GPCT_COUNTING_DIRECTION_SHIFT,
592 NI_GPCT_RELOAD_SOURCE_MASK = 0xc000000,
593 NI_GPCT_RELOAD_SOURCE_FIXED_BITS = 0x0,
594 NI_GPCT_RELOAD_SOURCE_SWITCHING_BITS = 0x4000000,
595 NI_GPCT_RELOAD_SOURCE_GATE_SELECT_BITS = 0x8000000,
596 NI_GPCT_OR_GATE_BIT = 0x10000000,
597 NI_GPCT_INVERT_OUTPUT_BIT = 0x20000000
598};
David Schleefed9eccb2008-11-04 20:29:31 -0800599
600/* Bits for setting a clock source with
601 * INSN_CONFIG_SET_CLOCK_SRC when using NI general-purpose counters. */
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800602enum ni_gpct_clock_source_bits {
603 NI_GPCT_CLOCK_SRC_SELECT_MASK = 0x3f,
604 NI_GPCT_TIMEBASE_1_CLOCK_SRC_BITS = 0x0,
605 NI_GPCT_TIMEBASE_2_CLOCK_SRC_BITS = 0x1,
606 NI_GPCT_TIMEBASE_3_CLOCK_SRC_BITS = 0x2,
607 NI_GPCT_LOGIC_LOW_CLOCK_SRC_BITS = 0x3,
608 NI_GPCT_NEXT_GATE_CLOCK_SRC_BITS = 0x4,
609 NI_GPCT_NEXT_TC_CLOCK_SRC_BITS = 0x5,
610 NI_GPCT_SOURCE_PIN_i_CLOCK_SRC_BITS = 0x6, /* NI 660x-specific */
611 NI_GPCT_PXI10_CLOCK_SRC_BITS = 0x7,
612 NI_GPCT_PXI_STAR_TRIGGER_CLOCK_SRC_BITS = 0x8,
613 NI_GPCT_ANALOG_TRIGGER_OUT_CLOCK_SRC_BITS = 0x9,
614 NI_GPCT_PRESCALE_MODE_CLOCK_SRC_MASK = 0x30000000,
615 NI_GPCT_NO_PRESCALE_CLOCK_SRC_BITS = 0x0,
616 NI_GPCT_PRESCALE_X2_CLOCK_SRC_BITS = 0x10000000, /* divide source by 2 */
617 NI_GPCT_PRESCALE_X8_CLOCK_SRC_BITS = 0x20000000, /* divide source by 8 */
618 NI_GPCT_INVERT_CLOCK_SRC_BIT = 0x80000000
619};
620static inline unsigned NI_GPCT_SOURCE_PIN_CLOCK_SRC_BITS(unsigned n)
621{
622 /* NI 660x-specific */
623 return 0x10 + n;
624}
625static inline unsigned NI_GPCT_RTSI_CLOCK_SRC_BITS(unsigned n)
626{
627 return 0x18 + n;
628}
629static inline unsigned NI_GPCT_PFI_CLOCK_SRC_BITS(unsigned n)
630{
631 /* no pfi on NI 660x */
632 return 0x20 + n;
633}
David Schleefed9eccb2008-11-04 20:29:31 -0800634
635/* Possibilities for setting a gate source with
636INSN_CONFIG_SET_GATE_SRC when using NI general-purpose counters.
637May be bitwise-or'd with CR_EDGE or CR_INVERT. */
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800638enum ni_gpct_gate_select {
639 /* m-series gates */
640 NI_GPCT_TIMESTAMP_MUX_GATE_SELECT = 0x0,
641 NI_GPCT_AI_START2_GATE_SELECT = 0x12,
642 NI_GPCT_PXI_STAR_TRIGGER_GATE_SELECT = 0x13,
643 NI_GPCT_NEXT_OUT_GATE_SELECT = 0x14,
644 NI_GPCT_AI_START1_GATE_SELECT = 0x1c,
645 NI_GPCT_NEXT_SOURCE_GATE_SELECT = 0x1d,
646 NI_GPCT_ANALOG_TRIGGER_OUT_GATE_SELECT = 0x1e,
647 NI_GPCT_LOGIC_LOW_GATE_SELECT = 0x1f,
648 /* more gates for 660x */
649 NI_GPCT_SOURCE_PIN_i_GATE_SELECT = 0x100,
650 NI_GPCT_GATE_PIN_i_GATE_SELECT = 0x101,
651 /* more gates for 660x "second gate" */
652 NI_GPCT_UP_DOWN_PIN_i_GATE_SELECT = 0x201,
653 NI_GPCT_SELECTED_GATE_GATE_SELECT = 0x21e,
654 /* m-series "second gate" sources are unknown,
655 we should add them here with an offset of 0x300 when known. */
656 NI_GPCT_DISABLED_GATE_SELECT = 0x8000,
657};
658static inline unsigned NI_GPCT_GATE_PIN_GATE_SELECT(unsigned n)
659{
660 return 0x102 + n;
661}
662static inline unsigned NI_GPCT_RTSI_GATE_SELECT(unsigned n)
663{
664 return NI_USUAL_RTSI_SELECT(n);
665}
666static inline unsigned NI_GPCT_PFI_GATE_SELECT(unsigned n)
667{
668 return NI_USUAL_PFI_SELECT(n);
669}
670static inline unsigned NI_GPCT_UP_DOWN_PIN_GATE_SELECT(unsigned n)
671{
672 return 0x202 + n;
673}
David Schleefed9eccb2008-11-04 20:29:31 -0800674
675/* Possibilities for setting a source with
676INSN_CONFIG_SET_OTHER_SRC when using NI general-purpose counters. */
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800677enum ni_gpct_other_index {
678 NI_GPCT_SOURCE_ENCODER_A,
679 NI_GPCT_SOURCE_ENCODER_B,
680 NI_GPCT_SOURCE_ENCODER_Z
681};
682enum ni_gpct_other_select {
683 /* m-series gates */
684 /* Still unknown, probably only need NI_GPCT_PFI_OTHER_SELECT */
685 NI_GPCT_DISABLED_OTHER_SELECT = 0x8000,
686};
687static inline unsigned NI_GPCT_PFI_OTHER_SELECT(unsigned n)
688{
689 return NI_USUAL_PFI_SELECT(n);
690}
David Schleefed9eccb2008-11-04 20:29:31 -0800691
692/* start sources for ni general-purpose counters for use with
693INSN_CONFIG_ARM */
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800694enum ni_gpct_arm_source {
695 NI_GPCT_ARM_IMMEDIATE = 0x0,
696 NI_GPCT_ARM_PAIRED_IMMEDIATE = 0x1, /* Start both the counter and
697 the adjacent paired counter
698 simultaneously */
699 /* NI doesn't document bits for selecting hardware arm triggers. If
700 * the NI_GPCT_ARM_UNKNOWN bit is set, we will pass the least
701 * significant bits (3 bits for 660x or 5 bits for m-series) through to
702 * the hardware. This will at least allow someone to figure out what
703 * the bits do later. */
704 NI_GPCT_ARM_UNKNOWN = 0x1000,
705};
David Schleefed9eccb2008-11-04 20:29:31 -0800706
707/* digital filtering options for ni 660x for use with INSN_CONFIG_FILTER. */
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800708enum ni_gpct_filter_select {
709 NI_GPCT_FILTER_OFF = 0x0,
710 NI_GPCT_FILTER_TIMEBASE_3_SYNC = 0x1,
711 NI_GPCT_FILTER_100x_TIMEBASE_1 = 0x2,
712 NI_GPCT_FILTER_20x_TIMEBASE_1 = 0x3,
713 NI_GPCT_FILTER_10x_TIMEBASE_1 = 0x4,
714 NI_GPCT_FILTER_2x_TIMEBASE_1 = 0x5,
715 NI_GPCT_FILTER_2x_TIMEBASE_3 = 0x6
716};
David Schleefed9eccb2008-11-04 20:29:31 -0800717
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800718/* PFI digital filtering options for ni m-series for use with
719 * INSN_CONFIG_FILTER. */
720enum ni_pfi_filter_select {
721 NI_PFI_FILTER_OFF = 0x0,
722 NI_PFI_FILTER_125ns = 0x1,
723 NI_PFI_FILTER_6425ns = 0x2,
724 NI_PFI_FILTER_2550us = 0x3
725};
David Schleefed9eccb2008-11-04 20:29:31 -0800726
727/* master clock sources for ni mio boards and INSN_CONFIG_SET_CLOCK_SRC */
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800728enum ni_mio_clock_source {
729 NI_MIO_INTERNAL_CLOCK = 0,
730 NI_MIO_RTSI_CLOCK = 1, /* doesn't work for m-series, use
731 NI_MIO_PLL_RTSI_CLOCK() */
732 /* the NI_MIO_PLL_* sources are m-series only */
733 NI_MIO_PLL_PXI_STAR_TRIGGER_CLOCK = 2,
734 NI_MIO_PLL_PXI10_CLOCK = 3,
735 NI_MIO_PLL_RTSI0_CLOCK = 4
736};
737static inline unsigned NI_MIO_PLL_RTSI_CLOCK(unsigned rtsi_channel)
738{
739 return NI_MIO_PLL_RTSI0_CLOCK + rtsi_channel;
740}
David Schleefed9eccb2008-11-04 20:29:31 -0800741
742/* Signals which can be routed to an NI RTSI pin with INSN_CONFIG_SET_ROUTING.
743 The numbers assigned are not arbitrary, they correspond to the bits required
744 to program the board. */
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800745enum ni_rtsi_routing {
746 NI_RTSI_OUTPUT_ADR_START1 = 0,
747 NI_RTSI_OUTPUT_ADR_START2 = 1,
748 NI_RTSI_OUTPUT_SCLKG = 2,
749 NI_RTSI_OUTPUT_DACUPDN = 3,
750 NI_RTSI_OUTPUT_DA_START1 = 4,
751 NI_RTSI_OUTPUT_G_SRC0 = 5,
752 NI_RTSI_OUTPUT_G_GATE0 = 6,
753 NI_RTSI_OUTPUT_RGOUT0 = 7,
754 NI_RTSI_OUTPUT_RTSI_BRD_0 = 8,
755 NI_RTSI_OUTPUT_RTSI_OSC = 12 /* pre-m-series always have RTSI clock
756 on line 7 */
757};
758static inline unsigned NI_RTSI_OUTPUT_RTSI_BRD(unsigned n)
759{
760 return NI_RTSI_OUTPUT_RTSI_BRD_0 + n;
761}
David Schleefed9eccb2008-11-04 20:29:31 -0800762
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800763/* Signals which can be routed to an NI PFI pin on an m-series board with
764 * INSN_CONFIG_SET_ROUTING. These numbers are also returned by
765 * INSN_CONFIG_GET_ROUTING on pre-m-series boards, even though their routing
766 * cannot be changed. The numbers assigned are not arbitrary, they correspond
767 * to the bits required to program the board. */
768enum ni_pfi_routing {
769 NI_PFI_OUTPUT_PFI_DEFAULT = 0,
770 NI_PFI_OUTPUT_AI_START1 = 1,
771 NI_PFI_OUTPUT_AI_START2 = 2,
772 NI_PFI_OUTPUT_AI_CONVERT = 3,
773 NI_PFI_OUTPUT_G_SRC1 = 4,
774 NI_PFI_OUTPUT_G_GATE1 = 5,
775 NI_PFI_OUTPUT_AO_UPDATE_N = 6,
776 NI_PFI_OUTPUT_AO_START1 = 7,
777 NI_PFI_OUTPUT_AI_START_PULSE = 8,
778 NI_PFI_OUTPUT_G_SRC0 = 9,
779 NI_PFI_OUTPUT_G_GATE0 = 10,
780 NI_PFI_OUTPUT_EXT_STROBE = 11,
781 NI_PFI_OUTPUT_AI_EXT_MUX_CLK = 12,
782 NI_PFI_OUTPUT_GOUT0 = 13,
783 NI_PFI_OUTPUT_GOUT1 = 14,
784 NI_PFI_OUTPUT_FREQ_OUT = 15,
785 NI_PFI_OUTPUT_PFI_DO = 16,
786 NI_PFI_OUTPUT_I_ATRIG = 17,
787 NI_PFI_OUTPUT_RTSI0 = 18,
788 NI_PFI_OUTPUT_PXI_STAR_TRIGGER_IN = 26,
789 NI_PFI_OUTPUT_SCXI_TRIG1 = 27,
790 NI_PFI_OUTPUT_DIO_CHANGE_DETECT_RTSI = 28,
791 NI_PFI_OUTPUT_CDI_SAMPLE = 29,
792 NI_PFI_OUTPUT_CDO_UPDATE = 30
793};
794static inline unsigned NI_PFI_OUTPUT_RTSI(unsigned rtsi_channel)
795{
796 return NI_PFI_OUTPUT_RTSI0 + rtsi_channel;
797}
David Schleefed9eccb2008-11-04 20:29:31 -0800798
799/* Signals which can be routed to output on a NI PFI pin on a 660x board
800 with INSN_CONFIG_SET_ROUTING. The numbers assigned are
801 not arbitrary, they correspond to the bits required
802 to program the board. Lines 0 to 7 can only be set to
803 NI_660X_PFI_OUTPUT_DIO. Lines 32 to 39 can only be set to
804 NI_660X_PFI_OUTPUT_COUNTER. */
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800805enum ni_660x_pfi_routing {
806 NI_660X_PFI_OUTPUT_COUNTER = 1, /* counter */
807 NI_660X_PFI_OUTPUT_DIO = 2, /* static digital output */
808};
David Schleefed9eccb2008-11-04 20:29:31 -0800809
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800810/* NI External Trigger lines. These values are not arbitrary, but are related
811 * to the bits required to program the board (offset by 1 for historical
812 * reasons). */
813static inline unsigned NI_EXT_PFI(unsigned pfi_channel)
814{
815 return NI_USUAL_PFI_SELECT(pfi_channel) - 1;
816}
817static inline unsigned NI_EXT_RTSI(unsigned rtsi_channel)
818{
819 return NI_USUAL_RTSI_SELECT(rtsi_channel) - 1;
820}
David Schleefed9eccb2008-11-04 20:29:31 -0800821
822/* status bits for INSN_CONFIG_GET_COUNTER_STATUS */
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800823enum comedi_counter_status_flags {
824 COMEDI_COUNTER_ARMED = 0x1,
825 COMEDI_COUNTER_COUNTING = 0x2,
826 COMEDI_COUNTER_TERMINAL_COUNT = 0x4,
827};
David Schleefed9eccb2008-11-04 20:29:31 -0800828
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800829/* Clock sources for CDIO subdevice on NI m-series boards. Used as the
830 * scan_begin_arg for a comedi_command. These sources may also be bitwise-or'd
831 * with CR_INVERT to change polarity. */
832enum ni_m_series_cdio_scan_begin_src {
833 NI_CDIO_SCAN_BEGIN_SRC_GROUND = 0,
834 NI_CDIO_SCAN_BEGIN_SRC_AI_START = 18,
835 NI_CDIO_SCAN_BEGIN_SRC_AI_CONVERT = 19,
836 NI_CDIO_SCAN_BEGIN_SRC_PXI_STAR_TRIGGER = 20,
837 NI_CDIO_SCAN_BEGIN_SRC_G0_OUT = 28,
838 NI_CDIO_SCAN_BEGIN_SRC_G1_OUT = 29,
839 NI_CDIO_SCAN_BEGIN_SRC_ANALOG_TRIGGER = 30,
840 NI_CDIO_SCAN_BEGIN_SRC_AO_UPDATE = 31,
841 NI_CDIO_SCAN_BEGIN_SRC_FREQ_OUT = 32,
842 NI_CDIO_SCAN_BEGIN_SRC_DIO_CHANGE_DETECT_IRQ = 33
843};
844static inline unsigned NI_CDIO_SCAN_BEGIN_SRC_PFI(unsigned pfi_channel)
845{
846 return NI_USUAL_PFI_SELECT(pfi_channel);
847}
848static inline unsigned NI_CDIO_SCAN_BEGIN_SRC_RTSI(unsigned rtsi_channel)
849{
850 return NI_USUAL_RTSI_SELECT(rtsi_channel);
851}
David Schleefed9eccb2008-11-04 20:29:31 -0800852
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800853/* scan_begin_src for scan_begin_arg==TRIG_EXT with analog output command on NI
854 * boards. These scan begin sources can also be bitwise-or'd with CR_INVERT to
855 * change polarity. */
856static inline unsigned NI_AO_SCAN_BEGIN_SRC_PFI(unsigned pfi_channel)
857{
858 return NI_USUAL_PFI_SELECT(pfi_channel);
859}
860static inline unsigned NI_AO_SCAN_BEGIN_SRC_RTSI(unsigned rtsi_channel)
861{
862 return NI_USUAL_RTSI_SELECT(rtsi_channel);
863}
David Schleefed9eccb2008-11-04 20:29:31 -0800864
865/* Bits for setting a clock source with
866 * INSN_CONFIG_SET_CLOCK_SRC when using NI frequency output subdevice. */
Greg Kroah-Hartmane0dcef72008-11-13 16:36:22 -0800867enum ni_freq_out_clock_source_bits {
868 NI_FREQ_OUT_TIMEBASE_1_DIV_2_CLOCK_SRC, /* 10 MHz */
869 NI_FREQ_OUT_TIMEBASE_2_CLOCK_SRC /* 100 KHz */
870};
David Schleefed9eccb2008-11-04 20:29:31 -0800871
872/* Values for setting a clock source with INSN_CONFIG_SET_CLOCK_SRC for
873 * 8254 counter subdevices on Amplicon DIO boards (amplc_dio200 driver). */
874 enum amplc_dio_clock_source {
875 AMPLC_DIO_CLK_CLKN, /* per channel external clock
876 input/output pin (pin is only an
877 input when clock source set to this
878 value, otherwise it is an output) */
879 AMPLC_DIO_CLK_10MHZ, /* 10 MHz internal clock */
880 AMPLC_DIO_CLK_1MHZ, /* 1 MHz internal clock */
881 AMPLC_DIO_CLK_100KHZ, /* 100 kHz internal clock */
882 AMPLC_DIO_CLK_10KHZ, /* 10 kHz internal clock */
883 AMPLC_DIO_CLK_1KHZ, /* 1 kHz internal clock */
884 AMPLC_DIO_CLK_OUTNM1, /* output of preceding counter channel
885 (for channel 0, preceding counter
886 channel is channel 2 on preceding
887 counter subdevice, for first counter
888 subdevice, preceding counter
889 subdevice is the last counter
890 subdevice) */
891 AMPLC_DIO_CLK_EXT /* per chip external input pin */
892 };
893
894/* Values for setting a gate source with INSN_CONFIG_SET_GATE_SRC for
895 * 8254 counter subdevices on Amplicon DIO boards (amplc_dio200 driver). */
896 enum amplc_dio_gate_source {
897 AMPLC_DIO_GAT_VCC, /* internal high logic level */
898 AMPLC_DIO_GAT_GND, /* internal low logic level */
899 AMPLC_DIO_GAT_GATN, /* per channel external gate input */
900 AMPLC_DIO_GAT_NOUTNM2, /* negated output of counter channel
901 minus 2 (for channels 0 or 1,
902 channel minus 2 is channel 1 or 2 on
903 the preceding counter subdevice, for
904 the first counter subdevice the
905 preceding counter subdevice is the
906 last counter subdevice) */
907 AMPLC_DIO_GAT_RESERVED4,
908 AMPLC_DIO_GAT_RESERVED5,
909 AMPLC_DIO_GAT_RESERVED6,
910 AMPLC_DIO_GAT_RESERVED7
911 };
912
913#ifdef __cplusplus
914}
915#endif
916
917#endif /* _COMEDI_H */