]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/staging/comedi/drivers/ii_pci20kc.c
staging: comedi: ii_pci20kc: remove forward declarations 2
[karo-tx-linux.git] / drivers / staging / comedi / drivers / ii_pci20kc.c
1 /*
2  *      comedi/drivers/ii_pci20kc.c
3  *      Driver for Intelligent Instruments PCI-20001C carrier board
4  *      and modules.
5  *
6  *      Copyright (C) 2000 Markus Kempf <kempf@matsci.uni-sb.de>
7  *      with suggestions from David Schleef
8  *                      16.06.2000
9  *
10  *      Linux device driver for COMEDI
11  *      Intelligent Instrumentation
12  *      PCI-20001 C-2A Carrier Board
13  *      PCI-20341 M-1A 16-Bit analog input module
14  *                              - differential
15  *                              - range (-5V - +5V)
16  *                              - 16 bit
17  *      PCI-20006 M-2 16-Bit analog output module
18  *                              - ranges (-10V - +10V) (0V - +10V) (-5V - +5V)
19  *                              - 16 bit
20  *
21  *      only ONE PCI-20341 module possible
22  *      only ONE PCI-20006 module possible
23  *      no extern trigger implemented
24  *
25  *      NOT WORKING (but soon) only 4 on-board differential channels supported
26  *      NOT WORKING (but soon) only ONE di-port and ONE do-port supported
27  *                             instead of 4 digital ports
28  *      di-port == Port 0
29  *      do-port == Port 1
30  *
31  *      The state of this driver is only a starting point for a complete
32  *      COMEDI-driver. The final driver should support all features of the
33  *      carrier board and modules.
34  *
35  *      The test configuration:
36  *
37  *      kernel 2.2.14 with RTAI v1.2  and patch-2.2.14rthal2
38  *      COMEDI 0.7.45
39  *      COMEDILIB 0.7.9
40  *
41  */
42 /*
43 Driver: ii_pci20kc
44 Description: Intelligent Instruments PCI-20001C carrier board
45 Author: Markus Kempf <kempf@matsci.uni-sb.de>
46 Devices: [Intelligent Instrumentation] PCI-20001C (ii_pci20kc)
47 Status: works
48
49 Supports the PCI-20001 C-2a Carrier board, and could probably support
50 the other carrier boards with small modifications.  Modules supported
51 are:
52         PCI-20006 M-2 16-bit analog output module
53         PCI-20341 M-1A 16-bit analog input module
54
55 Options:
56   0   Board base address
57   1   IRQ
58   2   first option for module 1
59   3   second option for module 1
60   4   first option for module 2
61   5   second option for module 2
62   6   first option for module 3
63   7   second option for module 3
64
65 options for PCI-20006M:
66   first:   Analog output channel 0 range configuration
67              0  bipolar 10  (-10V -- +10V)
68              1  unipolar 10  (0V -- +10V)
69              2  bipolar 5  (-5V -- 5V)
70   second:  Analog output channel 1 range configuration
71
72 options for PCI-20341M:
73   first:   Analog input gain configuration
74              0  1
75              1  10
76              2  100
77              3  200
78 */
79
80 #include <linux/module.h>
81 #include "../comedidev.h"
82
83 #define PCI20000_ID                     0x1d
84 #define PCI20341_ID                     0x77
85 #define PCI20006_ID                     0xe3
86 #define PCI20xxx_EMPTY_ID               0xff
87
88 #define PCI20000_OFFSET                 0x100
89 #define PCI20000_MODULES                3
90
91 #define PCI20000_DIO_0                  0x80
92 #define PCI20000_DIO_1                  0x81
93 #define PCI20000_DIO_2                  0xc0
94 #define PCI20000_DIO_3                  0xc1
95 #define PCI20000_DIO_CONTROL_01         0x83    /* port 0, 1 control */
96 #define PCI20000_DIO_CONTROL_23         0xc3    /* port 2, 3 control */
97 #define PCI20000_DIO_BUFFER             0x82    /* buffer direction & enable */
98 #define PCI20000_DIO_EOC                0xef    /* even port, control output */
99 #define PCI20000_DIO_OOC                0xfd    /* odd port, control output */
100 #define PCI20000_DIO_EIC                0x90    /* even port, control input */
101 #define PCI20000_DIO_OIC                0x82    /* odd port, control input */
102 #define DIO_CAND                        0x12    /* and bit 1 & 4 of control */
103 #define DIO_BE                          0x01    /* buffer: port enable */
104 #define DIO_BO                          0x04    /* buffer: output */
105 #define DIO_BI                          0x05    /* buffer: input */
106 #define DIO_PS_0                        0x00    /* buffer: port shift 0 */
107 #define DIO_PS_1                        0x01    /* buffer: port shift 1 */
108 #define DIO_PS_2                        0x04    /* buffer: port shift 2 */
109 #define DIO_PS_3                        0x05    /* buffer: port shift 3 */
110
111 #define PCI20006_LCHAN0                 0x0d
112 #define PCI20006_STROBE0                0x0b
113 #define PCI20006_LCHAN1                 0x15
114 #define PCI20006_STROBE1                0x13
115
116 #define PCI20341_INIT                   0x04
117 #define PCI20341_REPMODE                0x00    /* single shot mode */
118 #define PCI20341_PACER                  0x00    /* Hardware Pacer disabled */
119 #define PCI20341_CHAN_NR                0x04    /* number of input channels */
120 #define PCI20341_CONFIG_REG             0x10
121 #define PCI20341_MOD_STATUS             0x01
122 #define PCI20341_OPT_REG                0x11
123 #define PCI20341_SET_TIME_REG           0x15
124 #define PCI20341_LCHAN_ADDR_REG         0x13
125 #define PCI20341_CHAN_LIST              0x80
126 #define PCI20341_CC_RESET               0x1b
127 #define PCI20341_CHAN_RESET             0x19
128 #define PCI20341_SOFT_PACER             0x04
129 #define PCI20341_STATUS_REG             0x12
130 #define PCI20341_LDATA                  0x02
131 #define PCI20341_DAISY_CHAIN            0x20    /* On-board inputs only */
132 #define PCI20341_MUX                    0x04    /* Enable on-board MUX */
133 #define PCI20341_SCANLIST               0x80    /* Channel/Gain Scan List */
134
135 union pci20xxx_subdev_private {
136         void __iomem *iobase;
137         struct {
138                 void __iomem *iobase;
139                 const struct comedi_lrange *ao_range_list[2];
140                                         /* range of channels of ao module */
141                 unsigned int last_data[2];
142         } pci20006;
143         struct {
144                 void __iomem *iobase;
145                 int timebase;
146                 int settling_time;
147                 int ai_gain;
148         } pci20341;
149 };
150
151 struct pci20xxx_private {
152         void __iomem *ioaddr;
153 };
154
155 #define CHAN (CR_CHAN(it->chanlist[0]))
156
157 /* pci20006m */
158
159 static int pci20006_insn_read(struct comedi_device *dev,
160                               struct comedi_subdevice *s,
161                               struct comedi_insn *insn, unsigned int *data);
162 static int pci20006_insn_write(struct comedi_device *dev,
163                                struct comedi_subdevice *s,
164                                struct comedi_insn *insn, unsigned int *data);
165
166 static const struct comedi_lrange *pci20006_range_list[] = {
167         &range_bipolar10,
168         &range_unipolar10,
169         &range_bipolar5,
170 };
171
172 static int pci20006_init(struct comedi_device *dev, struct comedi_subdevice *s,
173                          int opt0, int opt1)
174 {
175         union pci20xxx_subdev_private *sdp = s->private;
176
177         if (opt0 < 0 || opt0 > 2)
178                 opt0 = 0;
179         if (opt1 < 0 || opt1 > 2)
180                 opt1 = 0;
181
182         sdp->pci20006.ao_range_list[0] = pci20006_range_list[opt0];
183         sdp->pci20006.ao_range_list[1] = pci20006_range_list[opt1];
184
185         /* ao subdevice */
186         s->type = COMEDI_SUBD_AO;
187         s->subdev_flags = SDF_WRITABLE;
188         s->n_chan = 2;
189         s->len_chanlist = 2;
190         s->insn_read = pci20006_insn_read;
191         s->insn_write = pci20006_insn_write;
192         s->maxdata = 0xffff;
193         s->range_table_list = sdp->pci20006.ao_range_list;
194         return 0;
195 }
196
197 static int pci20006_insn_read(struct comedi_device *dev,
198                               struct comedi_subdevice *s,
199                               struct comedi_insn *insn, unsigned int *data)
200 {
201         union pci20xxx_subdev_private *sdp = s->private;
202
203         data[0] = sdp->pci20006.last_data[CR_CHAN(insn->chanspec)];
204
205         return 1;
206 }
207
208 static int pci20006_insn_write(struct comedi_device *dev,
209                                struct comedi_subdevice *s,
210                                struct comedi_insn *insn, unsigned int *data)
211 {
212         union pci20xxx_subdev_private *sdp = s->private;
213         int hi, lo;
214         unsigned int boarddata;
215
216         sdp->pci20006.last_data[CR_CHAN(insn->chanspec)] = data[0];
217         boarddata = (((unsigned int)data[0] + 0x8000) & 0xffff);
218                                                 /* comedi-data -> board-data */
219         lo = (boarddata & 0xff);
220         hi = ((boarddata >> 8) & 0xff);
221
222         switch (CR_CHAN(insn->chanspec)) {
223         case 0:
224                 writeb(lo, sdp->iobase + PCI20006_LCHAN0);
225                 writeb(hi, sdp->iobase + PCI20006_LCHAN0 + 1);
226                 writeb(0x00, sdp->iobase + PCI20006_STROBE0);
227                 break;
228         case 1:
229                 writeb(lo, sdp->iobase + PCI20006_LCHAN1);
230                 writeb(hi, sdp->iobase + PCI20006_LCHAN1 + 1);
231                 writeb(0x00, sdp->iobase + PCI20006_STROBE1);
232                 break;
233         default:
234                 dev_warn(dev->class_dev, "ao channel Error!\n");
235                 return -EINVAL;
236         }
237
238         return 1;
239 }
240
241 /* PCI20341M */
242
243 static int pci20341_insn_read(struct comedi_device *dev,
244                               struct comedi_subdevice *s,
245                               struct comedi_insn *insn, unsigned int *data);
246
247 static const int pci20341_timebase[] = { 0x00, 0x00, 0x00, 0x04 };
248 static const int pci20341_settling_time[] = { 0x58, 0x58, 0x93, 0x99 };
249
250 static const struct comedi_lrange range_bipolar0_5 = {
251         1,
252         {BIP_RANGE(0.5)}
253 };
254
255 static const struct comedi_lrange range_bipolar0_05 = {
256         1,
257         {BIP_RANGE(0.05)}
258 };
259
260 static const struct comedi_lrange range_bipolar0_025 = {
261         1,
262         {BIP_RANGE(0.025)}
263 };
264
265 static const struct comedi_lrange *const pci20341_ranges[] = {
266         &range_bipolar5,
267         &range_bipolar0_5,
268         &range_bipolar0_05,
269         &range_bipolar0_025,
270 };
271
272 static int pci20341_init(struct comedi_device *dev, struct comedi_subdevice *s,
273                          int opt0, int opt1)
274 {
275         union pci20xxx_subdev_private *sdp = s->private;
276         int option;
277
278         /* options handling */
279         if (opt0 < 0 || opt0 > 3)
280                 opt0 = 0;
281         sdp->pci20341.timebase = pci20341_timebase[opt0];
282         sdp->pci20341.settling_time = pci20341_settling_time[opt0];
283
284         /* ai subdevice */
285         s->type = COMEDI_SUBD_AI;
286         s->subdev_flags = SDF_READABLE;
287         s->n_chan = PCI20341_CHAN_NR;
288         s->len_chanlist = PCI20341_SCANLIST;
289         s->insn_read = pci20341_insn_read;
290         s->maxdata = 0xffff;
291         s->range_table = pci20341_ranges[opt0];
292
293         /* depends on gain, trigger, repetition mode */
294         option = sdp->pci20341.timebase | PCI20341_REPMODE;
295
296         /* initialize Module */
297         writeb(PCI20341_INIT, sdp->iobase + PCI20341_CONFIG_REG);
298         /* set Pacer */
299         writeb(PCI20341_PACER, sdp->iobase + PCI20341_MOD_STATUS);
300         /* option register */
301         writeb(option, sdp->iobase + PCI20341_OPT_REG);
302         /* settling time counter */
303         writeb(sdp->pci20341.settling_time,
304                 sdp->iobase + PCI20341_SET_TIME_REG);
305         /* trigger not implemented */
306         return 0;
307 }
308
309 static int pci20341_insn_read(struct comedi_device *dev,
310                               struct comedi_subdevice *s,
311                               struct comedi_insn *insn, unsigned int *data)
312 {
313         union pci20xxx_subdev_private *sdp = s->private;
314         unsigned int i = 0, j = 0;
315         int lo, hi;
316         unsigned char eoc;      /* end of conversion */
317         unsigned int clb;       /* channel list byte */
318         unsigned int boarddata;
319
320         /* write number of input channels */
321         writeb(1, sdp->iobase + PCI20341_LCHAN_ADDR_REG);
322         clb = PCI20341_DAISY_CHAIN | PCI20341_MUX | (sdp->pci20341.ai_gain << 3)
323             | CR_CHAN(insn->chanspec);
324         writeb(clb, sdp->iobase + PCI20341_CHAN_LIST);
325
326         /* reset settling time counter and trigger delay counter */
327         writeb(0x00, sdp->iobase + PCI20341_CC_RESET);
328
329         writeb(0x00, sdp->iobase + PCI20341_CHAN_RESET);
330
331         /* generate Pacer */
332
333         for (i = 0; i < insn->n; i++) {
334                 /* data polling isn't the niciest way to get the data, I know,
335                  * but there are only 6 cycles (mean) and it is easier than
336                  * the whole interrupt stuff
337                  */
338                 j = 0;
339                 /* generate Pacer */
340                 readb(sdp->iobase + PCI20341_SOFT_PACER);
341
342                 eoc = readb(sdp->iobase + PCI20341_STATUS_REG);
343                 /* poll Interrupt Flag */
344                 while ((eoc < 0x80) && j < 100) {
345                         j++;
346                         eoc = readb(sdp->iobase + PCI20341_STATUS_REG);
347                 }
348                 if (j >= 100) {
349                         dev_warn(dev->class_dev,
350                                  "AI interrupt channel %i polling exit !\n", i);
351                         return -EINVAL;
352                 }
353                 lo = readb(sdp->iobase + PCI20341_LDATA);
354                 hi = readb(sdp->iobase + PCI20341_LDATA + 1);
355                 boarddata = lo + 0x100 * hi;
356
357                 /* board-data -> comedi-data */
358                 data[i] = (short)((boarddata + 0x8000) & 0xffff);
359         }
360
361         return i;
362 }
363
364 #if 0
365 static void pci20xxx_do(struct comedi_device *dev, struct comedi_subdevice *s)
366 {
367         struct pci20xxx_private *devpriv = dev->private;
368
369         /* XXX if the channel is configured for input, does this
370            do bad things? */
371         /* XXX it would be a good idea to only update the registers
372            that _need_ to be updated.  This requires changes to
373            comedi, however. */
374         writeb((s->state >> 0) & 0xff, devpriv->ioaddr + PCI20000_DIO_0);
375         writeb((s->state >> 8) & 0xff, devpriv->ioaddr + PCI20000_DIO_1);
376         writeb((s->state >> 16) & 0xff, devpriv->ioaddr + PCI20000_DIO_2);
377         writeb((s->state >> 24) & 0xff, devpriv->ioaddr + PCI20000_DIO_3);
378 }
379
380 static unsigned int pci20xxx_di(struct comedi_device *dev,
381                                 struct comedi_subdevice *s)
382 {
383         struct pci20xxx_private *devpriv = dev->private;
384         unsigned int bits;
385
386         /* XXX same note as above */
387         bits = readb(devpriv->ioaddr + PCI20000_DIO_0);
388         bits |= readb(devpriv->ioaddr + PCI20000_DIO_1) << 8;
389         bits |= readb(devpriv->ioaddr + PCI20000_DIO_2) << 16;
390         bits |= readb(devpriv->ioaddr + PCI20000_DIO_3) << 24;
391
392         return bits;
393 }
394 #endif
395
396 static void pci20xxx_dio_config(struct comedi_device *dev,
397                                 struct comedi_subdevice *s)
398 {
399         struct pci20xxx_private *devpriv = dev->private;
400         unsigned char control_01;
401         unsigned char control_23;
402         unsigned char buffer;
403
404         control_01 = readb(devpriv->ioaddr + PCI20000_DIO_CONTROL_01);
405         control_23 = readb(devpriv->ioaddr + PCI20000_DIO_CONTROL_23);
406         buffer = readb(devpriv->ioaddr + PCI20000_DIO_BUFFER);
407
408         if (s->io_bits & 0x000000ff) {
409                 /* output port 0 */
410                 control_01 &= PCI20000_DIO_EOC;
411                 buffer = (buffer & (~(DIO_BE << DIO_PS_0))) | (DIO_BO <<
412                                                                DIO_PS_0);
413         } else {
414                 /* input port 0 */
415                 control_01 = (control_01 & DIO_CAND) | PCI20000_DIO_EIC;
416                 buffer = (buffer & (~(DIO_BI << DIO_PS_0)));
417         }
418         if (s->io_bits & 0x0000ff00) {
419                 /* output port 1 */
420                 control_01 &= PCI20000_DIO_OOC;
421                 buffer = (buffer & (~(DIO_BE << DIO_PS_1))) | (DIO_BO <<
422                                                                DIO_PS_1);
423         } else {
424                 /* input port 1 */
425                 control_01 = (control_01 & DIO_CAND) | PCI20000_DIO_OIC;
426                 buffer = (buffer & (~(DIO_BI << DIO_PS_1)));
427         }
428         if (s->io_bits & 0x00ff0000) {
429                 /* output port 2 */
430                 control_23 &= PCI20000_DIO_EOC;
431                 buffer = (buffer & (~(DIO_BE << DIO_PS_2))) | (DIO_BO <<
432                                                                DIO_PS_2);
433         } else {
434                 /* input port 2 */
435                 control_23 = (control_23 & DIO_CAND) | PCI20000_DIO_EIC;
436                 buffer = (buffer & (~(DIO_BI << DIO_PS_2)));
437         }
438         if (s->io_bits & 0xff000000) {
439                 /* output port 3 */
440                 control_23 &= PCI20000_DIO_OOC;
441                 buffer = (buffer & (~(DIO_BE << DIO_PS_3))) | (DIO_BO <<
442                                                                DIO_PS_3);
443         } else {
444                 /* input port 3 */
445                 control_23 = (control_23 & DIO_CAND) | PCI20000_DIO_OIC;
446                 buffer = (buffer & (~(DIO_BI << DIO_PS_3)));
447         }
448         writeb(control_01, devpriv->ioaddr + PCI20000_DIO_CONTROL_01);
449         writeb(control_23, devpriv->ioaddr + PCI20000_DIO_CONTROL_23);
450         writeb(buffer, devpriv->ioaddr + PCI20000_DIO_BUFFER);
451 }
452
453 static int pci20xxx_dio_insn_config(struct comedi_device *dev,
454                                     struct comedi_subdevice *s,
455                                     struct comedi_insn *insn,
456                                     unsigned int *data)
457 {
458         int mask, bits;
459
460         mask = 1 << CR_CHAN(insn->chanspec);
461         if (mask & 0x000000ff)
462                 bits = 0x000000ff;
463         else if (mask & 0x0000ff00)
464                 bits = 0x0000ff00;
465         else if (mask & 0x00ff0000)
466                 bits = 0x00ff0000;
467         else
468                 bits = 0xff000000;
469         if (data[0])
470                 s->io_bits |= bits;
471         else
472                 s->io_bits &= ~bits;
473         pci20xxx_dio_config(dev, s);
474
475         return 1;
476 }
477
478 static int pci20xxx_dio_insn_bits(struct comedi_device *dev,
479                                   struct comedi_subdevice *s,
480                                   struct comedi_insn *insn, unsigned int *data)
481 {
482         struct pci20xxx_private *devpriv = dev->private;
483         unsigned int mask = data[0];
484
485         s->state &= ~mask;
486         s->state |= (mask & data[1]);
487
488         mask &= s->io_bits;
489         if (mask & 0x000000ff)
490                 writeb((s->state >> 0) & 0xff,
491                        devpriv->ioaddr + PCI20000_DIO_0);
492         if (mask & 0x0000ff00)
493                 writeb((s->state >> 8) & 0xff,
494                        devpriv->ioaddr + PCI20000_DIO_1);
495         if (mask & 0x00ff0000)
496                 writeb((s->state >> 16) & 0xff,
497                        devpriv->ioaddr + PCI20000_DIO_2);
498         if (mask & 0xff000000)
499                 writeb((s->state >> 24) & 0xff,
500                        devpriv->ioaddr + PCI20000_DIO_3);
501
502         data[1] = readb(devpriv->ioaddr + PCI20000_DIO_0);
503         data[1] |= readb(devpriv->ioaddr + PCI20000_DIO_1) << 8;
504         data[1] |= readb(devpriv->ioaddr + PCI20000_DIO_2) << 16;
505         data[1] |= readb(devpriv->ioaddr + PCI20000_DIO_3) << 24;
506
507         return insn->n;
508 }
509
510 static int pci20xxx_dio_init(struct comedi_device *dev,
511                              struct comedi_subdevice *s)
512 {
513         s->type = COMEDI_SUBD_DIO;
514         s->subdev_flags = SDF_READABLE | SDF_WRITABLE;
515         s->n_chan = 32;
516         s->insn_bits = pci20xxx_dio_insn_bits;
517         s->insn_config = pci20xxx_dio_insn_config;
518         s->maxdata = 1;
519         s->len_chanlist = 32;
520         s->range_table = &range_digital;
521         s->io_bits = 0;
522
523         /* digital I/O lines default to input on board reset. */
524         pci20xxx_dio_config(dev, s);
525
526         return 0;
527 }
528
529 static int pci20xxx_attach(struct comedi_device *dev,
530                            struct comedi_devconfig *it)
531 {
532         struct pci20xxx_private *devpriv;
533         unsigned char i;
534         int ret;
535         int id;
536         struct comedi_subdevice *s;
537         union pci20xxx_subdev_private *sdp;
538
539         ret = comedi_alloc_subdevices(dev, 1 + PCI20000_MODULES);
540         if (ret)
541                 return ret;
542
543         devpriv = comedi_alloc_devpriv(dev, sizeof(*devpriv));
544         if (!devpriv)
545                 return -ENOMEM;
546
547         devpriv->ioaddr = (void __iomem *)(unsigned long)it->options[0];
548
549         /* Check PCI-20001 C-2A Carrier Board ID */
550         if ((readb(devpriv->ioaddr) & PCI20000_ID) != PCI20000_ID) {
551                 dev_warn(dev->class_dev,
552                          "PCI-20001 C-2A Carrier Board at base=0x%p not found !\n",
553                          devpriv->ioaddr);
554                 return -EINVAL;
555         }
556         dev_info(dev->class_dev, "PCI-20001 C-2A at base=0x%p\n",
557                  devpriv->ioaddr);
558
559         for (i = 0; i < PCI20000_MODULES; i++) {
560                 s = &dev->subdevices[i];
561                 sdp = comedi_alloc_spriv(s, sizeof(*sdp));
562                 if (!sdp)
563                         return -ENOMEM;
564                 id = readb(devpriv->ioaddr + (i + 1) * PCI20000_OFFSET);
565                 switch (id) {
566                 case PCI20006_ID:
567                         sdp->pci20006.iobase =
568                             devpriv->ioaddr + (i + 1) * PCI20000_OFFSET;
569                         pci20006_init(dev, s, it->options[2 * i + 2],
570                                       it->options[2 * i + 3]);
571                         dev_info(dev->class_dev,
572                                  "PCI-20006 module in slot %d\n", i + 1);
573                         break;
574                 case PCI20341_ID:
575                         sdp->pci20341.iobase =
576                             devpriv->ioaddr + (i + 1) * PCI20000_OFFSET;
577                         pci20341_init(dev, s, it->options[2 * i + 2],
578                                       it->options[2 * i + 3]);
579                         dev_info(dev->class_dev,
580                                  "PCI-20341 module in slot %d\n", i + 1);
581                         break;
582                 default:
583                         dev_warn(dev->class_dev,
584                                  "unknown module code 0x%02x in slot %d: module disabled\n",
585                                  id, i); /* XXX this looks like a bug! i + 1 ?? */
586                         /* fall through */
587                 case PCI20xxx_EMPTY_ID:
588                         s->type = COMEDI_SUBD_UNUSED;
589                         break;
590                 }
591         }
592
593         /* initialize struct pci20xxx_private */
594         pci20xxx_dio_init(dev, &dev->subdevices[PCI20000_MODULES]);
595
596         return 1;
597 }
598
599 static void pci20xxx_detach(struct comedi_device *dev)
600 {
601         /* Nothing to cleanup */
602 }
603
604 static struct comedi_driver pci20xxx_driver = {
605         .driver_name    = "ii_pci20kc",
606         .module         = THIS_MODULE,
607         .attach         = pci20xxx_attach,
608         .detach         = pci20xxx_detach,
609 };
610 module_comedi_driver(pci20xxx_driver);
611
612 MODULE_AUTHOR("Comedi http://www.comedi.org");
613 MODULE_DESCRIPTION("Comedi low-level driver");
614 MODULE_LICENSE("GPL");