blob: 75256251250d75cc97858bab1c7575ac5c52119b [file] [log] [blame]
David Schleefed9eccb2008-11-04 20:29:31 -08001/*
2 comedi/comedi_fops.c
3 comedi kernel module
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#undef DEBUG
25
26#define __NO_VERSION__
27#include "comedi_fops.h"
28#include "comedi_compat32.h"
29
30#include <linux/module.h>
31#include <linux/errno.h>
32#include <linux/kernel.h>
33#include <linux/sched.h>
34#include <linux/fcntl.h>
35#include <linux/delay.h>
36#include <linux/ioport.h>
37#include <linux/mm.h>
38#include <linux/slab.h>
39#include <linux/kmod.h>
40#include <linux/poll.h>
41#include <linux/init.h>
42#include <linux/device.h>
43#include <linux/vmalloc.h>
44#include <linux/fs.h>
45#include "comedidev.h"
46#include <linux/cdev.h>
Frank Mori Hess883db3d2009-04-14 11:21:41 -040047#include <linux/stat.h>
David Schleefed9eccb2008-11-04 20:29:31 -080048
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -080049#include <linux/io.h>
50#include <linux/uaccess.h>
David Schleefed9eccb2008-11-04 20:29:31 -080051
Greg Kroah-Hartman242e7ad2010-05-03 15:20:29 -070052#include "internal.h"
David Schleefed9eccb2008-11-04 20:29:31 -080053
54MODULE_AUTHOR("http://www.comedi.org");
55MODULE_DESCRIPTION("Comedi core module");
56MODULE_LICENSE("GPL");
57
58#ifdef CONFIG_COMEDI_DEBUG
59int comedi_debug;
Greg Kroah-Hartman18736432010-05-01 12:02:23 -070060EXPORT_SYMBOL(comedi_debug);
David Schleefed9eccb2008-11-04 20:29:31 -080061module_param(comedi_debug, int, 0644);
62#endif
63
Ian Abbott6a9d7a22008-12-08 17:05:50 +000064int comedi_autoconfig = 1;
65module_param(comedi_autoconfig, bool, 0444);
66
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -070067static int comedi_num_legacy_minors;
Bernd Porr1dd33ab2008-12-08 23:30:13 +000068module_param(comedi_num_legacy_minors, int, 0444);
69
David Schleefed9eccb2008-11-04 20:29:31 -080070static DEFINE_SPINLOCK(comedi_file_info_table_lock);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -080071static struct comedi_device_file_info
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +053072*comedi_file_info_table[COMEDI_NUM_MINORS];
David Schleefed9eccb2008-11-04 20:29:31 -080073
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +053074static int do_devconfig_ioctl(struct comedi_device *dev,
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -070075 struct comedi_devconfig __user *arg);
76static int do_bufconfig_ioctl(struct comedi_device *dev,
77 struct comedi_bufconfig __user *arg);
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +053078static int do_devinfo_ioctl(struct comedi_device *dev,
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -070079 struct comedi_devinfo __user *arg,
80 struct file *file);
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +053081static int do_subdinfo_ioctl(struct comedi_device *dev,
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -070082 struct comedi_subdinfo __user *arg, void *file);
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +053083static int do_chaninfo_ioctl(struct comedi_device *dev,
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -070084 struct comedi_chaninfo __user *arg);
85static int do_bufinfo_ioctl(struct comedi_device *dev,
86 struct comedi_bufinfo __user *arg);
87static int do_cmd_ioctl(struct comedi_device *dev,
88 struct comedi_cmd __user *arg, void *file);
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +053089static int do_lock_ioctl(struct comedi_device *dev, unsigned int arg,
90 void *file);
91static int do_unlock_ioctl(struct comedi_device *dev, unsigned int arg,
92 void *file);
93static int do_cancel_ioctl(struct comedi_device *dev, unsigned int arg,
94 void *file);
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -070095static int do_cmdtest_ioctl(struct comedi_device *dev,
96 struct comedi_cmd __user *arg, void *file);
97static int do_insnlist_ioctl(struct comedi_device *dev,
98 struct comedi_insnlist __user *arg, void *file);
99static int do_insn_ioctl(struct comedi_device *dev,
100 struct comedi_insn __user *arg, void *file);
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530101static int do_poll_ioctl(struct comedi_device *dev, unsigned int subd,
102 void *file);
David Schleefed9eccb2008-11-04 20:29:31 -0800103
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530104extern void do_become_nonbusy(struct comedi_device *dev,
105 struct comedi_subdevice *s);
Bill Pemberton34c43922009-03-16 22:05:14 -0400106static int do_cancel(struct comedi_device *dev, struct comedi_subdevice *s);
David Schleefed9eccb2008-11-04 20:29:31 -0800107
108static int comedi_fasync(int fd, struct file *file, int on);
109
Bill Pemberton71b5f4f2009-03-16 22:05:08 -0400110static int is_device_busy(struct comedi_device *dev);
Frank Mori Hess883db3d2009-04-14 11:21:41 -0400111static int resize_async_buffer(struct comedi_device *dev,
112 struct comedi_subdevice *s,
113 struct comedi_async *async, unsigned new_size);
114
115/* declarations for sysfs attribute files */
116static struct device_attribute dev_attr_max_read_buffer_kb;
117static struct device_attribute dev_attr_read_buffer_kb;
118static struct device_attribute dev_attr_max_write_buffer_kb;
119static struct device_attribute dev_attr_write_buffer_kb;
David Schleefed9eccb2008-11-04 20:29:31 -0800120
David Schleefed9eccb2008-11-04 20:29:31 -0800121static long comedi_unlocked_ioctl(struct file *file, unsigned int cmd,
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800122 unsigned long arg)
David Schleefed9eccb2008-11-04 20:29:31 -0800123{
124 const unsigned minor = iminor(file->f_dentry->d_inode);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800125 struct comedi_device_file_info *dev_file_info =
126 comedi_get_device_file_info(minor);
Bill Pemberton71b5f4f2009-03-16 22:05:08 -0400127 struct comedi_device *dev;
David Schleefed9eccb2008-11-04 20:29:31 -0800128 int rc;
129
Frank Mori Hess53b670a2008-12-15 13:48:47 +0000130 if (dev_file_info == NULL || dev_file_info->device == NULL)
131 return -ENODEV;
132 dev = dev_file_info->device;
133
David Schleefed9eccb2008-11-04 20:29:31 -0800134 mutex_lock(&dev->mutex);
135
136 /* Device config is special, because it must work on
137 * an unconfigured device. */
138 if (cmd == COMEDI_DEVCONFIG) {
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700139 rc = do_devconfig_ioctl(dev,
140 (struct comedi_devconfig __user *)arg);
David Schleefed9eccb2008-11-04 20:29:31 -0800141 goto done;
142 }
143
144 if (!dev->attached) {
145 DPRINTK("no driver configured on /dev/comedi%i\n", dev->minor);
146 rc = -ENODEV;
147 goto done;
148 }
149
150 switch (cmd) {
151 case COMEDI_BUFCONFIG:
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700152 rc = do_bufconfig_ioctl(dev,
153 (struct comedi_bufconfig __user *)arg);
David Schleefed9eccb2008-11-04 20:29:31 -0800154 break;
155 case COMEDI_DEVINFO:
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700156 rc = do_devinfo_ioctl(dev, (struct comedi_devinfo __user *)arg,
157 file);
David Schleefed9eccb2008-11-04 20:29:31 -0800158 break;
159 case COMEDI_SUBDINFO:
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700160 rc = do_subdinfo_ioctl(dev,
161 (struct comedi_subdinfo __user *)arg,
162 file);
David Schleefed9eccb2008-11-04 20:29:31 -0800163 break;
164 case COMEDI_CHANINFO:
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700165 rc = do_chaninfo_ioctl(dev, (void __user *)arg);
David Schleefed9eccb2008-11-04 20:29:31 -0800166 break;
167 case COMEDI_RANGEINFO:
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700168 rc = do_rangeinfo_ioctl(dev, (void __user *)arg);
David Schleefed9eccb2008-11-04 20:29:31 -0800169 break;
170 case COMEDI_BUFINFO:
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700171 rc = do_bufinfo_ioctl(dev,
172 (struct comedi_bufinfo __user *)arg);
David Schleefed9eccb2008-11-04 20:29:31 -0800173 break;
174 case COMEDI_LOCK:
175 rc = do_lock_ioctl(dev, arg, file);
176 break;
177 case COMEDI_UNLOCK:
178 rc = do_unlock_ioctl(dev, arg, file);
179 break;
180 case COMEDI_CANCEL:
181 rc = do_cancel_ioctl(dev, arg, file);
182 break;
183 case COMEDI_CMD:
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700184 rc = do_cmd_ioctl(dev, (struct comedi_cmd __user *)arg, file);
David Schleefed9eccb2008-11-04 20:29:31 -0800185 break;
186 case COMEDI_CMDTEST:
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700187 rc = do_cmdtest_ioctl(dev, (struct comedi_cmd __user *)arg,
188 file);
David Schleefed9eccb2008-11-04 20:29:31 -0800189 break;
190 case COMEDI_INSNLIST:
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700191 rc = do_insnlist_ioctl(dev,
192 (struct comedi_insnlist __user *)arg,
193 file);
David Schleefed9eccb2008-11-04 20:29:31 -0800194 break;
195 case COMEDI_INSN:
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700196 rc = do_insn_ioctl(dev, (struct comedi_insn __user *)arg,
197 file);
David Schleefed9eccb2008-11-04 20:29:31 -0800198 break;
199 case COMEDI_POLL:
200 rc = do_poll_ioctl(dev, arg, file);
201 break;
202 default:
203 rc = -ENOTTY;
204 break;
205 }
206
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800207done:
David Schleefed9eccb2008-11-04 20:29:31 -0800208 mutex_unlock(&dev->mutex);
209 return rc;
210}
211
212/*
213 COMEDI_DEVCONFIG
214 device config ioctl
215
216 arg:
217 pointer to devconfig structure
218
219 reads:
220 devconfig structure at arg
221
222 writes:
223 none
224*/
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530225static int do_devconfig_ioctl(struct comedi_device *dev,
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700226 struct comedi_devconfig __user *arg)
David Schleefed9eccb2008-11-04 20:29:31 -0800227{
Bill Pemberton0707bb02009-03-16 22:06:20 -0400228 struct comedi_devconfig it;
David Schleefed9eccb2008-11-04 20:29:31 -0800229 int ret;
230 unsigned char *aux_data = NULL;
231 int aux_len;
232
233 if (!capable(CAP_SYS_ADMIN))
234 return -EPERM;
235
236 if (arg == NULL) {
237 if (is_device_busy(dev))
238 return -EBUSY;
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800239 if (dev->attached) {
David Schleefed9eccb2008-11-04 20:29:31 -0800240 struct module *driver_module = dev->driver->module;
241 comedi_device_detach(dev);
242 module_put(driver_module);
243 }
244 return 0;
245 }
246
Bill Pemberton0707bb02009-03-16 22:06:20 -0400247 if (copy_from_user(&it, arg, sizeof(struct comedi_devconfig)))
David Schleefed9eccb2008-11-04 20:29:31 -0800248 return -EFAULT;
249
250 it.board_name[COMEDI_NAMELEN - 1] = 0;
251
252 if (comedi_aux_data(it.options, 0) &&
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800253 it.options[COMEDI_DEVCONF_AUX_DATA_LENGTH]) {
David Schleefed9eccb2008-11-04 20:29:31 -0800254 int bit_shift;
255 aux_len = it.options[COMEDI_DEVCONF_AUX_DATA_LENGTH];
256 if (aux_len < 0)
257 return -EFAULT;
258
259 aux_data = vmalloc(aux_len);
260 if (!aux_data)
261 return -ENOMEM;
262
263 if (copy_from_user(aux_data,
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800264 comedi_aux_data(it.options, 0), aux_len)) {
David Schleefed9eccb2008-11-04 20:29:31 -0800265 vfree(aux_data);
266 return -EFAULT;
267 }
268 it.options[COMEDI_DEVCONF_AUX_DATA_LO] =
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800269 (unsigned long)aux_data;
David Schleefed9eccb2008-11-04 20:29:31 -0800270 if (sizeof(void *) > sizeof(int)) {
271 bit_shift = sizeof(int) * 8;
272 it.options[COMEDI_DEVCONF_AUX_DATA_HI] =
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800273 ((unsigned long)aux_data) >> bit_shift;
David Schleefed9eccb2008-11-04 20:29:31 -0800274 } else
275 it.options[COMEDI_DEVCONF_AUX_DATA_HI] = 0;
276 }
277
278 ret = comedi_device_attach(dev, &it);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800279 if (ret == 0) {
280 if (!try_module_get(dev->driver->module)) {
David Schleefed9eccb2008-11-04 20:29:31 -0800281 comedi_device_detach(dev);
282 return -ENOSYS;
283 }
284 }
285
286 if (aux_data)
287 vfree(aux_data);
288
289 return ret;
290}
291
292/*
293 COMEDI_BUFCONFIG
294 buffer configuration ioctl
295
296 arg:
297 pointer to bufconfig structure
298
299 reads:
300 bufconfig at arg
301
302 writes:
303 modified bufconfig at arg
304
305*/
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700306static int do_bufconfig_ioctl(struct comedi_device *dev,
307 struct comedi_bufconfig __user *arg)
David Schleefed9eccb2008-11-04 20:29:31 -0800308{
Bill Pembertonbe6aba42009-03-16 22:06:37 -0400309 struct comedi_bufconfig bc;
Bill Pembertond1636792009-03-16 22:05:20 -0400310 struct comedi_async *async;
Bill Pemberton34c43922009-03-16 22:05:14 -0400311 struct comedi_subdevice *s;
Frank Mori Hess883db3d2009-04-14 11:21:41 -0400312 int retval = 0;
David Schleefed9eccb2008-11-04 20:29:31 -0800313
Bill Pembertonbe6aba42009-03-16 22:06:37 -0400314 if (copy_from_user(&bc, arg, sizeof(struct comedi_bufconfig)))
David Schleefed9eccb2008-11-04 20:29:31 -0800315 return -EFAULT;
316
317 if (bc.subdevice >= dev->n_subdevices || bc.subdevice < 0)
318 return -EINVAL;
319
320 s = dev->subdevices + bc.subdevice;
321 async = s->async;
322
323 if (!async) {
324 DPRINTK("subdevice does not have async capability\n");
325 bc.size = 0;
326 bc.maximum_size = 0;
327 goto copyback;
328 }
329
330 if (bc.maximum_size) {
331 if (!capable(CAP_SYS_ADMIN))
332 return -EPERM;
333
334 async->max_bufsize = bc.maximum_size;
335 }
336
337 if (bc.size) {
Frank Mori Hess883db3d2009-04-14 11:21:41 -0400338 retval = resize_async_buffer(dev, s, async, bc.size);
339 if (retval < 0)
340 return retval;
David Schleefed9eccb2008-11-04 20:29:31 -0800341 }
342
343 bc.size = async->prealloc_bufsz;
344 bc.maximum_size = async->max_bufsize;
345
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800346copyback:
Bill Pembertonbe6aba42009-03-16 22:06:37 -0400347 if (copy_to_user(arg, &bc, sizeof(struct comedi_bufconfig)))
David Schleefed9eccb2008-11-04 20:29:31 -0800348 return -EFAULT;
349
350 return 0;
351}
352
353/*
354 COMEDI_DEVINFO
355 device info ioctl
356
357 arg:
358 pointer to devinfo structure
359
360 reads:
361 none
362
363 writes:
364 devinfo structure
365
366*/
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530367static int do_devinfo_ioctl(struct comedi_device *dev,
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700368 struct comedi_devinfo __user *arg,
369 struct file *file)
David Schleefed9eccb2008-11-04 20:29:31 -0800370{
Bill Pemberton063db042009-03-16 22:06:15 -0400371 struct comedi_devinfo devinfo;
David Schleefed9eccb2008-11-04 20:29:31 -0800372 const unsigned minor = iminor(file->f_dentry->d_inode);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800373 struct comedi_device_file_info *dev_file_info =
374 comedi_get_device_file_info(minor);
Bill Pemberton34c43922009-03-16 22:05:14 -0400375 struct comedi_subdevice *read_subdev =
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800376 comedi_get_read_subdevice(dev_file_info);
Bill Pemberton34c43922009-03-16 22:05:14 -0400377 struct comedi_subdevice *write_subdev =
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800378 comedi_get_write_subdevice(dev_file_info);
David Schleefed9eccb2008-11-04 20:29:31 -0800379
380 memset(&devinfo, 0, sizeof(devinfo));
381
382 /* fill devinfo structure */
383 devinfo.version_code = COMEDI_VERSION_CODE;
384 devinfo.n_subdevs = dev->n_subdevices;
385 memcpy(devinfo.driver_name, dev->driver->driver_name, COMEDI_NAMELEN);
386 memcpy(devinfo.board_name, dev->board_name, COMEDI_NAMELEN);
387
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800388 if (read_subdev)
David Schleefed9eccb2008-11-04 20:29:31 -0800389 devinfo.read_subdevice = read_subdev - dev->subdevices;
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800390 else
David Schleefed9eccb2008-11-04 20:29:31 -0800391 devinfo.read_subdevice = -1;
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800392
393 if (write_subdev)
David Schleefed9eccb2008-11-04 20:29:31 -0800394 devinfo.write_subdevice = write_subdev - dev->subdevices;
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800395 else
David Schleefed9eccb2008-11-04 20:29:31 -0800396 devinfo.write_subdevice = -1;
David Schleefed9eccb2008-11-04 20:29:31 -0800397
Bill Pemberton063db042009-03-16 22:06:15 -0400398 if (copy_to_user(arg, &devinfo, sizeof(struct comedi_devinfo)))
David Schleefed9eccb2008-11-04 20:29:31 -0800399 return -EFAULT;
400
401 return 0;
402}
403
404/*
405 COMEDI_SUBDINFO
406 subdevice info ioctl
407
408 arg:
409 pointer to array of subdevice info structures
410
411 reads:
412 none
413
414 writes:
415 array of subdevice info structures at arg
416
417*/
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530418static int do_subdinfo_ioctl(struct comedi_device *dev,
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700419 struct comedi_subdinfo __user *arg, void *file)
David Schleefed9eccb2008-11-04 20:29:31 -0800420{
421 int ret, i;
Bill Pembertonbd52efb2009-03-16 22:06:09 -0400422 struct comedi_subdinfo *tmp, *us;
Bill Pemberton34c43922009-03-16 22:05:14 -0400423 struct comedi_subdevice *s;
David Schleefed9eccb2008-11-04 20:29:31 -0800424
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530425 tmp =
426 kcalloc(dev->n_subdevices, sizeof(struct comedi_subdinfo),
427 GFP_KERNEL);
David Schleefed9eccb2008-11-04 20:29:31 -0800428 if (!tmp)
429 return -ENOMEM;
430
431 /* fill subdinfo structs */
432 for (i = 0; i < dev->n_subdevices; i++) {
433 s = dev->subdevices + i;
434 us = tmp + i;
435
436 us->type = s->type;
437 us->n_chan = s->n_chan;
438 us->subd_flags = s->subdev_flags;
439 if (comedi_get_subdevice_runflags(s) & SRF_RUNNING)
440 us->subd_flags |= SDF_RUNNING;
441#define TIMER_nanosec 5 /* backwards compatibility */
442 us->timer_type = TIMER_nanosec;
443 us->len_chanlist = s->len_chanlist;
444 us->maxdata = s->maxdata;
445 if (s->range_table) {
446 us->range_type =
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800447 (i << 24) | (0 << 16) | (s->range_table->length);
David Schleefed9eccb2008-11-04 20:29:31 -0800448 } else {
449 us->range_type = 0; /* XXX */
450 }
451 us->flags = s->flags;
452
453 if (s->busy)
454 us->subd_flags |= SDF_BUSY;
455 if (s->busy == file)
456 us->subd_flags |= SDF_BUSY_OWNER;
457 if (s->lock)
458 us->subd_flags |= SDF_LOCKED;
459 if (s->lock == file)
460 us->subd_flags |= SDF_LOCK_OWNER;
461 if (!s->maxdata && s->maxdata_list)
462 us->subd_flags |= SDF_MAXDATA;
463 if (s->flaglist)
464 us->subd_flags |= SDF_FLAGS;
465 if (s->range_table_list)
466 us->subd_flags |= SDF_RANGETYPE;
467 if (s->do_cmd)
468 us->subd_flags |= SDF_CMD;
469
470 if (s->insn_bits != &insn_inval)
471 us->insn_bits_support = COMEDI_SUPPORTED;
472 else
473 us->insn_bits_support = COMEDI_UNSUPPORTED;
474
475 us->settling_time_0 = s->settling_time_0;
476 }
477
478 ret = copy_to_user(arg, tmp,
Bill Pembertonbd52efb2009-03-16 22:06:09 -0400479 dev->n_subdevices * sizeof(struct comedi_subdinfo));
David Schleefed9eccb2008-11-04 20:29:31 -0800480
481 kfree(tmp);
482
483 return ret ? -EFAULT : 0;
484}
485
486/*
487 COMEDI_CHANINFO
488 subdevice info ioctl
489
490 arg:
491 pointer to chaninfo structure
492
493 reads:
494 chaninfo structure at arg
495
496 writes:
497 arrays at elements of chaninfo structure
498
499*/
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530500static int do_chaninfo_ioctl(struct comedi_device *dev,
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700501 struct comedi_chaninfo __user *arg)
David Schleefed9eccb2008-11-04 20:29:31 -0800502{
Bill Pemberton34c43922009-03-16 22:05:14 -0400503 struct comedi_subdevice *s;
Bill Pembertona18b4162009-03-16 22:06:04 -0400504 struct comedi_chaninfo it;
David Schleefed9eccb2008-11-04 20:29:31 -0800505
Bill Pembertona18b4162009-03-16 22:06:04 -0400506 if (copy_from_user(&it, arg, sizeof(struct comedi_chaninfo)))
David Schleefed9eccb2008-11-04 20:29:31 -0800507 return -EFAULT;
508
509 if (it.subdev >= dev->n_subdevices)
510 return -EINVAL;
511 s = dev->subdevices + it.subdev;
512
513 if (it.maxdata_list) {
514 if (s->maxdata || !s->maxdata_list)
515 return -EINVAL;
516 if (copy_to_user(it.maxdata_list, s->maxdata_list,
Bill Pemberton790c5542009-03-16 22:05:02 -0400517 s->n_chan * sizeof(unsigned int)))
David Schleefed9eccb2008-11-04 20:29:31 -0800518 return -EFAULT;
519 }
520
521 if (it.flaglist) {
522 if (!s->flaglist)
523 return -EINVAL;
524 if (copy_to_user(it.flaglist, s->flaglist,
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800525 s->n_chan * sizeof(unsigned int)))
David Schleefed9eccb2008-11-04 20:29:31 -0800526 return -EFAULT;
527 }
528
529 if (it.rangelist) {
530 int i;
531
532 if (!s->range_table_list)
533 return -EINVAL;
534 for (i = 0; i < s->n_chan; i++) {
535 int x;
536
537 x = (dev->minor << 28) | (it.subdev << 24) | (i << 16) |
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800538 (s->range_table_list[i]->length);
David Schleefed9eccb2008-11-04 20:29:31 -0800539 put_user(x, it.rangelist + i);
540 }
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800541#if 0
542 if (copy_to_user(it.rangelist, s->range_type_list,
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530543 s->n_chan * sizeof(unsigned int)))
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800544 return -EFAULT;
545#endif
David Schleefed9eccb2008-11-04 20:29:31 -0800546 }
547
548 return 0;
549}
550
551 /*
552 COMEDI_BUFINFO
553 buffer information ioctl
554
555 arg:
556 pointer to bufinfo structure
557
558 reads:
559 bufinfo at arg
560
561 writes:
562 modified bufinfo at arg
563
564 */
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700565static int do_bufinfo_ioctl(struct comedi_device *dev,
566 struct comedi_bufinfo __user *arg)
David Schleefed9eccb2008-11-04 20:29:31 -0800567{
Bill Pemberton9aa53392009-03-16 22:06:42 -0400568 struct comedi_bufinfo bi;
Bill Pemberton34c43922009-03-16 22:05:14 -0400569 struct comedi_subdevice *s;
Bill Pembertond1636792009-03-16 22:05:20 -0400570 struct comedi_async *async;
David Schleefed9eccb2008-11-04 20:29:31 -0800571
Bill Pemberton9aa53392009-03-16 22:06:42 -0400572 if (copy_from_user(&bi, arg, sizeof(struct comedi_bufinfo)))
David Schleefed9eccb2008-11-04 20:29:31 -0800573 return -EFAULT;
574
575 if (bi.subdevice >= dev->n_subdevices || bi.subdevice < 0)
576 return -EINVAL;
577
578 s = dev->subdevices + bi.subdevice;
579 async = s->async;
580
581 if (!async) {
582 DPRINTK("subdevice does not have async capability\n");
583 bi.buf_write_ptr = 0;
584 bi.buf_read_ptr = 0;
585 bi.buf_write_count = 0;
586 bi.buf_read_count = 0;
Ian Abbott4772c012010-05-19 18:09:49 +0100587 bi.bytes_read = 0;
588 bi.bytes_written = 0;
David Schleefed9eccb2008-11-04 20:29:31 -0800589 goto copyback;
590 }
591
592 if (bi.bytes_read && (s->subdev_flags & SDF_CMD_READ)) {
593 bi.bytes_read = comedi_buf_read_alloc(async, bi.bytes_read);
594 comedi_buf_read_free(async, bi.bytes_read);
595
596 if (!(comedi_get_subdevice_runflags(s) & (SRF_ERROR |
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800597 SRF_RUNNING))
598 && async->buf_write_count == async->buf_read_count) {
David Schleefed9eccb2008-11-04 20:29:31 -0800599 do_become_nonbusy(dev, s);
600 }
601 }
602
603 if (bi.bytes_written && (s->subdev_flags & SDF_CMD_WRITE)) {
604 bi.bytes_written =
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800605 comedi_buf_write_alloc(async, bi.bytes_written);
David Schleefed9eccb2008-11-04 20:29:31 -0800606 comedi_buf_write_free(async, bi.bytes_written);
607 }
608
609 bi.buf_write_count = async->buf_write_count;
610 bi.buf_write_ptr = async->buf_write_ptr;
611 bi.buf_read_count = async->buf_read_count;
612 bi.buf_read_ptr = async->buf_read_ptr;
613
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800614copyback:
Bill Pemberton9aa53392009-03-16 22:06:42 -0400615 if (copy_to_user(arg, &bi, sizeof(struct comedi_bufinfo)))
David Schleefed9eccb2008-11-04 20:29:31 -0800616 return -EFAULT;
617
618 return 0;
619}
620
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530621static int parse_insn(struct comedi_device *dev, struct comedi_insn *insn,
622 unsigned int *data, void *file);
David Schleefed9eccb2008-11-04 20:29:31 -0800623/*
Pieter De Praetere20617f22010-03-10 09:47:44 +0100624 * COMEDI_INSNLIST
625 * synchronous instructions
David Schleefed9eccb2008-11-04 20:29:31 -0800626 *
Pieter De Praetere20617f22010-03-10 09:47:44 +0100627 * arg:
628 * pointer to sync cmd structure
David Schleefed9eccb2008-11-04 20:29:31 -0800629 *
Pieter De Praetere20617f22010-03-10 09:47:44 +0100630 * reads:
631 * sync cmd struct at arg
632 * instruction list
633 * data (for writes)
David Schleefed9eccb2008-11-04 20:29:31 -0800634 *
Pieter De Praetere20617f22010-03-10 09:47:44 +0100635 * writes:
636 * data (for reads)
David Schleefed9eccb2008-11-04 20:29:31 -0800637 */
638/* arbitrary limits */
639#define MAX_SAMPLES 256
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700640static int do_insnlist_ioctl(struct comedi_device *dev,
641 struct comedi_insnlist __user *arg, void *file)
David Schleefed9eccb2008-11-04 20:29:31 -0800642{
Bill Pembertonda613f42009-03-16 22:05:59 -0400643 struct comedi_insnlist insnlist;
Bill Pemberton90035c02009-03-16 22:05:53 -0400644 struct comedi_insn *insns = NULL;
Bill Pemberton790c5542009-03-16 22:05:02 -0400645 unsigned int *data = NULL;
David Schleefed9eccb2008-11-04 20:29:31 -0800646 int i = 0;
647 int ret = 0;
648
Bill Pembertonda613f42009-03-16 22:05:59 -0400649 if (copy_from_user(&insnlist, arg, sizeof(struct comedi_insnlist)))
David Schleefed9eccb2008-11-04 20:29:31 -0800650 return -EFAULT;
651
Bill Pemberton790c5542009-03-16 22:05:02 -0400652 data = kmalloc(sizeof(unsigned int) * MAX_SAMPLES, GFP_KERNEL);
David Schleefed9eccb2008-11-04 20:29:31 -0800653 if (!data) {
654 DPRINTK("kmalloc failed\n");
655 ret = -ENOMEM;
656 goto error;
657 }
658
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530659 insns =
660 kmalloc(sizeof(struct comedi_insn) * insnlist.n_insns, GFP_KERNEL);
David Schleefed9eccb2008-11-04 20:29:31 -0800661 if (!insns) {
662 DPRINTK("kmalloc failed\n");
663 ret = -ENOMEM;
664 goto error;
665 }
666
667 if (copy_from_user(insns, insnlist.insns,
Bill Pemberton90035c02009-03-16 22:05:53 -0400668 sizeof(struct comedi_insn) * insnlist.n_insns)) {
David Schleefed9eccb2008-11-04 20:29:31 -0800669 DPRINTK("copy_from_user failed\n");
670 ret = -EFAULT;
671 goto error;
672 }
673
674 for (i = 0; i < insnlist.n_insns; i++) {
675 if (insns[i].n > MAX_SAMPLES) {
676 DPRINTK("number of samples too large\n");
677 ret = -EINVAL;
678 goto error;
679 }
680 if (insns[i].insn & INSN_MASK_WRITE) {
681 if (copy_from_user(data, insns[i].data,
Bill Pemberton790c5542009-03-16 22:05:02 -0400682 insns[i].n * sizeof(unsigned int))) {
David Schleefed9eccb2008-11-04 20:29:31 -0800683 DPRINTK("copy_from_user failed\n");
684 ret = -EFAULT;
685 goto error;
686 }
687 }
688 ret = parse_insn(dev, insns + i, data, file);
689 if (ret < 0)
690 goto error;
691 if (insns[i].insn & INSN_MASK_READ) {
692 if (copy_to_user(insns[i].data, data,
Bill Pemberton790c5542009-03-16 22:05:02 -0400693 insns[i].n * sizeof(unsigned int))) {
David Schleefed9eccb2008-11-04 20:29:31 -0800694 DPRINTK("copy_to_user failed\n");
695 ret = -EFAULT;
696 goto error;
697 }
698 }
699 if (need_resched())
700 schedule();
701 }
702
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800703error:
704 kfree(insns);
705 kfree(data);
David Schleefed9eccb2008-11-04 20:29:31 -0800706
707 if (ret < 0)
708 return ret;
709 return i;
710}
711
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530712static int check_insn_config_length(struct comedi_insn *insn,
713 unsigned int *data)
David Schleefed9eccb2008-11-04 20:29:31 -0800714{
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800715 if (insn->n < 1)
716 return -EINVAL;
David Schleefed9eccb2008-11-04 20:29:31 -0800717
718 switch (data[0]) {
719 case INSN_CONFIG_DIO_OUTPUT:
720 case INSN_CONFIG_DIO_INPUT:
721 case INSN_CONFIG_DISARM:
722 case INSN_CONFIG_RESET:
723 if (insn->n == 1)
724 return 0;
725 break;
726 case INSN_CONFIG_ARM:
727 case INSN_CONFIG_DIO_QUERY:
728 case INSN_CONFIG_BLOCK_SIZE:
729 case INSN_CONFIG_FILTER:
730 case INSN_CONFIG_SERIAL_CLOCK:
731 case INSN_CONFIG_BIDIRECTIONAL_DATA:
732 case INSN_CONFIG_ALT_SOURCE:
733 case INSN_CONFIG_SET_COUNTER_MODE:
734 case INSN_CONFIG_8254_READ_STATUS:
735 case INSN_CONFIG_SET_ROUTING:
736 case INSN_CONFIG_GET_ROUTING:
737 case INSN_CONFIG_GET_PWM_STATUS:
738 case INSN_CONFIG_PWM_SET_PERIOD:
739 case INSN_CONFIG_PWM_GET_PERIOD:
740 if (insn->n == 2)
741 return 0;
742 break;
743 case INSN_CONFIG_SET_GATE_SRC:
744 case INSN_CONFIG_GET_GATE_SRC:
745 case INSN_CONFIG_SET_CLOCK_SRC:
746 case INSN_CONFIG_GET_CLOCK_SRC:
747 case INSN_CONFIG_SET_OTHER_SRC:
748 case INSN_CONFIG_GET_COUNTER_STATUS:
749 case INSN_CONFIG_PWM_SET_H_BRIDGE:
750 case INSN_CONFIG_PWM_GET_H_BRIDGE:
751 case INSN_CONFIG_GET_HARDWARE_BUFFER_SIZE:
752 if (insn->n == 3)
753 return 0;
754 break;
755 case INSN_CONFIG_PWM_OUTPUT:
756 case INSN_CONFIG_ANALOG_TRIG:
757 if (insn->n == 5)
758 return 0;
759 break;
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530760 /* by default we allow the insn since we don't have checks for
761 * all possible cases yet */
David Schleefed9eccb2008-11-04 20:29:31 -0800762 default:
Mark Rankilor3fffdf22010-04-29 18:17:16 +0800763 printk(KERN_WARNING
764 "comedi: no check for data length of config insn id "
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530765 "%i is implemented.\n"
766 " Add a check to %s in %s.\n"
767 " Assuming n=%i is correct.\n", data[0], __func__,
768 __FILE__, insn->n);
David Schleefed9eccb2008-11-04 20:29:31 -0800769 return 0;
770 break;
771 }
772 return -EINVAL;
773}
774
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530775static int parse_insn(struct comedi_device *dev, struct comedi_insn *insn,
776 unsigned int *data, void *file)
David Schleefed9eccb2008-11-04 20:29:31 -0800777{
Bill Pemberton34c43922009-03-16 22:05:14 -0400778 struct comedi_subdevice *s;
David Schleefed9eccb2008-11-04 20:29:31 -0800779 int ret = 0;
780 int i;
781
782 if (insn->insn & INSN_MASK_SPECIAL) {
783 /* a non-subdevice instruction */
784
785 switch (insn->insn) {
786 case INSN_GTOD:
787 {
788 struct timeval tv;
789
790 if (insn->n != 2) {
791 ret = -EINVAL;
792 break;
793 }
794
795 do_gettimeofday(&tv);
796 data[0] = tv.tv_sec;
797 data[1] = tv.tv_usec;
798 ret = 2;
799
800 break;
801 }
802 case INSN_WAIT:
803 if (insn->n != 1 || data[0] >= 100000) {
804 ret = -EINVAL;
805 break;
806 }
807 udelay(data[0] / 1000);
808 ret = 1;
809 break;
810 case INSN_INTTRIG:
811 if (insn->n != 1) {
812 ret = -EINVAL;
813 break;
814 }
815 if (insn->subdev >= dev->n_subdevices) {
816 DPRINTK("%d not usable subdevice\n",
817 insn->subdev);
818 ret = -EINVAL;
819 break;
820 }
821 s = dev->subdevices + insn->subdev;
822 if (!s->async) {
823 DPRINTK("no async\n");
824 ret = -EINVAL;
825 break;
826 }
827 if (!s->async->inttrig) {
828 DPRINTK("no inttrig\n");
829 ret = -EAGAIN;
830 break;
831 }
832 ret = s->async->inttrig(dev, s, insn->data[0]);
833 if (ret >= 0)
834 ret = 1;
835 break;
836 default:
837 DPRINTK("invalid insn\n");
838 ret = -EINVAL;
839 break;
840 }
841 } else {
842 /* a subdevice instruction */
Bill Pemberton790c5542009-03-16 22:05:02 -0400843 unsigned int maxdata;
David Schleefed9eccb2008-11-04 20:29:31 -0800844
845 if (insn->subdev >= dev->n_subdevices) {
846 DPRINTK("subdevice %d out of range\n", insn->subdev);
847 ret = -EINVAL;
848 goto out;
849 }
850 s = dev->subdevices + insn->subdev;
851
852 if (s->type == COMEDI_SUBD_UNUSED) {
853 DPRINTK("%d not usable subdevice\n", insn->subdev);
854 ret = -EIO;
855 goto out;
856 }
857
858 /* are we locked? (ioctl lock) */
859 if (s->lock && s->lock != file) {
860 DPRINTK("device locked\n");
861 ret = -EACCES;
862 goto out;
863 }
864
Greg Kroah-Hartman0fd0ca72010-05-01 12:33:17 -0700865 ret = comedi_check_chanlist(s, 1, &insn->chanspec);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800866 if (ret < 0) {
David Schleefed9eccb2008-11-04 20:29:31 -0800867 ret = -EINVAL;
868 DPRINTK("bad chanspec\n");
869 goto out;
870 }
871
872 if (s->busy) {
873 ret = -EBUSY;
874 goto out;
875 }
876 /* This looks arbitrary. It is. */
877 s->busy = &parse_insn;
878 switch (insn->insn) {
879 case INSN_READ:
880 ret = s->insn_read(dev, s, insn, data);
881 break;
882 case INSN_WRITE:
883 maxdata = s->maxdata_list
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800884 ? s->maxdata_list[CR_CHAN(insn->chanspec)]
885 : s->maxdata;
David Schleefed9eccb2008-11-04 20:29:31 -0800886 for (i = 0; i < insn->n; ++i) {
887 if (data[i] > maxdata) {
888 ret = -EINVAL;
889 DPRINTK("bad data value(s)\n");
890 break;
891 }
892 }
893 if (ret == 0)
894 ret = s->insn_write(dev, s, insn, data);
895 break;
896 case INSN_BITS:
897 if (insn->n != 2) {
898 ret = -EINVAL;
899 break;
900 }
901 ret = s->insn_bits(dev, s, insn, data);
902 break;
903 case INSN_CONFIG:
904 ret = check_insn_config_length(insn, data);
905 if (ret)
906 break;
907 ret = s->insn_config(dev, s, insn, data);
908 break;
909 default:
910 ret = -EINVAL;
911 break;
912 }
913
914 s->busy = NULL;
915 }
916
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800917out:
David Schleefed9eccb2008-11-04 20:29:31 -0800918 return ret;
919}
920
921/*
Pieter De Praetere20617f22010-03-10 09:47:44 +0100922 * COMEDI_INSN
923 * synchronous instructions
David Schleefed9eccb2008-11-04 20:29:31 -0800924 *
Pieter De Praetere20617f22010-03-10 09:47:44 +0100925 * arg:
926 * pointer to insn
David Schleefed9eccb2008-11-04 20:29:31 -0800927 *
Pieter De Praetere20617f22010-03-10 09:47:44 +0100928 * reads:
929 * struct comedi_insn struct at arg
930 * data (for writes)
David Schleefed9eccb2008-11-04 20:29:31 -0800931 *
Pieter De Praetere20617f22010-03-10 09:47:44 +0100932 * writes:
933 * data (for reads)
David Schleefed9eccb2008-11-04 20:29:31 -0800934 */
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700935static int do_insn_ioctl(struct comedi_device *dev,
936 struct comedi_insn __user *arg, void *file)
David Schleefed9eccb2008-11-04 20:29:31 -0800937{
Bill Pemberton90035c02009-03-16 22:05:53 -0400938 struct comedi_insn insn;
Bill Pemberton790c5542009-03-16 22:05:02 -0400939 unsigned int *data = NULL;
David Schleefed9eccb2008-11-04 20:29:31 -0800940 int ret = 0;
941
Bill Pemberton790c5542009-03-16 22:05:02 -0400942 data = kmalloc(sizeof(unsigned int) * MAX_SAMPLES, GFP_KERNEL);
David Schleefed9eccb2008-11-04 20:29:31 -0800943 if (!data) {
944 ret = -ENOMEM;
945 goto error;
946 }
947
Bill Pemberton90035c02009-03-16 22:05:53 -0400948 if (copy_from_user(&insn, arg, sizeof(struct comedi_insn))) {
David Schleefed9eccb2008-11-04 20:29:31 -0800949 ret = -EFAULT;
950 goto error;
951 }
952
953 /* This is where the behavior of insn and insnlist deviate. */
954 if (insn.n > MAX_SAMPLES)
955 insn.n = MAX_SAMPLES;
956 if (insn.insn & INSN_MASK_WRITE) {
Mark21fe2ee2010-05-13 17:44:39 +0800957 if (copy_from_user(data,
958 insn.data,
959 insn.n * sizeof(unsigned int))) {
David Schleefed9eccb2008-11-04 20:29:31 -0800960 ret = -EFAULT;
961 goto error;
962 }
963 }
964 ret = parse_insn(dev, &insn, data, file);
965 if (ret < 0)
966 goto error;
967 if (insn.insn & INSN_MASK_READ) {
Mark21fe2ee2010-05-13 17:44:39 +0800968 if (copy_to_user(insn.data,
969 data,
970 insn.n * sizeof(unsigned int))) {
David Schleefed9eccb2008-11-04 20:29:31 -0800971 ret = -EFAULT;
972 goto error;
973 }
974 }
975 ret = insn.n;
976
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -0800977error:
978 kfree(data);
David Schleefed9eccb2008-11-04 20:29:31 -0800979
980 return ret;
981}
982
Greg Kroah-Hartman181bd672010-05-03 15:15:06 -0700983static void comedi_set_subdevice_runflags(struct comedi_subdevice *s,
984 unsigned mask, unsigned bits)
985{
986 unsigned long flags;
987
988 spin_lock_irqsave(&s->spin_lock, flags);
989 s->runflags &= ~mask;
990 s->runflags |= (bits & mask);
991 spin_unlock_irqrestore(&s->spin_lock, flags);
992}
993
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -0700994static int do_cmd_ioctl(struct comedi_device *dev,
995 struct comedi_cmd __user *cmd, void *file)
David Schleefed9eccb2008-11-04 20:29:31 -0800996{
Bill Pembertonea6d0d42009-03-16 22:05:47 -0400997 struct comedi_cmd user_cmd;
Bill Pemberton34c43922009-03-16 22:05:14 -0400998 struct comedi_subdevice *s;
Bill Pembertond1636792009-03-16 22:05:20 -0400999 struct comedi_async *async;
David Schleefed9eccb2008-11-04 20:29:31 -08001000 int ret = 0;
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -07001001 unsigned int __user *chanlist_saver = NULL;
David Schleefed9eccb2008-11-04 20:29:31 -08001002
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -07001003 if (copy_from_user(&user_cmd, cmd, sizeof(struct comedi_cmd))) {
David Schleefed9eccb2008-11-04 20:29:31 -08001004 DPRINTK("bad cmd address\n");
1005 return -EFAULT;
1006 }
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001007 /* save user's chanlist pointer so it can be restored later */
David Schleefed9eccb2008-11-04 20:29:31 -08001008 chanlist_saver = user_cmd.chanlist;
1009
1010 if (user_cmd.subdev >= dev->n_subdevices) {
1011 DPRINTK("%d no such subdevice\n", user_cmd.subdev);
1012 return -ENODEV;
1013 }
1014
1015 s = dev->subdevices + user_cmd.subdev;
1016 async = s->async;
1017
1018 if (s->type == COMEDI_SUBD_UNUSED) {
1019 DPRINTK("%d not valid subdevice\n", user_cmd.subdev);
1020 return -EIO;
1021 }
1022
1023 if (!s->do_cmd || !s->do_cmdtest || !s->async) {
1024 DPRINTK("subdevice %i does not support commands\n",
1025 user_cmd.subdev);
1026 return -EIO;
1027 }
1028
1029 /* are we locked? (ioctl lock) */
1030 if (s->lock && s->lock != file) {
1031 DPRINTK("subdevice locked\n");
1032 return -EACCES;
1033 }
1034
1035 /* are we busy? */
1036 if (s->busy) {
1037 DPRINTK("subdevice busy\n");
1038 return -EBUSY;
1039 }
1040 s->busy = file;
1041
1042 /* make sure channel/gain list isn't too long */
1043 if (user_cmd.chanlist_len > s->len_chanlist) {
1044 DPRINTK("channel/gain list too long %u > %d\n",
1045 user_cmd.chanlist_len, s->len_chanlist);
1046 ret = -EINVAL;
1047 goto cleanup;
1048 }
1049
1050 /* make sure channel/gain list isn't too short */
1051 if (user_cmd.chanlist_len < 1) {
1052 DPRINTK("channel/gain list too short %u < 1\n",
1053 user_cmd.chanlist_len);
1054 ret = -EINVAL;
1055 goto cleanup;
1056 }
1057
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001058 kfree(async->cmd.chanlist);
David Schleefed9eccb2008-11-04 20:29:31 -08001059 async->cmd = user_cmd;
1060 async->cmd.data = NULL;
1061 /* load channel/gain list */
1062 async->cmd.chanlist =
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001063 kmalloc(async->cmd.chanlist_len * sizeof(int), GFP_KERNEL);
David Schleefed9eccb2008-11-04 20:29:31 -08001064 if (!async->cmd.chanlist) {
1065 DPRINTK("allocation failed\n");
1066 ret = -ENOMEM;
1067 goto cleanup;
1068 }
1069
1070 if (copy_from_user(async->cmd.chanlist, user_cmd.chanlist,
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001071 async->cmd.chanlist_len * sizeof(int))) {
David Schleefed9eccb2008-11-04 20:29:31 -08001072 DPRINTK("fault reading chanlist\n");
1073 ret = -EFAULT;
1074 goto cleanup;
1075 }
1076
1077 /* make sure each element in channel/gain list is valid */
Mark21fe2ee2010-05-13 17:44:39 +08001078 ret = comedi_check_chanlist(s,
1079 async->cmd.chanlist_len,
1080 async->cmd.chanlist);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001081 if (ret < 0) {
David Schleefed9eccb2008-11-04 20:29:31 -08001082 DPRINTK("bad chanlist\n");
1083 goto cleanup;
1084 }
1085
1086 ret = s->do_cmdtest(dev, s, &async->cmd);
1087
1088 if (async->cmd.flags & TRIG_BOGUS || ret) {
1089 DPRINTK("test returned %d\n", ret);
1090 user_cmd = async->cmd;
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001091 /* restore chanlist pointer before copying back */
David Schleefed9eccb2008-11-04 20:29:31 -08001092 user_cmd.chanlist = chanlist_saver;
1093 user_cmd.data = NULL;
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -07001094 if (copy_to_user(cmd, &user_cmd, sizeof(struct comedi_cmd))) {
David Schleefed9eccb2008-11-04 20:29:31 -08001095 DPRINTK("fault writing cmd\n");
1096 ret = -EFAULT;
1097 goto cleanup;
1098 }
1099 ret = -EAGAIN;
1100 goto cleanup;
1101 }
1102
1103 if (!async->prealloc_bufsz) {
1104 ret = -ENOMEM;
1105 DPRINTK("no buffer (?)\n");
1106 goto cleanup;
1107 }
1108
1109 comedi_reset_async_buf(async);
1110
1111 async->cb_mask =
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001112 COMEDI_CB_EOA | COMEDI_CB_BLOCK | COMEDI_CB_ERROR |
1113 COMEDI_CB_OVERFLOW;
1114 if (async->cmd.flags & TRIG_WAKE_EOS)
David Schleefed9eccb2008-11-04 20:29:31 -08001115 async->cb_mask |= COMEDI_CB_EOS;
David Schleefed9eccb2008-11-04 20:29:31 -08001116
1117 comedi_set_subdevice_runflags(s, ~0, SRF_USER | SRF_RUNNING);
1118
David Schleefed9eccb2008-11-04 20:29:31 -08001119 ret = s->do_cmd(dev, s);
1120 if (ret == 0)
1121 return 0;
1122
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001123cleanup:
David Schleefed9eccb2008-11-04 20:29:31 -08001124 do_become_nonbusy(dev, s);
1125
1126 return ret;
1127}
1128
1129/*
1130 COMEDI_CMDTEST
1131 command testing ioctl
1132
1133 arg:
1134 pointer to cmd structure
1135
1136 reads:
1137 cmd structure at arg
1138 channel/range list
1139
1140 writes:
1141 modified cmd structure at arg
1142
1143*/
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -07001144static int do_cmdtest_ioctl(struct comedi_device *dev,
1145 struct comedi_cmd __user *arg, void *file)
David Schleefed9eccb2008-11-04 20:29:31 -08001146{
Bill Pembertonea6d0d42009-03-16 22:05:47 -04001147 struct comedi_cmd user_cmd;
Bill Pemberton34c43922009-03-16 22:05:14 -04001148 struct comedi_subdevice *s;
David Schleefed9eccb2008-11-04 20:29:31 -08001149 int ret = 0;
1150 unsigned int *chanlist = NULL;
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -07001151 unsigned int __user *chanlist_saver = NULL;
David Schleefed9eccb2008-11-04 20:29:31 -08001152
Bill Pembertonea6d0d42009-03-16 22:05:47 -04001153 if (copy_from_user(&user_cmd, arg, sizeof(struct comedi_cmd))) {
David Schleefed9eccb2008-11-04 20:29:31 -08001154 DPRINTK("bad cmd address\n");
1155 return -EFAULT;
1156 }
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001157 /* save user's chanlist pointer so it can be restored later */
David Schleefed9eccb2008-11-04 20:29:31 -08001158 chanlist_saver = user_cmd.chanlist;
1159
1160 if (user_cmd.subdev >= dev->n_subdevices) {
1161 DPRINTK("%d no such subdevice\n", user_cmd.subdev);
1162 return -ENODEV;
1163 }
1164
1165 s = dev->subdevices + user_cmd.subdev;
1166 if (s->type == COMEDI_SUBD_UNUSED) {
1167 DPRINTK("%d not valid subdevice\n", user_cmd.subdev);
1168 return -EIO;
1169 }
1170
1171 if (!s->do_cmd || !s->do_cmdtest) {
1172 DPRINTK("subdevice %i does not support commands\n",
1173 user_cmd.subdev);
1174 return -EIO;
1175 }
1176
1177 /* make sure channel/gain list isn't too long */
1178 if (user_cmd.chanlist_len > s->len_chanlist) {
1179 DPRINTK("channel/gain list too long %d > %d\n",
1180 user_cmd.chanlist_len, s->len_chanlist);
1181 ret = -EINVAL;
1182 goto cleanup;
1183 }
1184
1185 /* load channel/gain list */
1186 if (user_cmd.chanlist) {
1187 chanlist =
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001188 kmalloc(user_cmd.chanlist_len * sizeof(int), GFP_KERNEL);
David Schleefed9eccb2008-11-04 20:29:31 -08001189 if (!chanlist) {
1190 DPRINTK("allocation failed\n");
1191 ret = -ENOMEM;
1192 goto cleanup;
1193 }
1194
1195 if (copy_from_user(chanlist, user_cmd.chanlist,
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001196 user_cmd.chanlist_len * sizeof(int))) {
David Schleefed9eccb2008-11-04 20:29:31 -08001197 DPRINTK("fault reading chanlist\n");
1198 ret = -EFAULT;
1199 goto cleanup;
1200 }
1201
1202 /* make sure each element in channel/gain list is valid */
Greg Kroah-Hartman0fd0ca72010-05-01 12:33:17 -07001203 ret = comedi_check_chanlist(s, user_cmd.chanlist_len, chanlist);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001204 if (ret < 0) {
David Schleefed9eccb2008-11-04 20:29:31 -08001205 DPRINTK("bad chanlist\n");
1206 goto cleanup;
1207 }
1208
1209 user_cmd.chanlist = chanlist;
1210 }
1211
1212 ret = s->do_cmdtest(dev, s, &user_cmd);
1213
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001214 /* restore chanlist pointer before copying back */
David Schleefed9eccb2008-11-04 20:29:31 -08001215 user_cmd.chanlist = chanlist_saver;
1216
Bill Pembertonea6d0d42009-03-16 22:05:47 -04001217 if (copy_to_user(arg, &user_cmd, sizeof(struct comedi_cmd))) {
David Schleefed9eccb2008-11-04 20:29:31 -08001218 DPRINTK("bad cmd address\n");
1219 ret = -EFAULT;
1220 goto cleanup;
1221 }
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001222cleanup:
1223 kfree(chanlist);
David Schleefed9eccb2008-11-04 20:29:31 -08001224
1225 return ret;
1226}
1227
1228/*
1229 COMEDI_LOCK
1230 lock subdevice
1231
1232 arg:
1233 subdevice number
1234
1235 reads:
1236 none
1237
1238 writes:
1239 none
1240
1241*/
1242
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05301243static int do_lock_ioctl(struct comedi_device *dev, unsigned int arg,
1244 void *file)
David Schleefed9eccb2008-11-04 20:29:31 -08001245{
1246 int ret = 0;
1247 unsigned long flags;
Bill Pemberton34c43922009-03-16 22:05:14 -04001248 struct comedi_subdevice *s;
David Schleefed9eccb2008-11-04 20:29:31 -08001249
1250 if (arg >= dev->n_subdevices)
1251 return -EINVAL;
1252 s = dev->subdevices + arg;
1253
Greg Kroah-Hartman5f74ea12009-04-27 14:44:31 -07001254 spin_lock_irqsave(&s->spin_lock, flags);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001255 if (s->busy || s->lock)
David Schleefed9eccb2008-11-04 20:29:31 -08001256 ret = -EBUSY;
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001257 else
David Schleefed9eccb2008-11-04 20:29:31 -08001258 s->lock = file;
Greg Kroah-Hartman5f74ea12009-04-27 14:44:31 -07001259 spin_unlock_irqrestore(&s->spin_lock, flags);
David Schleefed9eccb2008-11-04 20:29:31 -08001260
1261 if (ret < 0)
1262 return ret;
1263
1264#if 0
1265 if (s->lock_f)
1266 ret = s->lock_f(dev, s);
1267#endif
1268
1269 return ret;
1270}
1271
1272/*
1273 COMEDI_UNLOCK
1274 unlock subdevice
1275
1276 arg:
1277 subdevice number
1278
1279 reads:
1280 none
1281
1282 writes:
1283 none
1284
1285 This function isn't protected by the semaphore, since
1286 we already own the lock.
1287*/
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05301288static int do_unlock_ioctl(struct comedi_device *dev, unsigned int arg,
1289 void *file)
David Schleefed9eccb2008-11-04 20:29:31 -08001290{
Bill Pemberton34c43922009-03-16 22:05:14 -04001291 struct comedi_subdevice *s;
David Schleefed9eccb2008-11-04 20:29:31 -08001292
1293 if (arg >= dev->n_subdevices)
1294 return -EINVAL;
1295 s = dev->subdevices + arg;
1296
1297 if (s->busy)
1298 return -EBUSY;
1299
1300 if (s->lock && s->lock != file)
1301 return -EACCES;
1302
1303 if (s->lock == file) {
1304#if 0
1305 if (s->unlock)
1306 s->unlock(dev, s);
1307#endif
1308
1309 s->lock = NULL;
1310 }
1311
1312 return 0;
1313}
1314
1315/*
1316 COMEDI_CANCEL
1317 cancel acquisition ioctl
1318
1319 arg:
1320 subdevice number
1321
1322 reads:
1323 nothing
1324
1325 writes:
1326 nothing
1327
1328*/
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05301329static int do_cancel_ioctl(struct comedi_device *dev, unsigned int arg,
1330 void *file)
David Schleefed9eccb2008-11-04 20:29:31 -08001331{
Bill Pemberton34c43922009-03-16 22:05:14 -04001332 struct comedi_subdevice *s;
David Schleefed9eccb2008-11-04 20:29:31 -08001333
1334 if (arg >= dev->n_subdevices)
1335 return -EINVAL;
1336 s = dev->subdevices + arg;
1337 if (s->async == NULL)
1338 return -EINVAL;
1339
1340 if (s->lock && s->lock != file)
1341 return -EACCES;
1342
1343 if (!s->busy)
1344 return 0;
1345
1346 if (s->busy != file)
1347 return -EBUSY;
1348
1349 return do_cancel(dev, s);
1350}
1351
1352/*
1353 COMEDI_POLL ioctl
1354 instructs driver to synchronize buffers
1355
1356 arg:
1357 subdevice number
1358
1359 reads:
1360 nothing
1361
1362 writes:
1363 nothing
1364
1365*/
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05301366static int do_poll_ioctl(struct comedi_device *dev, unsigned int arg,
1367 void *file)
David Schleefed9eccb2008-11-04 20:29:31 -08001368{
Bill Pemberton34c43922009-03-16 22:05:14 -04001369 struct comedi_subdevice *s;
David Schleefed9eccb2008-11-04 20:29:31 -08001370
1371 if (arg >= dev->n_subdevices)
1372 return -EINVAL;
1373 s = dev->subdevices + arg;
1374
1375 if (s->lock && s->lock != file)
1376 return -EACCES;
1377
1378 if (!s->busy)
1379 return 0;
1380
1381 if (s->busy != file)
1382 return -EBUSY;
1383
1384 if (s->poll)
1385 return s->poll(dev, s);
1386
1387 return -EINVAL;
1388}
1389
Bill Pemberton34c43922009-03-16 22:05:14 -04001390static int do_cancel(struct comedi_device *dev, struct comedi_subdevice *s)
David Schleefed9eccb2008-11-04 20:29:31 -08001391{
1392 int ret = 0;
1393
1394 if ((comedi_get_subdevice_runflags(s) & SRF_RUNNING) && s->cancel)
1395 ret = s->cancel(dev, s);
1396
1397 do_become_nonbusy(dev, s);
1398
1399 return ret;
1400}
1401
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -07001402static void comedi_unmap(struct vm_area_struct *area)
David Schleefed9eccb2008-11-04 20:29:31 -08001403{
Bill Pembertond1636792009-03-16 22:05:20 -04001404 struct comedi_async *async;
Bill Pemberton71b5f4f2009-03-16 22:05:08 -04001405 struct comedi_device *dev;
David Schleefed9eccb2008-11-04 20:29:31 -08001406
1407 async = area->vm_private_data;
1408 dev = async->subdevice->device;
1409
1410 mutex_lock(&dev->mutex);
1411 async->mmap_count--;
1412 mutex_unlock(&dev->mutex);
1413}
1414
1415static struct vm_operations_struct comedi_vm_ops = {
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05301416 .close = comedi_unmap,
David Schleefed9eccb2008-11-04 20:29:31 -08001417};
1418
1419static int comedi_mmap(struct file *file, struct vm_area_struct *vma)
1420{
1421 const unsigned minor = iminor(file->f_dentry->d_inode);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001422 struct comedi_device_file_info *dev_file_info =
1423 comedi_get_device_file_info(minor);
Bill Pemberton71b5f4f2009-03-16 22:05:08 -04001424 struct comedi_device *dev = dev_file_info->device;
Bill Pembertond1636792009-03-16 22:05:20 -04001425 struct comedi_async *async = NULL;
David Schleefed9eccb2008-11-04 20:29:31 -08001426 unsigned long start = vma->vm_start;
1427 unsigned long size;
1428 int n_pages;
1429 int i;
1430 int retval;
Bill Pemberton34c43922009-03-16 22:05:14 -04001431 struct comedi_subdevice *s;
David Schleefed9eccb2008-11-04 20:29:31 -08001432
1433 mutex_lock(&dev->mutex);
1434 if (!dev->attached) {
1435 DPRINTK("no driver configured on comedi%i\n", dev->minor);
1436 retval = -ENODEV;
1437 goto done;
1438 }
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001439 if (vma->vm_flags & VM_WRITE)
David Schleefed9eccb2008-11-04 20:29:31 -08001440 s = comedi_get_write_subdevice(dev_file_info);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001441 else
David Schleefed9eccb2008-11-04 20:29:31 -08001442 s = comedi_get_read_subdevice(dev_file_info);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001443
David Schleefed9eccb2008-11-04 20:29:31 -08001444 if (s == NULL) {
1445 retval = -EINVAL;
1446 goto done;
1447 }
1448 async = s->async;
1449 if (async == NULL) {
1450 retval = -EINVAL;
1451 goto done;
1452 }
1453
1454 if (vma->vm_pgoff != 0) {
1455 DPRINTK("comedi: mmap() offset must be 0.\n");
1456 retval = -EINVAL;
1457 goto done;
1458 }
1459
1460 size = vma->vm_end - vma->vm_start;
1461 if (size > async->prealloc_bufsz) {
1462 retval = -EFAULT;
1463 goto done;
1464 }
1465 if (size & (~PAGE_MASK)) {
1466 retval = -EFAULT;
1467 goto done;
1468 }
1469
1470 n_pages = size >> PAGE_SHIFT;
1471 for (i = 0; i < n_pages; ++i) {
1472 if (remap_pfn_range(vma, start,
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05301473 page_to_pfn(virt_to_page
1474 (async->buf_page_list
1475 [i].virt_addr)), PAGE_SIZE,
1476 PAGE_SHARED)) {
David Schleefed9eccb2008-11-04 20:29:31 -08001477 retval = -EAGAIN;
1478 goto done;
1479 }
1480 start += PAGE_SIZE;
1481 }
1482
1483 vma->vm_ops = &comedi_vm_ops;
1484 vma->vm_private_data = async;
1485
1486 async->mmap_count++;
1487
1488 retval = 0;
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001489done:
David Schleefed9eccb2008-11-04 20:29:31 -08001490 mutex_unlock(&dev->mutex);
1491 return retval;
1492}
1493
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05301494static unsigned int comedi_poll(struct file *file, poll_table * wait)
David Schleefed9eccb2008-11-04 20:29:31 -08001495{
1496 unsigned int mask = 0;
1497 const unsigned minor = iminor(file->f_dentry->d_inode);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001498 struct comedi_device_file_info *dev_file_info =
1499 comedi_get_device_file_info(minor);
Bill Pemberton71b5f4f2009-03-16 22:05:08 -04001500 struct comedi_device *dev = dev_file_info->device;
Bill Pemberton34c43922009-03-16 22:05:14 -04001501 struct comedi_subdevice *read_subdev;
1502 struct comedi_subdevice *write_subdev;
David Schleefed9eccb2008-11-04 20:29:31 -08001503
1504 mutex_lock(&dev->mutex);
1505 if (!dev->attached) {
1506 DPRINTK("no driver configured on comedi%i\n", dev->minor);
1507 mutex_unlock(&dev->mutex);
1508 return 0;
1509 }
1510
1511 mask = 0;
1512 read_subdev = comedi_get_read_subdevice(dev_file_info);
1513 if (read_subdev) {
1514 poll_wait(file, &read_subdev->async->wait_head, wait);
1515 if (!read_subdev->busy
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001516 || comedi_buf_read_n_available(read_subdev->async) > 0
1517 || !(comedi_get_subdevice_runflags(read_subdev) &
1518 SRF_RUNNING)) {
David Schleefed9eccb2008-11-04 20:29:31 -08001519 mask |= POLLIN | POLLRDNORM;
1520 }
1521 }
1522 write_subdev = comedi_get_write_subdevice(dev_file_info);
1523 if (write_subdev) {
1524 poll_wait(file, &write_subdev->async->wait_head, wait);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001525 comedi_buf_write_alloc(write_subdev->async,
1526 write_subdev->async->prealloc_bufsz);
David Schleefed9eccb2008-11-04 20:29:31 -08001527 if (!write_subdev->busy
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001528 || !(comedi_get_subdevice_runflags(write_subdev) &
1529 SRF_RUNNING)
1530 || comedi_buf_write_n_allocated(write_subdev->async) >=
1531 bytes_per_sample(write_subdev->async->subdevice)) {
David Schleefed9eccb2008-11-04 20:29:31 -08001532 mask |= POLLOUT | POLLWRNORM;
1533 }
1534 }
1535
1536 mutex_unlock(&dev->mutex);
1537 return mask;
1538}
1539
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -07001540static ssize_t comedi_write(struct file *file, const char __user *buf,
1541 size_t nbytes, loff_t *offset)
David Schleefed9eccb2008-11-04 20:29:31 -08001542{
Bill Pemberton34c43922009-03-16 22:05:14 -04001543 struct comedi_subdevice *s;
Bill Pembertond1636792009-03-16 22:05:20 -04001544 struct comedi_async *async;
David Schleefed9eccb2008-11-04 20:29:31 -08001545 int n, m, count = 0, retval = 0;
1546 DECLARE_WAITQUEUE(wait, current);
1547 const unsigned minor = iminor(file->f_dentry->d_inode);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001548 struct comedi_device_file_info *dev_file_info =
1549 comedi_get_device_file_info(minor);
Bill Pemberton71b5f4f2009-03-16 22:05:08 -04001550 struct comedi_device *dev = dev_file_info->device;
David Schleefed9eccb2008-11-04 20:29:31 -08001551
1552 if (!dev->attached) {
1553 DPRINTK("no driver configured on comedi%i\n", dev->minor);
1554 retval = -ENODEV;
1555 goto done;
1556 }
1557
1558 s = comedi_get_write_subdevice(dev_file_info);
1559 if (s == NULL) {
1560 retval = -EIO;
1561 goto done;
1562 }
1563 async = s->async;
1564
1565 if (!nbytes) {
1566 retval = 0;
1567 goto done;
1568 }
1569 if (!s->busy) {
1570 retval = 0;
1571 goto done;
1572 }
1573 if (s->busy != file) {
1574 retval = -EACCES;
1575 goto done;
1576 }
1577 add_wait_queue(&async->wait_head, &wait);
1578 while (nbytes > 0 && !retval) {
1579 set_current_state(TASK_INTERRUPTIBLE);
1580
Ian Abbottd2611542010-05-19 17:22:41 +01001581 if (!(comedi_get_subdevice_runflags(s) & SRF_RUNNING)) {
1582 if (count == 0) {
1583 if (comedi_get_subdevice_runflags(s) &
1584 SRF_ERROR) {
1585 retval = -EPIPE;
1586 } else {
1587 retval = 0;
1588 }
1589 do_become_nonbusy(dev, s);
1590 }
1591 break;
1592 }
1593
David Schleefed9eccb2008-11-04 20:29:31 -08001594 n = nbytes;
1595
1596 m = n;
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001597 if (async->buf_write_ptr + m > async->prealloc_bufsz)
David Schleefed9eccb2008-11-04 20:29:31 -08001598 m = async->prealloc_bufsz - async->buf_write_ptr;
David Schleefed9eccb2008-11-04 20:29:31 -08001599 comedi_buf_write_alloc(async, async->prealloc_bufsz);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001600 if (m > comedi_buf_write_n_allocated(async))
David Schleefed9eccb2008-11-04 20:29:31 -08001601 m = comedi_buf_write_n_allocated(async);
David Schleefed9eccb2008-11-04 20:29:31 -08001602 if (m < n)
1603 n = m;
1604
1605 if (n == 0) {
David Schleefed9eccb2008-11-04 20:29:31 -08001606 if (file->f_flags & O_NONBLOCK) {
1607 retval = -EAGAIN;
1608 break;
1609 }
1610 if (signal_pending(current)) {
1611 retval = -ERESTARTSYS;
1612 break;
1613 }
1614 schedule();
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001615 if (!s->busy)
David Schleefed9eccb2008-11-04 20:29:31 -08001616 break;
David Schleefed9eccb2008-11-04 20:29:31 -08001617 if (s->busy != file) {
1618 retval = -EACCES;
1619 break;
1620 }
1621 continue;
1622 }
1623
1624 m = copy_from_user(async->prealloc_buf + async->buf_write_ptr,
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001625 buf, n);
David Schleefed9eccb2008-11-04 20:29:31 -08001626 if (m) {
1627 n -= m;
1628 retval = -EFAULT;
1629 }
1630 comedi_buf_write_free(async, n);
1631
1632 count += n;
1633 nbytes -= n;
1634
1635 buf += n;
1636 break; /* makes device work like a pipe */
1637 }
1638 set_current_state(TASK_RUNNING);
1639 remove_wait_queue(&async->wait_head, &wait);
1640
1641done:
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001642 return count ? count : retval;
David Schleefed9eccb2008-11-04 20:29:31 -08001643}
1644
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -07001645static ssize_t comedi_read(struct file *file, char __user *buf, size_t nbytes,
Andrea Gelmini6705b682010-02-26 10:14:55 +01001646 loff_t *offset)
David Schleefed9eccb2008-11-04 20:29:31 -08001647{
Bill Pemberton34c43922009-03-16 22:05:14 -04001648 struct comedi_subdevice *s;
Bill Pembertond1636792009-03-16 22:05:20 -04001649 struct comedi_async *async;
David Schleefed9eccb2008-11-04 20:29:31 -08001650 int n, m, count = 0, retval = 0;
1651 DECLARE_WAITQUEUE(wait, current);
1652 const unsigned minor = iminor(file->f_dentry->d_inode);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001653 struct comedi_device_file_info *dev_file_info =
1654 comedi_get_device_file_info(minor);
Bill Pemberton71b5f4f2009-03-16 22:05:08 -04001655 struct comedi_device *dev = dev_file_info->device;
David Schleefed9eccb2008-11-04 20:29:31 -08001656
1657 if (!dev->attached) {
1658 DPRINTK("no driver configured on comedi%i\n", dev->minor);
1659 retval = -ENODEV;
1660 goto done;
1661 }
1662
1663 s = comedi_get_read_subdevice(dev_file_info);
1664 if (s == NULL) {
1665 retval = -EIO;
1666 goto done;
1667 }
1668 async = s->async;
1669 if (!nbytes) {
1670 retval = 0;
1671 goto done;
1672 }
1673 if (!s->busy) {
1674 retval = 0;
1675 goto done;
1676 }
1677 if (s->busy != file) {
1678 retval = -EACCES;
1679 goto done;
1680 }
1681
1682 add_wait_queue(&async->wait_head, &wait);
1683 while (nbytes > 0 && !retval) {
1684 set_current_state(TASK_INTERRUPTIBLE);
1685
1686 n = nbytes;
1687
1688 m = comedi_buf_read_n_available(async);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001689 /* printk("%d available\n",m); */
1690 if (async->buf_read_ptr + m > async->prealloc_bufsz)
David Schleefed9eccb2008-11-04 20:29:31 -08001691 m = async->prealloc_bufsz - async->buf_read_ptr;
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001692 /* printk("%d contiguous\n",m); */
David Schleefed9eccb2008-11-04 20:29:31 -08001693 if (m < n)
1694 n = m;
1695
1696 if (n == 0) {
1697 if (!(comedi_get_subdevice_runflags(s) & SRF_RUNNING)) {
1698 do_become_nonbusy(dev, s);
1699 if (comedi_get_subdevice_runflags(s) &
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001700 SRF_ERROR) {
David Schleefed9eccb2008-11-04 20:29:31 -08001701 retval = -EPIPE;
1702 } else {
1703 retval = 0;
1704 }
1705 break;
1706 }
1707 if (file->f_flags & O_NONBLOCK) {
1708 retval = -EAGAIN;
1709 break;
1710 }
1711 if (signal_pending(current)) {
1712 retval = -ERESTARTSYS;
1713 break;
1714 }
1715 schedule();
1716 if (!s->busy) {
1717 retval = 0;
1718 break;
1719 }
1720 if (s->busy != file) {
1721 retval = -EACCES;
1722 break;
1723 }
1724 continue;
1725 }
1726 m = copy_to_user(buf, async->prealloc_buf +
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001727 async->buf_read_ptr, n);
David Schleefed9eccb2008-11-04 20:29:31 -08001728 if (m) {
1729 n -= m;
1730 retval = -EFAULT;
1731 }
1732
1733 comedi_buf_read_alloc(async, n);
1734 comedi_buf_read_free(async, n);
1735
1736 count += n;
1737 nbytes -= n;
1738
1739 buf += n;
1740 break; /* makes device work like a pipe */
1741 }
1742 if (!(comedi_get_subdevice_runflags(s) & (SRF_ERROR | SRF_RUNNING)) &&
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001743 async->buf_read_count - async->buf_write_count == 0) {
David Schleefed9eccb2008-11-04 20:29:31 -08001744 do_become_nonbusy(dev, s);
1745 }
1746 set_current_state(TASK_RUNNING);
1747 remove_wait_queue(&async->wait_head, &wait);
1748
1749done:
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001750 return count ? count : retval;
David Schleefed9eccb2008-11-04 20:29:31 -08001751}
1752
1753/*
1754 This function restores a subdevice to an idle state.
1755 */
Bill Pemberton34c43922009-03-16 22:05:14 -04001756void do_become_nonbusy(struct comedi_device *dev, struct comedi_subdevice *s)
David Schleefed9eccb2008-11-04 20:29:31 -08001757{
Bill Pembertond1636792009-03-16 22:05:20 -04001758 struct comedi_async *async = s->async;
David Schleefed9eccb2008-11-04 20:29:31 -08001759
1760 comedi_set_subdevice_runflags(s, SRF_RUNNING, 0);
David Schleefed9eccb2008-11-04 20:29:31 -08001761 if (async) {
1762 comedi_reset_async_buf(async);
1763 async->inttrig = NULL;
1764 } else {
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001765 printk(KERN_ERR
1766 "BUG: (?) do_become_nonbusy called with async=0\n");
David Schleefed9eccb2008-11-04 20:29:31 -08001767 }
1768
1769 s->busy = NULL;
1770}
1771
1772static int comedi_open(struct inode *inode, struct file *file)
1773{
David Schleefed9eccb2008-11-04 20:29:31 -08001774 const unsigned minor = iminor(inode);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001775 struct comedi_device_file_info *dev_file_info =
1776 comedi_get_device_file_info(minor);
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05301777 struct comedi_device *dev =
1778 dev_file_info ? dev_file_info->device : NULL;
Ian Abbott97920072009-02-09 16:51:38 +00001779
David Schleefed9eccb2008-11-04 20:29:31 -08001780 if (dev == NULL) {
1781 DPRINTK("invalid minor number\n");
1782 return -ENODEV;
1783 }
1784
1785 /* This is slightly hacky, but we want module autoloading
1786 * to work for root.
1787 * case: user opens device, attached -> ok
1788 * case: user opens device, unattached, in_request_module=0 -> autoload
1789 * case: user opens device, unattached, in_request_module=1 -> fail
1790 * case: root opens device, attached -> ok
1791 * case: root opens device, unattached, in_request_module=1 -> ok
1792 * (typically called from modprobe)
1793 * case: root opens device, unattached, in_request_module=0 -> autoload
1794 *
1795 * The last could be changed to "-> ok", which would deny root
1796 * autoloading.
1797 */
1798 mutex_lock(&dev->mutex);
1799 if (dev->attached)
1800 goto ok;
Eric Parisa8f80e82009-08-13 09:44:51 -04001801 if (!capable(CAP_NET_ADMIN) && dev->in_request_module) {
David Schleefed9eccb2008-11-04 20:29:31 -08001802 DPRINTK("in request module\n");
1803 mutex_unlock(&dev->mutex);
1804 return -ENODEV;
1805 }
Eric Parisa8f80e82009-08-13 09:44:51 -04001806 if (capable(CAP_NET_ADMIN) && dev->in_request_module)
David Schleefed9eccb2008-11-04 20:29:31 -08001807 goto ok;
1808
1809 dev->in_request_module = 1;
1810
David Schleefed9eccb2008-11-04 20:29:31 -08001811#ifdef CONFIG_KMOD
1812 mutex_unlock(&dev->mutex);
Ian Abbott56d92c62009-02-09 16:32:12 +00001813 request_module("char-major-%i-%i", COMEDI_MAJOR, dev->minor);
David Schleefed9eccb2008-11-04 20:29:31 -08001814 mutex_lock(&dev->mutex);
1815#endif
1816
1817 dev->in_request_module = 0;
1818
Eric Parisa8f80e82009-08-13 09:44:51 -04001819 if (!dev->attached && !capable(CAP_NET_ADMIN)) {
1820 DPRINTK("not attached and not CAP_NET_ADMIN\n");
David Schleefed9eccb2008-11-04 20:29:31 -08001821 mutex_unlock(&dev->mutex);
1822 return -ENODEV;
1823 }
1824ok:
1825 __module_get(THIS_MODULE);
1826
1827 if (dev->attached) {
1828 if (!try_module_get(dev->driver->module)) {
1829 module_put(THIS_MODULE);
1830 mutex_unlock(&dev->mutex);
1831 return -ENOSYS;
1832 }
1833 }
1834
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001835 if (dev->attached && dev->use_count == 0 && dev->open)
David Schleefed9eccb2008-11-04 20:29:31 -08001836 dev->open(dev);
David Schleefed9eccb2008-11-04 20:29:31 -08001837
1838 dev->use_count++;
1839
1840 mutex_unlock(&dev->mutex);
1841
1842 return 0;
1843}
1844
1845static int comedi_close(struct inode *inode, struct file *file)
1846{
1847 const unsigned minor = iminor(inode);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001848 struct comedi_device_file_info *dev_file_info =
1849 comedi_get_device_file_info(minor);
Bill Pemberton71b5f4f2009-03-16 22:05:08 -04001850 struct comedi_device *dev = dev_file_info->device;
Bill Pemberton34c43922009-03-16 22:05:14 -04001851 struct comedi_subdevice *s = NULL;
David Schleefed9eccb2008-11-04 20:29:31 -08001852 int i;
1853
1854 mutex_lock(&dev->mutex);
1855
1856 if (dev->subdevices) {
1857 for (i = 0; i < dev->n_subdevices; i++) {
1858 s = dev->subdevices + i;
1859
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001860 if (s->busy == file)
David Schleefed9eccb2008-11-04 20:29:31 -08001861 do_cancel(dev, s);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001862 if (s->lock == file)
David Schleefed9eccb2008-11-04 20:29:31 -08001863 s->lock = NULL;
David Schleefed9eccb2008-11-04 20:29:31 -08001864 }
1865 }
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001866 if (dev->attached && dev->use_count == 1 && dev->close)
David Schleefed9eccb2008-11-04 20:29:31 -08001867 dev->close(dev);
David Schleefed9eccb2008-11-04 20:29:31 -08001868
1869 module_put(THIS_MODULE);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001870 if (dev->attached)
David Schleefed9eccb2008-11-04 20:29:31 -08001871 module_put(dev->driver->module);
David Schleefed9eccb2008-11-04 20:29:31 -08001872
1873 dev->use_count--;
1874
1875 mutex_unlock(&dev->mutex);
1876
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001877 if (file->f_flags & FASYNC)
David Schleefed9eccb2008-11-04 20:29:31 -08001878 comedi_fasync(-1, file, 0);
David Schleefed9eccb2008-11-04 20:29:31 -08001879
1880 return 0;
1881}
1882
1883static int comedi_fasync(int fd, struct file *file, int on)
1884{
1885 const unsigned minor = iminor(file->f_dentry->d_inode);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001886 struct comedi_device_file_info *dev_file_info =
1887 comedi_get_device_file_info(minor);
1888
Bill Pemberton71b5f4f2009-03-16 22:05:08 -04001889 struct comedi_device *dev = dev_file_info->device;
David Schleefed9eccb2008-11-04 20:29:31 -08001890
1891 return fasync_helper(fd, file, on, &dev->async_queue);
1892}
1893
1894const struct file_operations comedi_fops = {
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05301895 .owner = THIS_MODULE,
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05301896 .unlocked_ioctl = comedi_unlocked_ioctl,
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05301897 .compat_ioctl = comedi_compat_ioctl,
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05301898 .open = comedi_open,
1899 .release = comedi_close,
1900 .read = comedi_read,
1901 .write = comedi_write,
1902 .mmap = comedi_mmap,
1903 .poll = comedi_poll,
1904 .fasync = comedi_fasync,
David Schleefed9eccb2008-11-04 20:29:31 -08001905};
1906
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001907struct class *comedi_class;
David Schleefed9eccb2008-11-04 20:29:31 -08001908static struct cdev comedi_cdev;
1909
1910static void comedi_cleanup_legacy_minors(void)
1911{
1912 unsigned i;
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001913
Bernd Porr1dd33ab2008-12-08 23:30:13 +00001914 for (i = 0; i < comedi_num_legacy_minors; i++)
David Schleefed9eccb2008-11-04 20:29:31 -08001915 comedi_free_board_minor(i);
David Schleefed9eccb2008-11-04 20:29:31 -08001916}
1917
1918static int __init comedi_init(void)
1919{
1920 int i;
1921 int retval;
1922
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001923 printk(KERN_INFO "comedi: version " COMEDI_RELEASE
1924 " - http://www.comedi.org\n");
David Schleefed9eccb2008-11-04 20:29:31 -08001925
Frank Mori Hessa3cb7292008-12-15 13:44:45 +00001926 if (comedi_num_legacy_minors < 0 ||
1927 comedi_num_legacy_minors > COMEDI_NUM_BOARD_MINORS) {
1928 printk(KERN_ERR "comedi: error: invalid value for module "
1929 "parameter \"comedi_num_legacy_minors\". Valid values "
1930 "are 0 through %i.\n", COMEDI_NUM_BOARD_MINORS);
1931 return -EINVAL;
1932 }
1933
1934 /*
1935 * comedi is unusable if both comedi_autoconfig and
1936 * comedi_num_legacy_minors are zero, so we might as well adjust the
1937 * defaults in that case
1938 */
1939 if (comedi_autoconfig == 0 && comedi_num_legacy_minors == 0)
1940 comedi_num_legacy_minors = 16;
1941
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001942 memset(comedi_file_info_table, 0,
1943 sizeof(struct comedi_device_file_info *) * COMEDI_NUM_MINORS);
David Schleefed9eccb2008-11-04 20:29:31 -08001944
1945 retval = register_chrdev_region(MKDEV(COMEDI_MAJOR, 0),
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001946 COMEDI_NUM_MINORS, "comedi");
David Schleefed9eccb2008-11-04 20:29:31 -08001947 if (retval)
1948 return -EIO;
1949 cdev_init(&comedi_cdev, &comedi_fops);
1950 comedi_cdev.owner = THIS_MODULE;
1951 kobject_set_name(&comedi_cdev.kobj, "comedi");
1952 if (cdev_add(&comedi_cdev, MKDEV(COMEDI_MAJOR, 0), COMEDI_NUM_MINORS)) {
1953 unregister_chrdev_region(MKDEV(COMEDI_MAJOR, 0),
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001954 COMEDI_NUM_MINORS);
David Schleefed9eccb2008-11-04 20:29:31 -08001955 return -EIO;
1956 }
1957 comedi_class = class_create(THIS_MODULE, "comedi");
1958 if (IS_ERR(comedi_class)) {
Mark Rankilor3fffdf22010-04-29 18:17:16 +08001959 printk(KERN_ERR "comedi: failed to create class");
David Schleefed9eccb2008-11-04 20:29:31 -08001960 cdev_del(&comedi_cdev);
1961 unregister_chrdev_region(MKDEV(COMEDI_MAJOR, 0),
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001962 COMEDI_NUM_MINORS);
David Schleefed9eccb2008-11-04 20:29:31 -08001963 return PTR_ERR(comedi_class);
1964 }
1965
1966 /* XXX requires /proc interface */
1967 comedi_proc_init();
1968
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001969 /* create devices files for legacy/manual use */
Bernd Porr1dd33ab2008-12-08 23:30:13 +00001970 for (i = 0; i < comedi_num_legacy_minors; i++) {
David Schleefed9eccb2008-11-04 20:29:31 -08001971 int minor;
1972 minor = comedi_alloc_board_minor(NULL);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001973 if (minor < 0) {
David Schleefed9eccb2008-11-04 20:29:31 -08001974 comedi_cleanup_legacy_minors();
1975 cdev_del(&comedi_cdev);
1976 unregister_chrdev_region(MKDEV(COMEDI_MAJOR, 0),
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001977 COMEDI_NUM_MINORS);
David Schleefed9eccb2008-11-04 20:29:31 -08001978 return minor;
1979 }
1980 }
1981
David Schleefed9eccb2008-11-04 20:29:31 -08001982 return 0;
1983}
1984
1985static void __exit comedi_cleanup(void)
1986{
1987 int i;
1988
1989 comedi_cleanup_legacy_minors();
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001990 for (i = 0; i < COMEDI_NUM_MINORS; ++i)
David Schleefed9eccb2008-11-04 20:29:31 -08001991 BUG_ON(comedi_file_info_table[i]);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08001992
David Schleefed9eccb2008-11-04 20:29:31 -08001993 class_destroy(comedi_class);
1994 cdev_del(&comedi_cdev);
1995 unregister_chrdev_region(MKDEV(COMEDI_MAJOR, 0), COMEDI_NUM_MINORS);
1996
1997 comedi_proc_cleanup();
David Schleefed9eccb2008-11-04 20:29:31 -08001998}
1999
2000module_init(comedi_init);
2001module_exit(comedi_cleanup);
2002
Bill Pemberton71b5f4f2009-03-16 22:05:08 -04002003void comedi_error(const struct comedi_device *dev, const char *s)
David Schleefed9eccb2008-11-04 20:29:31 -08002004{
Mark Rankilor3fffdf22010-04-29 18:17:16 +08002005 printk(KERN_ERR "comedi%d: %s: %s\n", dev->minor,
2006 dev->driver->driver_name, s);
David Schleefed9eccb2008-11-04 20:29:31 -08002007}
Greg Kroah-Hartman18736432010-05-01 12:02:23 -07002008EXPORT_SYMBOL(comedi_error);
David Schleefed9eccb2008-11-04 20:29:31 -08002009
Bill Pemberton34c43922009-03-16 22:05:14 -04002010void comedi_event(struct comedi_device *dev, struct comedi_subdevice *s)
David Schleefed9eccb2008-11-04 20:29:31 -08002011{
Bill Pembertond1636792009-03-16 22:05:20 -04002012 struct comedi_async *async = s->async;
David Schleefed9eccb2008-11-04 20:29:31 -08002013 unsigned runflags = 0;
2014 unsigned runflags_mask = 0;
2015
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002016 /* DPRINTK("comedi_event 0x%x\n",mask); */
David Schleefed9eccb2008-11-04 20:29:31 -08002017
2018 if ((comedi_get_subdevice_runflags(s) & SRF_RUNNING) == 0)
2019 return;
2020
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302021 if (s->
2022 async->events & (COMEDI_CB_EOA | COMEDI_CB_ERROR |
2023 COMEDI_CB_OVERFLOW)) {
David Schleefed9eccb2008-11-04 20:29:31 -08002024 runflags_mask |= SRF_RUNNING;
2025 }
2026 /* remember if an error event has occured, so an error
2027 * can be returned the next time the user does a read() */
2028 if (s->async->events & (COMEDI_CB_ERROR | COMEDI_CB_OVERFLOW)) {
2029 runflags_mask |= SRF_ERROR;
2030 runflags |= SRF_ERROR;
2031 }
2032 if (runflags_mask) {
2033 /*sets SRF_ERROR and SRF_RUNNING together atomically */
2034 comedi_set_subdevice_runflags(s, runflags_mask, runflags);
2035 }
2036
2037 if (async->cb_mask & s->async->events) {
2038 if (comedi_get_subdevice_runflags(s) & SRF_USER) {
Greg Kroah-Hartmanfcea1152009-04-27 15:15:30 -07002039 wake_up_interruptible(&async->wait_head);
Andrea Gelmini6705b682010-02-26 10:14:55 +01002040 if (s->subdev_flags & SDF_CMD_READ)
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302041 kill_fasync(&dev->async_queue, SIGIO, POLL_IN);
Andrea Gelmini6705b682010-02-26 10:14:55 +01002042 if (s->subdev_flags & SDF_CMD_WRITE)
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302043 kill_fasync(&dev->async_queue, SIGIO, POLL_OUT);
David Schleefed9eccb2008-11-04 20:29:31 -08002044 } else {
2045 if (async->cb_func)
2046 async->cb_func(s->async->events, async->cb_arg);
David Schleefed9eccb2008-11-04 20:29:31 -08002047 }
2048 }
2049 s->async->events = 0;
2050}
Greg Kroah-Hartman18736432010-05-01 12:02:23 -07002051EXPORT_SYMBOL(comedi_event);
David Schleefed9eccb2008-11-04 20:29:31 -08002052
Bill Pemberton34c43922009-03-16 22:05:14 -04002053unsigned comedi_get_subdevice_runflags(struct comedi_subdevice *s)
David Schleefed9eccb2008-11-04 20:29:31 -08002054{
2055 unsigned long flags;
2056 unsigned runflags;
2057
Greg Kroah-Hartman5f74ea12009-04-27 14:44:31 -07002058 spin_lock_irqsave(&s->spin_lock, flags);
David Schleefed9eccb2008-11-04 20:29:31 -08002059 runflags = s->runflags;
Greg Kroah-Hartman5f74ea12009-04-27 14:44:31 -07002060 spin_unlock_irqrestore(&s->spin_lock, flags);
David Schleefed9eccb2008-11-04 20:29:31 -08002061 return runflags;
2062}
Greg Kroah-Hartman18736432010-05-01 12:02:23 -07002063EXPORT_SYMBOL(comedi_get_subdevice_runflags);
David Schleefed9eccb2008-11-04 20:29:31 -08002064
Bill Pemberton71b5f4f2009-03-16 22:05:08 -04002065static int is_device_busy(struct comedi_device *dev)
David Schleefed9eccb2008-11-04 20:29:31 -08002066{
Bill Pemberton34c43922009-03-16 22:05:14 -04002067 struct comedi_subdevice *s;
David Schleefed9eccb2008-11-04 20:29:31 -08002068 int i;
2069
2070 if (!dev->attached)
2071 return 0;
2072
2073 for (i = 0; i < dev->n_subdevices; i++) {
2074 s = dev->subdevices + i;
2075 if (s->busy)
2076 return 1;
2077 if (s->async && s->async->mmap_count)
2078 return 1;
2079 }
2080
2081 return 0;
2082}
2083
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -07002084static void comedi_device_init(struct comedi_device *dev)
David Schleefed9eccb2008-11-04 20:29:31 -08002085{
Bill Pemberton71b5f4f2009-03-16 22:05:08 -04002086 memset(dev, 0, sizeof(struct comedi_device));
David Schleefed9eccb2008-11-04 20:29:31 -08002087 spin_lock_init(&dev->spinlock);
2088 mutex_init(&dev->mutex);
2089 dev->minor = -1;
2090}
2091
Greg Kroah-Hartman92d01272010-05-03 16:32:28 -07002092static void comedi_device_cleanup(struct comedi_device *dev)
David Schleefed9eccb2008-11-04 20:29:31 -08002093{
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002094 if (dev == NULL)
2095 return;
David Schleefed9eccb2008-11-04 20:29:31 -08002096 mutex_lock(&dev->mutex);
2097 comedi_device_detach(dev);
2098 mutex_unlock(&dev->mutex);
2099 mutex_destroy(&dev->mutex);
2100}
2101
2102int comedi_alloc_board_minor(struct device *hardware_device)
2103{
2104 unsigned long flags;
2105 struct comedi_device_file_info *info;
Bill Pemberton0bfbbe82009-03-16 22:05:36 -04002106 struct device *csdev;
David Schleefed9eccb2008-11-04 20:29:31 -08002107 unsigned i;
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002108 int retval;
David Schleefed9eccb2008-11-04 20:29:31 -08002109
2110 info = kzalloc(sizeof(struct comedi_device_file_info), GFP_KERNEL);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002111 if (info == NULL)
2112 return -ENOMEM;
Bill Pemberton71b5f4f2009-03-16 22:05:08 -04002113 info->device = kzalloc(sizeof(struct comedi_device), GFP_KERNEL);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002114 if (info->device == NULL) {
David Schleefed9eccb2008-11-04 20:29:31 -08002115 kfree(info);
2116 return -ENOMEM;
2117 }
2118 comedi_device_init(info->device);
Greg Kroah-Hartman5f74ea12009-04-27 14:44:31 -07002119 spin_lock_irqsave(&comedi_file_info_table_lock, flags);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002120 for (i = 0; i < COMEDI_NUM_BOARD_MINORS; ++i) {
2121 if (comedi_file_info_table[i] == NULL) {
David Schleefed9eccb2008-11-04 20:29:31 -08002122 comedi_file_info_table[i] = info;
2123 break;
2124 }
2125 }
Greg Kroah-Hartman5f74ea12009-04-27 14:44:31 -07002126 spin_unlock_irqrestore(&comedi_file_info_table_lock, flags);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002127 if (i == COMEDI_NUM_BOARD_MINORS) {
David Schleefed9eccb2008-11-04 20:29:31 -08002128 comedi_device_cleanup(info->device);
2129 kfree(info->device);
2130 kfree(info);
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302131 printk(KERN_ERR
Mark21fe2ee2010-05-13 17:44:39 +08002132 "comedi: error: "
2133 "ran out of minor numbers for board device files.\n");
David Schleefed9eccb2008-11-04 20:29:31 -08002134 return -EBUSY;
2135 }
2136 info->device->minor = i;
2137 csdev = COMEDI_DEVICE_CREATE(comedi_class, NULL,
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002138 MKDEV(COMEDI_MAJOR, i), NULL,
2139 hardware_device, "comedi%i", i);
2140 if (!IS_ERR(csdev))
David Schleefed9eccb2008-11-04 20:29:31 -08002141 info->device->class_dev = csdev;
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002142 dev_set_drvdata(csdev, info);
2143 retval = device_create_file(csdev, &dev_attr_max_read_buffer_kb);
2144 if (retval) {
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302145 printk(KERN_ERR
Mark21fe2ee2010-05-13 17:44:39 +08002146 "comedi: "
2147 "failed to create sysfs attribute file \"%s\".\n",
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302148 dev_attr_max_read_buffer_kb.attr.name);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002149 comedi_free_board_minor(i);
2150 return retval;
2151 }
2152 retval = device_create_file(csdev, &dev_attr_read_buffer_kb);
2153 if (retval) {
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302154 printk(KERN_ERR
Mark21fe2ee2010-05-13 17:44:39 +08002155 "comedi: "
2156 "failed to create sysfs attribute file \"%s\".\n",
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302157 dev_attr_read_buffer_kb.attr.name);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002158 comedi_free_board_minor(i);
2159 return retval;
2160 }
2161 retval = device_create_file(csdev, &dev_attr_max_write_buffer_kb);
2162 if (retval) {
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302163 printk(KERN_ERR
Mark21fe2ee2010-05-13 17:44:39 +08002164 "comedi: "
2165 "failed to create sysfs attribute file \"%s\".\n",
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302166 dev_attr_max_write_buffer_kb.attr.name);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002167 comedi_free_board_minor(i);
2168 return retval;
2169 }
2170 retval = device_create_file(csdev, &dev_attr_write_buffer_kb);
2171 if (retval) {
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302172 printk(KERN_ERR
Mark21fe2ee2010-05-13 17:44:39 +08002173 "comedi: "
2174 "failed to create sysfs attribute file \"%s\".\n",
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302175 dev_attr_write_buffer_kb.attr.name);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002176 comedi_free_board_minor(i);
2177 return retval;
2178 }
David Schleefed9eccb2008-11-04 20:29:31 -08002179 return i;
2180}
2181
2182void comedi_free_board_minor(unsigned minor)
2183{
2184 unsigned long flags;
2185 struct comedi_device_file_info *info;
2186
2187 BUG_ON(minor >= COMEDI_NUM_BOARD_MINORS);
Greg Kroah-Hartman5f74ea12009-04-27 14:44:31 -07002188 spin_lock_irqsave(&comedi_file_info_table_lock, flags);
David Schleefed9eccb2008-11-04 20:29:31 -08002189 info = comedi_file_info_table[minor];
2190 comedi_file_info_table[minor] = NULL;
Greg Kroah-Hartman5f74ea12009-04-27 14:44:31 -07002191 spin_unlock_irqrestore(&comedi_file_info_table_lock, flags);
David Schleefed9eccb2008-11-04 20:29:31 -08002192
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002193 if (info) {
Bill Pemberton71b5f4f2009-03-16 22:05:08 -04002194 struct comedi_device *dev = info->device;
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002195 if (dev) {
2196 if (dev->class_dev) {
2197 device_destroy(comedi_class,
2198 MKDEV(COMEDI_MAJOR, dev->minor));
David Schleefed9eccb2008-11-04 20:29:31 -08002199 }
2200 comedi_device_cleanup(dev);
2201 kfree(dev);
2202 }
2203 kfree(info);
2204 }
2205}
2206
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002207int comedi_alloc_subdevice_minor(struct comedi_device *dev,
2208 struct comedi_subdevice *s)
David Schleefed9eccb2008-11-04 20:29:31 -08002209{
2210 unsigned long flags;
2211 struct comedi_device_file_info *info;
Bill Pemberton0bfbbe82009-03-16 22:05:36 -04002212 struct device *csdev;
David Schleefed9eccb2008-11-04 20:29:31 -08002213 unsigned i;
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002214 int retval;
David Schleefed9eccb2008-11-04 20:29:31 -08002215
2216 info = kmalloc(sizeof(struct comedi_device_file_info), GFP_KERNEL);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002217 if (info == NULL)
2218 return -ENOMEM;
David Schleefed9eccb2008-11-04 20:29:31 -08002219 info->device = dev;
2220 info->read_subdevice = s;
2221 info->write_subdevice = s;
Greg Kroah-Hartman5f74ea12009-04-27 14:44:31 -07002222 spin_lock_irqsave(&comedi_file_info_table_lock, flags);
Frank Mori Hess4c41f3a2008-12-09 14:47:22 +00002223 for (i = COMEDI_FIRST_SUBDEVICE_MINOR; i < COMEDI_NUM_MINORS; ++i) {
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002224 if (comedi_file_info_table[i] == NULL) {
David Schleefed9eccb2008-11-04 20:29:31 -08002225 comedi_file_info_table[i] = info;
2226 break;
2227 }
2228 }
Greg Kroah-Hartman5f74ea12009-04-27 14:44:31 -07002229 spin_unlock_irqrestore(&comedi_file_info_table_lock, flags);
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002230 if (i == COMEDI_NUM_MINORS) {
David Schleefed9eccb2008-11-04 20:29:31 -08002231 kfree(info);
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302232 printk(KERN_ERR
Mark21fe2ee2010-05-13 17:44:39 +08002233 "comedi: error: "
2234 "ran out of minor numbers for board device files.\n");
David Schleefed9eccb2008-11-04 20:29:31 -08002235 return -EBUSY;
2236 }
2237 s->minor = i;
2238 csdev = COMEDI_DEVICE_CREATE(comedi_class, dev->class_dev,
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002239 MKDEV(COMEDI_MAJOR, i), NULL, NULL,
2240 "comedi%i_subd%i", dev->minor,
2241 (int)(s - dev->subdevices));
2242 if (!IS_ERR(csdev))
David Schleefed9eccb2008-11-04 20:29:31 -08002243 s->class_dev = csdev;
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002244 dev_set_drvdata(csdev, info);
2245 retval = device_create_file(csdev, &dev_attr_max_read_buffer_kb);
2246 if (retval) {
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302247 printk(KERN_ERR
Mark21fe2ee2010-05-13 17:44:39 +08002248 "comedi: "
2249 "failed to create sysfs attribute file \"%s\".\n",
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302250 dev_attr_max_read_buffer_kb.attr.name);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002251 comedi_free_subdevice_minor(s);
2252 return retval;
2253 }
2254 retval = device_create_file(csdev, &dev_attr_read_buffer_kb);
2255 if (retval) {
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302256 printk(KERN_ERR
Mark21fe2ee2010-05-13 17:44:39 +08002257 "comedi: "
2258 "failed to create sysfs attribute file \"%s\".\n",
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302259 dev_attr_read_buffer_kb.attr.name);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002260 comedi_free_subdevice_minor(s);
2261 return retval;
2262 }
2263 retval = device_create_file(csdev, &dev_attr_max_write_buffer_kb);
2264 if (retval) {
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302265 printk(KERN_ERR
Mark21fe2ee2010-05-13 17:44:39 +08002266 "comedi: "
2267 "failed to create sysfs attribute file \"%s\".\n",
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302268 dev_attr_max_write_buffer_kb.attr.name);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002269 comedi_free_subdevice_minor(s);
2270 return retval;
2271 }
2272 retval = device_create_file(csdev, &dev_attr_write_buffer_kb);
2273 if (retval) {
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302274 printk(KERN_ERR
Mark21fe2ee2010-05-13 17:44:39 +08002275 "comedi: "
2276 "failed to create sysfs attribute file \"%s\".\n",
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302277 dev_attr_write_buffer_kb.attr.name);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002278 comedi_free_subdevice_minor(s);
2279 return retval;
2280 }
David Schleefed9eccb2008-11-04 20:29:31 -08002281 return i;
2282}
2283
Bill Pemberton34c43922009-03-16 22:05:14 -04002284void comedi_free_subdevice_minor(struct comedi_subdevice *s)
David Schleefed9eccb2008-11-04 20:29:31 -08002285{
2286 unsigned long flags;
2287 struct comedi_device_file_info *info;
2288
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002289 if (s == NULL)
2290 return;
2291 if (s->minor < 0)
2292 return;
David Schleefed9eccb2008-11-04 20:29:31 -08002293
2294 BUG_ON(s->minor >= COMEDI_NUM_MINORS);
2295 BUG_ON(s->minor < COMEDI_FIRST_SUBDEVICE_MINOR);
2296
Greg Kroah-Hartman5f74ea12009-04-27 14:44:31 -07002297 spin_lock_irqsave(&comedi_file_info_table_lock, flags);
David Schleefed9eccb2008-11-04 20:29:31 -08002298 info = comedi_file_info_table[s->minor];
2299 comedi_file_info_table[s->minor] = NULL;
Greg Kroah-Hartman5f74ea12009-04-27 14:44:31 -07002300 spin_unlock_irqrestore(&comedi_file_info_table_lock, flags);
David Schleefed9eccb2008-11-04 20:29:31 -08002301
Greg Kroah-Hartman476b8472008-11-13 17:05:58 -08002302 if (s->class_dev) {
David Schleefed9eccb2008-11-04 20:29:31 -08002303 device_destroy(comedi_class, MKDEV(COMEDI_MAJOR, s->minor));
2304 s->class_dev = NULL;
2305 }
2306 kfree(info);
2307}
2308
2309struct comedi_device_file_info *comedi_get_device_file_info(unsigned minor)
2310{
2311 unsigned long flags;
2312 struct comedi_device_file_info *info;
2313
2314 BUG_ON(minor >= COMEDI_NUM_MINORS);
Greg Kroah-Hartman5f74ea12009-04-27 14:44:31 -07002315 spin_lock_irqsave(&comedi_file_info_table_lock, flags);
David Schleefed9eccb2008-11-04 20:29:31 -08002316 info = comedi_file_info_table[minor];
Greg Kroah-Hartman5f74ea12009-04-27 14:44:31 -07002317 spin_unlock_irqrestore(&comedi_file_info_table_lock, flags);
David Schleefed9eccb2008-11-04 20:29:31 -08002318 return info;
2319}
Greg Kroah-Hartman18736432010-05-01 12:02:23 -07002320EXPORT_SYMBOL_GPL(comedi_get_device_file_info);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002321
2322static int resize_async_buffer(struct comedi_device *dev,
2323 struct comedi_subdevice *s,
2324 struct comedi_async *async, unsigned new_size)
2325{
2326 int retval;
2327
2328 if (new_size > async->max_bufsize)
2329 return -EPERM;
2330
2331 if (s->busy) {
2332 DPRINTK("subdevice is busy, cannot resize buffer\n");
2333 return -EBUSY;
2334 }
2335 if (async->mmap_count) {
2336 DPRINTK("subdevice is mmapped, cannot resize buffer\n");
2337 return -EBUSY;
2338 }
2339
2340 if (!async->prealloc_buf)
2341 return -EINVAL;
2342
2343 /* make sure buffer is an integral number of pages
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302344 * (we round up) */
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002345 new_size = (new_size + PAGE_SIZE - 1) & PAGE_MASK;
2346
2347 retval = comedi_buf_alloc(dev, s, new_size);
2348 if (retval < 0)
2349 return retval;
2350
2351 if (s->buf_change) {
2352 retval = s->buf_change(dev, s, new_size);
2353 if (retval < 0)
2354 return retval;
2355 }
2356
2357 DPRINTK("comedi%i subd %d buffer resized to %i bytes\n",
Ian Abbottb8b5cd92009-09-21 14:55:23 -04002358 dev->minor, (int)(s - dev->subdevices), async->prealloc_bufsz);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002359 return 0;
2360}
2361
2362/* sysfs attribute files */
2363
2364static const unsigned bytes_per_kibi = 1024;
2365
2366static ssize_t show_max_read_buffer_kb(struct device *dev,
2367 struct device_attribute *attr, char *buf)
2368{
2369 ssize_t retval;
2370 struct comedi_device_file_info *info = dev_get_drvdata(dev);
2371 unsigned max_buffer_size_kb = 0;
2372 struct comedi_subdevice *const read_subdevice =
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302373 comedi_get_read_subdevice(info);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002374
2375 mutex_lock(&info->device->mutex);
2376 if (read_subdevice &&
2377 (read_subdevice->subdev_flags & SDF_CMD_READ) &&
2378 read_subdevice->async) {
2379 max_buffer_size_kb = read_subdevice->async->max_bufsize /
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302380 bytes_per_kibi;
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002381 }
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302382 retval = snprintf(buf, PAGE_SIZE, "%i\n", max_buffer_size_kb);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002383 mutex_unlock(&info->device->mutex);
2384
2385 return retval;
2386}
2387
2388static ssize_t store_max_read_buffer_kb(struct device *dev,
2389 struct device_attribute *attr,
2390 const char *buf, size_t count)
2391{
2392 struct comedi_device_file_info *info = dev_get_drvdata(dev);
2393 unsigned long new_max_size_kb;
2394 uint64_t new_max_size;
2395 struct comedi_subdevice *const read_subdevice =
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302396 comedi_get_read_subdevice(info);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002397
2398 if (strict_strtoul(buf, 10, &new_max_size_kb))
2399 return -EINVAL;
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302400 if (new_max_size_kb != (uint32_t) new_max_size_kb)
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002401 return -EINVAL;
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302402 new_max_size = ((uint64_t) new_max_size_kb) * bytes_per_kibi;
2403 if (new_max_size != (uint32_t) new_max_size)
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002404 return -EINVAL;
2405
2406 mutex_lock(&info->device->mutex);
2407 if (read_subdevice == NULL ||
2408 (read_subdevice->subdev_flags & SDF_CMD_READ) == 0 ||
2409 read_subdevice->async == NULL) {
2410 mutex_unlock(&info->device->mutex);
2411 return -EINVAL;
2412 }
2413 read_subdevice->async->max_bufsize = new_max_size;
2414 mutex_unlock(&info->device->mutex);
2415
2416 return count;
2417}
2418
2419static struct device_attribute dev_attr_max_read_buffer_kb = {
2420 .attr = {
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302421 .name = "max_read_buffer_kb",
2422 .mode = S_IRUGO | S_IWUSR},
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002423 .show = &show_max_read_buffer_kb,
2424 .store = &store_max_read_buffer_kb
2425};
2426
2427static ssize_t show_read_buffer_kb(struct device *dev,
2428 struct device_attribute *attr, char *buf)
2429{
2430 ssize_t retval;
2431 struct comedi_device_file_info *info = dev_get_drvdata(dev);
2432 unsigned buffer_size_kb = 0;
2433 struct comedi_subdevice *const read_subdevice =
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302434 comedi_get_read_subdevice(info);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002435
2436 mutex_lock(&info->device->mutex);
2437 if (read_subdevice &&
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302438 (read_subdevice->subdev_flags & SDF_CMD_READ) &&
2439 read_subdevice->async) {
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002440 buffer_size_kb = read_subdevice->async->prealloc_bufsz /
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302441 bytes_per_kibi;
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002442 }
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302443 retval = snprintf(buf, PAGE_SIZE, "%i\n", buffer_size_kb);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002444 mutex_unlock(&info->device->mutex);
2445
2446 return retval;
2447}
2448
2449static ssize_t store_read_buffer_kb(struct device *dev,
2450 struct device_attribute *attr,
2451 const char *buf, size_t count)
2452{
2453 struct comedi_device_file_info *info = dev_get_drvdata(dev);
2454 unsigned long new_size_kb;
2455 uint64_t new_size;
2456 int retval;
2457 struct comedi_subdevice *const read_subdevice =
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302458 comedi_get_read_subdevice(info);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002459
2460 if (strict_strtoul(buf, 10, &new_size_kb))
2461 return -EINVAL;
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302462 if (new_size_kb != (uint32_t) new_size_kb)
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002463 return -EINVAL;
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302464 new_size = ((uint64_t) new_size_kb) * bytes_per_kibi;
2465 if (new_size != (uint32_t) new_size)
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002466 return -EINVAL;
2467
2468 mutex_lock(&info->device->mutex);
2469 if (read_subdevice == NULL ||
2470 (read_subdevice->subdev_flags & SDF_CMD_READ) == 0 ||
2471 read_subdevice->async == NULL) {
2472 mutex_unlock(&info->device->mutex);
2473 return -EINVAL;
2474 }
2475 retval = resize_async_buffer(info->device, read_subdevice,
2476 read_subdevice->async, new_size);
2477 mutex_unlock(&info->device->mutex);
2478
2479 if (retval < 0)
2480 return retval;
2481 return count;
2482}
2483
2484static struct device_attribute dev_attr_read_buffer_kb = {
2485 .attr = {
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302486 .name = "read_buffer_kb",
2487 .mode = S_IRUGO | S_IWUSR | S_IWGRP},
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002488 .show = &show_read_buffer_kb,
2489 .store = &store_read_buffer_kb
2490};
2491
2492static ssize_t show_max_write_buffer_kb(struct device *dev,
2493 struct device_attribute *attr,
2494 char *buf)
2495{
2496 ssize_t retval;
2497 struct comedi_device_file_info *info = dev_get_drvdata(dev);
2498 unsigned max_buffer_size_kb = 0;
2499 struct comedi_subdevice *const write_subdevice =
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302500 comedi_get_write_subdevice(info);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002501
2502 mutex_lock(&info->device->mutex);
2503 if (write_subdevice &&
2504 (write_subdevice->subdev_flags & SDF_CMD_WRITE) &&
2505 write_subdevice->async) {
2506 max_buffer_size_kb = write_subdevice->async->max_bufsize /
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302507 bytes_per_kibi;
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002508 }
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302509 retval = snprintf(buf, PAGE_SIZE, "%i\n", max_buffer_size_kb);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002510 mutex_unlock(&info->device->mutex);
2511
2512 return retval;
2513}
2514
2515static ssize_t store_max_write_buffer_kb(struct device *dev,
2516 struct device_attribute *attr,
2517 const char *buf, size_t count)
2518{
2519 struct comedi_device_file_info *info = dev_get_drvdata(dev);
2520 unsigned long new_max_size_kb;
2521 uint64_t new_max_size;
2522 struct comedi_subdevice *const write_subdevice =
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302523 comedi_get_write_subdevice(info);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002524
2525 if (strict_strtoul(buf, 10, &new_max_size_kb))
2526 return -EINVAL;
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302527 if (new_max_size_kb != (uint32_t) new_max_size_kb)
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002528 return -EINVAL;
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302529 new_max_size = ((uint64_t) new_max_size_kb) * bytes_per_kibi;
2530 if (new_max_size != (uint32_t) new_max_size)
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002531 return -EINVAL;
2532
2533 mutex_lock(&info->device->mutex);
2534 if (write_subdevice == NULL ||
2535 (write_subdevice->subdev_flags & SDF_CMD_WRITE) == 0 ||
2536 write_subdevice->async == NULL) {
2537 mutex_unlock(&info->device->mutex);
2538 return -EINVAL;
2539 }
2540 write_subdevice->async->max_bufsize = new_max_size;
2541 mutex_unlock(&info->device->mutex);
2542
2543 return count;
2544}
2545
2546static struct device_attribute dev_attr_max_write_buffer_kb = {
2547 .attr = {
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302548 .name = "max_write_buffer_kb",
2549 .mode = S_IRUGO | S_IWUSR},
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002550 .show = &show_max_write_buffer_kb,
2551 .store = &store_max_write_buffer_kb
2552};
2553
2554static ssize_t show_write_buffer_kb(struct device *dev,
2555 struct device_attribute *attr, char *buf)
2556{
2557 ssize_t retval;
2558 struct comedi_device_file_info *info = dev_get_drvdata(dev);
2559 unsigned buffer_size_kb = 0;
2560 struct comedi_subdevice *const write_subdevice =
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302561 comedi_get_write_subdevice(info);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002562
2563 mutex_lock(&info->device->mutex);
2564 if (write_subdevice &&
2565 (write_subdevice->subdev_flags & SDF_CMD_WRITE) &&
2566 write_subdevice->async) {
2567 buffer_size_kb = write_subdevice->async->prealloc_bufsz /
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302568 bytes_per_kibi;
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002569 }
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302570 retval = snprintf(buf, PAGE_SIZE, "%i\n", buffer_size_kb);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002571 mutex_unlock(&info->device->mutex);
2572
2573 return retval;
2574}
2575
2576static ssize_t store_write_buffer_kb(struct device *dev,
2577 struct device_attribute *attr,
2578 const char *buf, size_t count)
2579{
2580 struct comedi_device_file_info *info = dev_get_drvdata(dev);
2581 unsigned long new_size_kb;
2582 uint64_t new_size;
2583 int retval;
2584 struct comedi_subdevice *const write_subdevice =
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302585 comedi_get_write_subdevice(info);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002586
2587 if (strict_strtoul(buf, 10, &new_size_kb))
2588 return -EINVAL;
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302589 if (new_size_kb != (uint32_t) new_size_kb)
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002590 return -EINVAL;
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302591 new_size = ((uint64_t) new_size_kb) * bytes_per_kibi;
2592 if (new_size != (uint32_t) new_size)
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002593 return -EINVAL;
2594
2595 mutex_lock(&info->device->mutex);
2596 if (write_subdevice == NULL ||
2597 (write_subdevice->subdev_flags & SDF_CMD_WRITE) == 0 ||
2598 write_subdevice->async == NULL) {
2599 mutex_unlock(&info->device->mutex);
2600 return -EINVAL;
2601 }
2602 retval = resize_async_buffer(info->device, write_subdevice,
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302603 write_subdevice->async, new_size);
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002604 mutex_unlock(&info->device->mutex);
2605
2606 if (retval < 0)
2607 return retval;
2608 return count;
2609}
2610
2611static struct device_attribute dev_attr_write_buffer_kb = {
2612 .attr = {
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +05302613 .name = "write_buffer_kb",
2614 .mode = S_IRUGO | S_IWUSR | S_IWGRP},
Frank Mori Hess883db3d2009-04-14 11:21:41 -04002615 .show = &show_write_buffer_kb,
2616 .store = &store_write_buffer_kb
2617};