]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/staging/comedi/comedidev.h
staging: comedi: comedi_pci: change the comedi_pci_auto_config() 'context'
[mirror_ubuntu-hirsute-kernel.git] / drivers / staging / comedi / comedidev.h
CommitLineData
ed9eccbe
DS
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>
ed9eccbe
DS
29#include <linux/kdev_t.h>
30#include <linux/slab.h>
f9c51375 31#include <linux/delay.h>
ed9eccbe
DS
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>
ed9eccbe 39#include <linux/dma-mapping.h>
e0dcef71
GKH
40#include <linux/uaccess.h>
41#include <linux/io.h>
c7a5d707 42#include <linux/timer.h>
ed9eccbe
DS
43
44#include "comedi.h"
45
e0dcef71
GKH
46#define DPRINTK(format, args...) do { \
47 if (comedi_debug) \
4f870fe6 48 pr_debug("comedi: " format, ## args); \
e0dcef71 49} while (0)
ed9eccbe 50
e0dcef71 51#define COMEDI_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
62eeae93
SW
52#define COMEDI_VERSION_CODE COMEDI_VERSION(COMEDI_MAJORVERSION, \
53 COMEDI_MINORVERSION, COMEDI_MICROVERSION)
ed9eccbe
DS
54#define COMEDI_RELEASE VERSION
55
ed9eccbe 56#define COMEDI_NUM_MINORS 0x100
ed9eccbe
DS
57#define COMEDI_NUM_BOARD_MINORS 0x30
58#define COMEDI_FIRST_SUBDEVICE_MINOR COMEDI_NUM_BOARD_MINORS
59
34c43922 60struct comedi_subdevice {
71b5f4f1 61 struct comedi_device *device;
90a35c15 62 int index;
ed9eccbe
DS
63 int type;
64 int n_chan;
baf22b64 65 int subdev_flags;
ed9eccbe
DS
66 int len_chanlist; /* maximum length of channel/gain list */
67
68 void *private;
69
d163679c 70 struct comedi_async *async;
ed9eccbe
DS
71
72 void *lock;
73 void *busy;
74 unsigned runflags;
75 spinlock_t spin_lock;
76
d4a7dc85 77 unsigned int io_bits;
ed9eccbe 78
790c5541
BP
79 unsigned int maxdata; /* if maxdata==0, use list */
80 const unsigned int *maxdata_list; /* list is channel specific */
ed9eccbe
DS
81
82 unsigned int flags;
83 const unsigned int *flaglist;
84
85 unsigned int settling_time_0;
86
9ced1de6
BP
87 const struct comedi_lrange *range_table;
88 const struct comedi_lrange *const *range_table_list;
ed9eccbe
DS
89
90 unsigned int *chanlist; /* driver-owned chanlist (not used) */
91
0a85b6f0
MT
92 int (*insn_read) (struct comedi_device *, struct comedi_subdevice *,
93 struct comedi_insn *, unsigned int *);
94 int (*insn_write) (struct comedi_device *, struct comedi_subdevice *,
95 struct comedi_insn *, unsigned int *);
96 int (*insn_bits) (struct comedi_device *, struct comedi_subdevice *,
97 struct comedi_insn *, unsigned int *);
98 int (*insn_config) (struct comedi_device *, struct comedi_subdevice *,
99 struct comedi_insn *, unsigned int *);
ed9eccbe 100
34c43922 101 int (*do_cmd) (struct comedi_device *, struct comedi_subdevice *);
0a85b6f0
MT
102 int (*do_cmdtest) (struct comedi_device *, struct comedi_subdevice *,
103 struct comedi_cmd *);
34c43922
BP
104 int (*poll) (struct comedi_device *, struct comedi_subdevice *);
105 int (*cancel) (struct comedi_device *, struct comedi_subdevice *);
62eeae93
SW
106 /* int (*do_lock)(struct comedi_device *, struct comedi_subdevice *); */
107 /* int (*do_unlock)(struct comedi_device *, \
108 struct comedi_subdevice *); */
ed9eccbe
DS
109
110 /* called when the buffer changes */
62eeae93
SW
111 int (*buf_change) (struct comedi_device *dev,
112 struct comedi_subdevice *s, unsigned long new_size);
ed9eccbe 113
62eeae93 114 void (*munge) (struct comedi_device *dev, struct comedi_subdevice *s,
0a85b6f0
MT
115 void *data, unsigned int num_bytes,
116 unsigned int start_chan_index);
ed9eccbe
DS
117 enum dma_data_direction async_dma_dir;
118
119 unsigned int state;
120
0bfbbe8f 121 struct device *class_dev;
ed9eccbe
DS
122 int minor;
123};
124
125struct comedi_buf_page {
126 void *virt_addr;
127 dma_addr_t dma_addr;
128};
129
d163679c 130struct comedi_async {
34c43922 131 struct comedi_subdevice *subdevice;
ed9eccbe
DS
132
133 void *prealloc_buf; /* pre-allocated buffer */
134 unsigned int prealloc_bufsz; /* buffer size, in bytes */
62eeae93
SW
135 /* virtual and dma address of each page */
136 struct comedi_buf_page *buf_page_list;
ed9eccbe
DS
137 unsigned n_buf_pages; /* num elements in buf_page_list */
138
139 unsigned int max_bufsize; /* maximum buffer size, bytes */
62eeae93
SW
140 /* current number of mmaps of prealloc_buf */
141 unsigned int mmap_count;
142
143 /* byte count for writer (write completed) */
144 unsigned int buf_write_count;
145 /* byte count for writer (allocated for writing) */
146 unsigned int buf_write_alloc_count;
147 /* byte count for reader (read completed) */
148 unsigned int buf_read_count;
149 /* byte count for reader (allocated for reading) */
150 unsigned int buf_read_alloc_count;
ed9eccbe
DS
151
152 unsigned int buf_write_ptr; /* buffer marker for writer */
153 unsigned int buf_read_ptr; /* buffer marker for reader */
154
155 unsigned int cur_chan; /* useless channel marker for interrupt */
156 /* number of bytes that have been received for current scan */
157 unsigned int scan_progress;
158 /* keeps track of where we are in chanlist as for munging */
159 unsigned int munge_chan;
160 /* number of bytes that have been munged */
161 unsigned int munge_count;
162 /* buffer marker for munging */
163 unsigned int munge_ptr;
164
165 unsigned int events; /* events that have occurred */
166
ea6d0d4c 167 struct comedi_cmd cmd;
ed9eccbe
DS
168
169 wait_queue_head_t wait_head;
170
e0dcef71 171 /* callback stuff */
ed9eccbe
DS
172 unsigned int cb_mask;
173 int (*cb_func) (unsigned int flags, void *);
174 void *cb_arg;
175
62eeae93 176 int (*inttrig) (struct comedi_device *dev, struct comedi_subdevice *s,
e0dcef71 177 unsigned int x);
ed9eccbe
DS
178};
179
139dfbdf
BP
180struct comedi_driver {
181 struct comedi_driver *next;
ed9eccbe
DS
182
183 const char *driver_name;
184 struct module *module;
0707bb04 185 int (*attach) (struct comedi_device *, struct comedi_devconfig *);
484ecc95 186 void (*detach) (struct comedi_device *);
8ed705af 187 int (*auto_attach) (struct comedi_device *, unsigned long);
ed9eccbe
DS
188
189 /* number of elements in board_name and board_id arrays */
190 unsigned int num_names;
191 const char *const *board_name;
192 /* offset in bytes from one board name pointer to the next */
193 int offset;
194};
195
71b5f4f1 196struct comedi_device {
ed9eccbe 197 int use_count;
139dfbdf 198 struct comedi_driver *driver;
ed9eccbe
DS
199 void *private;
200
0bfbbe8f 201 struct device *class_dev;
ed9eccbe 202 int minor;
e0dcef71
GKH
203 /* hw_dev is passed to dma_alloc_coherent when allocating async buffers
204 * for subdevices that have async_dma_dir set to something other than
205 * DMA_NONE */
ed9eccbe
DS
206 struct device *hw_dev;
207
208 const char *board_name;
209 const void *board_ptr;
210 int attached;
ed9eccbe
DS
211 spinlock_t spinlock;
212 struct mutex mutex;
213 int in_request_module;
214
215 int n_subdevices;
34c43922 216 struct comedi_subdevice *subdevices;
ed9eccbe
DS
217
218 /* dumb */
219 unsigned long iobase;
220 unsigned int irq;
221
34c43922
BP
222 struct comedi_subdevice *read_subdev;
223 struct comedi_subdevice *write_subdev;
ed9eccbe
DS
224
225 struct fasync_struct *async_queue;
226
3c17ba07 227 int (*open) (struct comedi_device *dev);
62eeae93 228 void (*close) (struct comedi_device *dev);
ed9eccbe
DS
229};
230
4dba6c02 231static inline const void *comedi_board(const struct comedi_device *dev)
37859f88
HS
232{
233 return dev->board_ptr;
234}
235
ed9eccbe
DS
236#ifdef CONFIG_COMEDI_DEBUG
237extern int comedi_debug;
238#else
e0dcef71 239static const int comedi_debug;
ed9eccbe
DS
240#endif
241
242/*
243 * function prototypes
244 */
245
34c43922 246void comedi_event(struct comedi_device *dev, struct comedi_subdevice *s);
71b5f4f1 247void comedi_error(const struct comedi_device *dev, const char *s);
ed9eccbe
DS
248
249/* we can expand the number of bits used to encode devices/subdevices into
250 the minor number soon, after more distros support > 8 bit minor numbers
251 (like after Debian Etch gets released) */
252enum comedi_minor_bits {
253 COMEDI_DEVICE_MINOR_MASK = 0xf,
254 COMEDI_SUBDEVICE_MINOR_MASK = 0xf0
255};
256static const unsigned COMEDI_SUBDEVICE_MINOR_SHIFT = 4;
257static const unsigned COMEDI_SUBDEVICE_MINOR_OFFSET = 1;
258
85104e9b
HS
259struct comedi_device *comedi_dev_from_minor(unsigned minor);
260
ed9eccbe
DS
261void init_polling(void);
262void cleanup_polling(void);
71b5f4f1
BP
263void start_polling(struct comedi_device *);
264void stop_polling(struct comedi_device *);
ed9eccbe 265
ed9eccbe
DS
266/* subdevice runflags */
267enum subdevice_runflags {
268 SRF_USER = 0x00000001,
269 SRF_RT = 0x00000002,
e0dcef71
GKH
270 /* indicates an COMEDI_CB_ERROR event has occurred since the last
271 * command was started */
ed9eccbe
DS
272 SRF_ERROR = 0x00000004,
273 SRF_RUNNING = 0x08000000
274};
275
e0dac318
HS
276bool comedi_is_subdevice_running(struct comedi_subdevice *s);
277
5e220112
MR
278int comedi_check_chanlist(struct comedi_subdevice *s,
279 int n,
280 unsigned int *chanlist);
ed9eccbe
DS
281
282/* range stuff */
283
e0dcef71
GKH
284#define RANGE(a, b) {(a)*1e6, (b)*1e6, 0}
285#define RANGE_ext(a, b) {(a)*1e6, (b)*1e6, RF_EXTERNAL}
286#define RANGE_mA(a, b) {(a)*1e6, (b)*1e6, UNIT_mA}
baf22b64 287#define RANGE_unitless(a, b) {(a)*1e6, (b)*1e6, 0}
e0dcef71
GKH
288#define BIP_RANGE(a) {-(a)*1e6, (a)*1e6, 0}
289#define UNI_RANGE(a) {0, (a)*1e6, 0}
ed9eccbe 290
9ced1de6
BP
291extern const struct comedi_lrange range_bipolar10;
292extern const struct comedi_lrange range_bipolar5;
293extern const struct comedi_lrange range_bipolar2_5;
294extern const struct comedi_lrange range_unipolar10;
295extern const struct comedi_lrange range_unipolar5;
296extern const struct comedi_lrange range_unknown;
ed9eccbe
DS
297
298#define range_digital range_unipolar5
299
300#if __GNUC__ >= 3
301#define GCC_ZERO_LENGTH_ARRAY
302#else
303#define GCC_ZERO_LENGTH_ARRAY 0
304#endif
305
9ced1de6 306struct comedi_lrange {
ed9eccbe 307 int length;
1f6325d6 308 struct comedi_krange range[GCC_ZERO_LENGTH_ARRAY];
ed9eccbe
DS
309};
310
311/* some silly little inline functions */
312
34c43922 313static inline unsigned int bytes_per_sample(const struct comedi_subdevice *subd)
ed9eccbe
DS
314{
315 if (subd->subdev_flags & SDF_LSAMPL)
790c5541 316 return sizeof(unsigned int);
ed9eccbe 317 else
790c5541 318 return sizeof(short);
ed9eccbe
DS
319}
320
bc3954b8
IA
321/*
322 * Must set dev->hw_dev if you wish to dma directly into comedi's buffer.
323 * Also useful for retrieving a previously configured hardware device of
324 * known bus type. Set automatically for auto-configured devices.
325 * Automatically set to NULL when detaching hardware device.
326 */
da717511 327int comedi_set_hw_dev(struct comedi_device *dev, struct device *hw_dev);
ed9eccbe 328
8ae560a1
HS
329unsigned int comedi_buf_write_alloc(struct comedi_async *, unsigned int);
330unsigned int comedi_buf_write_free(struct comedi_async *, unsigned int);
331
332unsigned int comedi_buf_read_n_available(struct comedi_async *);
333unsigned int comedi_buf_read_alloc(struct comedi_async *, unsigned int);
334unsigned int comedi_buf_read_free(struct comedi_async *, unsigned int);
335
336int comedi_buf_put(struct comedi_async *, short);
337int comedi_buf_get(struct comedi_async *, short *);
338
d163679c 339void comedi_buf_memcpy_to(struct comedi_async *async, unsigned int offset,
0a85b6f0 340 const void *source, unsigned int num_bytes);
d163679c 341void comedi_buf_memcpy_from(struct comedi_async *async, unsigned int offset,
0a85b6f0 342 void *destination, unsigned int num_bytes);
0a85b6f0 343
1ae6b20b
HS
344/* drivers.c - general comedi driver functions */
345
346int comedi_alloc_subdevices(struct comedi_device *, int);
347
1ae6b20b
HS
348int comedi_auto_config(struct device *, struct comedi_driver *,
349 unsigned long context);
350void comedi_auto_unconfig(struct device *);
351
352int comedi_driver_register(struct comedi_driver *);
353int comedi_driver_unregister(struct comedi_driver *);
354
355/**
356 * module_comedi_driver() - Helper macro for registering a comedi driver
357 * @__comedi_driver: comedi_driver struct
358 *
359 * Helper macro for comedi drivers which do not do anything special in module
360 * init/exit. This eliminates a lot of boilerplate. Each module may only use
361 * this macro once, and calling it replaces module_init() and module_exit().
362 */
363#define module_comedi_driver(__comedi_driver) \
364 module_driver(__comedi_driver, comedi_driver_register, \
365 comedi_driver_unregister)
581a7dde 366
33782dd5
HS
367#ifdef CONFIG_COMEDI_PCI_DRIVERS
368
369/* comedi_pci.c - comedi PCI driver specific functions */
370
371/*
372 * PCI Vendor IDs not in <linux/pci_ids.h>
373 */
374#define PCI_VENDOR_ID_KOLTER 0x1001
375#define PCI_VENDOR_ID_ICP 0x104c
376#define PCI_VENDOR_ID_AMCC 0x10e8
377#define PCI_VENDOR_ID_DT 0x1116
378#define PCI_VENDOR_ID_IOTECH 0x1616
379#define PCI_VENDOR_ID_CONTEC 0x1221
33782dd5 380#define PCI_VENDOR_ID_RTD 0x1435
33782dd5
HS
381
382struct pci_dev;
383struct pci_driver;
384
385struct pci_dev *comedi_to_pci_dev(struct comedi_device *);
386
387int comedi_pci_enable(struct pci_dev *, const char *);
388void comedi_pci_disable(struct pci_dev *);
389
b8f4ac23
HS
390int comedi_pci_auto_config(struct pci_dev *, struct comedi_driver *,
391 unsigned long context);
33782dd5
HS
392void comedi_pci_auto_unconfig(struct pci_dev *);
393
394int comedi_pci_driver_register(struct comedi_driver *, struct pci_driver *);
395void comedi_pci_driver_unregister(struct comedi_driver *, struct pci_driver *);
396
397/**
398 * module_comedi_pci_driver() - Helper macro for registering a comedi PCI driver
399 * @__comedi_driver: comedi_driver struct
400 * @__pci_driver: pci_driver struct
401 *
402 * Helper macro for comedi PCI drivers which do not do anything special
403 * in module init/exit. This eliminates a lot of boilerplate. Each
404 * module may only use this macro once, and calling it replaces
405 * module_init() and module_exit()
406 */
407#define module_comedi_pci_driver(__comedi_driver, __pci_driver) \
408 module_driver(__comedi_driver, comedi_pci_driver_register, \
409 comedi_pci_driver_unregister, &(__pci_driver))
410
411#else
412
413/*
414 * Some of the comedi mixed ISA/PCI drivers call the PCI specific
415 * functions. Provide some dummy functions if CONFIG_COMEDI_PCI_DRIVERS
416 * is not enabled.
417 */
418
419static inline struct pci_dev *comedi_to_pci_dev(struct comedi_device *dev)
420{
421 return NULL;
422}
423
424static inline int comedi_pci_enable(struct pci_dev *dev, const char *name)
425{
426 return -ENOSYS;
427}
428
429static inline void comedi_pci_disable(struct pci_dev *dev)
581a7dde 430{
581a7dde
IA
431}
432
33782dd5 433#endif /* CONFIG_COMEDI_PCI_DRIVERS */
581a7dde 434
309231d7
HS
435#ifdef CONFIG_COMEDI_PCMCIA_DRIVERS
436
437/* comedi_pcmcia.c - comedi PCMCIA driver specific functions */
438
439struct pcmcia_driver;
1f021e1f
HS
440struct pcmcia_device;
441
442struct pcmcia_device *comedi_to_pcmcia_dev(struct comedi_device *);
443
a3ac9519
HS
444int comedi_pcmcia_enable(struct comedi_device *,
445 int (*conf_check)(struct pcmcia_device *, void *));
ddb2d0a0
HS
446void comedi_pcmcia_disable(struct comedi_device *);
447
1f021e1f
HS
448int comedi_pcmcia_auto_config(struct pcmcia_device *, struct comedi_driver *);
449void comedi_pcmcia_auto_unconfig(struct pcmcia_device *);
309231d7
HS
450
451int comedi_pcmcia_driver_register(struct comedi_driver *,
452 struct pcmcia_driver *);
453void comedi_pcmcia_driver_unregister(struct comedi_driver *,
454 struct pcmcia_driver *);
455
456/**
457 * module_comedi_pcmcia_driver() - Helper macro for registering a comedi PCMCIA driver
458 * @__comedi_driver: comedi_driver struct
459 * @__pcmcia_driver: pcmcia_driver struct
460 *
461 * Helper macro for comedi PCMCIA drivers which do not do anything special
462 * in module init/exit. This eliminates a lot of boilerplate. Each
463 * module may only use this macro once, and calling it replaces
464 * module_init() and module_exit()
465 */
466#define module_comedi_pcmcia_driver(__comedi_driver, __pcmcia_driver) \
467 module_driver(__comedi_driver, comedi_pcmcia_driver_register, \
468 comedi_pcmcia_driver_unregister, &(__pcmcia_driver))
469
470#endif /* CONFIG_COMEDI_PCMCIA_DRIVERS */
471
abac8b54 472#ifdef CONFIG_COMEDI_USB_DRIVERS
581a7dde 473
abac8b54
HS
474/* comedi_usb.c - comedi USB driver specific functions */
475
476struct usb_driver;
477struct usb_interface;
478
479struct usb_interface *comedi_to_usb_interface(struct comedi_device *);
480
55ab4f64
HS
481int comedi_usb_auto_config(struct usb_interface *, struct comedi_driver *,
482 unsigned long context);
abac8b54
HS
483void comedi_usb_auto_unconfig(struct usb_interface *);
484
485int comedi_usb_driver_register(struct comedi_driver *, struct usb_driver *);
486void comedi_usb_driver_unregister(struct comedi_driver *, struct usb_driver *);
487
488/**
489 * module_comedi_usb_driver() - Helper macro for registering a comedi USB driver
490 * @__comedi_driver: comedi_driver struct
491 * @__usb_driver: usb_driver struct
492 *
493 * Helper macro for comedi USB drivers which do not do anything special
494 * in module init/exit. This eliminates a lot of boilerplate. Each
495 * module may only use this macro once, and calling it replaces
496 * module_init() and module_exit()
497 */
498#define module_comedi_usb_driver(__comedi_driver, __usb_driver) \
499 module_driver(__comedi_driver, comedi_usb_driver_register, \
500 comedi_usb_driver_unregister, &(__usb_driver))
501
502#endif /* CONFIG_COMEDI_USB_DRIVERS */
ed9eccbe 503
ed9eccbe 504#endif /* _COMEDIDEV_H */