2 comedi/drivers/dmm32at.c
3 Diamond Systems mm32at code for a Comedi driver
5 COMEDI - Linux Control and Measurement Device Interface
6 Copyright (C) 2000 David A. Schleef <ds@schleef.org>
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.
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.
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.
25 Description: Diamond Systems mm32at driver.
27 Author: Perry J. Piplani <perry.j.piplani@nasa.gov>
28 Updated: Fri Jun 4 09:13:24 CDT 2004
31 This driver is for the Diamond Systems MM-32-AT board
32 http://www.diamondsystems.com/products/diamondmm32at It is being used
33 on serveral projects inside NASA, without problems so far. For analog
34 input commands, TRIG_EXT is not yet supported at all..
36 Configuration Options:
37 comedi_config /dev/comedi0 dmm32at baseaddr,irq
40 #include <linux/interrupt.h>
41 #include "../comedidev.h"
42 #include <linux/ioport.h>
44 /* Board register addresses */
46 #define DMM32AT_MEMSIZE 0x10
48 #define DMM32AT_CONV 0x00
49 #define DMM32AT_AILSB 0x00
50 #define DMM32AT_AUXDOUT 0x01
51 #define DMM32AT_AIMSB 0x01
52 #define DMM32AT_AILOW 0x02
53 #define DMM32AT_AIHIGH 0x03
55 #define DMM32AT_DACLSB 0x04
56 #define DMM32AT_DACSTAT 0x04
57 #define DMM32AT_DACMSB 0x05
59 #define DMM32AT_FIFOCNTRL 0x07
60 #define DMM32AT_FIFOSTAT 0x07
62 #define DMM32AT_CNTRL 0x08
63 #define DMM32AT_AISTAT 0x08
65 #define DMM32AT_INTCLOCK 0x09
67 #define DMM32AT_CNTRDIO 0x0a
69 #define DMM32AT_AICONF 0x0b
70 #define DMM32AT_AIRBACK 0x0b
72 #define DMM32AT_CLK1 0x0d
73 #define DMM32AT_CLK2 0x0e
74 #define DMM32AT_CLKCT 0x0f
76 #define DMM32AT_DIOA 0x0c
77 #define DMM32AT_DIOB 0x0d
78 #define DMM32AT_DIOC 0x0e
79 #define DMM32AT_DIOCONF 0x0f
81 /* Board register values. */
83 /* DMM32AT_DACSTAT 0x04 */
84 #define DMM32AT_DACBUSY 0x80
86 /* DMM32AT_FIFOCNTRL 0x07 */
87 #define DMM32AT_FIFORESET 0x02
88 #define DMM32AT_SCANENABLE 0x04
90 /* DMM32AT_CNTRL 0x08 */
91 #define DMM32AT_RESET 0x20
92 #define DMM32AT_INTRESET 0x08
93 #define DMM32AT_CLKACC 0x00
94 #define DMM32AT_DIOACC 0x01
96 /* DMM32AT_AISTAT 0x08 */
97 #define DMM32AT_STATUS 0x80
99 /* DMM32AT_INTCLOCK 0x09 */
100 #define DMM32AT_ADINT 0x80
101 #define DMM32AT_CLKSEL 0x03
103 /* DMM32AT_CNTRDIO 0x0a */
104 #define DMM32AT_FREQ12 0x80
106 /* DMM32AT_AICONF 0x0b */
107 #define DMM32AT_RANGE_U10 0x0c
108 #define DMM32AT_RANGE_U5 0x0d
109 #define DMM32AT_RANGE_B10 0x08
110 #define DMM32AT_RANGE_B5 0x00
111 #define DMM32AT_SCINT_20 0x00
112 #define DMM32AT_SCINT_15 0x10
113 #define DMM32AT_SCINT_10 0x20
114 #define DMM32AT_SCINT_5 0x30
116 /* DMM32AT_CLKCT 0x0f */
117 #define DMM32AT_CLKCT1 0x56 /* mode3 counter 1 - write low byte only */
118 #define DMM32AT_CLKCT2 0xb6 /* mode3 counter 2 - write high and low byte */
120 /* DMM32AT_DIOCONF 0x0f */
121 #define DMM32AT_DIENABLE 0x80
122 #define DMM32AT_DIRA 0x10
123 #define DMM32AT_DIRB 0x02
124 #define DMM32AT_DIRCL 0x01
125 #define DMM32AT_DIRCH 0x08
127 /* board AI ranges in comedi structure */
128 static const struct comedi_lrange dmm32at_airanges
= {
138 /* register values for above ranges */
139 static const unsigned char dmm32at_rangebits
[] = {
146 /* only one of these ranges is valid, as set by a jumper on the
147 * board. The application should only use the range set by the jumper
149 static const struct comedi_lrange dmm32at_aoranges
= {
159 struct dmm32at_board
{
163 struct dmm32at_private
{
167 unsigned int ai_scans_left
;
169 /* Used for AO readback */
170 unsigned int ao_readback
[4];
171 unsigned char dio_config
;
175 static int dmm32at_ai_rinsn(struct comedi_device
*dev
,
176 struct comedi_subdevice
*s
,
177 struct comedi_insn
*insn
, unsigned int *data
)
181 unsigned char status
;
182 unsigned short msb
, lsb
;
186 /* get the channel and range number */
188 chan
= CR_CHAN(insn
->chanspec
) & (s
->n_chan
- 1);
189 range
= CR_RANGE(insn
->chanspec
);
191 /* printk("channel=0x%02x, range=%d\n",chan,range); */
193 /* zero scan and fifo control and reset fifo */
194 outb(DMM32AT_FIFORESET
, dev
->iobase
+ DMM32AT_FIFOCNTRL
);
196 /* write the ai channel range regs */
197 outb(chan
, dev
->iobase
+ DMM32AT_AILOW
);
198 outb(chan
, dev
->iobase
+ DMM32AT_AIHIGH
);
199 /* set the range bits */
200 outb(dmm32at_rangebits
[range
], dev
->iobase
+ DMM32AT_AICONF
);
202 /* wait for circuit to settle */
203 for (i
= 0; i
< 40000; i
++) {
204 status
= inb(dev
->iobase
+ DMM32AT_AIRBACK
);
205 if ((status
& DMM32AT_STATUS
) == 0)
209 printk(KERN_WARNING
"dmm32at: timeout\n");
213 /* convert n samples */
214 for (n
= 0; n
< insn
->n
; n
++) {
215 /* trigger conversion */
216 outb(0xff, dev
->iobase
+ DMM32AT_CONV
);
217 /* wait for conversion to end */
218 for (i
= 0; i
< 40000; i
++) {
219 status
= inb(dev
->iobase
+ DMM32AT_AISTAT
);
220 if ((status
& DMM32AT_STATUS
) == 0)
224 printk(KERN_WARNING
"dmm32at: timeout\n");
229 lsb
= inb(dev
->iobase
+ DMM32AT_AILSB
);
230 msb
= inb(dev
->iobase
+ DMM32AT_AIMSB
);
232 /* invert sign bit to make range unsigned, this is an
233 idiosyncrasy of the diamond board, it return
234 conversions as a signed value, i.e. -32768 to
235 32767, flipping the bit and interpreting it as
236 signed gives you a range of 0 to 65535 which is
238 d
= ((msb
^ 0x0080) << 8) + lsb
;
243 /* return the number of samples read/written */
247 static int dmm32at_ns_to_timer(unsigned int *ns
, int round
)
253 static int dmm32at_ai_cmdtest(struct comedi_device
*dev
,
254 struct comedi_subdevice
*s
,
255 struct comedi_cmd
*cmd
)
259 int start_chan
, gain
, i
;
261 /* step 1: make sure trigger sources are trivially valid */
263 tmp
= cmd
->start_src
;
264 cmd
->start_src
&= TRIG_NOW
;
265 if (!cmd
->start_src
|| tmp
!= cmd
->start_src
)
268 tmp
= cmd
->scan_begin_src
;
269 cmd
->scan_begin_src
&= TRIG_TIMER
/*| TRIG_EXT */ ;
270 if (!cmd
->scan_begin_src
|| tmp
!= cmd
->scan_begin_src
)
273 tmp
= cmd
->convert_src
;
274 cmd
->convert_src
&= TRIG_TIMER
/*| TRIG_EXT */ ;
275 if (!cmd
->convert_src
|| tmp
!= cmd
->convert_src
)
278 tmp
= cmd
->scan_end_src
;
279 cmd
->scan_end_src
&= TRIG_COUNT
;
280 if (!cmd
->scan_end_src
|| tmp
!= cmd
->scan_end_src
)
284 cmd
->stop_src
&= TRIG_COUNT
| TRIG_NONE
;
285 if (!cmd
->stop_src
|| tmp
!= cmd
->stop_src
)
291 /* step 2: make sure trigger sources are unique and mutually
294 /* note that mutual compatibility is not an issue here */
295 if (cmd
->scan_begin_src
!= TRIG_TIMER
&&
296 cmd
->scan_begin_src
!= TRIG_EXT
)
298 if (cmd
->convert_src
!= TRIG_TIMER
&& cmd
->convert_src
!= TRIG_EXT
)
300 if (cmd
->stop_src
!= TRIG_COUNT
&& cmd
->stop_src
!= TRIG_NONE
)
306 /* step 3: make sure arguments are trivially compatible */
308 if (cmd
->start_arg
!= 0) {
312 #define MAX_SCAN_SPEED 1000000 /* in nanoseconds */
313 #define MIN_SCAN_SPEED 1000000000 /* in nanoseconds */
315 if (cmd
->scan_begin_src
== TRIG_TIMER
) {
316 if (cmd
->scan_begin_arg
< MAX_SCAN_SPEED
) {
317 cmd
->scan_begin_arg
= MAX_SCAN_SPEED
;
320 if (cmd
->scan_begin_arg
> MIN_SCAN_SPEED
) {
321 cmd
->scan_begin_arg
= MIN_SCAN_SPEED
;
325 /* external trigger */
326 /* should be level/edge, hi/lo specification here */
327 /* should specify multiple external triggers */
328 if (cmd
->scan_begin_arg
> 9) {
329 cmd
->scan_begin_arg
= 9;
333 if (cmd
->convert_src
== TRIG_TIMER
) {
334 if (cmd
->convert_arg
>= 17500)
335 cmd
->convert_arg
= 20000;
336 else if (cmd
->convert_arg
>= 12500)
337 cmd
->convert_arg
= 15000;
338 else if (cmd
->convert_arg
>= 7500)
339 cmd
->convert_arg
= 10000;
341 cmd
->convert_arg
= 5000;
344 /* external trigger */
346 if (cmd
->convert_arg
> 9) {
347 cmd
->convert_arg
= 9;
352 if (cmd
->scan_end_arg
!= cmd
->chanlist_len
) {
353 cmd
->scan_end_arg
= cmd
->chanlist_len
;
356 if (cmd
->stop_src
== TRIG_COUNT
) {
357 if (cmd
->stop_arg
> 0xfffffff0) {
358 cmd
->stop_arg
= 0xfffffff0;
361 if (cmd
->stop_arg
== 0) {
367 if (cmd
->stop_arg
!= 0) {
376 /* step 4: fix up any arguments */
378 if (cmd
->scan_begin_src
== TRIG_TIMER
) {
379 tmp
= cmd
->scan_begin_arg
;
380 dmm32at_ns_to_timer(&cmd
->scan_begin_arg
,
381 cmd
->flags
& TRIG_ROUND_MASK
);
382 if (tmp
!= cmd
->scan_begin_arg
)
385 if (cmd
->convert_src
== TRIG_TIMER
) {
386 tmp
= cmd
->convert_arg
;
387 dmm32at_ns_to_timer(&cmd
->convert_arg
,
388 cmd
->flags
& TRIG_ROUND_MASK
);
389 if (tmp
!= cmd
->convert_arg
)
391 if (cmd
->scan_begin_src
== TRIG_TIMER
&&
392 cmd
->scan_begin_arg
<
393 cmd
->convert_arg
* cmd
->scan_end_arg
) {
394 cmd
->scan_begin_arg
=
395 cmd
->convert_arg
* cmd
->scan_end_arg
;
403 /* step 5 check the channel list, the channel list for this
404 board must be consecutive and gains must be the same */
407 gain
= CR_RANGE(cmd
->chanlist
[0]);
408 start_chan
= CR_CHAN(cmd
->chanlist
[0]);
409 for (i
= 1; i
< cmd
->chanlist_len
; i
++) {
410 if (CR_CHAN(cmd
->chanlist
[i
]) !=
411 (start_chan
+ i
) % s
->n_chan
) {
413 "entries in chanlist must be consecutive channels, counting upwards\n");
416 if (CR_RANGE(cmd
->chanlist
[i
]) != gain
) {
418 "entries in chanlist must all have the same gain\n");
430 static void dmm32at_setaitimer(struct comedi_device
*dev
, unsigned int nansec
)
432 unsigned char lo1
, lo2
, hi2
;
433 unsigned short both2
;
435 /* based on 10mhz clock */
437 both2
= nansec
/ 20000;
438 hi2
= (both2
& 0xff00) >> 8;
439 lo2
= both2
& 0x00ff;
441 /* set the counter frequency to 10mhz */
442 outb(0, dev
->iobase
+ DMM32AT_CNTRDIO
);
444 /* get access to the clock regs */
445 outb(DMM32AT_CLKACC
, dev
->iobase
+ DMM32AT_CNTRL
);
447 /* write the counter 1 control word and low byte to counter */
448 outb(DMM32AT_CLKCT1
, dev
->iobase
+ DMM32AT_CLKCT
);
449 outb(lo1
, dev
->iobase
+ DMM32AT_CLK1
);
451 /* write the counter 2 control word and low byte then to counter */
452 outb(DMM32AT_CLKCT2
, dev
->iobase
+ DMM32AT_CLKCT
);
453 outb(lo2
, dev
->iobase
+ DMM32AT_CLK2
);
454 outb(hi2
, dev
->iobase
+ DMM32AT_CLK2
);
456 /* enable the ai conversion interrupt and the clock to start scans */
457 outb(DMM32AT_ADINT
| DMM32AT_CLKSEL
, dev
->iobase
+ DMM32AT_INTCLOCK
);
460 static int dmm32at_ai_cmd(struct comedi_device
*dev
, struct comedi_subdevice
*s
)
462 struct dmm32at_private
*devpriv
= dev
->private;
463 struct comedi_cmd
*cmd
= &s
->async
->cmd
;
465 unsigned char chanlo
, chanhi
, status
;
470 /* get the channel list and range */
471 chanlo
= CR_CHAN(cmd
->chanlist
[0]) & (s
->n_chan
- 1);
472 chanhi
= chanlo
+ cmd
->chanlist_len
- 1;
473 if (chanhi
>= s
->n_chan
)
475 range
= CR_RANGE(cmd
->chanlist
[0]);
478 outb(DMM32AT_FIFORESET
, dev
->iobase
+ DMM32AT_FIFOCNTRL
);
480 /* set scan enable */
481 outb(DMM32AT_SCANENABLE
, dev
->iobase
+ DMM32AT_FIFOCNTRL
);
483 /* write the ai channel range regs */
484 outb(chanlo
, dev
->iobase
+ DMM32AT_AILOW
);
485 outb(chanhi
, dev
->iobase
+ DMM32AT_AIHIGH
);
487 /* set the range bits */
488 outb(dmm32at_rangebits
[range
], dev
->iobase
+ DMM32AT_AICONF
);
490 /* reset the interrupt just in case */
491 outb(DMM32AT_INTRESET
, dev
->iobase
+ DMM32AT_CNTRL
);
493 if (cmd
->stop_src
== TRIG_COUNT
)
494 devpriv
->ai_scans_left
= cmd
->stop_arg
;
495 else { /* TRIG_NONE */
496 devpriv
->ai_scans_left
= 0xffffffff; /* indicates TRIG_NONE to
500 /* wait for circuit to settle */
501 for (i
= 0; i
< 40000; i
++) {
502 status
= inb(dev
->iobase
+ DMM32AT_AIRBACK
);
503 if ((status
& DMM32AT_STATUS
) == 0)
507 printk(KERN_WARNING
"dmm32at: timeout\n");
511 if (devpriv
->ai_scans_left
> 1) {
512 /* start the clock and enable the interrupts */
513 dmm32at_setaitimer(dev
, cmd
->scan_begin_arg
);
515 /* start the interrups and initiate a single scan */
516 outb(DMM32AT_ADINT
, dev
->iobase
+ DMM32AT_INTCLOCK
);
517 outb(0xff, dev
->iobase
+ DMM32AT_CONV
);
520 /* printk("dmmat32 in command\n"); */
522 /* for(i=0;i<cmd->chanlist_len;i++) */
523 /* comedi_buf_put(s->async,i*100); */
525 /* s->async->events |= COMEDI_CB_EOA; */
526 /* comedi_event(dev, s); */
532 static int dmm32at_ai_cancel(struct comedi_device
*dev
,
533 struct comedi_subdevice
*s
)
535 struct dmm32at_private
*devpriv
= dev
->private;
537 devpriv
->ai_scans_left
= 1;
541 static irqreturn_t
dmm32at_isr(int irq
, void *d
)
543 struct comedi_device
*dev
= d
;
544 struct dmm32at_private
*devpriv
= dev
->private;
545 unsigned char intstat
;
547 unsigned short msb
, lsb
;
550 if (!dev
->attached
) {
551 comedi_error(dev
, "spurious interrupt");
555 intstat
= inb(dev
->iobase
+ DMM32AT_INTCLOCK
);
557 if (intstat
& DMM32AT_ADINT
) {
558 struct comedi_subdevice
*s
= dev
->read_subdev
;
559 struct comedi_cmd
*cmd
= &s
->async
->cmd
;
561 for (i
= 0; i
< cmd
->chanlist_len
; i
++) {
563 lsb
= inb(dev
->iobase
+ DMM32AT_AILSB
);
564 msb
= inb(dev
->iobase
+ DMM32AT_AIMSB
);
566 /* invert sign bit to make range unsigned */
567 samp
= ((msb
^ 0x0080) << 8) + lsb
;
568 comedi_buf_put(s
->async
, samp
);
571 if (devpriv
->ai_scans_left
!= 0xffffffff) { /* TRIG_COUNT */
572 devpriv
->ai_scans_left
--;
573 if (devpriv
->ai_scans_left
== 0) {
574 /* disable further interrupts and clocks */
575 outb(0x0, dev
->iobase
+ DMM32AT_INTCLOCK
);
576 /* set the buffer to be flushed with an EOF */
577 s
->async
->events
|= COMEDI_CB_EOA
;
581 /* flush the buffer */
582 comedi_event(dev
, s
);
585 /* reset the interrupt */
586 outb(DMM32AT_INTRESET
, dev
->iobase
+ DMM32AT_CNTRL
);
590 static int dmm32at_ao_winsn(struct comedi_device
*dev
,
591 struct comedi_subdevice
*s
,
592 struct comedi_insn
*insn
, unsigned int *data
)
594 struct dmm32at_private
*devpriv
= dev
->private;
596 int chan
= CR_CHAN(insn
->chanspec
);
597 unsigned char hi
, lo
, status
;
599 /* Writing a list of values to an AO channel is probably not
600 * very useful, but that's how the interface is defined. */
601 for (i
= 0; i
< insn
->n
; i
++) {
603 devpriv
->ao_readback
[chan
] = data
[i
];
605 /* get the low byte */
606 lo
= data
[i
] & 0x00ff;
607 /* high byte also contains channel number */
608 hi
= (data
[i
] >> 8) + chan
* (1 << 6);
609 /* printk("writing 0x%02x 0x%02x\n",hi,lo); */
610 /* write the low and high values to the board */
611 outb(lo
, dev
->iobase
+ DMM32AT_DACLSB
);
612 outb(hi
, dev
->iobase
+ DMM32AT_DACMSB
);
614 /* wait for circuit to settle */
615 for (i
= 0; i
< 40000; i
++) {
616 status
= inb(dev
->iobase
+ DMM32AT_DACSTAT
);
617 if ((status
& DMM32AT_DACBUSY
) == 0)
621 printk(KERN_WARNING
"dmm32at: timeout\n");
624 /* dummy read to update trigger the output */
625 status
= inb(dev
->iobase
+ DMM32AT_DACMSB
);
629 /* return the number of samples read/written */
633 static int dmm32at_ao_rinsn(struct comedi_device
*dev
,
634 struct comedi_subdevice
*s
,
635 struct comedi_insn
*insn
, unsigned int *data
)
637 struct dmm32at_private
*devpriv
= dev
->private;
639 int chan
= CR_CHAN(insn
->chanspec
);
641 for (i
= 0; i
< insn
->n
; i
++)
642 data
[i
] = devpriv
->ao_readback
[chan
];
647 static int dmm32at_dio_insn_bits(struct comedi_device
*dev
,
648 struct comedi_subdevice
*s
,
649 struct comedi_insn
*insn
, unsigned int *data
)
651 struct dmm32at_private
*devpriv
= dev
->private;
652 unsigned char diobits
;
654 /* The insn data is a mask in data[0] and the new data
655 * in data[1], each channel cooresponding to a bit. */
657 s
->state
&= ~data
[0];
658 s
->state
|= data
[0] & data
[1];
659 /* Write out the new digital output lines */
660 /* outw(s->state,dev->iobase + DMM32AT_DIO); */
663 /* get access to the DIO regs */
664 outb(DMM32AT_DIOACC
, dev
->iobase
+ DMM32AT_CNTRL
);
666 /* if either part of dio is set for output */
667 if (((devpriv
->dio_config
& DMM32AT_DIRCL
) == 0) ||
668 ((devpriv
->dio_config
& DMM32AT_DIRCH
) == 0)) {
669 diobits
= (s
->state
& 0x00ff0000) >> 16;
670 outb(diobits
, dev
->iobase
+ DMM32AT_DIOC
);
672 if ((devpriv
->dio_config
& DMM32AT_DIRB
) == 0) {
673 diobits
= (s
->state
& 0x0000ff00) >> 8;
674 outb(diobits
, dev
->iobase
+ DMM32AT_DIOB
);
676 if ((devpriv
->dio_config
& DMM32AT_DIRA
) == 0) {
677 diobits
= (s
->state
& 0x000000ff);
678 outb(diobits
, dev
->iobase
+ DMM32AT_DIOA
);
681 /* now read the state back in */
682 s
->state
= inb(dev
->iobase
+ DMM32AT_DIOC
);
684 s
->state
|= inb(dev
->iobase
+ DMM32AT_DIOB
);
686 s
->state
|= inb(dev
->iobase
+ DMM32AT_DIOA
);
689 /* on return, data[1] contains the value of the digital
690 * input and output lines. */
691 /* data[1]=inw(dev->iobase + DMM32AT_DIO); */
692 /* or we could just return the software copy of the output values if
693 * it was a purely digital output subdevice */
694 /* data[1]=s->state; */
699 static int dmm32at_dio_insn_config(struct comedi_device
*dev
,
700 struct comedi_subdevice
*s
,
701 struct comedi_insn
*insn
, unsigned int *data
)
703 struct dmm32at_private
*devpriv
= dev
->private;
704 unsigned char chanbit
;
705 int chan
= CR_CHAN(insn
->chanspec
);
711 chanbit
= DMM32AT_DIRA
;
713 chanbit
= DMM32AT_DIRB
;
715 chanbit
= DMM32AT_DIRCL
;
717 chanbit
= DMM32AT_DIRCH
;
719 /* The input or output configuration of each digital line is
720 * configured by a special insn_config instruction. chanspec
721 * contains the channel to be changed, and data[0] contains the
722 * value COMEDI_INPUT or COMEDI_OUTPUT. */
724 /* if output clear the bit, otherwise set it */
725 if (data
[0] == COMEDI_OUTPUT
)
726 devpriv
->dio_config
&= ~chanbit
;
728 devpriv
->dio_config
|= chanbit
;
729 /* get access to the DIO regs */
730 outb(DMM32AT_DIOACC
, dev
->iobase
+ DMM32AT_CNTRL
);
731 /* set the DIO's to the new configuration setting */
732 outb(devpriv
->dio_config
, dev
->iobase
+ DMM32AT_DIOCONF
);
737 static int dmm32at_attach(struct comedi_device
*dev
,
738 struct comedi_devconfig
*it
)
740 const struct dmm32at_board
*board
= comedi_board(dev
);
741 struct dmm32at_private
*devpriv
;
743 struct comedi_subdevice
*s
;
744 unsigned char aihi
, ailo
, fifostat
, aistat
, intstat
, airback
;
745 unsigned long iobase
;
748 iobase
= it
->options
[0];
749 irq
= it
->options
[1];
751 printk(KERN_INFO
"comedi%d: dmm32at: attaching\n", dev
->minor
);
752 printk(KERN_DEBUG
"dmm32at: probing at address 0x%04lx, irq %u\n",
755 /* register address space */
756 if (!request_region(iobase
, DMM32AT_MEMSIZE
, board
->name
)) {
757 printk(KERN_ERR
"comedi%d: dmm32at: I/O port conflict\n",
761 dev
->iobase
= iobase
;
763 /* the following just makes sure the board is there and gets
764 it to a known state */
766 /* reset the board */
767 outb(DMM32AT_RESET
, dev
->iobase
+ DMM32AT_CNTRL
);
769 /* allow a millisecond to reset */
772 /* zero scan and fifo control */
773 outb(0x0, dev
->iobase
+ DMM32AT_FIFOCNTRL
);
775 /* zero interrupt and clock control */
776 outb(0x0, dev
->iobase
+ DMM32AT_INTCLOCK
);
778 /* write a test channel range, the high 3 bits should drop */
779 outb(0x80, dev
->iobase
+ DMM32AT_AILOW
);
780 outb(0xff, dev
->iobase
+ DMM32AT_AIHIGH
);
782 /* set the range at 10v unipolar */
783 outb(DMM32AT_RANGE_U10
, dev
->iobase
+ DMM32AT_AICONF
);
785 /* should take 10 us to settle, here's a hundred */
788 /* read back the values */
789 ailo
= inb(dev
->iobase
+ DMM32AT_AILOW
);
790 aihi
= inb(dev
->iobase
+ DMM32AT_AIHIGH
);
791 fifostat
= inb(dev
->iobase
+ DMM32AT_FIFOSTAT
);
792 aistat
= inb(dev
->iobase
+ DMM32AT_AISTAT
);
793 intstat
= inb(dev
->iobase
+ DMM32AT_INTCLOCK
);
794 airback
= inb(dev
->iobase
+ DMM32AT_AIRBACK
);
796 printk(KERN_DEBUG
"dmm32at: lo=0x%02x hi=0x%02x fifostat=0x%02x\n",
797 ailo
, aihi
, fifostat
);
799 "dmm32at: aistat=0x%02x intstat=0x%02x airback=0x%02x\n",
800 aistat
, intstat
, airback
);
802 if ((ailo
!= 0x00) || (aihi
!= 0x1f) || (fifostat
!= 0x80) ||
803 (aistat
!= 0x60 || (intstat
!= 0x00) || airback
!= 0x0c)) {
804 printk(KERN_ERR
"dmmat32: board detection failed\n");
808 /* board is there, register interrupt */
810 ret
= request_irq(irq
, dmm32at_isr
, 0, board
->name
, dev
);
812 printk(KERN_ERR
"dmm32at: irq conflict\n");
818 dev
->board_name
= board
->name
;
820 if (alloc_private(dev
, sizeof(*devpriv
)) < 0)
822 devpriv
= dev
->private;
824 ret
= comedi_alloc_subdevices(dev
, 3);
828 s
= dev
->subdevices
+ 0;
829 dev
->read_subdev
= s
;
830 /* analog input subdevice */
831 s
->type
= COMEDI_SUBD_AI
;
832 /* we support single-ended (ground) and differential */
833 s
->subdev_flags
= SDF_READABLE
| SDF_GROUND
| SDF_DIFF
| SDF_CMD_READ
;
836 s
->range_table
= &dmm32at_airanges
;
837 s
->len_chanlist
= 32; /* This is the maximum chanlist length that
838 the board can handle */
839 s
->insn_read
= dmm32at_ai_rinsn
;
840 s
->do_cmd
= dmm32at_ai_cmd
;
841 s
->do_cmdtest
= dmm32at_ai_cmdtest
;
842 s
->cancel
= dmm32at_ai_cancel
;
844 s
= dev
->subdevices
+ 1;
845 /* analog output subdevice */
846 s
->type
= COMEDI_SUBD_AO
;
847 s
->subdev_flags
= SDF_WRITABLE
;
850 s
->range_table
= &dmm32at_aoranges
;
851 s
->insn_write
= dmm32at_ao_winsn
;
852 s
->insn_read
= dmm32at_ao_rinsn
;
854 s
= dev
->subdevices
+ 2;
855 /* digital i/o subdevice */
857 /* get access to the DIO regs */
858 outb(DMM32AT_DIOACC
, dev
->iobase
+ DMM32AT_CNTRL
);
859 /* set the DIO's to the defualt input setting */
860 devpriv
->dio_config
= DMM32AT_DIRA
| DMM32AT_DIRB
|
861 DMM32AT_DIRCL
| DMM32AT_DIRCH
| DMM32AT_DIENABLE
;
862 outb(devpriv
->dio_config
, dev
->iobase
+ DMM32AT_DIOCONF
);
864 /* set up the subdevice */
865 s
->type
= COMEDI_SUBD_DIO
;
866 s
->subdev_flags
= SDF_READABLE
| SDF_WRITABLE
;
870 s
->range_table
= &range_digital
;
871 s
->insn_bits
= dmm32at_dio_insn_bits
;
872 s
->insn_config
= dmm32at_dio_insn_config
;
875 printk(KERN_INFO
"comedi%d: dmm32at: attached\n", dev
->minor
);
881 static void dmm32at_detach(struct comedi_device
*dev
)
884 free_irq(dev
->irq
, dev
);
886 release_region(dev
->iobase
, DMM32AT_MEMSIZE
);
889 static const struct dmm32at_board dmm32at_boards
[] = {
895 static struct comedi_driver dmm32at_driver
= {
896 .driver_name
= "dmm32at",
897 .module
= THIS_MODULE
,
898 .attach
= dmm32at_attach
,
899 .detach
= dmm32at_detach
,
900 .board_name
= &dmm32at_boards
[0].name
,
901 .offset
= sizeof(struct dmm32at_board
),
902 .num_names
= ARRAY_SIZE(dmm32at_boards
),
904 module_comedi_driver(dmm32at_driver
);
906 MODULE_AUTHOR("Comedi http://www.comedi.org");
907 MODULE_DESCRIPTION("Comedi low-level driver");
908 MODULE_LICENSE("GPL");