blob: e25eba5713c153a9fd2e829561eb481b26a8dc47 [file] [log] [blame]
David Schleefed9eccb2008-11-04 20:29:31 -08001/*
2 module/drivers.c
3 functions for manipulating drivers
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.
David Schleefed9eccb2008-11-04 20:29:31 -080017*/
18
David Schleefed9eccb2008-11-04 20:29:31 -080019#include <linux/device.h>
20#include <linux/module.h>
David Schleefed9eccb2008-11-04 20:29:31 -080021#include <linux/errno.h>
Randy Dunlap78b10612012-06-11 16:35:50 -070022#include <linux/kconfig.h>
David Schleefed9eccb2008-11-04 20:29:31 -080023#include <linux/kernel.h>
24#include <linux/sched.h>
25#include <linux/fcntl.h>
26#include <linux/delay.h>
27#include <linux/ioport.h>
28#include <linux/mm.h>
29#include <linux/slab.h>
David Schleefed9eccb2008-11-04 20:29:31 -080030#include <linux/highmem.h> /* for SuSE brokenness */
31#include <linux/vmalloc.h>
32#include <linux/cdev.h>
33#include <linux/dma-mapping.h>
Andrea Gelmini5617f9d2010-02-26 17:37:00 +010034#include <linux/io.h>
H Hartley Sweeten3d1fe3f2013-04-18 14:34:37 -070035#include <linux/interrupt.h>
H Hartley Sweeten9ff8b152013-05-17 11:17:00 -070036#include <linux/firmware.h>
David Schleefed9eccb2008-11-04 20:29:31 -080037
Greg Kroah-Hartman242e7ad2010-05-03 15:20:29 -070038#include "comedidev.h"
Ian Abbott3a5fa272012-06-19 10:17:44 +010039#include "comedi_internal.h"
Greg Kroah-Hartman242e7ad2010-05-03 15:20:29 -070040
Bill Pemberton139dfbd2009-03-16 22:05:25 -040041struct comedi_driver *comedi_drivers;
David Schleefed9eccb2008-11-04 20:29:31 -080042
Ian Abbottda717512013-02-01 13:23:19 +000043int comedi_set_hw_dev(struct comedi_device *dev, struct device *hw_dev)
44{
Ian Abbottde06d7c2013-02-01 13:23:20 +000045 if (hw_dev == dev->hw_dev)
46 return 0;
47 if (dev->hw_dev != NULL)
48 return -EEXIST;
Ian Abbottda717512013-02-01 13:23:19 +000049 dev->hw_dev = get_device(hw_dev);
Ian Abbottda717512013-02-01 13:23:19 +000050 return 0;
51}
52EXPORT_SYMBOL_GPL(comedi_set_hw_dev);
53
Ian Abbottde06d7c2013-02-01 13:23:20 +000054static void comedi_clear_hw_dev(struct comedi_device *dev)
55{
56 put_device(dev->hw_dev);
57 dev->hw_dev = NULL;
58}
59
H Hartley Sweeten8b9ba6e2012-06-12 11:57:27 -070060int comedi_alloc_subdevices(struct comedi_device *dev, int num_subdevices)
H Hartley Sweeten2f0b9d02012-06-11 17:45:15 -070061{
H Hartley Sweeten03afcf42012-06-12 11:59:55 -070062 struct comedi_subdevice *s;
H Hartley Sweeten8b9ba6e2012-06-12 11:57:27 -070063 int i;
H Hartley Sweeten2f0b9d02012-06-11 17:45:15 -070064
H Hartley Sweeten7f801c42012-06-12 11:57:45 -070065 if (num_subdevices < 1)
66 return -EINVAL;
H Hartley Sweeten03afcf42012-06-12 11:59:55 -070067
68 s = kcalloc(num_subdevices, sizeof(*s), GFP_KERNEL);
69 if (!s)
H Hartley Sweeten2f0b9d02012-06-11 17:45:15 -070070 return -ENOMEM;
H Hartley Sweeten03afcf42012-06-12 11:59:55 -070071 dev->subdevices = s;
H Hartley Sweetenfba1d0f2012-06-12 11:58:27 -070072 dev->n_subdevices = num_subdevices;
H Hartley Sweeten03afcf42012-06-12 11:59:55 -070073
H Hartley Sweeten2f0b9d02012-06-11 17:45:15 -070074 for (i = 0; i < num_subdevices; ++i) {
H Hartley Sweeten5e4c58c2012-09-05 18:21:25 -070075 s = &dev->subdevices[i];
H Hartley Sweeten03afcf42012-06-12 11:59:55 -070076 s->device = dev;
H Hartley Sweeten90a35c12012-12-19 17:27:02 -070077 s->index = i;
H Hartley Sweeten03afcf42012-06-12 11:59:55 -070078 s->async_dma_dir = DMA_NONE;
79 spin_lock_init(&s->spin_lock);
80 s->minor = -1;
H Hartley Sweeten2f0b9d02012-06-11 17:45:15 -070081 }
82 return 0;
83}
84EXPORT_SYMBOL_GPL(comedi_alloc_subdevices);
85
Bill Pemberton71b5f4f2009-03-16 22:05:08 -040086static void cleanup_device(struct comedi_device *dev)
David Schleefed9eccb2008-11-04 20:29:31 -080087{
88 int i;
Bill Pemberton34c43922009-03-16 22:05:14 -040089 struct comedi_subdevice *s;
David Schleefed9eccb2008-11-04 20:29:31 -080090
91 if (dev->subdevices) {
92 for (i = 0; i < dev->n_subdevices; i++) {
H Hartley Sweeten5e4c58c2012-09-05 18:21:25 -070093 s = &dev->subdevices[i];
H Hartley Sweeten588ba6d2013-06-11 11:32:29 -070094 if (s->runflags & SRF_FREE_SPRIV)
95 kfree(s->private);
David Schleefed9eccb2008-11-04 20:29:31 -080096 comedi_free_subdevice_minor(s);
97 if (s->async) {
98 comedi_buf_alloc(dev, s, 0);
99 kfree(s->async);
100 }
101 }
102 kfree(dev->subdevices);
103 dev->subdevices = NULL;
104 dev->n_subdevices = 0;
105 }
Bill Pembertondedd1322009-03-16 22:04:18 -0400106 kfree(dev->private);
107 dev->private = NULL;
Greg Kroah-Hartman7029a872010-05-03 15:55:45 -0700108 dev->driver = NULL;
David Schleefed9eccb2008-11-04 20:29:31 -0800109 dev->board_name = NULL;
110 dev->board_ptr = NULL;
111 dev->iobase = 0;
H Hartley Sweeten316f97f2013-04-18 14:31:29 -0700112 dev->iolen = 0;
Ian Abbott00ca68842013-03-15 13:15:35 +0000113 dev->ioenabled = false;
David Schleefed9eccb2008-11-04 20:29:31 -0800114 dev->irq = 0;
115 dev->read_subdev = NULL;
116 dev->write_subdev = NULL;
117 dev->open = NULL;
118 dev->close = NULL;
Ian Abbottde06d7c2013-02-01 13:23:20 +0000119 comedi_clear_hw_dev(dev);
David Schleefed9eccb2008-11-04 20:29:31 -0800120}
121
Ian Abbott016599f2013-04-04 14:58:58 +0100122void comedi_device_detach(struct comedi_device *dev)
David Schleefed9eccb2008-11-04 20:29:31 -0800123{
Ian Abbotta7401cd2013-03-15 13:15:33 +0000124 dev->attached = false;
Andrea Gelmini5617f9d2010-02-26 17:37:00 +0100125 if (dev->driver)
David Schleefed9eccb2008-11-04 20:29:31 -0800126 dev->driver->detach(dev);
David Schleefed9eccb2008-11-04 20:29:31 -0800127 cleanup_device(dev);
128}
129
H Hartley Sweeten01fca372013-01-21 14:36:11 -0700130static int poll_invalid(struct comedi_device *dev, struct comedi_subdevice *s)
131{
132 return -EINVAL;
133}
134
135int insn_inval(struct comedi_device *dev, struct comedi_subdevice *s,
136 struct comedi_insn *insn, unsigned int *data)
137{
138 return -EINVAL;
139}
140
141static int insn_rw_emulate_bits(struct comedi_device *dev,
142 struct comedi_subdevice *s,
143 struct comedi_insn *insn, unsigned int *data)
144{
145 struct comedi_insn new_insn;
146 int ret;
147 static const unsigned channels_per_bitfield = 32;
148
149 unsigned chan = CR_CHAN(insn->chanspec);
150 const unsigned base_bitfield_channel =
151 (chan < channels_per_bitfield) ? 0 : chan;
152 unsigned int new_data[2];
153 memset(new_data, 0, sizeof(new_data));
154 memset(&new_insn, 0, sizeof(new_insn));
155 new_insn.insn = INSN_BITS;
156 new_insn.chanspec = base_bitfield_channel;
157 new_insn.n = 2;
158 new_insn.subdev = insn->subdev;
159
160 if (insn->insn == INSN_WRITE) {
161 if (!(s->subdev_flags & SDF_WRITABLE))
162 return -EINVAL;
163 new_data[0] = 1 << (chan - base_bitfield_channel); /* mask */
164 new_data[1] = data[0] ? (1 << (chan - base_bitfield_channel))
165 : 0; /* bits */
166 }
167
168 ret = s->insn_bits(dev, s, &new_insn, new_data);
169 if (ret < 0)
170 return ret;
171
172 if (insn->insn == INSN_READ)
173 data[0] = (new_data[1] >> (chan - base_bitfield_channel)) & 1;
174
175 return 1;
176}
177
H Hartley Sweeten40f58a62013-01-21 14:36:40 -0700178static int __comedi_device_postconfig_async(struct comedi_device *dev,
179 struct comedi_subdevice *s)
H Hartley Sweeten01fca372013-01-21 14:36:11 -0700180{
H Hartley Sweeten40f58a62013-01-21 14:36:40 -0700181 struct comedi_async *async;
182 unsigned int buf_size;
H Hartley Sweeten01fca372013-01-21 14:36:11 -0700183 int ret;
184
H Hartley Sweeten57b71c32013-01-21 14:37:15 -0700185 if ((s->subdev_flags & (SDF_CMD_READ | SDF_CMD_WRITE)) == 0) {
186 dev_warn(dev->class_dev,
187 "async subdevices must support SDF_CMD_READ or SDF_CMD_WRITE\n");
188 return -EINVAL;
189 }
190 if (!s->do_cmdtest) {
191 dev_warn(dev->class_dev,
192 "async subdevices must have a do_cmdtest() function\n");
193 return -EINVAL;
194 }
H Hartley Sweeten40f58a62013-01-21 14:36:40 -0700195
196 async = kzalloc(sizeof(*async), GFP_KERNEL);
Joe Perches78110bb2013-02-11 09:41:29 -0800197 if (!async)
H Hartley Sweeten40f58a62013-01-21 14:36:40 -0700198 return -ENOMEM;
Joe Perches78110bb2013-02-11 09:41:29 -0800199
H Hartley Sweeten40f58a62013-01-21 14:36:40 -0700200 init_waitqueue_head(&async->wait_head);
201 async->subdevice = s;
202 s->async = async;
203
204 async->max_bufsize = comedi_default_buf_maxsize_kb * 1024;
205 buf_size = comedi_default_buf_size_kb * 1024;
206 if (buf_size > async->max_bufsize)
207 buf_size = async->max_bufsize;
208
209 if (comedi_buf_alloc(dev, s, buf_size) < 0) {
210 dev_warn(dev->class_dev, "Buffer allocation failed\n");
211 return -ENOMEM;
212 }
213 if (s->buf_change) {
214 ret = s->buf_change(dev, s, buf_size);
215 if (ret < 0)
216 return ret;
217 }
218
Ian Abbottf65cc542013-02-01 10:20:30 +0000219 comedi_alloc_subdevice_minor(s);
H Hartley Sweeten40f58a62013-01-21 14:36:40 -0700220
221 return 0;
222}
223
224static int __comedi_device_postconfig(struct comedi_device *dev)
225{
226 struct comedi_subdevice *s;
227 int ret;
228 int i;
229
H Hartley Sweeten01fca372013-01-21 14:36:11 -0700230 for (i = 0; i < dev->n_subdevices; i++) {
231 s = &dev->subdevices[i];
232
233 if (s->type == COMEDI_SUBD_UNUSED)
234 continue;
235
236 if (s->len_chanlist == 0)
237 s->len_chanlist = 1;
238
239 if (s->do_cmd) {
H Hartley Sweeten40f58a62013-01-21 14:36:40 -0700240 ret = __comedi_device_postconfig_async(dev, s);
241 if (ret)
242 return ret;
H Hartley Sweeten01fca372013-01-21 14:36:11 -0700243 }
244
245 if (!s->range_table && !s->range_table_list)
246 s->range_table = &range_unknown;
247
248 if (!s->insn_read && s->insn_bits)
249 s->insn_read = insn_rw_emulate_bits;
250 if (!s->insn_write && s->insn_bits)
251 s->insn_write = insn_rw_emulate_bits;
252
253 if (!s->insn_read)
254 s->insn_read = insn_inval;
255 if (!s->insn_write)
256 s->insn_write = insn_inval;
257 if (!s->insn_bits)
258 s->insn_bits = insn_inval;
259 if (!s->insn_config)
260 s->insn_config = insn_inval;
261
262 if (!s->poll)
263 s->poll = poll_invalid;
264 }
265
266 return 0;
267}
268
Ian Abbott3902a372012-03-30 17:15:00 +0100269/* do a little post-config cleanup */
Ian Abbott3902a372012-03-30 17:15:00 +0100270static int comedi_device_postconfig(struct comedi_device *dev)
271{
Ian Abbottb2a644b2013-04-04 14:58:56 +0100272 int ret;
273
274 ret = __comedi_device_postconfig(dev);
H Hartley Sweetenae5dd5f2013-04-08 10:56:02 -0700275 if (ret < 0)
Ian Abbott3902a372012-03-30 17:15:00 +0100276 return ret;
Ian Abbott3902a372012-03-30 17:15:00 +0100277 smp_wmb();
Ian Abbotta7401cd2013-03-15 13:15:33 +0000278 dev->attached = true;
Ian Abbott3902a372012-03-30 17:15:00 +0100279 return 0;
280}
281
H Hartley Sweeten01fca372013-01-21 14:36:11 -0700282/*
283 * Generic recognize function for drivers that register their supported
284 * board names.
285 *
286 * 'driv->board_name' points to a 'const char *' member within the
287 * zeroth element of an array of some private board information
288 * structure, say 'struct foo_board' containing a member 'const char
289 * *board_name' that is initialized to point to a board name string that
290 * is one of the candidates matched against this function's 'name'
291 * parameter.
292 *
293 * 'driv->offset' is the size of the private board information
294 * structure, say 'sizeof(struct foo_board)', and 'driv->num_names' is
295 * the length of the array of private board information structures.
296 *
297 * If one of the board names in the array of private board information
298 * structures matches the name supplied to this function, the function
299 * returns a pointer to the pointer to the board name, otherwise it
300 * returns NULL. The return value ends up in the 'board_ptr' member of
301 * a 'struct comedi_device' that the low-level comedi driver's
302 * 'attach()' hook can convert to a point to a particular element of its
303 * array of private board information structures by subtracting the
304 * offset of the member that points to the board name. (No subtraction
305 * is required if the board name pointer is the first member of the
306 * private board information structure, which is generally the case.)
307 */
308static void *comedi_recognize(struct comedi_driver *driv, const char *name)
309{
310 char **name_ptr = (char **)driv->board_name;
311 int i;
312
313 for (i = 0; i < driv->num_names; i++) {
314 if (strcmp(*name_ptr, name) == 0)
315 return name_ptr;
316 name_ptr = (void *)name_ptr + driv->offset;
317 }
318
319 return NULL;
320}
321
322static void comedi_report_boards(struct comedi_driver *driv)
323{
324 unsigned int i;
325 const char *const *name_ptr;
326
327 pr_info("comedi: valid board names for %s driver are:\n",
328 driv->driver_name);
329
330 name_ptr = driv->board_name;
331 for (i = 0; i < driv->num_names; i++) {
332 pr_info(" %s\n", *name_ptr);
333 name_ptr = (const char **)((char *)name_ptr + driv->offset);
334 }
335
336 if (driv->num_names == 0)
337 pr_info(" %s\n", driv->driver_name);
338}
339
H Hartley Sweetenf375ac52013-04-09 16:05:54 -0700340/**
H Hartley Sweeten9ff8b152013-05-17 11:17:00 -0700341 * comedi_load_firmware() - Request and load firmware for a device.
342 * @dev: comedi_device struct
343 * @hw_device: device struct for the comedi_device
344 * @name: the name of the firmware image
345 * @cb: callback to the upload the firmware image
H Hartley Sweetend5695412013-05-17 11:18:01 -0700346 * @context: private context from the driver
H Hartley Sweeten9ff8b152013-05-17 11:17:00 -0700347 */
348int comedi_load_firmware(struct comedi_device *dev,
349 struct device *device,
350 const char *name,
351 int (*cb)(struct comedi_device *dev,
H Hartley Sweetend5695412013-05-17 11:18:01 -0700352 const u8 *data, size_t size,
353 unsigned long context),
354 unsigned long context)
H Hartley Sweeten9ff8b152013-05-17 11:17:00 -0700355{
356 const struct firmware *fw;
357 int ret;
358
359 if (!cb)
360 return -EINVAL;
361
362 ret = request_firmware(&fw, name, device);
363 if (ret == 0) {
H Hartley Sweetend5695412013-05-17 11:18:01 -0700364 ret = cb(dev, fw->data, fw->size, context);
H Hartley Sweeten9ff8b152013-05-17 11:17:00 -0700365 release_firmware(fw);
366 }
367
368 return ret;
369}
370EXPORT_SYMBOL_GPL(comedi_load_firmware);
371
372/**
H Hartley Sweetenca8b2962013-04-09 16:30:11 -0700373 * __comedi_request_region() - Request an I/O reqion for a legacy driver.
H Hartley Sweetenf375ac52013-04-09 16:05:54 -0700374 * @dev: comedi_device struct
375 * @start: base address of the I/O reqion
376 * @len: length of the I/O region
377 */
H Hartley Sweetenca8b2962013-04-09 16:30:11 -0700378int __comedi_request_region(struct comedi_device *dev,
379 unsigned long start, unsigned long len)
H Hartley Sweetenf375ac52013-04-09 16:05:54 -0700380{
381 if (!start) {
382 dev_warn(dev->class_dev,
383 "%s: a I/O base address must be specified\n",
384 dev->board_name);
385 return -EINVAL;
386 }
387
388 if (!request_region(start, len, dev->board_name)) {
389 dev_warn(dev->class_dev, "%s: I/O port conflict (%#lx,%lu)\n",
390 dev->board_name, start, len);
391 return -EIO;
392 }
H Hartley Sweetenf375ac52013-04-09 16:05:54 -0700393
394 return 0;
395}
H Hartley Sweetenca8b2962013-04-09 16:30:11 -0700396EXPORT_SYMBOL_GPL(__comedi_request_region);
397
398/**
399 * comedi_request_region() - Request an I/O reqion for a legacy driver.
400 * @dev: comedi_device struct
401 * @start: base address of the I/O reqion
402 * @len: length of the I/O region
403 */
404int comedi_request_region(struct comedi_device *dev,
405 unsigned long start, unsigned long len)
406{
407 int ret;
408
409 ret = __comedi_request_region(dev, start, len);
H Hartley Sweeten316f97f2013-04-18 14:31:29 -0700410 if (ret == 0) {
H Hartley Sweetenca8b2962013-04-09 16:30:11 -0700411 dev->iobase = start;
H Hartley Sweeten316f97f2013-04-18 14:31:29 -0700412 dev->iolen = len;
413 }
H Hartley Sweetenca8b2962013-04-09 16:30:11 -0700414
415 return ret;
416}
H Hartley Sweetenf375ac52013-04-09 16:05:54 -0700417EXPORT_SYMBOL_GPL(comedi_request_region);
418
H Hartley Sweeten316f97f2013-04-18 14:31:29 -0700419/**
420 * comedi_legacy_detach() - A generic (*detach) function for legacy drivers.
421 * @dev: comedi_device struct
422 */
423void comedi_legacy_detach(struct comedi_device *dev)
424{
H Hartley Sweeten3d1fe3f2013-04-18 14:34:37 -0700425 if (dev->irq) {
426 free_irq(dev->irq, dev);
427 dev->irq = 0;
428 }
H Hartley Sweeten316f97f2013-04-18 14:31:29 -0700429 if (dev->iobase && dev->iolen) {
430 release_region(dev->iobase, dev->iolen);
431 dev->iobase = 0;
432 dev->iolen = 0;
433 }
434}
435EXPORT_SYMBOL_GPL(comedi_legacy_detach);
436
Bill Pemberton0707bb02009-03-16 22:06:20 -0400437int comedi_device_attach(struct comedi_device *dev, struct comedi_devconfig *it)
David Schleefed9eccb2008-11-04 20:29:31 -0800438{
Bill Pemberton139dfbd2009-03-16 22:05:25 -0400439 struct comedi_driver *driv;
David Schleefed9eccb2008-11-04 20:29:31 -0800440 int ret;
441
442 if (dev->attached)
443 return -EBUSY;
444
445 for (driv = comedi_drivers; driv; driv = driv->next) {
Güngör Erseymen559e9a62012-09-11 17:56:42 +0300446 if (!try_module_get(driv->module))
David Schleefed9eccb2008-11-04 20:29:31 -0800447 continue;
David Schleefed9eccb2008-11-04 20:29:31 -0800448 if (driv->num_names) {
449 dev->board_ptr = comedi_recognize(driv, it->board_name);
Ian Abbott3902a372012-03-30 17:15:00 +0100450 if (dev->board_ptr)
451 break;
Ian Abbott80eb7a52012-08-14 11:29:17 +0100452 } else if (strcmp(driv->driver_name, it->board_name) == 0)
Ian Abbott3902a372012-03-30 17:15:00 +0100453 break;
David Schleefed9eccb2008-11-04 20:29:31 -0800454 module_put(driv->module);
455 }
Ian Abbott3902a372012-03-30 17:15:00 +0100456 if (driv == NULL) {
457 /* recognize has failed if we get here */
458 /* report valid board names before returning error */
459 for (driv = comedi_drivers; driv; driv = driv->next) {
Güngör Erseymen559e9a62012-09-11 17:56:42 +0300460 if (!try_module_get(driv->module))
Ian Abbott3902a372012-03-30 17:15:00 +0100461 continue;
Ian Abbott3902a372012-03-30 17:15:00 +0100462 comedi_report_boards(driv);
463 module_put(driv->module);
464 }
465 return -EIO;
466 }
Ian Abbott8c3714d2012-08-15 15:02:45 +0100467 if (driv->attach == NULL) {
468 /* driver does not support manual configuration */
469 dev_warn(dev->class_dev,
470 "driver '%s' does not support attach using comedi_config\n",
471 driv->driver_name);
472 module_put(driv->module);
473 return -ENOSYS;
474 }
Ian Abbott3902a372012-03-30 17:15:00 +0100475 /* initialize dev->driver here so
476 * comedi_error() can be called from attach */
477 dev->driver = driv;
H Hartley Sweeten34b68402013-04-08 10:55:29 -0700478 dev->board_name = dev->board_ptr ? *(const char **)dev->board_ptr
479 : dev->driver->driver_name;
Ian Abbott3902a372012-03-30 17:15:00 +0100480 ret = driv->attach(dev, it);
Ian Abbott74ece1082013-04-04 14:58:59 +0100481 if (ret >= 0)
482 ret = comedi_device_postconfig(dev);
David Schleefed9eccb2008-11-04 20:29:31 -0800483 if (ret < 0) {
Ian Abbott016599f2013-04-04 14:58:58 +0100484 comedi_device_detach(dev);
Ian Abbottdcd7b8b2013-04-04 14:58:57 +0100485 module_put(dev->driver->module);
David Schleefed9eccb2008-11-04 20:29:31 -0800486 }
Ian Abbottb2a644b2013-04-04 14:58:56 +0100487 /* On success, the driver module count has been incremented. */
488 return ret;
David Schleefed9eccb2008-11-04 20:29:31 -0800489}
490
Ian Abbotta588da12012-11-14 13:10:38 +0000491int comedi_auto_config(struct device *hardware_device,
492 struct comedi_driver *driver, unsigned long context)
Ian Abbottf40116702012-03-30 17:15:01 +0100493{
H Hartley Sweeten6013a9a2013-04-08 10:55:05 -0700494 struct comedi_device *dev;
Ian Abbottf40116702012-03-30 17:15:01 +0100495 int ret;
496
Ian Abbottf08e0ac2013-04-04 14:58:42 +0100497 if (!hardware_device) {
498 pr_warn("BUG! comedi_auto_config called with NULL hardware_device\n");
499 return -EINVAL;
500 }
501 if (!driver) {
502 dev_warn(hardware_device,
503 "BUG! comedi_auto_config called with NULL comedi driver\n");
504 return -EINVAL;
505 }
506
Ian Abbotta588da12012-11-14 13:10:38 +0000507 if (!driver->auto_attach) {
508 dev_warn(hardware_device,
509 "BUG! comedi driver '%s' has no auto_attach handler\n",
510 driver->driver_name);
511 return -EINVAL;
512 }
513
H Hartley Sweeten6013a9a2013-04-08 10:55:05 -0700514 dev = comedi_alloc_board_minor(hardware_device);
515 if (IS_ERR(dev))
516 return PTR_ERR(dev);
517 /* Note: comedi_alloc_board_minor() locked dev->mutex. */
Ian Abbottf40116702012-03-30 17:15:01 +0100518
H Hartley Sweeten6013a9a2013-04-08 10:55:05 -0700519 dev->driver = driver;
H Hartley Sweeten34b68402013-04-08 10:55:29 -0700520 dev->board_name = dev->driver->driver_name;
H Hartley Sweeten6013a9a2013-04-08 10:55:05 -0700521 ret = driver->auto_attach(dev, context);
Ian Abbott74ece1082013-04-04 14:58:59 +0100522 if (ret >= 0)
H Hartley Sweeten6013a9a2013-04-08 10:55:05 -0700523 ret = comedi_device_postconfig(dev);
Ian Abbottb2a644b2013-04-04 14:58:56 +0100524 if (ret < 0)
H Hartley Sweeten6013a9a2013-04-08 10:55:05 -0700525 comedi_device_detach(dev);
526 mutex_unlock(&dev->mutex);
Ian Abbottf40116702012-03-30 17:15:01 +0100527
528 if (ret < 0)
Ian Abbottf5b31e12013-04-04 14:58:48 +0100529 comedi_release_hardware_device(hardware_device);
Ian Abbottf40116702012-03-30 17:15:01 +0100530 return ret;
531}
Ian Abbott8ed705a2012-10-27 21:44:14 +0100532EXPORT_SYMBOL_GPL(comedi_auto_config);
533
534void comedi_auto_unconfig(struct device *hardware_device)
David Schleefed9eccb2008-11-04 20:29:31 -0800535{
Ian Abbottc43435d2012-03-30 17:14:58 +0100536 if (hardware_device == NULL)
Mithlesh Thukral0a85b6f2009-06-08 21:04:41 +0530537 return;
Ian Abbott3346b792013-04-04 14:58:47 +0100538 comedi_release_hardware_device(hardware_device);
David Schleefed9eccb2008-11-04 20:29:31 -0800539}
Ian Abbott8ed705a2012-10-27 21:44:14 +0100540EXPORT_SYMBOL_GPL(comedi_auto_unconfig);
H Hartley Sweeten1ae6b202013-01-30 15:24:38 -0700541
542int comedi_driver_register(struct comedi_driver *driver)
543{
544 driver->next = comedi_drivers;
545 comedi_drivers = driver;
546
547 return 0;
548}
H Hartley Sweeten5660e742013-04-12 10:11:54 -0700549EXPORT_SYMBOL_GPL(comedi_driver_register);
H Hartley Sweeten1ae6b202013-01-30 15:24:38 -0700550
551int comedi_driver_unregister(struct comedi_driver *driver)
552{
553 struct comedi_driver *prev;
554 int i;
555
556 /* check for devices using this driver */
557 for (i = 0; i < COMEDI_NUM_BOARD_MINORS; i++) {
558 struct comedi_device *dev = comedi_dev_from_minor(i);
559
560 if (!dev)
561 continue;
562
563 mutex_lock(&dev->mutex);
564 if (dev->attached && dev->driver == driver) {
565 if (dev->use_count)
566 dev_warn(dev->class_dev,
567 "BUG! detaching device with use_count=%d\n",
568 dev->use_count);
569 comedi_device_detach(dev);
570 }
571 mutex_unlock(&dev->mutex);
572 }
573
574 if (comedi_drivers == driver) {
575 comedi_drivers = driver->next;
576 return 0;
577 }
578
579 for (prev = comedi_drivers; prev->next; prev = prev->next) {
580 if (prev->next == driver) {
581 prev->next = driver->next;
582 return 0;
583 }
584 }
585 return -EINVAL;
586}
H Hartley Sweeten5660e742013-04-12 10:11:54 -0700587EXPORT_SYMBOL_GPL(comedi_driver_unregister);