comedi.h 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937
  1. /*
  2. include/comedi.h (installed as /usr/include/comedi.h)
  3. header file for comedi
  4. COMEDI - Linux Control and Measurement Device Interface
  5. Copyright (C) 1998-2001 David A. Schleef <ds@schleef.org>
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU Lesser General Public License as published by
  8. the Free Software Foundation; either version 2 of the License, or
  9. (at your option) any later version.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. */
  15. #ifndef _COMEDI_H
  16. #define _COMEDI_H
  17. #define COMEDI_MAJORVERSION 0
  18. #define COMEDI_MINORVERSION 7
  19. #define COMEDI_MICROVERSION 76
  20. #define VERSION "0.7.76"
  21. /* comedi's major device number */
  22. #define COMEDI_MAJOR 98
  23. /*
  24. maximum number of minor devices. This can be increased, although
  25. kernel structures are currently statically allocated, thus you
  26. don't want this to be much more than you actually use.
  27. */
  28. #define COMEDI_NDEVICES 16
  29. /* number of config options in the config structure */
  30. #define COMEDI_NDEVCONFOPTS 32
  31. /*
  32. * NOTE: 'comedi_config --init-data' is deprecated
  33. *
  34. * The following indexes in the config options were used by
  35. * comedi_config to pass firmware blobs from user space to the
  36. * comedi drivers. The request_firmware() hotplug interface is
  37. * now used by all comedi drivers instead.
  38. */
  39. /* length of nth chunk of firmware data -*/
  40. #define COMEDI_DEVCONF_AUX_DATA3_LENGTH 25
  41. #define COMEDI_DEVCONF_AUX_DATA2_LENGTH 26
  42. #define COMEDI_DEVCONF_AUX_DATA1_LENGTH 27
  43. #define COMEDI_DEVCONF_AUX_DATA0_LENGTH 28
  44. /* most significant 32 bits of pointer address (if needed) */
  45. #define COMEDI_DEVCONF_AUX_DATA_HI 29
  46. /* least significant 32 bits of pointer address */
  47. #define COMEDI_DEVCONF_AUX_DATA_LO 30
  48. #define COMEDI_DEVCONF_AUX_DATA_LENGTH 31 /* total data length */
  49. /* max length of device and driver names */
  50. #define COMEDI_NAMELEN 20
  51. /* packs and unpacks a channel/range number */
  52. #define CR_PACK(chan, rng, aref) \
  53. ((((aref)&0x3)<<24) | (((rng)&0xff)<<16) | (chan))
  54. #define CR_PACK_FLAGS(chan, range, aref, flags) \
  55. (CR_PACK(chan, range, aref) | ((flags) & CR_FLAGS_MASK))
  56. #define CR_CHAN(a) ((a)&0xffff)
  57. #define CR_RANGE(a) (((a)>>16)&0xff)
  58. #define CR_AREF(a) (((a)>>24)&0x03)
  59. #define CR_FLAGS_MASK 0xfc000000
  60. #define CR_ALT_FILTER (1<<26)
  61. #define CR_DITHER CR_ALT_FILTER
  62. #define CR_DEGLITCH CR_ALT_FILTER
  63. #define CR_ALT_SOURCE (1<<27)
  64. #define CR_EDGE (1<<30)
  65. #define CR_INVERT (1<<31)
  66. #define AREF_GROUND 0x00 /* analog ref = analog ground */
  67. #define AREF_COMMON 0x01 /* analog ref = analog common */
  68. #define AREF_DIFF 0x02 /* analog ref = differential */
  69. #define AREF_OTHER 0x03 /* analog ref = other (undefined) */
  70. /* counters -- these are arbitrary values */
  71. #define GPCT_RESET 0x0001
  72. #define GPCT_SET_SOURCE 0x0002
  73. #define GPCT_SET_GATE 0x0004
  74. #define GPCT_SET_DIRECTION 0x0008
  75. #define GPCT_SET_OPERATION 0x0010
  76. #define GPCT_ARM 0x0020
  77. #define GPCT_DISARM 0x0040
  78. #define GPCT_GET_INT_CLK_FRQ 0x0080
  79. #define GPCT_INT_CLOCK 0x0001
  80. #define GPCT_EXT_PIN 0x0002
  81. #define GPCT_NO_GATE 0x0004
  82. #define GPCT_UP 0x0008
  83. #define GPCT_DOWN 0x0010
  84. #define GPCT_HWUD 0x0020
  85. #define GPCT_SIMPLE_EVENT 0x0040
  86. #define GPCT_SINGLE_PERIOD 0x0080
  87. #define GPCT_SINGLE_PW 0x0100
  88. #define GPCT_CONT_PULSE_OUT 0x0200
  89. #define GPCT_SINGLE_PULSE_OUT 0x0400
  90. /* instructions */
  91. #define INSN_MASK_WRITE 0x8000000
  92. #define INSN_MASK_READ 0x4000000
  93. #define INSN_MASK_SPECIAL 0x2000000
  94. #define INSN_READ (0 | INSN_MASK_READ)
  95. #define INSN_WRITE (1 | INSN_MASK_WRITE)
  96. #define INSN_BITS (2 | INSN_MASK_READ|INSN_MASK_WRITE)
  97. #define INSN_CONFIG (3 | INSN_MASK_READ|INSN_MASK_WRITE)
  98. #define INSN_GTOD (4 | INSN_MASK_READ|INSN_MASK_SPECIAL)
  99. #define INSN_WAIT (5 | INSN_MASK_WRITE|INSN_MASK_SPECIAL)
  100. #define INSN_INTTRIG (6 | INSN_MASK_WRITE|INSN_MASK_SPECIAL)
  101. /* trigger flags */
  102. /* These flags are used in comedi_trig structures */
  103. #define TRIG_DITHER 0x0002 /* enable dithering */
  104. #define TRIG_DEGLITCH 0x0004 /* enable deglitching */
  105. #define TRIG_CONFIG 0x0010 /* perform configuration, not triggering */
  106. /* command flags */
  107. /* These flags are used in comedi_cmd structures */
  108. #define CMDF_BOGUS 0x00000001 /* do the motions */
  109. /* try to use a real-time interrupt while performing command */
  110. #define CMDF_PRIORITY 0x00000008
  111. /* wake up on end-of-scan events */
  112. #define CMDF_WAKE_EOS 0x00000020
  113. #define CMDF_WRITE 0x00000040
  114. #define CMDF_RAWDATA 0x00000080
  115. /* timer rounding definitions */
  116. #define CMDF_ROUND_MASK 0x00030000
  117. #define CMDF_ROUND_NEAREST 0x00000000
  118. #define CMDF_ROUND_DOWN 0x00010000
  119. #define CMDF_ROUND_UP 0x00020000
  120. #define CMDF_ROUND_UP_NEXT 0x00030000
  121. #define COMEDI_EV_START 0x00040000
  122. #define COMEDI_EV_SCAN_BEGIN 0x00080000
  123. #define COMEDI_EV_CONVERT 0x00100000
  124. #define COMEDI_EV_SCAN_END 0x00200000
  125. #define COMEDI_EV_STOP 0x00400000
  126. /* compatibility definitions */
  127. #define TRIG_BOGUS CMDF_BOGUS
  128. #define TRIG_RT CMDF_PRIORITY
  129. #define TRIG_WAKE_EOS CMDF_WAKE_EOS
  130. #define TRIG_WRITE CMDF_WRITE
  131. #define TRIG_ROUND_MASK CMDF_ROUND_MASK
  132. #define TRIG_ROUND_NEAREST CMDF_ROUND_NEAREST
  133. #define TRIG_ROUND_DOWN CMDF_ROUND_DOWN
  134. #define TRIG_ROUND_UP CMDF_ROUND_UP
  135. #define TRIG_ROUND_UP_NEXT CMDF_ROUND_UP_NEXT
  136. /* trigger sources */
  137. #define TRIG_ANY 0xffffffff
  138. #define TRIG_INVALID 0x00000000
  139. #define TRIG_NONE 0x00000001 /* never trigger */
  140. #define TRIG_NOW 0x00000002 /* trigger now + N ns */
  141. #define TRIG_FOLLOW 0x00000004 /* trigger on next lower level trig */
  142. #define TRIG_TIME 0x00000008 /* trigger at time N ns */
  143. #define TRIG_TIMER 0x00000010 /* trigger at rate N ns */
  144. #define TRIG_COUNT 0x00000020 /* trigger when count reaches N */
  145. #define TRIG_EXT 0x00000040 /* trigger on external signal N */
  146. #define TRIG_INT 0x00000080 /* trigger on comedi-internal signal N */
  147. #define TRIG_OTHER 0x00000100 /* driver defined */
  148. /* subdevice flags */
  149. #define SDF_BUSY 0x0001 /* device is busy */
  150. #define SDF_BUSY_OWNER 0x0002 /* device is busy with your job */
  151. #define SDF_LOCKED 0x0004 /* subdevice is locked */
  152. #define SDF_LOCK_OWNER 0x0008 /* you own lock */
  153. #define SDF_MAXDATA 0x0010 /* maxdata depends on channel */
  154. #define SDF_FLAGS 0x0020 /* flags depend on channel */
  155. #define SDF_RANGETYPE 0x0040 /* range type depends on channel */
  156. #define SDF_MODE0 0x0080 /* can do mode 0 */
  157. #define SDF_MODE1 0x0100 /* can do mode 1 */
  158. #define SDF_MODE2 0x0200 /* can do mode 2 */
  159. #define SDF_MODE3 0x0400 /* can do mode 3 */
  160. #define SDF_MODE4 0x0800 /* can do mode 4 */
  161. #define SDF_CMD 0x1000 /* can do commands (deprecated) */
  162. #define SDF_SOFT_CALIBRATED 0x2000 /* subdevice uses software calibration */
  163. #define SDF_CMD_WRITE 0x4000 /* can do output commands */
  164. #define SDF_CMD_READ 0x8000 /* can do input commands */
  165. /* subdevice can be read (e.g. analog input) */
  166. #define SDF_READABLE 0x00010000
  167. /* subdevice can be written (e.g. analog output) */
  168. #define SDF_WRITABLE 0x00020000
  169. #define SDF_WRITEABLE SDF_WRITABLE /* spelling error in API */
  170. /* subdevice does not have externally visible lines */
  171. #define SDF_INTERNAL 0x00040000
  172. #define SDF_GROUND 0x00100000 /* can do aref=ground */
  173. #define SDF_COMMON 0x00200000 /* can do aref=common */
  174. #define SDF_DIFF 0x00400000 /* can do aref=diff */
  175. #define SDF_OTHER 0x00800000 /* can do aref=other */
  176. #define SDF_DITHER 0x01000000 /* can do dithering */
  177. #define SDF_DEGLITCH 0x02000000 /* can do deglitching */
  178. #define SDF_MMAP 0x04000000 /* can do mmap() */
  179. #define SDF_RUNNING 0x08000000 /* subdevice is acquiring data */
  180. #define SDF_LSAMPL 0x10000000 /* subdevice uses 32-bit samples */
  181. #define SDF_PACKED 0x20000000 /* subdevice can do packed DIO */
  182. /* re recycle these flags for PWM */
  183. #define SDF_PWM_COUNTER SDF_MODE0 /* PWM can automatically switch off */
  184. #define SDF_PWM_HBRIDGE SDF_MODE1 /* PWM is signed (H-bridge) */
  185. /* subdevice types */
  186. enum comedi_subdevice_type {
  187. COMEDI_SUBD_UNUSED, /* unused by driver */
  188. COMEDI_SUBD_AI, /* analog input */
  189. COMEDI_SUBD_AO, /* analog output */
  190. COMEDI_SUBD_DI, /* digital input */
  191. COMEDI_SUBD_DO, /* digital output */
  192. COMEDI_SUBD_DIO, /* digital input/output */
  193. COMEDI_SUBD_COUNTER, /* counter */
  194. COMEDI_SUBD_TIMER, /* timer */
  195. COMEDI_SUBD_MEMORY, /* memory, EEPROM, DPRAM */
  196. COMEDI_SUBD_CALIB, /* calibration DACs */
  197. COMEDI_SUBD_PROC, /* processor, DSP */
  198. COMEDI_SUBD_SERIAL, /* serial IO */
  199. COMEDI_SUBD_PWM /* PWM */
  200. };
  201. /* configuration instructions */
  202. enum configuration_ids {
  203. INSN_CONFIG_DIO_INPUT = 0,
  204. INSN_CONFIG_DIO_OUTPUT = 1,
  205. INSN_CONFIG_DIO_OPENDRAIN = 2,
  206. INSN_CONFIG_ANALOG_TRIG = 16,
  207. /* INSN_CONFIG_WAVEFORM = 17, */
  208. /* INSN_CONFIG_TRIG = 18, */
  209. /* INSN_CONFIG_COUNTER = 19, */
  210. INSN_CONFIG_ALT_SOURCE = 20,
  211. INSN_CONFIG_DIGITAL_TRIG = 21,
  212. INSN_CONFIG_BLOCK_SIZE = 22,
  213. INSN_CONFIG_TIMER_1 = 23,
  214. INSN_CONFIG_FILTER = 24,
  215. INSN_CONFIG_CHANGE_NOTIFY = 25,
  216. INSN_CONFIG_SERIAL_CLOCK = 26, /*ALPHA*/
  217. INSN_CONFIG_BIDIRECTIONAL_DATA = 27,
  218. INSN_CONFIG_DIO_QUERY = 28,
  219. INSN_CONFIG_PWM_OUTPUT = 29,
  220. INSN_CONFIG_GET_PWM_OUTPUT = 30,
  221. INSN_CONFIG_ARM = 31,
  222. INSN_CONFIG_DISARM = 32,
  223. INSN_CONFIG_GET_COUNTER_STATUS = 33,
  224. INSN_CONFIG_RESET = 34,
  225. /* Use CTR as single pulsegenerator */
  226. INSN_CONFIG_GPCT_SINGLE_PULSE_GENERATOR = 1001,
  227. /* Use CTR as pulsetraingenerator */
  228. INSN_CONFIG_GPCT_PULSE_TRAIN_GENERATOR = 1002,
  229. /* Use the counter as encoder */
  230. INSN_CONFIG_GPCT_QUADRATURE_ENCODER = 1003,
  231. INSN_CONFIG_SET_GATE_SRC = 2001, /* Set gate source */
  232. INSN_CONFIG_GET_GATE_SRC = 2002, /* Get gate source */
  233. /* Set master clock source */
  234. INSN_CONFIG_SET_CLOCK_SRC = 2003,
  235. INSN_CONFIG_GET_CLOCK_SRC = 2004, /* Get master clock source */
  236. INSN_CONFIG_SET_OTHER_SRC = 2005, /* Set other source */
  237. /* INSN_CONFIG_GET_OTHER_SRC = 2006,*//* Get other source */
  238. /* Get size in bytes of subdevice's on-board fifos used during
  239. * streaming input/output */
  240. INSN_CONFIG_GET_HARDWARE_BUFFER_SIZE = 2006,
  241. INSN_CONFIG_SET_COUNTER_MODE = 4097,
  242. /* INSN_CONFIG_8254_SET_MODE is deprecated */
  243. INSN_CONFIG_8254_SET_MODE = INSN_CONFIG_SET_COUNTER_MODE,
  244. INSN_CONFIG_8254_READ_STATUS = 4098,
  245. INSN_CONFIG_SET_ROUTING = 4099,
  246. INSN_CONFIG_GET_ROUTING = 4109,
  247. /* PWM */
  248. INSN_CONFIG_PWM_SET_PERIOD = 5000, /* sets frequency */
  249. INSN_CONFIG_PWM_GET_PERIOD = 5001, /* gets frequency */
  250. INSN_CONFIG_GET_PWM_STATUS = 5002, /* is it running? */
  251. /* sets H bridge: duty cycle and sign bit for a relay at the
  252. * same time */
  253. INSN_CONFIG_PWM_SET_H_BRIDGE = 5003,
  254. /* gets H bridge data: duty cycle and the sign bit */
  255. INSN_CONFIG_PWM_GET_H_BRIDGE = 5004
  256. };
  257. /*
  258. * Settings for INSN_CONFIG_DIGITAL_TRIG:
  259. * data[0] = INSN_CONFIG_DIGITAL_TRIG
  260. * data[1] = trigger ID
  261. * data[2] = configuration operation
  262. * data[3] = configuration parameter 1
  263. * data[4] = configuration parameter 2
  264. * data[5] = configuration parameter 3
  265. *
  266. * operation parameter 1 parameter 2 parameter 3
  267. * --------------------------------- ----------- ----------- -----------
  268. * COMEDI_DIGITAL_TRIG_DISABLE
  269. * COMEDI_DIGITAL_TRIG_ENABLE_EDGES left-shift rising-edges falling-edges
  270. * COMEDI_DIGITAL_TRIG_ENABLE_LEVELS left-shift high-levels low-levels
  271. *
  272. * COMEDI_DIGITAL_TRIG_DISABLE returns the trigger to its default, inactive,
  273. * unconfigured state.
  274. *
  275. * COMEDI_DIGITAL_TRIG_ENABLE_EDGES sets the rising and/or falling edge inputs
  276. * that each can fire the trigger.
  277. *
  278. * COMEDI_DIGITAL_TRIG_ENABLE_LEVELS sets a combination of high and/or low
  279. * level inputs that can fire the trigger.
  280. *
  281. * "left-shift" is useful if the trigger has more than 32 inputs to specify the
  282. * first input for this configuration.
  283. *
  284. * Some sequences of INSN_CONFIG_DIGITAL_TRIG instructions may have a (partly)
  285. * accumulative effect, depending on the low-level driver. This is useful
  286. * when setting up a trigger that has more than 32 inputs or has a combination
  287. * of edge and level triggered inputs.
  288. */
  289. enum comedi_digital_trig_op {
  290. COMEDI_DIGITAL_TRIG_DISABLE = 0,
  291. COMEDI_DIGITAL_TRIG_ENABLE_EDGES = 1,
  292. COMEDI_DIGITAL_TRIG_ENABLE_LEVELS = 2
  293. };
  294. enum comedi_io_direction {
  295. COMEDI_INPUT = 0,
  296. COMEDI_OUTPUT = 1,
  297. COMEDI_OPENDRAIN = 2
  298. };
  299. enum comedi_support_level {
  300. COMEDI_UNKNOWN_SUPPORT = 0,
  301. COMEDI_SUPPORTED,
  302. COMEDI_UNSUPPORTED
  303. };
  304. /* ioctls */
  305. #define CIO 'd'
  306. #define COMEDI_DEVCONFIG _IOW(CIO, 0, struct comedi_devconfig)
  307. #define COMEDI_DEVINFO _IOR(CIO, 1, struct comedi_devinfo)
  308. #define COMEDI_SUBDINFO _IOR(CIO, 2, struct comedi_subdinfo)
  309. #define COMEDI_CHANINFO _IOR(CIO, 3, struct comedi_chaninfo)
  310. #define COMEDI_TRIG _IOWR(CIO, 4, comedi_trig)
  311. #define COMEDI_LOCK _IO(CIO, 5)
  312. #define COMEDI_UNLOCK _IO(CIO, 6)
  313. #define COMEDI_CANCEL _IO(CIO, 7)
  314. #define COMEDI_RANGEINFO _IOR(CIO, 8, struct comedi_rangeinfo)
  315. #define COMEDI_CMD _IOR(CIO, 9, struct comedi_cmd)
  316. #define COMEDI_CMDTEST _IOR(CIO, 10, struct comedi_cmd)
  317. #define COMEDI_INSNLIST _IOR(CIO, 11, struct comedi_insnlist)
  318. #define COMEDI_INSN _IOR(CIO, 12, struct comedi_insn)
  319. #define COMEDI_BUFCONFIG _IOR(CIO, 13, struct comedi_bufconfig)
  320. #define COMEDI_BUFINFO _IOWR(CIO, 14, struct comedi_bufinfo)
  321. #define COMEDI_POLL _IO(CIO, 15)
  322. #define COMEDI_SETRSUBD _IO(CIO, 16)
  323. #define COMEDI_SETWSUBD _IO(CIO, 17)
  324. /* structures */
  325. struct comedi_trig {
  326. unsigned int subdev; /* subdevice */
  327. unsigned int mode; /* mode */
  328. unsigned int flags;
  329. unsigned int n_chan; /* number of channels */
  330. unsigned int *chanlist; /* channel/range list */
  331. short *data; /* data list, size depends on subd flags */
  332. unsigned int n; /* number of scans */
  333. unsigned int trigsrc;
  334. unsigned int trigvar;
  335. unsigned int trigvar1;
  336. unsigned int data_len;
  337. unsigned int unused[3];
  338. };
  339. struct comedi_insn {
  340. unsigned int insn;
  341. unsigned int n;
  342. unsigned int __user *data;
  343. unsigned int subdev;
  344. unsigned int chanspec;
  345. unsigned int unused[3];
  346. };
  347. struct comedi_insnlist {
  348. unsigned int n_insns;
  349. struct comedi_insn __user *insns;
  350. };
  351. struct comedi_cmd {
  352. unsigned int subdev;
  353. unsigned int flags;
  354. unsigned int start_src;
  355. unsigned int start_arg;
  356. unsigned int scan_begin_src;
  357. unsigned int scan_begin_arg;
  358. unsigned int convert_src;
  359. unsigned int convert_arg;
  360. unsigned int scan_end_src;
  361. unsigned int scan_end_arg;
  362. unsigned int stop_src;
  363. unsigned int stop_arg;
  364. unsigned int *chanlist; /* channel/range list */
  365. unsigned int chanlist_len;
  366. short __user *data; /* data list, size depends on subd flags */
  367. unsigned int data_len;
  368. };
  369. struct comedi_chaninfo {
  370. unsigned int subdev;
  371. unsigned int __user *maxdata_list;
  372. unsigned int __user *flaglist;
  373. unsigned int __user *rangelist;
  374. unsigned int unused[4];
  375. };
  376. struct comedi_rangeinfo {
  377. unsigned int range_type;
  378. void __user *range_ptr;
  379. };
  380. struct comedi_krange {
  381. int min; /* fixed point, multiply by 1e-6 */
  382. int max; /* fixed point, multiply by 1e-6 */
  383. unsigned int flags;
  384. };
  385. struct comedi_subdinfo {
  386. unsigned int type;
  387. unsigned int n_chan;
  388. unsigned int subd_flags;
  389. unsigned int timer_type;
  390. unsigned int len_chanlist;
  391. unsigned int maxdata;
  392. unsigned int flags; /* channel flags */
  393. unsigned int range_type; /* lookup in kernel */
  394. unsigned int settling_time_0;
  395. /* see support_level enum for values */
  396. unsigned insn_bits_support;
  397. unsigned int unused[8];
  398. };
  399. struct comedi_devinfo {
  400. unsigned int version_code;
  401. unsigned int n_subdevs;
  402. char driver_name[COMEDI_NAMELEN];
  403. char board_name[COMEDI_NAMELEN];
  404. int read_subdevice;
  405. int write_subdevice;
  406. int unused[30];
  407. };
  408. struct comedi_devconfig {
  409. char board_name[COMEDI_NAMELEN];
  410. int options[COMEDI_NDEVCONFOPTS];
  411. };
  412. struct comedi_bufconfig {
  413. unsigned int subdevice;
  414. unsigned int flags;
  415. unsigned int maximum_size;
  416. unsigned int size;
  417. unsigned int unused[4];
  418. };
  419. struct comedi_bufinfo {
  420. unsigned int subdevice;
  421. unsigned int bytes_read;
  422. unsigned int buf_write_ptr;
  423. unsigned int buf_read_ptr;
  424. unsigned int buf_write_count;
  425. unsigned int buf_read_count;
  426. unsigned int bytes_written;
  427. unsigned int unused[4];
  428. };
  429. /* range stuff */
  430. #define __RANGE(a, b) ((((a)&0xffff)<<16)|((b)&0xffff))
  431. #define RANGE_OFFSET(a) (((a)>>16)&0xffff)
  432. #define RANGE_LENGTH(b) ((b)&0xffff)
  433. #define RF_UNIT(flags) ((flags)&0xff)
  434. #define RF_EXTERNAL (1<<8)
  435. #define UNIT_volt 0
  436. #define UNIT_mA 1
  437. #define UNIT_none 2
  438. #define COMEDI_MIN_SPEED ((unsigned int)0xffffffff)
  439. /**********************************************************/
  440. /* everything after this line is ALPHA */
  441. /**********************************************************/
  442. /*
  443. 8254 specific configuration.
  444. It supports two config commands:
  445. 0 ID: INSN_CONFIG_SET_COUNTER_MODE
  446. 1 8254 Mode
  447. I8254_MODE0, I8254_MODE1, ..., I8254_MODE5
  448. OR'ed with:
  449. I8254_BCD, I8254_BINARY
  450. 0 ID: INSN_CONFIG_8254_READ_STATUS
  451. 1 <-- Status byte returned here.
  452. B7 = Output
  453. B6 = NULL Count
  454. B5 - B0 Current mode.
  455. */
  456. enum i8254_mode {
  457. I8254_MODE0 = (0 << 1), /* Interrupt on terminal count */
  458. I8254_MODE1 = (1 << 1), /* Hardware retriggerable one-shot */
  459. I8254_MODE2 = (2 << 1), /* Rate generator */
  460. I8254_MODE3 = (3 << 1), /* Square wave mode */
  461. I8254_MODE4 = (4 << 1), /* Software triggered strobe */
  462. I8254_MODE5 = (5 << 1), /* Hardware triggered strobe
  463. * (retriggerable) */
  464. I8254_BCD = 1, /* use binary-coded decimal instead of binary
  465. * (pretty useless) */
  466. I8254_BINARY = 0
  467. };
  468. #define NI_USUAL_PFI_SELECT(x) (((x) < 10) ? (0x1 + (x)) : (0xb + (x)))
  469. #define NI_USUAL_RTSI_SELECT(x) (((x) < 7) ? (0xb + (x)) : 0x1b)
  470. /* mode bits for NI general-purpose counters, set with
  471. * INSN_CONFIG_SET_COUNTER_MODE */
  472. #define NI_GPCT_COUNTING_MODE_SHIFT 16
  473. #define NI_GPCT_INDEX_PHASE_BITSHIFT 20
  474. #define NI_GPCT_COUNTING_DIRECTION_SHIFT 24
  475. enum ni_gpct_mode_bits {
  476. NI_GPCT_GATE_ON_BOTH_EDGES_BIT = 0x4,
  477. NI_GPCT_EDGE_GATE_MODE_MASK = 0x18,
  478. NI_GPCT_EDGE_GATE_STARTS_STOPS_BITS = 0x0,
  479. NI_GPCT_EDGE_GATE_STOPS_STARTS_BITS = 0x8,
  480. NI_GPCT_EDGE_GATE_STARTS_BITS = 0x10,
  481. NI_GPCT_EDGE_GATE_NO_STARTS_NO_STOPS_BITS = 0x18,
  482. NI_GPCT_STOP_MODE_MASK = 0x60,
  483. NI_GPCT_STOP_ON_GATE_BITS = 0x00,
  484. NI_GPCT_STOP_ON_GATE_OR_TC_BITS = 0x20,
  485. NI_GPCT_STOP_ON_GATE_OR_SECOND_TC_BITS = 0x40,
  486. NI_GPCT_LOAD_B_SELECT_BIT = 0x80,
  487. NI_GPCT_OUTPUT_MODE_MASK = 0x300,
  488. NI_GPCT_OUTPUT_TC_PULSE_BITS = 0x100,
  489. NI_GPCT_OUTPUT_TC_TOGGLE_BITS = 0x200,
  490. NI_GPCT_OUTPUT_TC_OR_GATE_TOGGLE_BITS = 0x300,
  491. NI_GPCT_HARDWARE_DISARM_MASK = 0xc00,
  492. NI_GPCT_NO_HARDWARE_DISARM_BITS = 0x000,
  493. NI_GPCT_DISARM_AT_TC_BITS = 0x400,
  494. NI_GPCT_DISARM_AT_GATE_BITS = 0x800,
  495. NI_GPCT_DISARM_AT_TC_OR_GATE_BITS = 0xc00,
  496. NI_GPCT_LOADING_ON_TC_BIT = 0x1000,
  497. NI_GPCT_LOADING_ON_GATE_BIT = 0x4000,
  498. NI_GPCT_COUNTING_MODE_MASK = 0x7 << NI_GPCT_COUNTING_MODE_SHIFT,
  499. NI_GPCT_COUNTING_MODE_NORMAL_BITS =
  500. 0x0 << NI_GPCT_COUNTING_MODE_SHIFT,
  501. NI_GPCT_COUNTING_MODE_QUADRATURE_X1_BITS =
  502. 0x1 << NI_GPCT_COUNTING_MODE_SHIFT,
  503. NI_GPCT_COUNTING_MODE_QUADRATURE_X2_BITS =
  504. 0x2 << NI_GPCT_COUNTING_MODE_SHIFT,
  505. NI_GPCT_COUNTING_MODE_QUADRATURE_X4_BITS =
  506. 0x3 << NI_GPCT_COUNTING_MODE_SHIFT,
  507. NI_GPCT_COUNTING_MODE_TWO_PULSE_BITS =
  508. 0x4 << NI_GPCT_COUNTING_MODE_SHIFT,
  509. NI_GPCT_COUNTING_MODE_SYNC_SOURCE_BITS =
  510. 0x6 << NI_GPCT_COUNTING_MODE_SHIFT,
  511. NI_GPCT_INDEX_PHASE_MASK = 0x3 << NI_GPCT_INDEX_PHASE_BITSHIFT,
  512. NI_GPCT_INDEX_PHASE_LOW_A_LOW_B_BITS =
  513. 0x0 << NI_GPCT_INDEX_PHASE_BITSHIFT,
  514. NI_GPCT_INDEX_PHASE_LOW_A_HIGH_B_BITS =
  515. 0x1 << NI_GPCT_INDEX_PHASE_BITSHIFT,
  516. NI_GPCT_INDEX_PHASE_HIGH_A_LOW_B_BITS =
  517. 0x2 << NI_GPCT_INDEX_PHASE_BITSHIFT,
  518. NI_GPCT_INDEX_PHASE_HIGH_A_HIGH_B_BITS =
  519. 0x3 << NI_GPCT_INDEX_PHASE_BITSHIFT,
  520. NI_GPCT_INDEX_ENABLE_BIT = 0x400000,
  521. NI_GPCT_COUNTING_DIRECTION_MASK =
  522. 0x3 << NI_GPCT_COUNTING_DIRECTION_SHIFT,
  523. NI_GPCT_COUNTING_DIRECTION_DOWN_BITS =
  524. 0x00 << NI_GPCT_COUNTING_DIRECTION_SHIFT,
  525. NI_GPCT_COUNTING_DIRECTION_UP_BITS =
  526. 0x1 << NI_GPCT_COUNTING_DIRECTION_SHIFT,
  527. NI_GPCT_COUNTING_DIRECTION_HW_UP_DOWN_BITS =
  528. 0x2 << NI_GPCT_COUNTING_DIRECTION_SHIFT,
  529. NI_GPCT_COUNTING_DIRECTION_HW_GATE_BITS =
  530. 0x3 << NI_GPCT_COUNTING_DIRECTION_SHIFT,
  531. NI_GPCT_RELOAD_SOURCE_MASK = 0xc000000,
  532. NI_GPCT_RELOAD_SOURCE_FIXED_BITS = 0x0,
  533. NI_GPCT_RELOAD_SOURCE_SWITCHING_BITS = 0x4000000,
  534. NI_GPCT_RELOAD_SOURCE_GATE_SELECT_BITS = 0x8000000,
  535. NI_GPCT_OR_GATE_BIT = 0x10000000,
  536. NI_GPCT_INVERT_OUTPUT_BIT = 0x20000000
  537. };
  538. /* Bits for setting a clock source with
  539. * INSN_CONFIG_SET_CLOCK_SRC when using NI general-purpose counters. */
  540. enum ni_gpct_clock_source_bits {
  541. NI_GPCT_CLOCK_SRC_SELECT_MASK = 0x3f,
  542. NI_GPCT_TIMEBASE_1_CLOCK_SRC_BITS = 0x0,
  543. NI_GPCT_TIMEBASE_2_CLOCK_SRC_BITS = 0x1,
  544. NI_GPCT_TIMEBASE_3_CLOCK_SRC_BITS = 0x2,
  545. NI_GPCT_LOGIC_LOW_CLOCK_SRC_BITS = 0x3,
  546. NI_GPCT_NEXT_GATE_CLOCK_SRC_BITS = 0x4,
  547. NI_GPCT_NEXT_TC_CLOCK_SRC_BITS = 0x5,
  548. /* NI 660x-specific */
  549. NI_GPCT_SOURCE_PIN_i_CLOCK_SRC_BITS = 0x6,
  550. NI_GPCT_PXI10_CLOCK_SRC_BITS = 0x7,
  551. NI_GPCT_PXI_STAR_TRIGGER_CLOCK_SRC_BITS = 0x8,
  552. NI_GPCT_ANALOG_TRIGGER_OUT_CLOCK_SRC_BITS = 0x9,
  553. NI_GPCT_PRESCALE_MODE_CLOCK_SRC_MASK = 0x30000000,
  554. NI_GPCT_NO_PRESCALE_CLOCK_SRC_BITS = 0x0,
  555. /* divide source by 2 */
  556. NI_GPCT_PRESCALE_X2_CLOCK_SRC_BITS = 0x10000000,
  557. /* divide source by 8 */
  558. NI_GPCT_PRESCALE_X8_CLOCK_SRC_BITS = 0x20000000,
  559. NI_GPCT_INVERT_CLOCK_SRC_BIT = 0x80000000
  560. };
  561. /* NI 660x-specific */
  562. #define NI_GPCT_SOURCE_PIN_CLOCK_SRC_BITS(x) (0x10 + (x))
  563. #define NI_GPCT_RTSI_CLOCK_SRC_BITS(x) (0x18 + (x))
  564. /* no pfi on NI 660x */
  565. #define NI_GPCT_PFI_CLOCK_SRC_BITS(x) (0x20 + (x))
  566. /* Possibilities for setting a gate source with
  567. INSN_CONFIG_SET_GATE_SRC when using NI general-purpose counters.
  568. May be bitwise-or'd with CR_EDGE or CR_INVERT. */
  569. enum ni_gpct_gate_select {
  570. /* m-series gates */
  571. NI_GPCT_TIMESTAMP_MUX_GATE_SELECT = 0x0,
  572. NI_GPCT_AI_START2_GATE_SELECT = 0x12,
  573. NI_GPCT_PXI_STAR_TRIGGER_GATE_SELECT = 0x13,
  574. NI_GPCT_NEXT_OUT_GATE_SELECT = 0x14,
  575. NI_GPCT_AI_START1_GATE_SELECT = 0x1c,
  576. NI_GPCT_NEXT_SOURCE_GATE_SELECT = 0x1d,
  577. NI_GPCT_ANALOG_TRIGGER_OUT_GATE_SELECT = 0x1e,
  578. NI_GPCT_LOGIC_LOW_GATE_SELECT = 0x1f,
  579. /* more gates for 660x */
  580. NI_GPCT_SOURCE_PIN_i_GATE_SELECT = 0x100,
  581. NI_GPCT_GATE_PIN_i_GATE_SELECT = 0x101,
  582. /* more gates for 660x "second gate" */
  583. NI_GPCT_UP_DOWN_PIN_i_GATE_SELECT = 0x201,
  584. NI_GPCT_SELECTED_GATE_GATE_SELECT = 0x21e,
  585. /* m-series "second gate" sources are unknown,
  586. * we should add them here with an offset of 0x300 when
  587. * known. */
  588. NI_GPCT_DISABLED_GATE_SELECT = 0x8000,
  589. };
  590. #define NI_GPCT_GATE_PIN_GATE_SELECT(x) (0x102 + (x))
  591. #define NI_GPCT_RTSI_GATE_SELECT(x) NI_USUAL_RTSI_SELECT(x)
  592. #define NI_GPCT_PFI_GATE_SELECT(x) NI_USUAL_PFI_SELECT(x)
  593. #define NI_GPCT_UP_DOWN_PIN_GATE_SELECT(x) (0x202 + (x))
  594. /* Possibilities for setting a source with
  595. INSN_CONFIG_SET_OTHER_SRC when using NI general-purpose counters. */
  596. enum ni_gpct_other_index {
  597. NI_GPCT_SOURCE_ENCODER_A,
  598. NI_GPCT_SOURCE_ENCODER_B,
  599. NI_GPCT_SOURCE_ENCODER_Z
  600. };
  601. enum ni_gpct_other_select {
  602. /* m-series gates */
  603. /* Still unknown, probably only need NI_GPCT_PFI_OTHER_SELECT */
  604. NI_GPCT_DISABLED_OTHER_SELECT = 0x8000,
  605. };
  606. #define NI_GPCT_PFI_OTHER_SELECT(x) NI_USUAL_PFI_SELECT(x)
  607. /* start sources for ni general-purpose counters for use with
  608. INSN_CONFIG_ARM */
  609. enum ni_gpct_arm_source {
  610. NI_GPCT_ARM_IMMEDIATE = 0x0,
  611. NI_GPCT_ARM_PAIRED_IMMEDIATE = 0x1, /* Start both the counter
  612. * and the adjacent paired
  613. * counter simultaneously */
  614. /* NI doesn't document bits for selecting hardware arm triggers.
  615. * If the NI_GPCT_ARM_UNKNOWN bit is set, we will pass the least
  616. * significant bits (3 bits for 660x or 5 bits for m-series)
  617. * through to the hardware. This will at least allow someone to
  618. * figure out what the bits do later. */
  619. NI_GPCT_ARM_UNKNOWN = 0x1000,
  620. };
  621. /* digital filtering options for ni 660x for use with INSN_CONFIG_FILTER. */
  622. enum ni_gpct_filter_select {
  623. NI_GPCT_FILTER_OFF = 0x0,
  624. NI_GPCT_FILTER_TIMEBASE_3_SYNC = 0x1,
  625. NI_GPCT_FILTER_100x_TIMEBASE_1 = 0x2,
  626. NI_GPCT_FILTER_20x_TIMEBASE_1 = 0x3,
  627. NI_GPCT_FILTER_10x_TIMEBASE_1 = 0x4,
  628. NI_GPCT_FILTER_2x_TIMEBASE_1 = 0x5,
  629. NI_GPCT_FILTER_2x_TIMEBASE_3 = 0x6
  630. };
  631. /* PFI digital filtering options for ni m-series for use with
  632. * INSN_CONFIG_FILTER. */
  633. enum ni_pfi_filter_select {
  634. NI_PFI_FILTER_OFF = 0x0,
  635. NI_PFI_FILTER_125ns = 0x1,
  636. NI_PFI_FILTER_6425ns = 0x2,
  637. NI_PFI_FILTER_2550us = 0x3
  638. };
  639. /* master clock sources for ni mio boards and INSN_CONFIG_SET_CLOCK_SRC */
  640. enum ni_mio_clock_source {
  641. NI_MIO_INTERNAL_CLOCK = 0,
  642. NI_MIO_RTSI_CLOCK = 1, /* doesn't work for m-series, use
  643. NI_MIO_PLL_RTSI_CLOCK() */
  644. /* the NI_MIO_PLL_* sources are m-series only */
  645. NI_MIO_PLL_PXI_STAR_TRIGGER_CLOCK = 2,
  646. NI_MIO_PLL_PXI10_CLOCK = 3,
  647. NI_MIO_PLL_RTSI0_CLOCK = 4
  648. };
  649. #define NI_MIO_PLL_RTSI_CLOCK(x) (NI_MIO_PLL_RTSI0_CLOCK + (x))
  650. /* Signals which can be routed to an NI RTSI pin with INSN_CONFIG_SET_ROUTING.
  651. The numbers assigned are not arbitrary, they correspond to the bits required
  652. to program the board. */
  653. enum ni_rtsi_routing {
  654. NI_RTSI_OUTPUT_ADR_START1 = 0,
  655. NI_RTSI_OUTPUT_ADR_START2 = 1,
  656. NI_RTSI_OUTPUT_SCLKG = 2,
  657. NI_RTSI_OUTPUT_DACUPDN = 3,
  658. NI_RTSI_OUTPUT_DA_START1 = 4,
  659. NI_RTSI_OUTPUT_G_SRC0 = 5,
  660. NI_RTSI_OUTPUT_G_GATE0 = 6,
  661. NI_RTSI_OUTPUT_RGOUT0 = 7,
  662. NI_RTSI_OUTPUT_RTSI_BRD_0 = 8,
  663. NI_RTSI_OUTPUT_RTSI_OSC = 12 /* pre-m-series always have RTSI
  664. * clock on line 7 */
  665. };
  666. #define NI_RTSI_OUTPUT_RTSI_BRD(x) (NI_RTSI_OUTPUT_RTSI_BRD_0 + (x))
  667. /* Signals which can be routed to an NI PFI pin on an m-series board with
  668. * INSN_CONFIG_SET_ROUTING. These numbers are also returned by
  669. * INSN_CONFIG_GET_ROUTING on pre-m-series boards, even though their routing
  670. * cannot be changed. The numbers assigned are not arbitrary, they correspond
  671. * to the bits required to program the board. */
  672. enum ni_pfi_routing {
  673. NI_PFI_OUTPUT_PFI_DEFAULT = 0,
  674. NI_PFI_OUTPUT_AI_START1 = 1,
  675. NI_PFI_OUTPUT_AI_START2 = 2,
  676. NI_PFI_OUTPUT_AI_CONVERT = 3,
  677. NI_PFI_OUTPUT_G_SRC1 = 4,
  678. NI_PFI_OUTPUT_G_GATE1 = 5,
  679. NI_PFI_OUTPUT_AO_UPDATE_N = 6,
  680. NI_PFI_OUTPUT_AO_START1 = 7,
  681. NI_PFI_OUTPUT_AI_START_PULSE = 8,
  682. NI_PFI_OUTPUT_G_SRC0 = 9,
  683. NI_PFI_OUTPUT_G_GATE0 = 10,
  684. NI_PFI_OUTPUT_EXT_STROBE = 11,
  685. NI_PFI_OUTPUT_AI_EXT_MUX_CLK = 12,
  686. NI_PFI_OUTPUT_GOUT0 = 13,
  687. NI_PFI_OUTPUT_GOUT1 = 14,
  688. NI_PFI_OUTPUT_FREQ_OUT = 15,
  689. NI_PFI_OUTPUT_PFI_DO = 16,
  690. NI_PFI_OUTPUT_I_ATRIG = 17,
  691. NI_PFI_OUTPUT_RTSI0 = 18,
  692. NI_PFI_OUTPUT_PXI_STAR_TRIGGER_IN = 26,
  693. NI_PFI_OUTPUT_SCXI_TRIG1 = 27,
  694. NI_PFI_OUTPUT_DIO_CHANGE_DETECT_RTSI = 28,
  695. NI_PFI_OUTPUT_CDI_SAMPLE = 29,
  696. NI_PFI_OUTPUT_CDO_UPDATE = 30
  697. };
  698. #define NI_PFI_OUTPUT_RTSI(x) (NI_PFI_OUTPUT_RTSI0 + (x))
  699. /* Signals which can be routed to output on a NI PFI pin on a 660x board
  700. with INSN_CONFIG_SET_ROUTING. The numbers assigned are
  701. not arbitrary, they correspond to the bits required
  702. to program the board. Lines 0 to 7 can only be set to
  703. NI_660X_PFI_OUTPUT_DIO. Lines 32 to 39 can only be set to
  704. NI_660X_PFI_OUTPUT_COUNTER. */
  705. enum ni_660x_pfi_routing {
  706. NI_660X_PFI_OUTPUT_COUNTER = 1, /* counter */
  707. NI_660X_PFI_OUTPUT_DIO = 2, /* static digital output */
  708. };
  709. /* NI External Trigger lines. These values are not arbitrary, but are related
  710. * to the bits required to program the board (offset by 1 for historical
  711. * reasons). */
  712. #define NI_EXT_PFI(x) (NI_USUAL_PFI_SELECT(x) - 1)
  713. #define NI_EXT_RTSI(x) (NI_USUAL_RTSI_SELECT(x) - 1)
  714. /* status bits for INSN_CONFIG_GET_COUNTER_STATUS */
  715. enum comedi_counter_status_flags {
  716. COMEDI_COUNTER_ARMED = 0x1,
  717. COMEDI_COUNTER_COUNTING = 0x2,
  718. COMEDI_COUNTER_TERMINAL_COUNT = 0x4,
  719. };
  720. /* Clock sources for CDIO subdevice on NI m-series boards. Used as the
  721. * scan_begin_arg for a comedi_command. These sources may also be bitwise-or'd
  722. * with CR_INVERT to change polarity. */
  723. enum ni_m_series_cdio_scan_begin_src {
  724. NI_CDIO_SCAN_BEGIN_SRC_GROUND = 0,
  725. NI_CDIO_SCAN_BEGIN_SRC_AI_START = 18,
  726. NI_CDIO_SCAN_BEGIN_SRC_AI_CONVERT = 19,
  727. NI_CDIO_SCAN_BEGIN_SRC_PXI_STAR_TRIGGER = 20,
  728. NI_CDIO_SCAN_BEGIN_SRC_G0_OUT = 28,
  729. NI_CDIO_SCAN_BEGIN_SRC_G1_OUT = 29,
  730. NI_CDIO_SCAN_BEGIN_SRC_ANALOG_TRIGGER = 30,
  731. NI_CDIO_SCAN_BEGIN_SRC_AO_UPDATE = 31,
  732. NI_CDIO_SCAN_BEGIN_SRC_FREQ_OUT = 32,
  733. NI_CDIO_SCAN_BEGIN_SRC_DIO_CHANGE_DETECT_IRQ = 33
  734. };
  735. #define NI_CDIO_SCAN_BEGIN_SRC_PFI(x) NI_USUAL_PFI_SELECT(x)
  736. #define NI_CDIO_SCAN_BEGIN_SRC_RTSI(x) NI_USUAL_RTSI_SELECT(x)
  737. /* scan_begin_src for scan_begin_arg==TRIG_EXT with analog output command on NI
  738. * boards. These scan begin sources can also be bitwise-or'd with CR_INVERT to
  739. * change polarity. */
  740. #define NI_AO_SCAN_BEGIN_SRC_PFI(x) NI_USUAL_PFI_SELECT(x)
  741. #define NI_AO_SCAN_BEGIN_SRC_RTSI(x) NI_USUAL_RTSI_SELECT(x)
  742. /* Bits for setting a clock source with
  743. * INSN_CONFIG_SET_CLOCK_SRC when using NI frequency output subdevice. */
  744. enum ni_freq_out_clock_source_bits {
  745. NI_FREQ_OUT_TIMEBASE_1_DIV_2_CLOCK_SRC, /* 10 MHz */
  746. NI_FREQ_OUT_TIMEBASE_2_CLOCK_SRC /* 100 KHz */
  747. };
  748. /* Values for setting a clock source with INSN_CONFIG_SET_CLOCK_SRC for
  749. * 8254 counter subdevices on Amplicon DIO boards (amplc_dio200 driver). */
  750. enum amplc_dio_clock_source {
  751. AMPLC_DIO_CLK_CLKN, /* per channel external clock
  752. input/output pin (pin is only an
  753. input when clock source set to this
  754. value, otherwise it is an output) */
  755. AMPLC_DIO_CLK_10MHZ, /* 10 MHz internal clock */
  756. AMPLC_DIO_CLK_1MHZ, /* 1 MHz internal clock */
  757. AMPLC_DIO_CLK_100KHZ, /* 100 kHz internal clock */
  758. AMPLC_DIO_CLK_10KHZ, /* 10 kHz internal clock */
  759. AMPLC_DIO_CLK_1KHZ, /* 1 kHz internal clock */
  760. AMPLC_DIO_CLK_OUTNM1, /* output of preceding counter channel
  761. (for channel 0, preceding counter
  762. channel is channel 2 on preceding
  763. counter subdevice, for first counter
  764. subdevice, preceding counter
  765. subdevice is the last counter
  766. subdevice) */
  767. AMPLC_DIO_CLK_EXT, /* per chip external input pin */
  768. /* the following are "enhanced" clock sources for PCIe models */
  769. AMPLC_DIO_CLK_VCC, /* clock input HIGH */
  770. AMPLC_DIO_CLK_GND, /* clock input LOW */
  771. AMPLC_DIO_CLK_PAT_PRESENT, /* "pattern present" signal */
  772. AMPLC_DIO_CLK_20MHZ /* 20 MHz internal clock */
  773. };
  774. /* Values for setting a clock source with INSN_CONFIG_SET_CLOCK_SRC for
  775. * timer subdevice on some Amplicon DIO PCIe boards (amplc_dio200 driver). */
  776. enum amplc_dio_ts_clock_src {
  777. AMPLC_DIO_TS_CLK_1GHZ, /* 1 ns period with 20 ns granularity */
  778. AMPLC_DIO_TS_CLK_1MHZ, /* 1 us period */
  779. AMPLC_DIO_TS_CLK_1KHZ /* 1 ms period */
  780. };
  781. /* Values for setting a gate source with INSN_CONFIG_SET_GATE_SRC for
  782. * 8254 counter subdevices on Amplicon DIO boards (amplc_dio200 driver). */
  783. enum amplc_dio_gate_source {
  784. AMPLC_DIO_GAT_VCC, /* internal high logic level */
  785. AMPLC_DIO_GAT_GND, /* internal low logic level */
  786. AMPLC_DIO_GAT_GATN, /* per channel external gate input */
  787. AMPLC_DIO_GAT_NOUTNM2, /* negated output of counter channel
  788. minus 2 (for channels 0 or 1,
  789. channel minus 2 is channel 1 or 2 on
  790. the preceding counter subdevice, for
  791. the first counter subdevice the
  792. preceding counter subdevice is the
  793. last counter subdevice) */
  794. AMPLC_DIO_GAT_RESERVED4,
  795. AMPLC_DIO_GAT_RESERVED5,
  796. AMPLC_DIO_GAT_RESERVED6,
  797. AMPLC_DIO_GAT_RESERVED7,
  798. /* the following are "enhanced" gate sources for PCIe models */
  799. AMPLC_DIO_GAT_NGATN = 6, /* negated per channel gate input */
  800. AMPLC_DIO_GAT_OUTNM2, /* non-negated output of counter
  801. channel minus 2 */
  802. AMPLC_DIO_GAT_PAT_PRESENT, /* "pattern present" signal */
  803. AMPLC_DIO_GAT_PAT_OCCURRED, /* "pattern occurred" latched */
  804. AMPLC_DIO_GAT_PAT_GONE, /* "pattern gone away" latched */
  805. AMPLC_DIO_GAT_NPAT_PRESENT, /* negated "pattern present" */
  806. AMPLC_DIO_GAT_NPAT_OCCURRED, /* negated "pattern occurred" */
  807. AMPLC_DIO_GAT_NPAT_GONE /* negated "pattern gone away" */
  808. };
  809. /*
  810. * Values for setting a clock source with INSN_CONFIG_SET_CLOCK_SRC for
  811. * the counter subdevice on the Kolter Electronic PCI-Counter board
  812. * (ke_counter driver).
  813. */
  814. enum ke_counter_clock_source {
  815. KE_CLK_20MHZ, /* internal 20MHz (default) */
  816. KE_CLK_4MHZ, /* internal 4MHz (option) */
  817. KE_CLK_EXT /* external clock on pin 21 of D-Sub */
  818. };
  819. #endif /* _COMEDI_H */