1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * comedidev.h
4 * header file for kernel-only structures, variables, and constants
5 *
6 * COMEDI - Linux Control and Measurement Device Interface
7 * Copyright (C) 1997-2000 David A. Schleef <ds@schleef.org>
8 */
9
10 #ifndef _COMEDIDEV_H
11 #define _COMEDIDEV_H
12
13 #include <linux/dma-mapping.h>
14 #include <linux/mutex.h>
15 #include <linux/spinlock_types.h>
16 #include <linux/rwsem.h>
17 #include <linux/kref.h>
18 #include <linux/comedi.h>
19
20 #define COMEDI_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
21 #define COMEDI_VERSION_CODE COMEDI_VERSION(COMEDI_MAJORVERSION, \
22 COMEDI_MINORVERSION, COMEDI_MICROVERSION)
23 #define COMEDI_RELEASE VERSION
24
25 #define COMEDI_NUM_BOARD_MINORS 0x30
26
27 /**
28 * struct comedi_subdevice - Working data for a COMEDI subdevice
29 * @device: COMEDI device to which this subdevice belongs. (Initialized by
30 * comedi_alloc_subdevices().)
31 * @index: Index of this subdevice within device's array of subdevices.
32 * (Initialized by comedi_alloc_subdevices().)
33 * @type: Type of subdevice from &enum comedi_subdevice_type. (Initialized by
34 * the low-level driver.)
35 * @n_chan: Number of channels the subdevice supports. (Initialized by the
36 * low-level driver.)
37 * @subdev_flags: Various "SDF" flags indicating aspects of the subdevice to
38 * the COMEDI core and user application. (Initialized by the low-level
39 * driver.)
40 * @len_chanlist: Maximum length of a channel list if the subdevice supports
41 * asynchronous acquisition commands. (Optionally initialized by the
42 * low-level driver, or changed from 0 to 1 during post-configuration.)
43 * @private: Private data pointer which is either set by the low-level driver
44 * itself, or by a call to comedi_alloc_spriv() which allocates storage.
45 * In the latter case, the storage is automatically freed after the
46 * low-level driver's "detach" handler is called for the device.
47 * (Initialized by the low-level driver.)
48 * @async: Pointer to &struct comedi_async id the subdevice supports
49 * asynchronous acquisition commands. (Allocated and initialized during
50 * post-configuration if needed.)
51 * @lock: Pointer to a file object that performed a %COMEDI_LOCK ioctl on the
52 * subdevice. (Initially NULL.)
53 * @busy: Pointer to a file object that is performing an asynchronous
54 * acquisition command on the subdevice. (Initially NULL.)
55 * @runflags: Internal flags for use by COMEDI core, mostly indicating whether
56 * an asynchronous acquisition command is running.
57 * @spin_lock: Generic spin-lock for use by the COMEDI core and the low-level
58 * driver. (Initialized by comedi_alloc_subdevices().)
59 * @io_bits: Bit-mask indicating the channel directions for a DIO subdevice
60 * with no more than 32 channels. A '1' at a bit position indicates the
61 * corresponding channel is configured as an output. (Initialized by the
62 * low-level driver for a DIO subdevice. Forced to all-outputs during
63 * post-configuration for a digital output subdevice.)
64 * @maxdata: If non-zero, this is the maximum raw data value of each channel.
65 * If zero, the maximum data value is channel-specific. (Initialized by
66 * the low-level driver.)
67 * @maxdata_list: If the maximum data value is channel-specific, this points
68 * to an array of maximum data values indexed by channel index.
69 * (Initialized by the low-level driver.)
70 * @range_table: If non-NULL, this points to a COMEDI range table for the
71 * subdevice. If NULL, the range table is channel-specific. (Initialized
72 * by the low-level driver, will be set to an "invalid" range table during
73 * post-configuration if @range_table and @range_table_list are both
74 * NULL.)
75 * @range_table_list: If the COMEDI range table is channel-specific, this
76 * points to an array of pointers to COMEDI range tables indexed by
77 * channel number. (Initialized by the low-level driver.)
78 * @chanlist: Not used.
79 * @insn_read: Optional pointer to a handler for the %INSN_READ instruction.
80 * (Initialized by the low-level driver, or set to a default handler
81 * during post-configuration.)
82 * @insn_write: Optional pointer to a handler for the %INSN_WRITE instruction.
83 * (Initialized by the low-level driver, or set to a default handler
84 * during post-configuration.)
85 * @insn_bits: Optional pointer to a handler for the %INSN_BITS instruction
86 * for a digital input, digital output or digital input/output subdevice.
87 * (Initialized by the low-level driver, or set to a default handler
88 * during post-configuration.)
89 * @insn_config: Optional pointer to a handler for the %INSN_CONFIG
90 * instruction. (Initialized by the low-level driver, or set to a default
91 * handler during post-configuration.)
92 * @do_cmd: If the subdevice supports asynchronous acquisition commands, this
93 * points to a handler to set it up in hardware. (Initialized by the
94 * low-level driver.)
95 * @do_cmdtest: If the subdevice supports asynchronous acquisition commands,
96 * this points to a handler used to check and possibly tweak a prospective
97 * acquisition command without setting it up in hardware. (Initialized by
98 * the low-level driver.)
99 * @poll: If the subdevice supports asynchronous acquisition commands, this
100 * is an optional pointer to a handler for the %COMEDI_POLL ioctl which
101 * instructs the low-level driver to synchronize buffers. (Initialized by
102 * the low-level driver if needed.)
103 * @cancel: If the subdevice supports asynchronous acquisition commands, this
104 * points to a handler used to terminate a running command. (Initialized
105 * by the low-level driver.)
106 * @buf_change: If the subdevice supports asynchronous acquisition commands,
107 * this is an optional pointer to a handler that is called when the data
108 * buffer for handling asynchronous commands is allocated or reallocated.
109 * (Initialized by the low-level driver if needed.)
110 * @munge: If the subdevice supports asynchronous acquisition commands and
111 * uses DMA to transfer data from the hardware to the acquisition buffer,
112 * this points to a function used to "munge" the data values from the
113 * hardware into the format expected by COMEDI. (Initialized by the
114 * low-level driver if needed.)
115 * @async_dma_dir: If the subdevice supports asynchronous acquisition commands
116 * and uses DMA to transfer data from the hardware to the acquisition
117 * buffer, this sets the DMA direction for the buffer. (initialized to
118 * %DMA_NONE by comedi_alloc_subdevices() and changed by the low-level
119 * driver if necessary.)
120 * @state: Handy bit-mask indicating the output states for a DIO or digital
121 * output subdevice with no more than 32 channels. (Initialized by the
122 * low-level driver.)
123 * @class_dev: If the subdevice supports asynchronous acquisition commands,
124 * this points to a sysfs comediX_subdY device where X is the minor device
125 * number of the COMEDI device and Y is the subdevice number. The minor
126 * device number for the sysfs device is allocated dynamically in the
127 * range 48 to 255. This is used to allow the COMEDI device to be opened
128 * with a different default read or write subdevice. (Allocated during
129 * post-configuration if needed.)
130 * @minor: If @class_dev is set, this is its dynamically allocated minor
131 * device number. (Set during post-configuration if necessary.)
132 * @readback: Optional pointer to memory allocated by
133 * comedi_alloc_subdev_readback() used to hold the values written to
134 * analog output channels so they can be read back. The storage is
135 * automatically freed after the low-level driver's "detach" handler is
136 * called for the device. (Initialized by the low-level driver.)
137 *
138 * This is the main control structure for a COMEDI subdevice. If the subdevice
139 * supports asynchronous acquisition commands, additional information is stored
140 * in the &struct comedi_async pointed to by @async.
141 *
142 * Most of the subdevice is initialized by the low-level driver's "attach" or
143 * "auto_attach" handlers but parts of it are initialized by
144 * comedi_alloc_subdevices(), and other parts are initialized during
145 * post-configuration on return from that handler.
146 *
147 * A low-level driver that sets @insn_bits for a digital input, digital output,
148 * or DIO subdevice may leave @insn_read and @insn_write uninitialized, in
149 * which case they will be set to a default handler during post-configuration
150 * that uses @insn_bits to emulate the %INSN_READ and %INSN_WRITE instructions.
151 */
152 struct comedi_subdevice {
153 struct comedi_device *device;
154 int index;
155 int type;
156 int n_chan;
157 int subdev_flags;
158 int len_chanlist; /* maximum length of channel/gain list */
159
160 void *private;
161
162 struct comedi_async *async;
163
164 void *lock;
165 void *busy;
166 unsigned int runflags;
167 spinlock_t spin_lock; /* generic spin-lock for COMEDI and drivers */
168
169 unsigned int io_bits;
170
171 unsigned int maxdata; /* if maxdata==0, use list */
172 const unsigned int *maxdata_list; /* list is channel specific */
173
174 const struct comedi_lrange *range_table;
175 const struct comedi_lrange *const *range_table_list;
176
177 unsigned int *chanlist; /* driver-owned chanlist (not used) */
178
179 int (*insn_read)(struct comedi_device *dev, struct comedi_subdevice *s,
180 struct comedi_insn *insn, unsigned int *data);
181 int (*insn_write)(struct comedi_device *dev, struct comedi_subdevice *s,
182 struct comedi_insn *insn, unsigned int *data);
183 int (*insn_bits)(struct comedi_device *dev, struct comedi_subdevice *s,
184 struct comedi_insn *insn, unsigned int *data);
185 int (*insn_config)(struct comedi_device *dev,
186 struct comedi_subdevice *s,
187 struct comedi_insn *insn,
188 unsigned int *data);
189
190 int (*do_cmd)(struct comedi_device *dev, struct comedi_subdevice *s);
191 int (*do_cmdtest)(struct comedi_device *dev,
192 struct comedi_subdevice *s,
193 struct comedi_cmd *cmd);
194 int (*poll)(struct comedi_device *dev, struct comedi_subdevice *s);
195 int (*cancel)(struct comedi_device *dev, struct comedi_subdevice *s);
196
197 /* called when the buffer changes */
198 int (*buf_change)(struct comedi_device *dev,
199 struct comedi_subdevice *s);
200
201 void (*munge)(struct comedi_device *dev, struct comedi_subdevice *s,
202 void *data, unsigned int num_bytes,
203 unsigned int start_chan_index);
204 enum dma_data_direction async_dma_dir;
205
206 unsigned int state;
207
208 struct device *class_dev;
209 int minor;
210
211 unsigned int *readback;
212 };
213
214 /**
215 * struct comedi_buf_page - Describe a page of a COMEDI buffer
216 * @virt_addr: Kernel address of page.
217 * @dma_addr: DMA address of page if in DMA coherent memory.
218 */
219 struct comedi_buf_page {
220 void *virt_addr;
221 dma_addr_t dma_addr;
222 };
223
224 /**
225 * struct comedi_buf_map - Describe pages in a COMEDI buffer
226 * @dma_hw_dev: Low-level hardware &struct device pointer copied from the
227 * COMEDI device's hw_dev member.
228 * @page_list: Pointer to array of &struct comedi_buf_page, one for each
229 * page in the buffer.
230 * @n_pages: Number of pages in the buffer.
231 * @dma_dir: DMA direction used to allocate pages of DMA coherent memory,
232 * or %DMA_NONE if pages allocated from regular memory.
233 * @refcount: &struct kref reference counter used to free the buffer.
234 *
235 * A COMEDI data buffer is allocated as individual pages, either in
236 * conventional memory or DMA coherent memory, depending on the attached,
237 * low-level hardware device.
238 *
239 * The buffer is normally freed when the COMEDI device is detached from the
240 * low-level driver (which may happen due to device removal), but if it happens
241 * to be mmapped at the time, the pages cannot be freed until the buffer has
242 * been munmapped. That is what the reference counter is for.
243 */
244 struct comedi_buf_map {
245 struct device *dma_hw_dev;
246 struct comedi_buf_page *page_list;
247 unsigned int n_pages;
248 enum dma_data_direction dma_dir;
249 struct kref refcount;
250 };
251
252 /**
253 * struct comedi_async - Control data for asynchronous COMEDI commands
254 * @prealloc_bufsz: Buffer size (in bytes).
255 * @buf_map: Map of buffer pages.
256 * @max_bufsize: Maximum allowed buffer size (in bytes).
257 * @buf_write_count: "Write completed" count (in bytes, modulo 2**32).
258 * @buf_write_alloc_count: "Allocated for writing" count (in bytes,
259 * modulo 2**32).
260 * @buf_read_count: "Read completed" count (in bytes, modulo 2**32).
261 * @buf_read_alloc_count: "Allocated for reading" count (in bytes,
262 * modulo 2**32).
263 * @buf_write_ptr: Buffer position for writer.
264 * @buf_read_ptr: Buffer position for reader.
265 * @cur_chan: Current position in chanlist for scan (for those drivers that
266 * use it).
267 * @scans_done: The number of scans completed.
268 * @scan_progress: Amount received or sent for current scan (in bytes).
269 * @munge_chan: Current position in chanlist for "munging".
270 * @munge_count: "Munge" count (in bytes, modulo 2**32).
271 * @munge_ptr: Buffer position for "munging".
272 * @events: Bit-vector of events that have occurred.
273 * @cmd: Details of comedi command in progress.
274 * @wait_head: Task wait queue for file reader or writer.
275 * @cb_mask: Bit-vector of events that should wake waiting tasks.
276 * @inttrig: Software trigger function for command, or NULL.
277 *
278 * Note about the ..._count and ..._ptr members:
279 *
280 * Think of the _Count values being integers of unlimited size, indexing
281 * into a buffer of infinite length (though only an advancing portion
282 * of the buffer of fixed length prealloc_bufsz is accessible at any
283 * time). Then:
284 *
285 * Buf_Read_Count <= Buf_Read_Alloc_Count <= Munge_Count <=
286 * Buf_Write_Count <= Buf_Write_Alloc_Count <=
287 * (Buf_Read_Count + prealloc_bufsz)
288 *
289 * (Those aren't the actual members, apart from prealloc_bufsz.) When the
290 * buffer is reset, those _Count values start at 0 and only increase in value,
291 * maintaining the above inequalities until the next time the buffer is
292 * reset. The buffer is divided into the following regions by the inequalities:
293 *
294 * [0, Buf_Read_Count):
295 * old region no longer accessible
296 *
297 * [Buf_Read_Count, Buf_Read_Alloc_Count):
298 * filled and munged region allocated for reading but not yet read
299 *
300 * [Buf_Read_Alloc_Count, Munge_Count):
301 * filled and munged region not yet allocated for reading
302 *
303 * [Munge_Count, Buf_Write_Count):
304 * filled region not yet munged
305 *
306 * [Buf_Write_Count, Buf_Write_Alloc_Count):
307 * unfilled region allocated for writing but not yet written
308 *
309 * [Buf_Write_Alloc_Count, Buf_Read_Count + prealloc_bufsz):
310 * unfilled region not yet allocated for writing
311 *
312 * [Buf_Read_Count + prealloc_bufsz, infinity):
313 * unfilled region not yet accessible
314 *
315 * Data needs to be written into the buffer before it can be read out,
316 * and may need to be converted (or "munged") between the two
317 * operations. Extra unfilled buffer space may need to allocated for
318 * writing (advancing Buf_Write_Alloc_Count) before new data is written.
319 * After writing new data, the newly filled space needs to be released
320 * (advancing Buf_Write_Count). This also results in the new data being
321 * "munged" (advancing Munge_Count). Before data is read out of the
322 * buffer, extra space may need to be allocated for reading (advancing
323 * Buf_Read_Alloc_Count). After the data has been read out, the space
324 * needs to be released (advancing Buf_Read_Count).
325 *
326 * The actual members, buf_read_count, buf_read_alloc_count,
327 * munge_count, buf_write_count, and buf_write_alloc_count take the
328 * value of the corresponding capitalized _Count values modulo 2^32
329 * (UINT_MAX+1). Subtracting a "higher" _count value from a "lower"
330 * _count value gives the same answer as subtracting a "higher" _Count
331 * value from a lower _Count value because prealloc_bufsz < UINT_MAX+1.
332 * The modulo operation is done implicitly.
333 *
334 * The buf_read_ptr, munge_ptr, and buf_write_ptr members take the value
335 * of the corresponding capitalized _Count values modulo prealloc_bufsz.
336 * These correspond to byte indices in the physical buffer. The modulo
337 * operation is done by subtracting prealloc_bufsz when the value
338 * exceeds prealloc_bufsz (assuming prealloc_bufsz plus the increment is
339 * less than or equal to UINT_MAX).
340 */
341 struct comedi_async {
342 unsigned int prealloc_bufsz;
343 struct comedi_buf_map *buf_map;
344 unsigned int max_bufsize;
345 unsigned int buf_write_count;
346 unsigned int buf_write_alloc_count;
347 unsigned int buf_read_count;
348 unsigned int buf_read_alloc_count;
349 unsigned int buf_write_ptr;
350 unsigned int buf_read_ptr;
351 unsigned int cur_chan;
352 unsigned int scans_done;
353 unsigned int scan_progress;
354 unsigned int munge_chan;
355 unsigned int munge_count;
356 unsigned int munge_ptr;
357 unsigned int events;
358 struct comedi_cmd cmd;
359 wait_queue_head_t wait_head;
360 unsigned int cb_mask;
361 int (*inttrig)(struct comedi_device *dev, struct comedi_subdevice *s,
362 unsigned int x);
363 };
364
365 /**
366 * enum comedi_cb - &struct comedi_async callback "events"
367 * @COMEDI_CB_EOS: end-of-scan
368 * @COMEDI_CB_EOA: end-of-acquisition/output
369 * @COMEDI_CB_BLOCK: data has arrived, wakes up read() / write()
370 * @COMEDI_CB_EOBUF: DEPRECATED: end of buffer
371 * @COMEDI_CB_ERROR: card error during acquisition
372 * @COMEDI_CB_OVERFLOW: buffer overflow/underflow
373 * @COMEDI_CB_ERROR_MASK: events that indicate an error has occurred
374 * @COMEDI_CB_CANCEL_MASK: events that will cancel an async command
375 */
376 enum comedi_cb {
377 COMEDI_CB_EOS = BIT(0),
378 COMEDI_CB_EOA = BIT(1),
379 COMEDI_CB_BLOCK = BIT(2),
380 COMEDI_CB_EOBUF = BIT(3),
381 COMEDI_CB_ERROR = BIT(4),
382 COMEDI_CB_OVERFLOW = BIT(5),
383 /* masks */
384 COMEDI_CB_ERROR_MASK = (COMEDI_CB_ERROR | COMEDI_CB_OVERFLOW),
385 COMEDI_CB_CANCEL_MASK = (COMEDI_CB_EOA | COMEDI_CB_ERROR_MASK)
386 };
387
388 /**
389 * struct comedi_driver - COMEDI driver registration
390 * @driver_name: Name of driver.
391 * @module: Owning module.
392 * @attach: The optional "attach" handler for manually configured COMEDI
393 * devices.
394 * @detach: The "detach" handler for deconfiguring COMEDI devices.
395 * @auto_attach: The optional "auto_attach" handler for automatically
396 * configured COMEDI devices.
397 * @num_names: Optional number of "board names" supported.
398 * @board_name: Optional pointer to a pointer to a board name. The pointer
399 * to a board name is embedded in an element of a driver-defined array
400 * of static, read-only board type information.
401 * @offset: Optional size of each element of the driver-defined array of
402 * static, read-only board type information, i.e. the offset between each
403 * pointer to a board name.
404 *
405 * This is used with comedi_driver_register() and comedi_driver_unregister() to
406 * register and unregister a low-level COMEDI driver with the COMEDI core.
407 *
408 * If @num_names is non-zero, @board_name should be non-NULL, and @offset
409 * should be at least sizeof(*board_name). These are used by the handler for
410 * the %COMEDI_DEVCONFIG ioctl to match a hardware device and its driver by
411 * board name. If @num_names is zero, the %COMEDI_DEVCONFIG ioctl matches a
412 * hardware device and its driver by driver name. This is only useful if the
413 * @attach handler is set. If @num_names is non-zero, the driver's @attach
414 * handler will be called with the COMEDI device structure's board_ptr member
415 * pointing to the matched pointer to a board name within the driver's private
416 * array of static, read-only board type information.
417 *
418 * The @detach handler has two roles. If a COMEDI device was successfully
419 * configured by the @attach or @auto_attach handler, it is called when the
420 * device is being deconfigured (by the %COMEDI_DEVCONFIG ioctl, or due to
421 * unloading of the driver, or due to device removal). It is also called when
422 * the @attach or @auto_attach handler returns an error. Therefore, the
423 * @attach or @auto_attach handlers can defer clean-up on error until the
424 * @detach handler is called. If the @attach or @auto_attach handlers free
425 * any resources themselves, they must prevent the @detach handler from
426 * freeing the same resources. The @detach handler must not assume that all
427 * resources requested by the @attach or @auto_attach handler were
428 * successfully allocated.
429 */
430 struct comedi_driver {
431 /* private: */
432 struct comedi_driver *next; /* Next in list of COMEDI drivers. */
433 /* public: */
434 const char *driver_name;
435 struct module *module;
436 int (*attach)(struct comedi_device *dev, struct comedi_devconfig *it);
437 void (*detach)(struct comedi_device *dev);
438 int (*auto_attach)(struct comedi_device *dev, unsigned long context);
439 unsigned int num_names;
440 const char *const *board_name;
441 int offset;
442 };
443
444 /**
445 * struct comedi_device - Working data for a COMEDI device
446 * @use_count: Number of open file objects.
447 * @driver: Low-level COMEDI driver attached to this COMEDI device.
448 * @pacer: Optional pointer to a dynamically allocated acquisition pacer
449 * control. It is freed automatically after the COMEDI device is
450 * detached from the low-level driver.
451 * @private: Optional pointer to private data allocated by the low-level
452 * driver. It is freed automatically after the COMEDI device is
453 * detached from the low-level driver.
454 * @class_dev: Sysfs comediX device.
455 * @minor: Minor device number of COMEDI char device (0-47).
456 * @detach_count: Counter incremented every time the COMEDI device is detached.
457 * Used for checking a previous attachment is still valid.
458 * @hw_dev: Optional pointer to the low-level hardware &struct device. It is
459 * required for automatically configured COMEDI devices and optional for
460 * COMEDI devices configured by the %COMEDI_DEVCONFIG ioctl, although
461 * the bus-specific COMEDI functions only work if it is set correctly.
462 * It is also passed to dma_alloc_coherent() for COMEDI subdevices that
463 * have their 'async_dma_dir' member set to something other than
464 * %DMA_NONE.
465 * @board_name: Pointer to a COMEDI board name or a COMEDI driver name. When
466 * the low-level driver's "attach" handler is called by the handler for
467 * the %COMEDI_DEVCONFIG ioctl, it either points to a matched board name
468 * string if the 'num_names' member of the &struct comedi_driver is
469 * non-zero, otherwise it points to the low-level driver name string.
470 * When the low-lever driver's "auto_attach" handler is called for an
471 * automatically configured COMEDI device, it points to the low-level
472 * driver name string. The low-level driver is free to change it in its
473 * "attach" or "auto_attach" handler if it wishes.
474 * @board_ptr: Optional pointer to private, read-only board type information in
475 * the low-level driver. If the 'num_names' member of the &struct
476 * comedi_driver is non-zero, the handler for the %COMEDI_DEVCONFIG ioctl
477 * will point it to a pointer to a matched board name string within the
478 * driver's private array of static, read-only board type information when
479 * calling the driver's "attach" handler. The low-level driver is free to
480 * change it.
481 * @attached: Flag indicating that the COMEDI device is attached to a low-level
482 * driver.
483 * @ioenabled: Flag used to indicate that a PCI device has been enabled and
484 * its regions requested.
485 * @spinlock: Generic spin-lock for use by the low-level driver.
486 * @mutex: Generic mutex for use by the COMEDI core module.
487 * @attach_lock: &struct rw_semaphore used to guard against the COMEDI device
488 * being detached while an operation is in progress. The down_write()
489 * operation is only allowed while @mutex is held and is used when
490 * changing @attached and @detach_count and calling the low-level driver's
491 * "detach" handler. The down_read() operation is generally used without
492 * holding @mutex.
493 * @refcount: &struct kref reference counter for freeing COMEDI device.
494 * @n_subdevices: Number of COMEDI subdevices allocated by the low-level
495 * driver for this device.
496 * @subdevices: Dynamically allocated array of COMEDI subdevices.
497 * @mmio: Optional pointer to a remapped MMIO region set by the low-level
498 * driver.
499 * @iobase: Optional base of an I/O port region requested by the low-level
500 * driver.
501 * @iolen: Length of I/O port region requested at @iobase.
502 * @irq: Optional IRQ number requested by the low-level driver.
503 * @read_subdev: Optional pointer to a default COMEDI subdevice operated on by
504 * the read() file operation. Set by the low-level driver.
505 * @write_subdev: Optional pointer to a default COMEDI subdevice operated on by
506 * the write() file operation. Set by the low-level driver.
507 * @async_queue: Storage for fasync_helper().
508 * @open: Optional pointer to a function set by the low-level driver to be
509 * called when @use_count changes from 0 to 1.
510 * @close: Optional pointer to a function set by the low-level driver to be
511 * called when @use_count changed from 1 to 0.
512 * @insn_device_config: Optional pointer to a handler for all sub-instructions
513 * except %INSN_DEVICE_CONFIG_GET_ROUTES of the %INSN_DEVICE_CONFIG
514 * instruction. If this is not initialized by the low-level driver, a
515 * default handler will be set during post-configuration.
516 * @get_valid_routes: Optional pointer to a handler for the
517 * %INSN_DEVICE_CONFIG_GET_ROUTES sub-instruction of the
518 * %INSN_DEVICE_CONFIG instruction set. If this is not initialized by the
519 * low-level driver, a default handler that copies zero routes back to the
520 * user will be used.
521 *
522 * This is the main control data structure for a COMEDI device (as far as the
523 * COMEDI core is concerned). There are two groups of COMEDI devices -
524 * "legacy" devices that are configured by the handler for the
525 * %COMEDI_DEVCONFIG ioctl, and automatically configured devices resulting
526 * from a call to comedi_auto_config() as a result of a bus driver probe in
527 * a low-level COMEDI driver. The "legacy" COMEDI devices are allocated
528 * during module initialization if the "comedi_num_legacy_minors" module
529 * parameter is non-zero and use minor device numbers from 0 to
530 * comedi_num_legacy_minors minus one. The automatically configured COMEDI
531 * devices are allocated on demand and use minor device numbers from
532 * comedi_num_legacy_minors to 47.
533 */
534 struct comedi_device {
535 int use_count;
536 struct comedi_driver *driver;
537 struct comedi_8254 *pacer;
538 void *private;
539
540 struct device *class_dev;
541 int minor;
542 unsigned int detach_count;
543 struct device *hw_dev;
544
545 const char *board_name;
546 const void *board_ptr;
547 unsigned int attached:1;
548 unsigned int ioenabled:1;
549 spinlock_t spinlock; /* generic spin-lock for low-level driver */
550 struct mutex mutex; /* generic mutex for COMEDI core */
551 struct rw_semaphore attach_lock;
552 struct kref refcount;
553
554 int n_subdevices;
555 struct comedi_subdevice *subdevices;
556
557 /* dumb */
558 void __iomem *mmio;
559 unsigned long iobase;
560 unsigned long iolen;
561 unsigned int irq;
562
563 struct comedi_subdevice *read_subdev;
564 struct comedi_subdevice *write_subdev;
565
566 struct fasync_struct *async_queue;
567
568 int (*open)(struct comedi_device *dev);
569 void (*close)(struct comedi_device *dev);
570 int (*insn_device_config)(struct comedi_device *dev,
571 struct comedi_insn *insn, unsigned int *data);
572 unsigned int (*get_valid_routes)(struct comedi_device *dev,
573 unsigned int n_pairs,
574 unsigned int *pair_data);
575 };
576
577 /*
578 * function prototypes
579 */
580
581 void comedi_event(struct comedi_device *dev, struct comedi_subdevice *s);
582
583 struct comedi_device *comedi_dev_get_from_minor(unsigned int minor);
584 int comedi_dev_put(struct comedi_device *dev);
585
586 bool comedi_is_subdevice_running(struct comedi_subdevice *s);
587
588 void *comedi_alloc_spriv(struct comedi_subdevice *s, size_t size);
589 void comedi_set_spriv_auto_free(struct comedi_subdevice *s);
590
591 int comedi_check_chanlist(struct comedi_subdevice *s,
592 int n,
593 unsigned int *chanlist);
594
595 /* range stuff */
596
597 #define RANGE(a, b) {(a) * 1e6, (b) * 1e6, 0}
598 #define RANGE_ext(a, b) {(a) * 1e6, (b) * 1e6, RF_EXTERNAL}
599 #define RANGE_mA(a, b) {(a) * 1e6, (b) * 1e6, UNIT_mA}
600 #define RANGE_unitless(a, b) {(a) * 1e6, (b) * 1e6, 0}
601 #define BIP_RANGE(a) {-(a) * 1e6, (a) * 1e6, 0}
602 #define UNI_RANGE(a) {0, (a) * 1e6, 0}
603
604 extern const struct comedi_lrange range_bipolar10;
605 extern const struct comedi_lrange range_bipolar5;
606 extern const struct comedi_lrange range_bipolar2_5;
607 extern const struct comedi_lrange range_unipolar10;
608 extern const struct comedi_lrange range_unipolar5;
609 extern const struct comedi_lrange range_unipolar2_5;
610 extern const struct comedi_lrange range_0_20mA;
611 extern const struct comedi_lrange range_4_20mA;
612 extern const struct comedi_lrange range_0_32mA;
613 extern const struct comedi_lrange range_unknown;
614
615 #define range_digital range_unipolar5
616
617 /**
618 * struct comedi_lrange - Describes a COMEDI range table
619 * @length: Number of entries in the range table.
620 * @range: Array of &struct comedi_krange, one for each range.
621 *
622 * Each element of @range[] describes the minimum and maximum physical range
623 * and the type of units. Typically, the type of unit is %UNIT_volt
624 * (i.e. volts) and the minimum and maximum are in millionths of a volt.
625 * There may also be a flag that indicates the minimum and maximum are merely
626 * scale factors for an unknown, external reference.
627 */
628 struct comedi_lrange {
629 int length;
630 struct comedi_krange range[] __counted_by(length);
631 };
632
633 /**
634 * comedi_range_is_bipolar() - Test if subdevice range is bipolar
635 * @s: COMEDI subdevice.
636 * @range: Index of range within a range table.
637 *
638 * Tests whether a range is bipolar by checking whether its minimum value
639 * is negative.
640 *
641 * Assumes @range is valid. Does not work for subdevices using a
642 * channel-specific range table list.
643 *
644 * Return:
645 * %true if the range is bipolar.
646 * %false if the range is unipolar.
647 */
comedi_range_is_bipolar(struct comedi_subdevice * s,unsigned int range)648 static inline bool comedi_range_is_bipolar(struct comedi_subdevice *s,
649 unsigned int range)
650 {
651 return s->range_table->range[range].min < 0;
652 }
653
654 /**
655 * comedi_range_is_unipolar() - Test if subdevice range is unipolar
656 * @s: COMEDI subdevice.
657 * @range: Index of range within a range table.
658 *
659 * Tests whether a range is unipolar by checking whether its minimum value
660 * is at least 0.
661 *
662 * Assumes @range is valid. Does not work for subdevices using a
663 * channel-specific range table list.
664 *
665 * Return:
666 * %true if the range is unipolar.
667 * %false if the range is bipolar.
668 */
comedi_range_is_unipolar(struct comedi_subdevice * s,unsigned int range)669 static inline bool comedi_range_is_unipolar(struct comedi_subdevice *s,
670 unsigned int range)
671 {
672 return s->range_table->range[range].min >= 0;
673 }
674
675 /**
676 * comedi_range_is_external() - Test if subdevice range is external
677 * @s: COMEDI subdevice.
678 * @range: Index of range within a range table.
679 *
680 * Tests whether a range is externally reference by checking whether its
681 * %RF_EXTERNAL flag is set.
682 *
683 * Assumes @range is valid. Does not work for subdevices using a
684 * channel-specific range table list.
685 *
686 * Return:
687 * %true if the range is external.
688 * %false if the range is internal.
689 */
comedi_range_is_external(struct comedi_subdevice * s,unsigned int range)690 static inline bool comedi_range_is_external(struct comedi_subdevice *s,
691 unsigned int range)
692 {
693 return !!(s->range_table->range[range].flags & RF_EXTERNAL);
694 }
695
696 /**
697 * comedi_chan_range_is_bipolar() - Test if channel-specific range is bipolar
698 * @s: COMEDI subdevice.
699 * @chan: The channel number.
700 * @range: Index of range within a range table.
701 *
702 * Tests whether a range is bipolar by checking whether its minimum value
703 * is negative.
704 *
705 * Assumes @chan and @range are valid. Only works for subdevices with a
706 * channel-specific range table list.
707 *
708 * Return:
709 * %true if the range is bipolar.
710 * %false if the range is unipolar.
711 */
comedi_chan_range_is_bipolar(struct comedi_subdevice * s,unsigned int chan,unsigned int range)712 static inline bool comedi_chan_range_is_bipolar(struct comedi_subdevice *s,
713 unsigned int chan,
714 unsigned int range)
715 {
716 return s->range_table_list[chan]->range[range].min < 0;
717 }
718
719 /**
720 * comedi_chan_range_is_unipolar() - Test if channel-specific range is unipolar
721 * @s: COMEDI subdevice.
722 * @chan: The channel number.
723 * @range: Index of range within a range table.
724 *
725 * Tests whether a range is unipolar by checking whether its minimum value
726 * is at least 0.
727 *
728 * Assumes @chan and @range are valid. Only works for subdevices with a
729 * channel-specific range table list.
730 *
731 * Return:
732 * %true if the range is unipolar.
733 * %false if the range is bipolar.
734 */
comedi_chan_range_is_unipolar(struct comedi_subdevice * s,unsigned int chan,unsigned int range)735 static inline bool comedi_chan_range_is_unipolar(struct comedi_subdevice *s,
736 unsigned int chan,
737 unsigned int range)
738 {
739 return s->range_table_list[chan]->range[range].min >= 0;
740 }
741
742 /**
743 * comedi_chan_range_is_external() - Test if channel-specific range is external
744 * @s: COMEDI subdevice.
745 * @chan: The channel number.
746 * @range: Index of range within a range table.
747 *
748 * Tests whether a range is externally reference by checking whether its
749 * %RF_EXTERNAL flag is set.
750 *
751 * Assumes @chan and @range are valid. Only works for subdevices with a
752 * channel-specific range table list.
753 *
754 * Return:
755 * %true if the range is bipolar.
756 * %false if the range is unipolar.
757 */
comedi_chan_range_is_external(struct comedi_subdevice * s,unsigned int chan,unsigned int range)758 static inline bool comedi_chan_range_is_external(struct comedi_subdevice *s,
759 unsigned int chan,
760 unsigned int range)
761 {
762 return !!(s->range_table_list[chan]->range[range].flags & RF_EXTERNAL);
763 }
764
765 /**
766 * comedi_offset_munge() - Convert between offset binary and 2's complement
767 * @s: COMEDI subdevice.
768 * @val: Value to be converted.
769 *
770 * Toggles the highest bit of a sample value to toggle between offset binary
771 * and 2's complement. Assumes that @s->maxdata is a power of 2 minus 1.
772 *
773 * Return: The converted value.
774 */
comedi_offset_munge(struct comedi_subdevice * s,unsigned int val)775 static inline unsigned int comedi_offset_munge(struct comedi_subdevice *s,
776 unsigned int val)
777 {
778 return val ^ s->maxdata ^ (s->maxdata >> 1);
779 }
780
781 /**
782 * comedi_bytes_per_sample() - Determine subdevice sample size
783 * @s: COMEDI subdevice.
784 *
785 * The sample size will be 4 (sizeof int) or 2 (sizeof short) depending on
786 * whether the %SDF_LSAMPL subdevice flag is set or not.
787 *
788 * Return: The subdevice sample size.
789 */
comedi_bytes_per_sample(struct comedi_subdevice * s)790 static inline unsigned int comedi_bytes_per_sample(struct comedi_subdevice *s)
791 {
792 return s->subdev_flags & SDF_LSAMPL ? sizeof(int) : sizeof(short);
793 }
794
795 /**
796 * comedi_sample_shift() - Determine log2 of subdevice sample size
797 * @s: COMEDI subdevice.
798 *
799 * The sample size will be 4 (sizeof int) or 2 (sizeof short) depending on
800 * whether the %SDF_LSAMPL subdevice flag is set or not. The log2 of the
801 * sample size will be 2 or 1 and can be used as the right operand of a
802 * bit-shift operator to multiply or divide something by the sample size.
803 *
804 * Return: log2 of the subdevice sample size.
805 */
comedi_sample_shift(struct comedi_subdevice * s)806 static inline unsigned int comedi_sample_shift(struct comedi_subdevice *s)
807 {
808 return s->subdev_flags & SDF_LSAMPL ? 2 : 1;
809 }
810
811 /**
812 * comedi_bytes_to_samples() - Convert a number of bytes to a number of samples
813 * @s: COMEDI subdevice.
814 * @nbytes: Number of bytes
815 *
816 * Return: The number of bytes divided by the subdevice sample size.
817 */
comedi_bytes_to_samples(struct comedi_subdevice * s,unsigned int nbytes)818 static inline unsigned int comedi_bytes_to_samples(struct comedi_subdevice *s,
819 unsigned int nbytes)
820 {
821 return nbytes >> comedi_sample_shift(s);
822 }
823
824 /**
825 * comedi_samples_to_bytes() - Convert a number of samples to a number of bytes
826 * @s: COMEDI subdevice.
827 * @nsamples: Number of samples.
828 *
829 * Return: The number of samples multiplied by the subdevice sample size.
830 * (Does not check for arithmetic overflow.)
831 */
comedi_samples_to_bytes(struct comedi_subdevice * s,unsigned int nsamples)832 static inline unsigned int comedi_samples_to_bytes(struct comedi_subdevice *s,
833 unsigned int nsamples)
834 {
835 return nsamples << comedi_sample_shift(s);
836 }
837
838 /**
839 * comedi_check_trigger_src() - Trivially validate a comedi_cmd trigger source
840 * @src: Pointer to the trigger source to validate.
841 * @flags: Bitmask of valid %TRIG_* for the trigger.
842 *
843 * This is used in "step 1" of the do_cmdtest functions of comedi drivers
844 * to validate the comedi_cmd triggers. The mask of the @src against the
845 * @flags allows the userspace comedilib to pass all the comedi_cmd
846 * triggers as %TRIG_ANY and get back a bitmask of the valid trigger sources.
847 *
848 * Return:
849 * 0 if trigger sources in *@src are all supported.
850 * -EINVAL if any trigger source in *@src is unsupported.
851 */
comedi_check_trigger_src(unsigned int * src,unsigned int flags)852 static inline int comedi_check_trigger_src(unsigned int *src,
853 unsigned int flags)
854 {
855 unsigned int orig_src = *src;
856
857 *src = orig_src & flags;
858 if (*src == TRIG_INVALID || *src != orig_src)
859 return -EINVAL;
860 return 0;
861 }
862
863 /**
864 * comedi_check_trigger_is_unique() - Make sure a trigger source is unique
865 * @src: The trigger source to check.
866 *
867 * Return:
868 * 0 if no more than one trigger source is set.
869 * -EINVAL if more than one trigger source is set.
870 */
comedi_check_trigger_is_unique(unsigned int src)871 static inline int comedi_check_trigger_is_unique(unsigned int src)
872 {
873 /* this test is true if more than one _src bit is set */
874 if ((src & (src - 1)) != 0)
875 return -EINVAL;
876 return 0;
877 }
878
879 /**
880 * comedi_check_trigger_arg_is() - Trivially validate a trigger argument
881 * @arg: Pointer to the trigger arg to validate.
882 * @val: The value the argument should be.
883 *
884 * Forces *@arg to be @val.
885 *
886 * Return:
887 * 0 if *@arg was already @val.
888 * -EINVAL if *@arg differed from @val.
889 */
comedi_check_trigger_arg_is(unsigned int * arg,unsigned int val)890 static inline int comedi_check_trigger_arg_is(unsigned int *arg,
891 unsigned int val)
892 {
893 if (*arg != val) {
894 *arg = val;
895 return -EINVAL;
896 }
897 return 0;
898 }
899
900 /**
901 * comedi_check_trigger_arg_min() - Trivially validate a trigger argument min
902 * @arg: Pointer to the trigger arg to validate.
903 * @val: The minimum value the argument should be.
904 *
905 * Forces *@arg to be at least @val, setting it to @val if necessary.
906 *
907 * Return:
908 * 0 if *@arg was already at least @val.
909 * -EINVAL if *@arg was less than @val.
910 */
comedi_check_trigger_arg_min(unsigned int * arg,unsigned int val)911 static inline int comedi_check_trigger_arg_min(unsigned int *arg,
912 unsigned int val)
913 {
914 if (*arg < val) {
915 *arg = val;
916 return -EINVAL;
917 }
918 return 0;
919 }
920
921 /**
922 * comedi_check_trigger_arg_max() - Trivially validate a trigger argument max
923 * @arg: Pointer to the trigger arg to validate.
924 * @val: The maximum value the argument should be.
925 *
926 * Forces *@arg to be no more than @val, setting it to @val if necessary.
927 *
928 * Return:
929 * 0 if*@arg was already no more than @val.
930 * -EINVAL if *@arg was greater than @val.
931 */
comedi_check_trigger_arg_max(unsigned int * arg,unsigned int val)932 static inline int comedi_check_trigger_arg_max(unsigned int *arg,
933 unsigned int val)
934 {
935 if (*arg > val) {
936 *arg = val;
937 return -EINVAL;
938 }
939 return 0;
940 }
941
942 /*
943 * Must set dev->hw_dev if you wish to dma directly into comedi's buffer.
944 * Also useful for retrieving a previously configured hardware device of
945 * known bus type. Set automatically for auto-configured devices.
946 * Automatically set to NULL when detaching hardware device.
947 */
948 int comedi_set_hw_dev(struct comedi_device *dev, struct device *hw_dev);
949
950 /**
951 * comedi_buf_n_bytes_ready - Determine amount of unread data in buffer
952 * @s: COMEDI subdevice.
953 *
954 * Determines the number of bytes of unread data in the asynchronous
955 * acquisition data buffer for a subdevice. The data in question might not
956 * have been fully "munged" yet.
957 *
958 * Returns: The amount of unread data in bytes.
959 */
comedi_buf_n_bytes_ready(struct comedi_subdevice * s)960 static inline unsigned int comedi_buf_n_bytes_ready(struct comedi_subdevice *s)
961 {
962 return s->async->buf_write_count - s->async->buf_read_count;
963 }
964
965 unsigned int comedi_buf_write_alloc(struct comedi_subdevice *s, unsigned int n);
966 unsigned int comedi_buf_write_free(struct comedi_subdevice *s, unsigned int n);
967
968 unsigned int comedi_buf_read_n_available(struct comedi_subdevice *s);
969 unsigned int comedi_buf_read_alloc(struct comedi_subdevice *s, unsigned int n);
970 unsigned int comedi_buf_read_free(struct comedi_subdevice *s, unsigned int n);
971
972 unsigned int comedi_buf_write_samples(struct comedi_subdevice *s,
973 const void *data, unsigned int nsamples);
974 unsigned int comedi_buf_read_samples(struct comedi_subdevice *s,
975 void *data, unsigned int nsamples);
976
977 /* drivers.c - general comedi driver functions */
978
979 #define COMEDI_TIMEOUT_MS 1000
980
981 int comedi_timeout(struct comedi_device *dev, struct comedi_subdevice *s,
982 struct comedi_insn *insn,
983 int (*cb)(struct comedi_device *dev,
984 struct comedi_subdevice *s,
985 struct comedi_insn *insn, unsigned long context),
986 unsigned long context);
987
988 unsigned int comedi_handle_events(struct comedi_device *dev,
989 struct comedi_subdevice *s);
990
991 int comedi_dio_insn_config(struct comedi_device *dev,
992 struct comedi_subdevice *s,
993 struct comedi_insn *insn, unsigned int *data,
994 unsigned int mask);
995 unsigned int comedi_dio_update_state(struct comedi_subdevice *s,
996 unsigned int *data);
997 unsigned int comedi_bytes_per_scan_cmd(struct comedi_subdevice *s,
998 struct comedi_cmd *cmd);
999 unsigned int comedi_bytes_per_scan(struct comedi_subdevice *s);
1000 unsigned int comedi_nscans_left(struct comedi_subdevice *s,
1001 unsigned int nscans);
1002 unsigned int comedi_nsamples_left(struct comedi_subdevice *s,
1003 unsigned int nsamples);
1004 void comedi_inc_scan_progress(struct comedi_subdevice *s,
1005 unsigned int num_bytes);
1006
1007 void *comedi_alloc_devpriv(struct comedi_device *dev, size_t size);
1008 int comedi_alloc_subdevices(struct comedi_device *dev, int num_subdevices);
1009 int comedi_alloc_subdev_readback(struct comedi_subdevice *s);
1010
1011 int comedi_readback_insn_read(struct comedi_device *dev,
1012 struct comedi_subdevice *s,
1013 struct comedi_insn *insn, unsigned int *data);
1014
1015 int comedi_load_firmware(struct comedi_device *dev, struct device *hw_dev,
1016 const char *name,
1017 int (*cb)(struct comedi_device *dev,
1018 const u8 *data, size_t size,
1019 unsigned long context),
1020 unsigned long context);
1021
1022 int __comedi_request_region(struct comedi_device *dev,
1023 unsigned long start, unsigned long len);
1024 int comedi_request_region(struct comedi_device *dev,
1025 unsigned long start, unsigned long len);
1026 void comedi_legacy_detach(struct comedi_device *dev);
1027
1028 int comedi_auto_config(struct device *hardware_device,
1029 struct comedi_driver *driver, unsigned long context);
1030 void comedi_auto_unconfig(struct device *hardware_device);
1031
1032 int comedi_driver_register(struct comedi_driver *driver);
1033 void comedi_driver_unregister(struct comedi_driver *driver);
1034
1035 /**
1036 * module_comedi_driver() - Helper macro for registering a comedi driver
1037 * @__comedi_driver: comedi_driver struct
1038 *
1039 * Helper macro for comedi drivers which do not do anything special in module
1040 * init/exit. This eliminates a lot of boilerplate. Each module may only use
1041 * this macro once, and calling it replaces module_init() and module_exit().
1042 */
1043 #define module_comedi_driver(__comedi_driver) \
1044 module_driver(__comedi_driver, comedi_driver_register, \
1045 comedi_driver_unregister)
1046
1047 #endif /* _COMEDIDEV_H */
1048