2 include/linux/comedidev.h
3 header file for kernel-only structures, variables, and constants
5 COMEDI - Linux Control and Measurement Device Interface
6 Copyright (C) 1997-2000 David A. Schleef <ds@schleef.org>
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.
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.
22 #include <linux/dma-mapping.h>
23 #include <linux/mutex.h>
24 #include <linux/spinlock_types.h>
25 #include <linux/rwsem.h>
26 #include <linux/kref.h>
30 #define COMEDI_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
31 #define COMEDI_VERSION_CODE COMEDI_VERSION(COMEDI_MAJORVERSION, \
32 COMEDI_MINORVERSION, COMEDI_MICROVERSION)
33 #define COMEDI_RELEASE VERSION
35 #define COMEDI_NUM_BOARD_MINORS 0x30
37 struct comedi_subdevice
{
38 struct comedi_device
*device
;
43 int len_chanlist
; /* maximum length of channel/gain list */
47 struct comedi_async
*async
;
56 unsigned int maxdata
; /* if maxdata==0, use list */
57 const unsigned int *maxdata_list
; /* list is channel specific */
59 const struct comedi_lrange
*range_table
;
60 const struct comedi_lrange
*const *range_table_list
;
62 unsigned int *chanlist
; /* driver-owned chanlist (not used) */
64 int (*insn_read
) (struct comedi_device
*, struct comedi_subdevice
*,
65 struct comedi_insn
*, unsigned int *);
66 int (*insn_write
) (struct comedi_device
*, struct comedi_subdevice
*,
67 struct comedi_insn
*, unsigned int *);
68 int (*insn_bits
) (struct comedi_device
*, struct comedi_subdevice
*,
69 struct comedi_insn
*, unsigned int *);
70 int (*insn_config
) (struct comedi_device
*, struct comedi_subdevice
*,
71 struct comedi_insn
*, unsigned int *);
73 int (*do_cmd
) (struct comedi_device
*, struct comedi_subdevice
*);
74 int (*do_cmdtest
) (struct comedi_device
*, struct comedi_subdevice
*,
76 int (*poll
) (struct comedi_device
*, struct comedi_subdevice
*);
77 int (*cancel
) (struct comedi_device
*, struct comedi_subdevice
*);
78 /* int (*do_lock)(struct comedi_device *, struct comedi_subdevice *); */
79 /* int (*do_unlock)(struct comedi_device *, \
80 struct comedi_subdevice *); */
82 /* called when the buffer changes */
83 int (*buf_change
) (struct comedi_device
*dev
,
84 struct comedi_subdevice
*s
, unsigned long new_size
);
86 void (*munge
) (struct comedi_device
*dev
, struct comedi_subdevice
*s
,
87 void *data
, unsigned int num_bytes
,
88 unsigned int start_chan_index
);
89 enum dma_data_direction async_dma_dir
;
93 struct device
*class_dev
;
97 struct comedi_buf_page
{
102 struct comedi_buf_map
{
103 struct device
*dma_hw_dev
;
104 struct comedi_buf_page
*page_list
;
105 unsigned int n_pages
;
106 enum dma_data_direction dma_dir
;
107 struct kref refcount
;
110 struct comedi_async
{
111 struct comedi_subdevice
*subdevice
;
113 void *prealloc_buf
; /* pre-allocated buffer */
114 unsigned int prealloc_bufsz
; /* buffer size, in bytes */
115 struct comedi_buf_map
*buf_map
; /* map of buffer pages */
117 unsigned int max_bufsize
; /* maximum buffer size, bytes */
119 /* byte count for writer (write completed) */
120 unsigned int buf_write_count
;
121 /* byte count for writer (allocated for writing) */
122 unsigned int buf_write_alloc_count
;
123 /* byte count for reader (read completed) */
124 unsigned int buf_read_count
;
125 /* byte count for reader (allocated for reading) */
126 unsigned int buf_read_alloc_count
;
128 unsigned int buf_write_ptr
; /* buffer marker for writer */
129 unsigned int buf_read_ptr
; /* buffer marker for reader */
131 unsigned int cur_chan
; /* useless channel marker for interrupt */
132 /* number of bytes that have been received for current scan */
133 unsigned int scan_progress
;
134 /* keeps track of where we are in chanlist as for munging */
135 unsigned int munge_chan
;
136 /* number of bytes that have been munged */
137 unsigned int munge_count
;
138 /* buffer marker for munging */
139 unsigned int munge_ptr
;
141 unsigned int events
; /* events that have occurred */
143 struct comedi_cmd cmd
;
145 wait_queue_head_t wait_head
;
147 unsigned int cb_mask
;
149 int (*inttrig
) (struct comedi_device
*dev
, struct comedi_subdevice
*s
,
153 struct comedi_driver
{
154 struct comedi_driver
*next
;
156 const char *driver_name
;
157 struct module
*module
;
158 int (*attach
) (struct comedi_device
*, struct comedi_devconfig
*);
159 void (*detach
) (struct comedi_device
*);
160 int (*auto_attach
) (struct comedi_device
*, unsigned long);
162 /* number of elements in board_name and board_id arrays */
163 unsigned int num_names
;
164 const char *const *board_name
;
165 /* offset in bytes from one board name pointer to the next */
169 struct comedi_device
{
171 struct comedi_driver
*driver
;
174 struct device
*class_dev
;
176 unsigned int detach_count
;
177 /* hw_dev is passed to dma_alloc_coherent when allocating async buffers
178 * for subdevices that have async_dma_dir set to something other than
180 struct device
*hw_dev
;
182 const char *board_name
;
183 const void *board_ptr
;
185 bool in_request_module
:1;
189 struct rw_semaphore attach_lock
;
190 struct kref refcount
;
193 struct comedi_subdevice
*subdevices
;
196 unsigned long iobase
;
200 struct comedi_subdevice
*read_subdev
;
201 struct comedi_subdevice
*write_subdev
;
203 struct fasync_struct
*async_queue
;
205 int (*open
) (struct comedi_device
*dev
);
206 void (*close
) (struct comedi_device
*dev
);
209 static inline const void *comedi_board(const struct comedi_device
*dev
)
211 return dev
->board_ptr
;
215 * function prototypes
218 void comedi_event(struct comedi_device
*dev
, struct comedi_subdevice
*s
);
219 void comedi_error(const struct comedi_device
*dev
, const char *s
);
221 /* we can expand the number of bits used to encode devices/subdevices into
222 the minor number soon, after more distros support > 8 bit minor numbers
223 (like after Debian Etch gets released) */
224 enum comedi_minor_bits
{
225 COMEDI_DEVICE_MINOR_MASK
= 0xf,
226 COMEDI_SUBDEVICE_MINOR_MASK
= 0xf0
228 static const unsigned COMEDI_SUBDEVICE_MINOR_SHIFT
= 4;
229 static const unsigned COMEDI_SUBDEVICE_MINOR_OFFSET
= 1;
231 struct comedi_device
*comedi_dev_get_from_minor(unsigned minor
);
232 int comedi_dev_put(struct comedi_device
*dev
);
234 void init_polling(void);
235 void cleanup_polling(void);
236 void start_polling(struct comedi_device
*);
237 void stop_polling(struct comedi_device
*);
239 /* subdevice runflags */
240 enum subdevice_runflags
{
242 /* indicates an COMEDI_CB_ERROR event has occurred since the last
243 * command was started */
244 SRF_ERROR
= 0x00000004,
245 SRF_RUNNING
= 0x08000000,
246 SRF_FREE_SPRIV
= 0x80000000, /* free s->private on detach */
249 bool comedi_is_subdevice_running(struct comedi_subdevice
*s
);
251 void *comedi_alloc_spriv(struct comedi_subdevice
*s
, size_t size
);
253 int comedi_check_chanlist(struct comedi_subdevice
*s
,
255 unsigned int *chanlist
);
259 #define RANGE(a, b) {(a)*1e6, (b)*1e6, 0}
260 #define RANGE_ext(a, b) {(a)*1e6, (b)*1e6, RF_EXTERNAL}
261 #define RANGE_mA(a, b) {(a)*1e6, (b)*1e6, UNIT_mA}
262 #define RANGE_unitless(a, b) {(a)*1e6, (b)*1e6, 0}
263 #define BIP_RANGE(a) {-(a)*1e6, (a)*1e6, 0}
264 #define UNI_RANGE(a) {0, (a)*1e6, 0}
266 extern const struct comedi_lrange range_bipolar10
;
267 extern const struct comedi_lrange range_bipolar5
;
268 extern const struct comedi_lrange range_bipolar2_5
;
269 extern const struct comedi_lrange range_unipolar10
;
270 extern const struct comedi_lrange range_unipolar5
;
271 extern const struct comedi_lrange range_unipolar2_5
;
272 extern const struct comedi_lrange range_0_20mA
;
273 extern const struct comedi_lrange range_4_20mA
;
274 extern const struct comedi_lrange range_0_32mA
;
275 extern const struct comedi_lrange range_unknown
;
277 #define range_digital range_unipolar5
280 #define GCC_ZERO_LENGTH_ARRAY
282 #define GCC_ZERO_LENGTH_ARRAY 0
285 struct comedi_lrange
{
287 struct comedi_krange range
[GCC_ZERO_LENGTH_ARRAY
];
290 static inline bool comedi_range_is_bipolar(struct comedi_subdevice
*s
,
293 return s
->range_table
->range
[range
].min
< 0;
296 static inline bool comedi_range_is_unipolar(struct comedi_subdevice
*s
,
299 return s
->range_table
->range
[range
].min
>= 0;
302 static inline bool comedi_chan_range_is_bipolar(struct comedi_subdevice
*s
,
306 return s
->range_table_list
[chan
]->range
[range
].min
< 0;
309 static inline bool comedi_chan_range_is_unipolar(struct comedi_subdevice
*s
,
313 return s
->range_table_list
[chan
]->range
[range
].min
>= 0;
316 /* munge between offset binary and two's complement values */
317 static inline unsigned int comedi_offset_munge(struct comedi_subdevice
*s
,
320 return val
^ s
->maxdata
^ (s
->maxdata
>> 1);
323 static inline unsigned int bytes_per_sample(const struct comedi_subdevice
*subd
)
325 if (subd
->subdev_flags
& SDF_LSAMPL
)
326 return sizeof(unsigned int);
328 return sizeof(short);
332 * Must set dev->hw_dev if you wish to dma directly into comedi's buffer.
333 * Also useful for retrieving a previously configured hardware device of
334 * known bus type. Set automatically for auto-configured devices.
335 * Automatically set to NULL when detaching hardware device.
337 int comedi_set_hw_dev(struct comedi_device
*dev
, struct device
*hw_dev
);
339 unsigned int comedi_buf_write_alloc(struct comedi_async
*, unsigned int);
340 unsigned int comedi_buf_write_free(struct comedi_async
*, unsigned int);
342 unsigned int comedi_buf_read_n_available(struct comedi_async
*);
343 unsigned int comedi_buf_read_alloc(struct comedi_async
*, unsigned int);
344 unsigned int comedi_buf_read_free(struct comedi_async
*, unsigned int);
346 int comedi_buf_put(struct comedi_async
*, unsigned short);
347 int comedi_buf_get(struct comedi_async
*, unsigned short *);
349 void comedi_buf_memcpy_to(struct comedi_async
*async
, unsigned int offset
,
350 const void *source
, unsigned int num_bytes
);
351 void comedi_buf_memcpy_from(struct comedi_async
*async
, unsigned int offset
,
352 void *destination
, unsigned int num_bytes
);
354 /* drivers.c - general comedi driver functions */
356 int comedi_dio_insn_config(struct comedi_device
*, struct comedi_subdevice
*,
357 struct comedi_insn
*, unsigned int *data
,
359 unsigned int comedi_dio_update_state(struct comedi_subdevice
*,
362 void *comedi_alloc_devpriv(struct comedi_device
*, size_t);
363 int comedi_alloc_subdevices(struct comedi_device
*, int);
365 int comedi_load_firmware(struct comedi_device
*, struct device
*,
367 int (*cb
)(struct comedi_device
*,
368 const u8
*data
, size_t size
,
369 unsigned long context
),
370 unsigned long context
);
372 int __comedi_request_region(struct comedi_device
*,
373 unsigned long start
, unsigned long len
);
374 int comedi_request_region(struct comedi_device
*,
375 unsigned long start
, unsigned long len
);
376 void comedi_legacy_detach(struct comedi_device
*);
378 int comedi_auto_config(struct device
*, struct comedi_driver
*,
379 unsigned long context
);
380 void comedi_auto_unconfig(struct device
*);
382 int comedi_driver_register(struct comedi_driver
*);
383 void comedi_driver_unregister(struct comedi_driver
*);
386 * module_comedi_driver() - Helper macro for registering a comedi driver
387 * @__comedi_driver: comedi_driver struct
389 * Helper macro for comedi drivers which do not do anything special in module
390 * init/exit. This eliminates a lot of boilerplate. Each module may only use
391 * this macro once, and calling it replaces module_init() and module_exit().
393 #define module_comedi_driver(__comedi_driver) \
394 module_driver(__comedi_driver, comedi_driver_register, \
395 comedi_driver_unregister)
397 #ifdef CONFIG_COMEDI_PCI_DRIVERS
399 /* comedi_pci.c - comedi PCI driver specific functions */
402 * PCI Vendor IDs not in <linux/pci_ids.h>
404 #define PCI_VENDOR_ID_KOLTER 0x1001
405 #define PCI_VENDOR_ID_ICP 0x104c
406 #define PCI_VENDOR_ID_DT 0x1116
407 #define PCI_VENDOR_ID_IOTECH 0x1616
408 #define PCI_VENDOR_ID_CONTEC 0x1221
409 #define PCI_VENDOR_ID_RTD 0x1435
410 #define PCI_VENDOR_ID_HUMUSOFT 0x186c
415 struct pci_dev
*comedi_to_pci_dev(struct comedi_device
*);
417 int comedi_pci_enable(struct comedi_device
*);
418 void comedi_pci_disable(struct comedi_device
*);
420 int comedi_pci_auto_config(struct pci_dev
*, struct comedi_driver
*,
421 unsigned long context
);
422 void comedi_pci_auto_unconfig(struct pci_dev
*);
424 int comedi_pci_driver_register(struct comedi_driver
*, struct pci_driver
*);
425 void comedi_pci_driver_unregister(struct comedi_driver
*, struct pci_driver
*);
428 * module_comedi_pci_driver() - Helper macro for registering a comedi PCI driver
429 * @__comedi_driver: comedi_driver struct
430 * @__pci_driver: pci_driver struct
432 * Helper macro for comedi PCI drivers which do not do anything special
433 * in module init/exit. This eliminates a lot of boilerplate. Each
434 * module may only use this macro once, and calling it replaces
435 * module_init() and module_exit()
437 #define module_comedi_pci_driver(__comedi_driver, __pci_driver) \
438 module_driver(__comedi_driver, comedi_pci_driver_register, \
439 comedi_pci_driver_unregister, &(__pci_driver))
444 * Some of the comedi mixed ISA/PCI drivers call the PCI specific
445 * functions. Provide some dummy functions if CONFIG_COMEDI_PCI_DRIVERS
449 static inline struct pci_dev
*comedi_to_pci_dev(struct comedi_device
*dev
)
454 static inline int comedi_pci_enable(struct comedi_device
*dev
)
459 static inline void comedi_pci_disable(struct comedi_device
*dev
)
463 #endif /* CONFIG_COMEDI_PCI_DRIVERS */
465 #ifdef CONFIG_COMEDI_PCMCIA_DRIVERS
467 /* comedi_pcmcia.c - comedi PCMCIA driver specific functions */
469 struct pcmcia_driver
;
470 struct pcmcia_device
;
472 struct pcmcia_device
*comedi_to_pcmcia_dev(struct comedi_device
*);
474 int comedi_pcmcia_enable(struct comedi_device
*,
475 int (*conf_check
)(struct pcmcia_device
*, void *));
476 void comedi_pcmcia_disable(struct comedi_device
*);
478 int comedi_pcmcia_auto_config(struct pcmcia_device
*, struct comedi_driver
*);
479 void comedi_pcmcia_auto_unconfig(struct pcmcia_device
*);
481 int comedi_pcmcia_driver_register(struct comedi_driver
*,
482 struct pcmcia_driver
*);
483 void comedi_pcmcia_driver_unregister(struct comedi_driver
*,
484 struct pcmcia_driver
*);
487 * module_comedi_pcmcia_driver() - Helper macro for registering a comedi PCMCIA driver
488 * @__comedi_driver: comedi_driver struct
489 * @__pcmcia_driver: pcmcia_driver struct
491 * Helper macro for comedi PCMCIA drivers which do not do anything special
492 * in module init/exit. This eliminates a lot of boilerplate. Each
493 * module may only use this macro once, and calling it replaces
494 * module_init() and module_exit()
496 #define module_comedi_pcmcia_driver(__comedi_driver, __pcmcia_driver) \
497 module_driver(__comedi_driver, comedi_pcmcia_driver_register, \
498 comedi_pcmcia_driver_unregister, &(__pcmcia_driver))
500 #endif /* CONFIG_COMEDI_PCMCIA_DRIVERS */
502 #ifdef CONFIG_COMEDI_USB_DRIVERS
504 /* comedi_usb.c - comedi USB driver specific functions */
507 struct usb_interface
;
509 struct usb_interface
*comedi_to_usb_interface(struct comedi_device
*);
510 struct usb_device
*comedi_to_usb_dev(struct comedi_device
*);
512 int comedi_usb_auto_config(struct usb_interface
*, struct comedi_driver
*,
513 unsigned long context
);
514 void comedi_usb_auto_unconfig(struct usb_interface
*);
516 int comedi_usb_driver_register(struct comedi_driver
*, struct usb_driver
*);
517 void comedi_usb_driver_unregister(struct comedi_driver
*, struct usb_driver
*);
520 * module_comedi_usb_driver() - Helper macro for registering a comedi USB driver
521 * @__comedi_driver: comedi_driver struct
522 * @__usb_driver: usb_driver struct
524 * Helper macro for comedi USB drivers which do not do anything special
525 * in module init/exit. This eliminates a lot of boilerplate. Each
526 * module may only use this macro once, and calling it replaces
527 * module_init() and module_exit()
529 #define module_comedi_usb_driver(__comedi_driver, __usb_driver) \
530 module_driver(__comedi_driver, comedi_usb_driver_register, \
531 comedi_usb_driver_unregister, &(__usb_driver))
533 #endif /* CONFIG_COMEDI_USB_DRIVERS */
535 #endif /* _COMEDIDEV_H */