2 comedi/drivers/dt2817.c
3 Hardware driver for Data Translation DT2817
5 COMEDI - Linux Control and Measurement Device Interface
6 Copyright (C) 1998 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: Data Translation DT2817
28 Devices: [Data Translation] DT2817 (dt2817)
30 A very simple digital I/O card. Four banks of 8 lines, each bank
31 is configurable for input or output. One wonders why it takes a
32 50 page manual to describe this thing.
34 The driver (which, btw, is much less than 50 pages) has 1 subdevice
35 with 32 channels, configurable in groups of 8.
37 Configuration options:
38 [0] - I/O port base base address
41 #include "../comedidev.h"
43 #include <linux/ioport.h>
50 static int dt2817_attach(struct comedi_device * dev, struct comedi_devconfig * it);
51 static int dt2817_detach(struct comedi_device * dev);
52 static struct comedi_driver driver_dt2817 = {
59 COMEDI_INITCLEANUP(driver_dt2817);
61 static int dt2817_dio_insn_config(struct comedi_device * dev, struct comedi_subdevice * s,
62 struct comedi_insn * insn, unsigned int * data)
71 chan = CR_CHAN(insn->chanspec);
74 } else if (chan < 16) {
76 } else if (chan < 24) {
85 if (s->io_bits & 0x000000ff)
87 if (s->io_bits & 0x0000ff00)
89 if (s->io_bits & 0x00ff0000)
91 if (s->io_bits & 0xff000000)
94 outb(oe, dev->iobase + DT2817_CR);
99 static int dt2817_dio_insn_bits(struct comedi_device * dev, struct comedi_subdevice * s,
100 struct comedi_insn * insn, unsigned int * data)
102 unsigned int changed;
104 /* It's questionable whether it is more important in
105 * a driver like this to be deterministic or fast.
110 s->state &= ~data[0];
111 s->state |= (data[0] & data[1]);
113 changed &= s->io_bits;
114 if (changed & 0x000000ff)
115 outb(s->state & 0xff, dev->iobase + DT2817_DATA + 0);
116 if (changed & 0x0000ff00)
117 outb((s->state >> 8) & 0xff,
118 dev->iobase + DT2817_DATA + 1);
119 if (changed & 0x00ff0000)
120 outb((s->state >> 16) & 0xff,
121 dev->iobase + DT2817_DATA + 2);
122 if (changed & 0xff000000)
123 outb((s->state >> 24) & 0xff,
124 dev->iobase + DT2817_DATA + 3);
126 data[1] = inb(dev->iobase + DT2817_DATA + 0);
127 data[1] |= (inb(dev->iobase + DT2817_DATA + 1) << 8);
128 data[1] |= (inb(dev->iobase + DT2817_DATA + 2) << 16);
129 data[1] |= (inb(dev->iobase + DT2817_DATA + 3) << 24);
134 static int dt2817_attach(struct comedi_device * dev, struct comedi_devconfig * it)
137 struct comedi_subdevice *s;
138 unsigned long iobase;
140 iobase = it->options[0];
141 printk("comedi%d: dt2817: 0x%04lx ", dev->minor, iobase);
142 if (!request_region(iobase, DT2817_SIZE, "dt2817")) {
143 printk("I/O port conflict\n");
146 dev->iobase = iobase;
147 dev->board_name = "dt2817";
149 if ((ret = alloc_subdevices(dev, 1)) < 0)
152 s = dev->subdevices + 0;
155 s->type = COMEDI_SUBD_DIO;
156 s->subdev_flags = SDF_READABLE | SDF_WRITABLE;
157 s->range_table = &range_digital;
159 s->insn_bits = dt2817_dio_insn_bits;
160 s->insn_config = dt2817_dio_insn_config;
163 outb(0, dev->iobase + DT2817_CR);
170 static int dt2817_detach(struct comedi_device * dev)
172 printk("comedi%d: dt2817: remove\n", dev->minor);
175 release_region(dev->iobase, DT2817_SIZE);