Staging: comedi: Added some validation of comedi module parameter values.
[deliverable/linux.git] / drivers / staging / comedi / comedidev.h
1 /*
2 include/linux/comedidev.h
3 header file for kernel-only structures, variables, and constants
4
5 COMEDI - Linux Control and Measurement Device Interface
6 Copyright (C) 1997-2000 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 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 _COMEDIDEV_H
25 #define _COMEDIDEV_H
26
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/version.h>
30 #include <linux/kdev_t.h>
31 #include <linux/slab.h>
32 #include <linux/errno.h>
33 #include <linux/spinlock.h>
34 #include <linux/mutex.h>
35 #include <linux/wait.h>
36 #include <linux/mm.h>
37 #include <linux/init.h>
38 #include <linux/vmalloc.h>
39 #include "interrupt.h"
40 #include <linux/dma-mapping.h>
41 #include <linux/uaccess.h>
42 #include <linux/io.h>
43
44 #include "comedi.h"
45
46 #define DPRINTK(format, args...) do { \
47 if (comedi_debug) \
48 printk(KERN_DEBUG "comedi: " format , ## args); \
49 } while (0)
50
51 #define COMEDI_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
52 #define COMEDI_VERSION_CODE COMEDI_VERSION(COMEDI_MAJORVERSION, COMEDI_MINORVERSION, COMEDI_MICROVERSION)
53 #define COMEDI_RELEASE VERSION
54
55 #define COMEDI_INITCLEANUP_NOMODULE(x) \
56 static int __init x ## _init_module(void) \
57 {return comedi_driver_register(&(x));} \
58 static void __exit x ## _cleanup_module(void) \
59 {comedi_driver_unregister(&(x));} \
60 module_init(x ## _init_module); \
61 module_exit(x ## _cleanup_module); \
62
63 #define COMEDI_MODULE_MACROS \
64 MODULE_AUTHOR("Comedi http://www.comedi.org"); \
65 MODULE_DESCRIPTION("Comedi low-level driver"); \
66 MODULE_LICENSE("GPL"); \
67
68 #define COMEDI_INITCLEANUP(x) \
69 COMEDI_MODULE_MACROS \
70 COMEDI_INITCLEANUP_NOMODULE(x)
71
72 #define COMEDI_PCI_INITCLEANUP_NOMODULE(comedi_driver, pci_id_table) \
73 static int __devinit comedi_driver ## _pci_probe(struct pci_dev *dev, \
74 const struct pci_device_id *ent) \
75 { \
76 return comedi_pci_auto_config(dev, comedi_driver.driver_name); \
77 } \
78 static void __devexit comedi_driver ## _pci_remove(struct pci_dev *dev) \
79 { \
80 comedi_pci_auto_unconfig(dev); \
81 } \
82 static struct pci_driver comedi_driver ## _pci_driver = \
83 { \
84 .id_table = pci_id_table, \
85 .probe = &comedi_driver ## _pci_probe, \
86 .remove = __devexit_p(&comedi_driver ## _pci_remove) \
87 }; \
88 static int __init comedi_driver ## _init_module(void) \
89 { \
90 int retval; \
91 retval = comedi_driver_register(&comedi_driver); \
92 if (retval < 0) \
93 return retval; \
94 comedi_driver ## _pci_driver.name = (char *)comedi_driver.driver_name; \
95 return pci_register_driver(&comedi_driver ## _pci_driver); \
96 } \
97 static void __exit comedi_driver ## _cleanup_module(void) \
98 { \
99 pci_unregister_driver(&comedi_driver ## _pci_driver); \
100 comedi_driver_unregister(&comedi_driver); \
101 } \
102 module_init(comedi_driver ## _init_module); \
103 module_exit(comedi_driver ## _cleanup_module);
104
105 #define COMEDI_PCI_INITCLEANUP(comedi_driver, pci_id_table) \
106 COMEDI_MODULE_MACROS \
107 COMEDI_PCI_INITCLEANUP_NOMODULE(comedi_driver, pci_id_table)
108
109 #define PCI_VENDOR_ID_INOVA 0x104c
110 #define PCI_VENDOR_ID_NATINST 0x1093
111 #define PCI_VENDOR_ID_DATX 0x1116
112 #define PCI_VENDOR_ID_COMPUTERBOARDS 0x1307
113 #define PCI_VENDOR_ID_ADVANTECH 0x13fe
114 #define PCI_VENDOR_ID_RTD 0x1435
115 #define PCI_VENDOR_ID_AMPLICON 0x14dc
116 #define PCI_VENDOR_ID_ADLINK 0x144a
117 #define PCI_VENDOR_ID_ICP 0x104c
118 #define PCI_VENDOR_ID_CONTEC 0x1221
119 #define PCI_VENDOR_ID_MEILHAUS 0x1402
120
121 #define COMEDI_NUM_MINORS 0x100
122 #define COMEDI_NUM_BOARD_MINORS 0x30
123 #define COMEDI_FIRST_SUBDEVICE_MINOR COMEDI_NUM_BOARD_MINORS
124
125 typedef struct comedi_device_struct comedi_device;
126 typedef struct comedi_subdevice_struct comedi_subdevice;
127 typedef struct comedi_async_struct comedi_async;
128 typedef struct comedi_driver_struct comedi_driver;
129 typedef struct comedi_lrange_struct comedi_lrange;
130
131 typedef struct device device_create_result_type;
132
133 #define COMEDI_DEVICE_CREATE(cs, parent, devt, drvdata, device, fmt...) \
134 device_create(cs, ((parent) ? (parent) : (device)), devt, drvdata, fmt)
135
136 struct comedi_subdevice_struct {
137 comedi_device *device;
138 int type;
139 int n_chan;
140 volatile int subdev_flags;
141 int len_chanlist; /* maximum length of channel/gain list */
142
143 void *private;
144
145 comedi_async *async;
146
147 void *lock;
148 void *busy;
149 unsigned runflags;
150 spinlock_t spin_lock;
151
152 int io_bits;
153
154 lsampl_t maxdata; /* if maxdata==0, use list */
155 const lsampl_t *maxdata_list; /* list is channel specific */
156
157 unsigned int flags;
158 const unsigned int *flaglist;
159
160 unsigned int settling_time_0;
161
162 const comedi_lrange *range_table;
163 const comedi_lrange *const *range_table_list;
164
165 unsigned int *chanlist; /* driver-owned chanlist (not used) */
166
167 int (*insn_read) (comedi_device *, comedi_subdevice *, comedi_insn *,
168 lsampl_t *);
169 int (*insn_write) (comedi_device *, comedi_subdevice *, comedi_insn *,
170 lsampl_t *);
171 int (*insn_bits) (comedi_device *, comedi_subdevice *, comedi_insn *,
172 lsampl_t *);
173 int (*insn_config) (comedi_device *, comedi_subdevice *, comedi_insn *,
174 lsampl_t *);
175
176 int (*do_cmd) (comedi_device *, comedi_subdevice *);
177 int (*do_cmdtest) (comedi_device *, comedi_subdevice *, comedi_cmd *);
178 int (*poll) (comedi_device *, comedi_subdevice *);
179 int (*cancel) (comedi_device *, comedi_subdevice *);
180 /* int (*do_lock)(comedi_device *,comedi_subdevice *); */
181 /* int (*do_unlock)(comedi_device *,comedi_subdevice *); */
182
183 /* called when the buffer changes */
184 int (*buf_change) (comedi_device *dev, comedi_subdevice *s,
185 unsigned long new_size);
186
187 void (*munge) (comedi_device *dev, comedi_subdevice *s, void *data,
188 unsigned int num_bytes, unsigned int start_chan_index);
189 enum dma_data_direction async_dma_dir;
190
191 unsigned int state;
192
193 device_create_result_type *class_dev;
194 int minor;
195 };
196
197 struct comedi_buf_page {
198 void *virt_addr;
199 dma_addr_t dma_addr;
200 };
201
202 struct comedi_async_struct {
203 comedi_subdevice *subdevice;
204
205 void *prealloc_buf; /* pre-allocated buffer */
206 unsigned int prealloc_bufsz; /* buffer size, in bytes */
207 struct comedi_buf_page *buf_page_list; /* virtual and dma address of each page */
208 unsigned n_buf_pages; /* num elements in buf_page_list */
209
210 unsigned int max_bufsize; /* maximum buffer size, bytes */
211 unsigned int mmap_count; /* current number of mmaps of prealloc_buf */
212
213 unsigned int buf_write_count; /* byte count for writer (write completed) */
214 unsigned int buf_write_alloc_count; /* byte count for writer (allocated for writing) */
215 unsigned int buf_read_count; /* byte count for reader (read completed) */
216 unsigned int buf_read_alloc_count; /* byte count for reader (allocated for reading) */
217
218 unsigned int buf_write_ptr; /* buffer marker for writer */
219 unsigned int buf_read_ptr; /* buffer marker for reader */
220
221 unsigned int cur_chan; /* useless channel marker for interrupt */
222 /* number of bytes that have been received for current scan */
223 unsigned int scan_progress;
224 /* keeps track of where we are in chanlist as for munging */
225 unsigned int munge_chan;
226 /* number of bytes that have been munged */
227 unsigned int munge_count;
228 /* buffer marker for munging */
229 unsigned int munge_ptr;
230
231 unsigned int events; /* events that have occurred */
232
233 comedi_cmd cmd;
234
235 wait_queue_head_t wait_head;
236
237 /* callback stuff */
238 unsigned int cb_mask;
239 int (*cb_func) (unsigned int flags, void *);
240 void *cb_arg;
241
242 int (*inttrig) (comedi_device *dev, comedi_subdevice *s,
243 unsigned int x);
244 };
245
246 struct comedi_driver_struct {
247 struct comedi_driver_struct *next;
248
249 const char *driver_name;
250 struct module *module;
251 int (*attach) (comedi_device *, comedi_devconfig *);
252 int (*detach) (comedi_device *);
253
254 /* number of elements in board_name and board_id arrays */
255 unsigned int num_names;
256 const char *const *board_name;
257 /* offset in bytes from one board name pointer to the next */
258 int offset;
259 };
260
261 struct comedi_device_struct {
262 int use_count;
263 comedi_driver *driver;
264 void *private;
265
266 device_create_result_type *class_dev;
267 int minor;
268 /* hw_dev is passed to dma_alloc_coherent when allocating async buffers
269 * for subdevices that have async_dma_dir set to something other than
270 * DMA_NONE */
271 struct device *hw_dev;
272
273 const char *board_name;
274 const void *board_ptr;
275 int attached;
276 int rt;
277 spinlock_t spinlock;
278 struct mutex mutex;
279 int in_request_module;
280
281 int n_subdevices;
282 comedi_subdevice *subdevices;
283
284 /* dumb */
285 unsigned long iobase;
286 unsigned int irq;
287
288 comedi_subdevice *read_subdev;
289 comedi_subdevice *write_subdev;
290
291 struct fasync_struct *async_queue;
292
293 void (*open) (comedi_device *dev);
294 void (*close) (comedi_device *dev);
295 };
296
297 struct comedi_device_file_info {
298 comedi_device *device;
299 comedi_subdevice *read_subdevice;
300 comedi_subdevice *write_subdevice;
301 };
302
303 #ifdef CONFIG_COMEDI_DEBUG
304 extern int comedi_debug;
305 #else
306 static const int comedi_debug;
307 #endif
308
309 /*
310 * function prototypes
311 */
312
313 void comedi_event(comedi_device *dev, comedi_subdevice *s);
314 void comedi_error(const comedi_device *dev, const char *s);
315
316 /* we can expand the number of bits used to encode devices/subdevices into
317 the minor number soon, after more distros support > 8 bit minor numbers
318 (like after Debian Etch gets released) */
319 enum comedi_minor_bits {
320 COMEDI_DEVICE_MINOR_MASK = 0xf,
321 COMEDI_SUBDEVICE_MINOR_MASK = 0xf0
322 };
323 static const unsigned COMEDI_SUBDEVICE_MINOR_SHIFT = 4;
324 static const unsigned COMEDI_SUBDEVICE_MINOR_OFFSET = 1;
325
326 struct comedi_device_file_info *comedi_get_device_file_info(unsigned minor);
327
328 static inline comedi_subdevice *comedi_get_read_subdevice(
329 const struct comedi_device_file_info *info)
330 {
331 if (info->read_subdevice)
332 return info->read_subdevice;
333 if (info->device == NULL)
334 return NULL;
335 return info->device->read_subdev;
336 }
337
338 static inline comedi_subdevice *comedi_get_write_subdevice(
339 const struct comedi_device_file_info *info)
340 {
341 if (info->write_subdevice)
342 return info->write_subdevice;
343 if (info->device == NULL)
344 return NULL;
345 return info->device->write_subdev;
346 }
347
348 void comedi_device_detach(comedi_device *dev);
349 int comedi_device_attach(comedi_device *dev, comedi_devconfig *it);
350 int comedi_driver_register(comedi_driver *);
351 int comedi_driver_unregister(comedi_driver *);
352
353 void init_polling(void);
354 void cleanup_polling(void);
355 void start_polling(comedi_device *);
356 void stop_polling(comedi_device *);
357
358 int comedi_buf_alloc(comedi_device *dev, comedi_subdevice *s, unsigned long
359 new_size);
360
361 #ifdef CONFIG_PROC_FS
362 void comedi_proc_init(void);
363 void comedi_proc_cleanup(void);
364 #else
365 static inline void comedi_proc_init(void)
366 {
367 }
368 static inline void comedi_proc_cleanup(void)
369 {
370 }
371 #endif
372
373 /* subdevice runflags */
374 enum subdevice_runflags {
375 SRF_USER = 0x00000001,
376 SRF_RT = 0x00000002,
377 /* indicates an COMEDI_CB_ERROR event has occurred since the last
378 * command was started */
379 SRF_ERROR = 0x00000004,
380 SRF_RUNNING = 0x08000000
381 };
382
383 /*
384 various internal comedi functions
385 */
386
387 int do_rangeinfo_ioctl(comedi_device *dev, comedi_rangeinfo *arg);
388 int check_chanlist(comedi_subdevice *s, int n, unsigned int *chanlist);
389 void comedi_set_subdevice_runflags(comedi_subdevice *s, unsigned mask,
390 unsigned bits);
391 unsigned comedi_get_subdevice_runflags(comedi_subdevice *s);
392 int insn_inval(comedi_device *dev, comedi_subdevice *s,
393 comedi_insn *insn, lsampl_t *data);
394
395 /* range stuff */
396
397 #define RANGE(a, b) {(a)*1e6, (b)*1e6, 0}
398 #define RANGE_ext(a, b) {(a)*1e6, (b)*1e6, RF_EXTERNAL}
399 #define RANGE_mA(a, b) {(a)*1e6, (b)*1e6, UNIT_mA}
400 #define RANGE_unitless(a, b) {(a)*1e6, (b)*1e6, 0} /* XXX */
401 #define BIP_RANGE(a) {-(a)*1e6, (a)*1e6, 0}
402 #define UNI_RANGE(a) {0, (a)*1e6, 0}
403
404 extern const comedi_lrange range_bipolar10;
405 extern const comedi_lrange range_bipolar5;
406 extern const comedi_lrange range_bipolar2_5;
407 extern const comedi_lrange range_unipolar10;
408 extern const comedi_lrange range_unipolar5;
409 extern const comedi_lrange range_unknown;
410
411 #define range_digital range_unipolar5
412
413 #if __GNUC__ >= 3
414 #define GCC_ZERO_LENGTH_ARRAY
415 #else
416 #define GCC_ZERO_LENGTH_ARRAY 0
417 #endif
418
419 struct comedi_lrange_struct {
420 int length;
421 comedi_krange range[GCC_ZERO_LENGTH_ARRAY];
422 };
423
424 /* some silly little inline functions */
425
426 static inline int alloc_subdevices(comedi_device *dev,
427 unsigned int num_subdevices)
428 {
429 unsigned i;
430
431 dev->n_subdevices = num_subdevices;
432 dev->subdevices =
433 kcalloc(num_subdevices, sizeof(comedi_subdevice), GFP_KERNEL);
434 if (!dev->subdevices)
435 return -ENOMEM;
436 for (i = 0; i < num_subdevices; ++i) {
437 dev->subdevices[i].device = dev;
438 dev->subdevices[i].async_dma_dir = DMA_NONE;
439 spin_lock_init(&dev->subdevices[i].spin_lock);
440 dev->subdevices[i].minor = -1;
441 }
442 return 0;
443 }
444
445 static inline int alloc_private(comedi_device *dev, int size)
446 {
447 dev->private = kzalloc(size, GFP_KERNEL);
448 if (!dev->private)
449 return -ENOMEM;
450 return 0;
451 }
452
453 static inline unsigned int bytes_per_sample(const comedi_subdevice *subd)
454 {
455 if (subd->subdev_flags & SDF_LSAMPL)
456 return sizeof(lsampl_t);
457 else
458 return sizeof(sampl_t);
459 }
460
461 /* must be used in attach to set dev->hw_dev if you wish to dma directly
462 into comedi's buffer */
463 static inline void comedi_set_hw_dev(comedi_device *dev, struct device *hw_dev)
464 {
465 if (dev->hw_dev)
466 put_device(dev->hw_dev);
467
468 dev->hw_dev = hw_dev;
469 if (dev->hw_dev) {
470 dev->hw_dev = get_device(dev->hw_dev);
471 BUG_ON(dev->hw_dev == NULL);
472 }
473 }
474
475 int comedi_buf_put(comedi_async *async, sampl_t x);
476 int comedi_buf_get(comedi_async *async, sampl_t *x);
477
478 unsigned int comedi_buf_write_n_available(comedi_async *async);
479 unsigned int comedi_buf_write_alloc(comedi_async *async, unsigned int nbytes);
480 unsigned int comedi_buf_write_alloc_strict(comedi_async *async,
481 unsigned int nbytes);
482 unsigned comedi_buf_write_free(comedi_async *async, unsigned int nbytes);
483 unsigned comedi_buf_read_alloc(comedi_async *async, unsigned nbytes);
484 unsigned comedi_buf_read_free(comedi_async *async, unsigned int nbytes);
485 unsigned int comedi_buf_read_n_available(comedi_async *async);
486 void comedi_buf_memcpy_to(comedi_async *async, unsigned int offset,
487 const void *source, unsigned int num_bytes);
488 void comedi_buf_memcpy_from(comedi_async *async, unsigned int offset,
489 void *destination, unsigned int num_bytes);
490 static inline unsigned comedi_buf_write_n_allocated(comedi_async *async)
491 {
492 return async->buf_write_alloc_count - async->buf_write_count;
493 }
494 static inline unsigned comedi_buf_read_n_allocated(comedi_async *async)
495 {
496 return async->buf_read_alloc_count - async->buf_read_count;
497 }
498
499 void comedi_reset_async_buf(comedi_async *async);
500
501 static inline void *comedi_aux_data(int options[], int n)
502 {
503 unsigned long address;
504 unsigned long addressLow;
505 int bit_shift;
506 if (sizeof(int) >= sizeof(void *))
507 address = options[COMEDI_DEVCONF_AUX_DATA_LO];
508 else {
509 address = options[COMEDI_DEVCONF_AUX_DATA_HI];
510 bit_shift = sizeof(int) * 8;
511 address <<= bit_shift;
512 addressLow = options[COMEDI_DEVCONF_AUX_DATA_LO];
513 addressLow &= (1UL << bit_shift) - 1;
514 address |= addressLow;
515 }
516 if (n >= 1)
517 address += options[COMEDI_DEVCONF_AUX_DATA0_LENGTH];
518 if (n >= 2)
519 address += options[COMEDI_DEVCONF_AUX_DATA1_LENGTH];
520 if (n >= 3)
521 address += options[COMEDI_DEVCONF_AUX_DATA2_LENGTH];
522 BUG_ON(n > 3);
523 return (void *)address;
524 }
525
526 int comedi_alloc_board_minor(struct device *hardware_device);
527 void comedi_free_board_minor(unsigned minor);
528 int comedi_alloc_subdevice_minor(comedi_device *dev, comedi_subdevice *s);
529 void comedi_free_subdevice_minor(comedi_subdevice *s);
530 int comedi_pci_auto_config(struct pci_dev *pcidev, const char *board_name);
531 void comedi_pci_auto_unconfig(struct pci_dev *pcidev);
532 struct usb_device; /* forward declaration */
533 int comedi_usb_auto_config(struct usb_device *usbdev, const char *board_name);
534 void comedi_usb_auto_unconfig(struct usb_device *usbdev);
535
536 #include "comedi_rt.h"
537
538 #endif /* _COMEDIDEV_H */
This page took 0.044209 seconds and 6 git commands to generate.