GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / staging / comedi / drivers / cb_pcidda.c
blob9e5197dcfec0419c21289db6a9280135b1f3d959
1 /*
2 comedi/drivers/cb_pcidda.c
3 This intends to be a driver for the ComputerBoards / MeasurementComputing
4 PCI-DDA series.
6 Copyright (C) 2001 Ivan Martinez <ivanmr@altavista.com>
7 Copyright (C) 2001 Frank Mori Hess <fmhess@users.sourceforge.net>
9 COMEDI - Linux Control and Measurement Device Interface
10 Copyright (C) 1997-8 David A. Schleef <ds@schleef.org>
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 Driver: cb_pcidda
29 Description: MeasurementComputing PCI-DDA series
30 Author: Ivan Martinez <ivanmr@altavista.com>, Frank Mori Hess <fmhess@users.sourceforge.net>
31 Status: Supports 08/16, 04/16, 02/16, 08/12, 04/12, and 02/12
32 Devices: [Measurement Computing] PCI-DDA08/12 (cb_pcidda), PCI-DDA04/12,
33 PCI-DDA02/12, PCI-DDA08/16, PCI-DDA04/16, PCI-DDA02/16
35 Configuration options:
36 [0] - PCI bus of device (optional)
37 [1] - PCI slot of device (optional)
38 If bus/slot is not specified, the first available PCI
39 device will be used.
41 Only simple analog output writing is supported.
43 So far it has only been tested with:
44 - PCI-DDA08/12
45 Please report success/failure with other different cards to
46 <comedi@comedi.org>.
49 #include "../comedidev.h"
51 #include "comedi_pci.h"
52 #include "8255.h"
54 #define PCI_VENDOR_ID_CB 0x1307 /* PCI vendor number of ComputerBoards */
55 #define EEPROM_SIZE 128 /* number of entries in eeprom */
56 #define MAX_AO_CHANNELS 8 /* maximum number of ao channels for supported boards */
58 /* PCI-DDA base addresses */
59 #define DIGITALIO_BADRINDEX 2
60 /* DIGITAL I/O is pci_dev->resource[2] */
61 #define DIGITALIO_SIZE 8
62 /* DIGITAL I/O uses 8 I/O port addresses */
63 #define DAC_BADRINDEX 3
64 /* DAC is pci_dev->resource[3] */
66 /* Digital I/O registers */
67 #define PORT1A 0 /* PORT 1A DATA */
69 #define PORT1B 1 /* PORT 1B DATA */
71 #define PORT1C 2 /* PORT 1C DATA */
73 #define CONTROL1 3 /* CONTROL REGISTER 1 */
75 #define PORT2A 4 /* PORT 2A DATA */
77 #define PORT2B 5 /* PORT 2B DATA */
79 #define PORT2C 6 /* PORT 2C DATA */
81 #define CONTROL2 7 /* CONTROL REGISTER 2 */
83 /* DAC registers */
84 #define DACONTROL 0 /* D/A CONTROL REGISTER */
85 #define SU 0000001 /* Simultaneous update enabled */
86 #define NOSU 0000000 /* Simultaneous update disabled */
87 #define ENABLEDAC 0000002 /* Enable specified DAC */
88 #define DISABLEDAC 0000000 /* Disable specified DAC */
89 #define RANGE2V5 0000000 /* 2.5V */
90 #define RANGE5V 0000200 /* 5V */
91 #define RANGE10V 0000300 /* 10V */
92 #define UNIP 0000400 /* Unipolar outputs */
93 #define BIP 0000000 /* Bipolar outputs */
95 #define DACALIBRATION1 4 /* D/A CALIBRATION REGISTER 1 */
96 /* write bits */
97 #define SERIAL_IN_BIT 0x1 /* serial data input for eeprom, caldacs, reference dac */
98 #define CAL_CHANNEL_MASK (0x7 << 1)
99 #define CAL_CHANNEL_BITS(channel) (((channel) << 1) & CAL_CHANNEL_MASK)
100 /* read bits */
101 #define CAL_COUNTER_MASK 0x1f
102 #define CAL_COUNTER_OVERFLOW_BIT 0x20 /* calibration counter overflow status bit */
103 #define AO_BELOW_REF_BIT 0x40 /* analog output is less than reference dac voltage */
104 #define SERIAL_OUT_BIT 0x80 /* serial data out, for reading from eeprom */
106 #define DACALIBRATION2 6 /* D/A CALIBRATION REGISTER 2 */
107 #define SELECT_EEPROM_BIT 0x1 /* send serial data in to eeprom */
108 #define DESELECT_REF_DAC_BIT 0x2 /* don't send serial data to MAX542 reference dac */
109 #define DESELECT_CALDAC_BIT(n) (0x4 << (n)) /* don't send serial data to caldac n */
110 #define DUMMY_BIT 0x40 /* manual says to set this bit with no explanation */
112 #define DADATA 8 /* FIRST D/A DATA REGISTER (0) */
114 static const struct comedi_lrange cb_pcidda_ranges = {
117 BIP_RANGE(10),
118 BIP_RANGE(5),
119 BIP_RANGE(2.5),
120 UNI_RANGE(10),
121 UNI_RANGE(5),
122 UNI_RANGE(2.5),
127 * Board descriptions for two imaginary boards. Describing the
128 * boards in this way is optional, and completely driver-dependent.
129 * Some drivers use arrays such as this, other do not.
131 struct cb_pcidda_board {
132 const char *name;
133 char status; /* Driver status: */
136 * 0 - tested
137 * 1 - manual read, not tested
138 * 2 - manual not read
141 unsigned short device_id;
142 int ao_chans;
143 int ao_bits;
144 const struct comedi_lrange *ranges;
147 static const struct cb_pcidda_board cb_pcidda_boards[] = {
149 .name = "pci-dda02/12",
150 .status = 1,
151 .device_id = 0x20,
152 .ao_chans = 2,
153 .ao_bits = 12,
154 .ranges = &cb_pcidda_ranges,
157 .name = "pci-dda04/12",
158 .status = 1,
159 .device_id = 0x21,
160 .ao_chans = 4,
161 .ao_bits = 12,
162 .ranges = &cb_pcidda_ranges,
165 .name = "pci-dda08/12",
166 .status = 0,
167 .device_id = 0x22,
168 .ao_chans = 8,
169 .ao_bits = 12,
170 .ranges = &cb_pcidda_ranges,
173 .name = "pci-dda02/16",
174 .status = 2,
175 .device_id = 0x23,
176 .ao_chans = 2,
177 .ao_bits = 16,
178 .ranges = &cb_pcidda_ranges,
181 .name = "pci-dda04/16",
182 .status = 2,
183 .device_id = 0x24,
184 .ao_chans = 4,
185 .ao_bits = 16,
186 .ranges = &cb_pcidda_ranges,
189 .name = "pci-dda08/16",
190 .status = 0,
191 .device_id = 0x25,
192 .ao_chans = 8,
193 .ao_bits = 16,
194 .ranges = &cb_pcidda_ranges,
198 static DEFINE_PCI_DEVICE_TABLE(cb_pcidda_pci_table) = {
200 PCI_VENDOR_ID_CB, 0x0020, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, {
201 PCI_VENDOR_ID_CB, 0x0021, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, {
202 PCI_VENDOR_ID_CB, 0x0022, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, {
203 PCI_VENDOR_ID_CB, 0x0023, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, {
204 PCI_VENDOR_ID_CB, 0x0024, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, {
205 PCI_VENDOR_ID_CB, 0x0025, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, {
209 MODULE_DEVICE_TABLE(pci, cb_pcidda_pci_table);
212 * Useful for shorthand access to the particular board structure
214 #define thisboard ((const struct cb_pcidda_board *)dev->board_ptr)
216 /* this structure is for data unique to this hardware driver. If
217 several hardware drivers keep similar information in this structure,
218 feel free to suggest moving the variable to the struct comedi_device struct. */
219 struct cb_pcidda_private {
220 int data;
222 /* would be useful for a PCI device */
223 struct pci_dev *pci_dev;
225 unsigned long digitalio;
226 unsigned long dac;
228 /* unsigned long control_status; */
229 /* unsigned long adc_fifo; */
231 unsigned int dac_cal1_bits; /* bits last written to da calibration register 1 */
232 unsigned int ao_range[MAX_AO_CHANNELS]; /* current range settings for output channels */
233 u16 eeprom_data[EEPROM_SIZE]; /* software copy of board's eeprom */
237 * most drivers define the following macro to make it easy to
238 * access the private structure.
240 #define devpriv ((struct cb_pcidda_private *)dev->private)
242 static int cb_pcidda_attach(struct comedi_device *dev,
243 struct comedi_devconfig *it);
244 static int cb_pcidda_detach(struct comedi_device *dev);
245 /* static int cb_pcidda_ai_rinsn(struct comedi_device *dev,struct comedi_subdevice *s,struct comedi_insn *insn,unsigned int *data); */
246 static int cb_pcidda_ao_winsn(struct comedi_device *dev,
247 struct comedi_subdevice *s,
248 struct comedi_insn *insn, unsigned int *data);
250 /* static int cb_pcidda_ai_cmd(struct comedi_device *dev, struct *comedi_subdevice *s);*/
251 /* static int cb_pcidda_ai_cmdtest(struct comedi_device *dev, struct comedi_subdevice *s, struct comedi_cmd *cmd); */
252 /* static int cb_pcidda_ns_to_timer(unsigned int *ns,int *round); */
254 static unsigned int cb_pcidda_serial_in(struct comedi_device *dev);
255 static void cb_pcidda_serial_out(struct comedi_device *dev, unsigned int value,
256 unsigned int num_bits);
257 static unsigned int cb_pcidda_read_eeprom(struct comedi_device *dev,
258 unsigned int address);
259 static void cb_pcidda_calibrate(struct comedi_device *dev, unsigned int channel,
260 unsigned int range);
263 * The struct comedi_driver structure tells the Comedi core module
264 * which functions to call to configure/deconfigure (attach/detach)
265 * the board, and also about the kernel module that contains
266 * the device code.
268 static struct comedi_driver driver_cb_pcidda = {
269 .driver_name = "cb_pcidda",
270 .module = THIS_MODULE,
271 .attach = cb_pcidda_attach,
272 .detach = cb_pcidda_detach,
276 * Attach is called by the Comedi core to configure the driver
277 * for a particular board.
279 static int cb_pcidda_attach(struct comedi_device *dev,
280 struct comedi_devconfig *it)
282 struct comedi_subdevice *s;
283 struct pci_dev *pcidev = NULL;
284 int index;
286 printk("comedi%d: cb_pcidda: ", dev->minor);
289 * Allocate the private structure area.
291 if (alloc_private(dev, sizeof(struct cb_pcidda_private)) < 0)
292 return -ENOMEM;
295 * Probe the device to determine what device in the series it is.
297 printk("\n");
299 for_each_pci_dev(pcidev) {
300 if (pcidev->vendor == PCI_VENDOR_ID_CB) {
301 if (it->options[0] || it->options[1]) {
302 if (pcidev->bus->number != it->options[0] ||
303 PCI_SLOT(pcidev->devfn) != it->options[1]) {
304 continue;
307 for (index = 0; index < ARRAY_SIZE(cb_pcidda_boards); index++) {
308 if (cb_pcidda_boards[index].device_id ==
309 pcidev->device) {
310 goto found;
315 if (!pcidev) {
316 printk
317 ("Not a ComputerBoards/MeasurementComputing card on requested position\n");
318 return -EIO;
320 found:
321 devpriv->pci_dev = pcidev;
322 dev->board_ptr = cb_pcidda_boards + index;
323 /* "thisboard" macro can be used from here. */
324 printk("Found %s at requested position\n", thisboard->name);
327 * Enable PCI device and request regions.
329 if (comedi_pci_enable(pcidev, thisboard->name)) {
330 printk
331 ("cb_pcidda: failed to enable PCI device and request regions\n");
332 return -EIO;
336 * Allocate the I/O ports.
338 devpriv->digitalio =
339 pci_resource_start(devpriv->pci_dev, DIGITALIO_BADRINDEX);
340 devpriv->dac = pci_resource_start(devpriv->pci_dev, DAC_BADRINDEX);
343 * Warn about the status of the driver.
345 if (thisboard->status == 2)
346 printk
347 ("WARNING: DRIVER FOR THIS BOARD NOT CHECKED WITH MANUAL. "
348 "WORKS ASSUMING FULL COMPATIBILITY WITH PCI-DDA08/12. "
349 "PLEASE REPORT USAGE TO <ivanmr@altavista.com>.\n");
352 * Initialize dev->board_name.
354 dev->board_name = thisboard->name;
357 * Allocate the subdevice structures.
359 if (alloc_subdevices(dev, 3) < 0)
360 return -ENOMEM;
362 s = dev->subdevices + 0;
363 /* analog output subdevice */
364 s->type = COMEDI_SUBD_AO;
365 s->subdev_flags = SDF_WRITABLE;
366 s->n_chan = thisboard->ao_chans;
367 s->maxdata = (1 << thisboard->ao_bits) - 1;
368 s->range_table = thisboard->ranges;
369 s->insn_write = cb_pcidda_ao_winsn;
371 /* s->subdev_flags |= SDF_CMD_READ; */
372 /* s->do_cmd = cb_pcidda_ai_cmd; */
373 /* s->do_cmdtest = cb_pcidda_ai_cmdtest; */
375 /* two 8255 digital io subdevices */
376 s = dev->subdevices + 1;
377 subdev_8255_init(dev, s, NULL, devpriv->digitalio);
378 s = dev->subdevices + 2;
379 subdev_8255_init(dev, s, NULL, devpriv->digitalio + PORT2A);
381 printk(" eeprom:");
382 for (index = 0; index < EEPROM_SIZE; index++) {
383 devpriv->eeprom_data[index] = cb_pcidda_read_eeprom(dev, index);
384 printk(" %i:0x%x ", index, devpriv->eeprom_data[index]);
386 printk("\n");
388 /* set calibrations dacs */
389 for (index = 0; index < thisboard->ao_chans; index++)
390 cb_pcidda_calibrate(dev, index, devpriv->ao_range[index]);
392 return 1;
396 * _detach is called to deconfigure a device. It should deallocate
397 * resources.
398 * This function is also called when _attach() fails, so it should be
399 * careful not to release resources that were not necessarily
400 * allocated by _attach(). dev->private and dev->subdevices are
401 * deallocated automatically by the core.
403 static int cb_pcidda_detach(struct comedi_device *dev)
406 * Deallocate the I/O ports.
408 if (devpriv) {
409 if (devpriv->pci_dev) {
410 if (devpriv->dac)
411 comedi_pci_disable(devpriv->pci_dev);
412 pci_dev_put(devpriv->pci_dev);
415 /* cleanup 8255 */
416 if (dev->subdevices) {
417 subdev_8255_cleanup(dev, dev->subdevices + 1);
418 subdev_8255_cleanup(dev, dev->subdevices + 2);
421 printk("comedi%d: cb_pcidda: remove\n", dev->minor);
423 return 0;
427 * I will program this later... ;-)
431 /* This function doesn't require a particular form, this is just
432 * what happens to be used in some of the drivers. It should
433 * convert ns nanoseconds to a counter value suitable for programming
434 * the device. Also, it should adjust ns so that it cooresponds to
435 * the actual time that the device will use. */
437 static int cb_pcidda_ao_winsn(struct comedi_device *dev,
438 struct comedi_subdevice *s,
439 struct comedi_insn *insn, unsigned int *data)
441 unsigned int command;
442 unsigned int channel, range;
444 channel = CR_CHAN(insn->chanspec);
445 range = CR_RANGE(insn->chanspec);
447 /* adjust calibration dacs if range has changed */
448 if (range != devpriv->ao_range[channel])
449 cb_pcidda_calibrate(dev, channel, range);
451 /* output channel configuration */
452 command = NOSU | ENABLEDAC;
454 /* output channel range */
455 switch (range) {
456 case 0:
457 command |= BIP | RANGE10V;
458 break;
459 case 1:
460 command |= BIP | RANGE5V;
461 break;
462 case 2:
463 command |= BIP | RANGE2V5;
464 break;
465 case 3:
466 command |= UNIP | RANGE10V;
467 break;
468 case 4:
469 command |= UNIP | RANGE5V;
470 break;
471 case 5:
472 command |= UNIP | RANGE2V5;
473 break;
476 /* output channel specification */
477 command |= channel << 2;
478 outw(command, devpriv->dac + DACONTROL);
480 /* write data */
481 outw(data[0], devpriv->dac + DADATA + channel * 2);
483 /* return the number of samples read/written */
484 return 1;
487 /* lowlevel read from eeprom */
488 static unsigned int cb_pcidda_serial_in(struct comedi_device *dev)
490 unsigned int value = 0;
491 int i;
492 const int value_width = 16; /* number of bits wide values are */
494 for (i = 1; i <= value_width; i++) {
495 /* read bits most significant bit first */
496 if (inw_p(devpriv->dac + DACALIBRATION1) & SERIAL_OUT_BIT)
497 value |= 1 << (value_width - i);
500 return value;
503 /* lowlevel write to eeprom/dac */
504 static void cb_pcidda_serial_out(struct comedi_device *dev, unsigned int value,
505 unsigned int num_bits)
507 int i;
509 for (i = 1; i <= num_bits; i++) {
510 /* send bits most significant bit first */
511 if (value & (1 << (num_bits - i)))
512 devpriv->dac_cal1_bits |= SERIAL_IN_BIT;
513 else
514 devpriv->dac_cal1_bits &= ~SERIAL_IN_BIT;
515 outw_p(devpriv->dac_cal1_bits, devpriv->dac + DACALIBRATION1);
519 /* reads a 16 bit value from board's eeprom */
520 static unsigned int cb_pcidda_read_eeprom(struct comedi_device *dev,
521 unsigned int address)
523 unsigned int i;
524 unsigned int cal2_bits;
525 unsigned int value;
526 const int max_num_caldacs = 4; /* one caldac for every two dac channels */
527 const int read_instruction = 0x6; /* bits to send to tell eeprom we want to read */
528 const int instruction_length = 3;
529 const int address_length = 8;
531 /* send serial output stream to eeprom */
532 cal2_bits = SELECT_EEPROM_BIT | DESELECT_REF_DAC_BIT | DUMMY_BIT;
533 /* deactivate caldacs (one caldac for every two channels) */
534 for (i = 0; i < max_num_caldacs; i++)
535 cal2_bits |= DESELECT_CALDAC_BIT(i);
536 outw_p(cal2_bits, devpriv->dac + DACALIBRATION2);
538 /* tell eeprom we want to read */
539 cb_pcidda_serial_out(dev, read_instruction, instruction_length);
540 /* send address we want to read from */
541 cb_pcidda_serial_out(dev, address, address_length);
543 value = cb_pcidda_serial_in(dev);
545 /* deactivate eeprom */
546 cal2_bits &= ~SELECT_EEPROM_BIT;
547 outw_p(cal2_bits, devpriv->dac + DACALIBRATION2);
549 return value;
552 /* writes to 8 bit calibration dacs */
553 static void cb_pcidda_write_caldac(struct comedi_device *dev,
554 unsigned int caldac, unsigned int channel,
555 unsigned int value)
557 unsigned int cal2_bits;
558 unsigned int i;
559 const int num_channel_bits = 3; /* caldacs use 3 bit channel specification */
560 const int num_caldac_bits = 8; /* 8 bit calibration dacs */
561 const int max_num_caldacs = 4; /* one caldac for every two dac channels */
563 /* write 3 bit channel */
564 cb_pcidda_serial_out(dev, channel, num_channel_bits);
565 /* write 8 bit caldac value */
566 cb_pcidda_serial_out(dev, value, num_caldac_bits);
569 * latch stream into appropriate caldac deselect reference dac
571 cal2_bits = DESELECT_REF_DAC_BIT | DUMMY_BIT;
572 /* deactivate caldacs (one caldac for every two channels) */
573 for (i = 0; i < max_num_caldacs; i++)
574 cal2_bits |= DESELECT_CALDAC_BIT(i);
575 /* activate the caldac we want */
576 cal2_bits &= ~DESELECT_CALDAC_BIT(caldac);
577 outw_p(cal2_bits, devpriv->dac + DACALIBRATION2);
578 /* deactivate caldac */
579 cal2_bits |= DESELECT_CALDAC_BIT(caldac);
580 outw_p(cal2_bits, devpriv->dac + DACALIBRATION2);
583 /* returns caldac that calibrates given analog out channel */
584 static unsigned int caldac_number(unsigned int channel)
586 return channel / 2;
589 /* returns caldac channel that provides fine gain for given ao channel */
590 static unsigned int fine_gain_channel(unsigned int ao_channel)
592 return 4 * (ao_channel % 2);
595 /* returns caldac channel that provides coarse gain for given ao channel */
596 static unsigned int coarse_gain_channel(unsigned int ao_channel)
598 return 1 + 4 * (ao_channel % 2);
601 /* returns caldac channel that provides coarse offset for given ao channel */
602 static unsigned int coarse_offset_channel(unsigned int ao_channel)
604 return 2 + 4 * (ao_channel % 2);
607 /* returns caldac channel that provides fine offset for given ao channel */
608 static unsigned int fine_offset_channel(unsigned int ao_channel)
610 return 3 + 4 * (ao_channel % 2);
613 /* returns eeprom address that provides offset for given ao channel and range */
614 static unsigned int offset_eeprom_address(unsigned int ao_channel,
615 unsigned int range)
617 return 0x7 + 2 * range + 12 * ao_channel;
620 /* returns eeprom address that provides gain calibration for given ao channel and range */
621 static unsigned int gain_eeprom_address(unsigned int ao_channel,
622 unsigned int range)
624 return 0x8 + 2 * range + 12 * ao_channel;
627 /* returns upper byte of eeprom entry, which gives the coarse adjustment values */
628 static unsigned int eeprom_coarse_byte(unsigned int word)
630 return (word >> 8) & 0xff;
633 /* returns lower byte of eeprom entry, which gives the fine adjustment values */
634 static unsigned int eeprom_fine_byte(unsigned int word)
636 return word & 0xff;
639 /* set caldacs to eeprom values for given channel and range */
640 static void cb_pcidda_calibrate(struct comedi_device *dev, unsigned int channel,
641 unsigned int range)
643 unsigned int coarse_offset, fine_offset, coarse_gain, fine_gain;
645 /* remember range so we can tell when we need to readjust calibration */
646 devpriv->ao_range[channel] = range;
648 /* get values from eeprom data */
649 coarse_offset =
650 eeprom_coarse_byte(devpriv->eeprom_data
651 [offset_eeprom_address(channel, range)]);
652 fine_offset =
653 eeprom_fine_byte(devpriv->eeprom_data
654 [offset_eeprom_address(channel, range)]);
655 coarse_gain =
656 eeprom_coarse_byte(devpriv->eeprom_data
657 [gain_eeprom_address(channel, range)]);
658 fine_gain =
659 eeprom_fine_byte(devpriv->eeprom_data
660 [gain_eeprom_address(channel, range)]);
662 /* set caldacs */
663 cb_pcidda_write_caldac(dev, caldac_number(channel),
664 coarse_offset_channel(channel), coarse_offset);
665 cb_pcidda_write_caldac(dev, caldac_number(channel),
666 fine_offset_channel(channel), fine_offset);
667 cb_pcidda_write_caldac(dev, caldac_number(channel),
668 coarse_gain_channel(channel), coarse_gain);
669 cb_pcidda_write_caldac(dev, caldac_number(channel),
670 fine_gain_channel(channel), fine_gain);
674 * A convenient macro that defines init_module() and cleanup_module(),
675 * as necessary.
677 static int __devinit driver_cb_pcidda_pci_probe(struct pci_dev *dev,
678 const struct pci_device_id *ent)
680 return comedi_pci_auto_config(dev, driver_cb_pcidda.driver_name);
683 static void __devexit driver_cb_pcidda_pci_remove(struct pci_dev *dev)
685 comedi_pci_auto_unconfig(dev);
688 static struct pci_driver driver_cb_pcidda_pci_driver = {
689 .id_table = cb_pcidda_pci_table,
690 .probe = &driver_cb_pcidda_pci_probe,
691 .remove = __devexit_p(&driver_cb_pcidda_pci_remove)
694 static int __init driver_cb_pcidda_init_module(void)
696 int retval;
698 retval = comedi_driver_register(&driver_cb_pcidda);
699 if (retval < 0)
700 return retval;
702 driver_cb_pcidda_pci_driver.name = (char *)driver_cb_pcidda.driver_name;
703 return pci_register_driver(&driver_cb_pcidda_pci_driver);
706 static void __exit driver_cb_pcidda_cleanup_module(void)
708 pci_unregister_driver(&driver_cb_pcidda_pci_driver);
709 comedi_driver_unregister(&driver_cb_pcidda);
712 module_init(driver_cb_pcidda_init_module);
713 module_exit(driver_cb_pcidda_cleanup_module);
715 MODULE_AUTHOR("Comedi http://www.comedi.org");
716 MODULE_DESCRIPTION("Comedi low-level driver");
717 MODULE_LICENSE("GPL");