staging: comedi: comedi_test: simplify time since last AI scan
[deliverable/linux.git] / drivers / staging / comedi / drivers / dmm32at.c
CommitLineData
3c501880 1/*
a26f3d32
HS
2 * dmm32at.c
3 * Diamond Systems Diamond-MM-32-AT Comedi driver
4 *
5 * COMEDI - Linux Control and Measurement Device Interface
6 * Copyright (C) 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.
17 */
3c501880 18
3c501880 19/*
a26f3d32
HS
20 * Driver: dmm32at
21 * Description: Diamond Systems Diamond-MM-32-AT
df4d44ed 22 * Devices: [Diamond Systems] Diamond-MM-32-AT (dmm32at)
a26f3d32
HS
23 * Author: Perry J. Piplani <perry.j.piplani@nasa.gov>
24 * Updated: Fri Jun 4 09:13:24 CDT 2004
25 * Status: experimental
26 *
27 * Configuration Options:
28 * comedi_config /dev/comedi0 dmm32at baseaddr,irq
29 *
30 * This driver is for the Diamond Systems MM-32-AT board
31 * http://www.diamondsystems.com/products/diamondmm32at
32 *
9949595c 33 * It is being used on several projects inside NASA, without
a26f3d32
HS
34 * problems so far. For analog input commands, TRIG_EXT is not
35 * yet supported.
36 */
3c501880 37
ce157f80
HS
38#include <linux/module.h>
39#include <linux/delay.h>
25436dc9 40#include <linux/interrupt.h>
3c501880 41#include "../comedidev.h"
3c501880 42
387ca51f 43#include "8255.h"
27020ffe 44
3c501880 45/* Board register addresses */
32b994ea 46#define DMM32AT_AI_START_CONV_REG 0x00
3f4beddf 47#define DMM32AT_AI_LSB_REG 0x00
02a173ee
HS
48#define DMM32AT_AUX_DOUT_REG 0x01
49#define DMM32AT_AUX_DOUT2 (1 << 2) /* J3.42 - OUT2 (OUT2EN) */
50#define DMM32AT_AUX_DOUT1 (1 << 1) /* J3.43 */
51#define DMM32AT_AUX_DOUT0 (1 << 0) /* J3.44 - OUT0 (OUT0EN) */
3f4beddf 52#define DMM32AT_AI_MSB_REG 0x01
d443fae2
HS
53#define DMM32AT_AI_LO_CHAN_REG 0x02
54#define DMM32AT_AI_HI_CHAN_REG 0x03
668a02d1
HS
55#define DMM32AT_AUX_DI_REG 0x04
56#define DMM32AT_AUX_DI_DACBUSY (1 << 7)
57#define DMM32AT_AUX_DI_CALBUSY (1 << 6)
58#define DMM32AT_AUX_DI3 (1 << 3) /* J3.45 - ADCLK (CLKSEL) */
59#define DMM32AT_AUX_DI2 (1 << 2) /* J3.46 - GATE12 (GT12EN) */
60#define DMM32AT_AUX_DI1 (1 << 1) /* J3.47 - GATE0 (GT0EN) */
61#define DMM32AT_AUX_DI0 (1 << 0) /* J3.48 - CLK0 (SRC0) */
0db01ed8
HS
62#define DMM32AT_AO_LSB_REG 0x04
63#define DMM32AT_AO_MSB_REG 0x05
e46f7651 64#define DMM32AT_AO_MSB_DACH(x) ((x) << 6)
d18f1667 65#define DMM32AT_FIFO_DEPTH_REG 0x06
b8c17c47
HS
66#define DMM32AT_FIFO_CTRL_REG 0x07
67#define DMM32AT_FIFO_CTRL_FIFOEN (1 << 3)
68#define DMM32AT_FIFO_CTRL_SCANEN (1 << 2)
69#define DMM32AT_FIFO_CTRL_FIFORST (1 << 1)
7586f907
HS
70#define DMM32AT_FIFO_STATUS_REG 0x07
71#define DMM32AT_FIFO_STATUS_EF (1 << 7)
72#define DMM32AT_FIFO_STATUS_HF (1 << 6)
73#define DMM32AT_FIFO_STATUS_FF (1 << 5)
74#define DMM32AT_FIFO_STATUS_OVF (1 << 4)
75#define DMM32AT_FIFO_STATUS_FIFOEN (1 << 3)
76#define DMM32AT_FIFO_STATUS_SCANEN (1 << 2)
77#define DMM32AT_FIFO_STATUS_PAGE_MASK (3 << 0)
d900a488
HS
78#define DMM32AT_CTRL_REG 0x08
79#define DMM32AT_CTRL_RESETA (1 << 5)
80#define DMM32AT_CTRL_RESETD (1 << 4)
81#define DMM32AT_CTRL_INTRST (1 << 3)
82#define DMM32AT_CTRL_PAGE_8254 (0 << 0)
83#define DMM32AT_CTRL_PAGE_8255 (1 << 0)
84#define DMM32AT_CTRL_PAGE_CALIB (3 << 0)
4b82531e
HS
85#define DMM32AT_AI_STATUS_REG 0x08
86#define DMM32AT_AI_STATUS_STS (1 << 7)
87#define DMM32AT_AI_STATUS_SD1 (1 << 6)
88#define DMM32AT_AI_STATUS_SD0 (1 << 5)
89#define DMM32AT_AI_STATUS_ADCH_MASK (0x1f << 0)
990c96d1
HS
90#define DMM32AT_INTCLK_REG 0x09
91#define DMM32AT_INTCLK_ADINT (1 << 7)
92#define DMM32AT_INTCLK_DINT (1 << 6)
93#define DMM32AT_INTCLK_TINT (1 << 5)
94#define DMM32AT_INTCLK_CLKEN (1 << 1) /* 1=see below 0=software */
95#define DMM32AT_INTCLK_CLKSEL (1 << 0) /* 1=OUT2 0=EXTCLK */
bbf0a305
HS
96#define DMM32AT_CTRDIO_CFG_REG 0x0a
97#define DMM32AT_CTRDIO_CFG_FREQ12 (1 << 7) /* CLK12 1=100KHz 0=10MHz */
98#define DMM32AT_CTRDIO_CFG_FREQ0 (1 << 6) /* CLK0 1=10KHz 0=10MHz */
99#define DMM32AT_CTRDIO_CFG_OUT2EN (1 << 5) /* J3.42 1=OUT2 is DOUT2 */
100#define DMM32AT_CTRDIO_CFG_OUT0EN (1 << 4) /* J3,44 1=OUT0 is DOUT0 */
101#define DMM32AT_CTRDIO_CFG_GT0EN (1 << 2) /* J3.47 1=DIN1 is GATE0 */
102#define DMM32AT_CTRDIO_CFG_SRC0 (1 << 1) /* CLK0 is 0=FREQ0 1=J3.48 */
103#define DMM32AT_CTRDIO_CFG_GT12EN (1 << 0) /* J3.46 1=DIN2 is GATE12 */
06d0ac36
HS
104#define DMM32AT_AI_CFG_REG 0x0b
105#define DMM32AT_AI_CFG_SCINT_20US (0 << 4)
106#define DMM32AT_AI_CFG_SCINT_15US (1 << 4)
107#define DMM32AT_AI_CFG_SCINT_10US (2 << 4)
108#define DMM32AT_AI_CFG_SCINT_5US (3 << 4)
109#define DMM32AT_AI_CFG_RANGE (1 << 3) /* 0=5V 1=10V */
110#define DMM32AT_AI_CFG_ADBU (1 << 2) /* 0=bipolar 1=unipolar */
111#define DMM32AT_AI_CFG_GAIN(x) ((x) << 0)
fc7e1c08
HS
112#define DMM32AT_AI_READBACK_REG 0x0b
113#define DMM32AT_AI_READBACK_WAIT (1 << 7) /* DMM32AT_AI_STATUS_STS */
114#define DMM32AT_AI_READBACK_RANGE (1 << 3)
115#define DMM32AT_AI_READBACK_ADBU (1 << 2)
116#define DMM32AT_AI_READBACK_GAIN_MASK (3 << 0)
3c501880
PP
117
118#define DMM32AT_CLK1 0x0d
119#define DMM32AT_CLK2 0x0e
120#define DMM32AT_CLKCT 0x0f
121
387ca51f 122#define DMM32AT_8255_IOBASE 0x0c /* Page 1 registers */
3c501880 123
3c501880
PP
124/* Board register values. */
125
06d0ac36 126/* DMM32AT_AI_CFG_REG 0x0b */
3c501880
PP
127#define DMM32AT_RANGE_U10 0x0c
128#define DMM32AT_RANGE_U5 0x0d
129#define DMM32AT_RANGE_B10 0x08
130#define DMM32AT_RANGE_B5 0x00
3c501880
PP
131
132/* DMM32AT_CLKCT 0x0f */
133#define DMM32AT_CLKCT1 0x56 /* mode3 counter 1 - write low byte only */
134#define DMM32AT_CLKCT2 0xb6 /* mode3 counter 2 - write high and low byte */
135
3c501880 136/* board AI ranges in comedi structure */
9ced1de6 137static const struct comedi_lrange dmm32at_airanges = {
45ddfc5a
HS
138 4, {
139 UNI_RANGE(10),
140 UNI_RANGE(5),
141 BIP_RANGE(10),
142 BIP_RANGE(5)
143 }
3c501880
PP
144};
145
146/* register values for above ranges */
147static const unsigned char dmm32at_rangebits[] = {
148 DMM32AT_RANGE_U10,
149 DMM32AT_RANGE_U5,
150 DMM32AT_RANGE_B10,
151 DMM32AT_RANGE_B5,
152};
153
154/* only one of these ranges is valid, as set by a jumper on the
155 * board. The application should only use the range set by the jumper
156 */
9ced1de6 157static const struct comedi_lrange dmm32at_aoranges = {
45ddfc5a
HS
158 4, {
159 UNI_RANGE(10),
160 UNI_RANGE(5),
161 BIP_RANGE(10),
162 BIP_RANGE(5)
163 }
3c501880
PP
164};
165
c5f1b1e5
HS
166static void dmm32at_ai_set_chanspec(struct comedi_device *dev,
167 struct comedi_subdevice *s,
168 unsigned int chanspec, int nchan)
169{
170 unsigned int chan = CR_CHAN(chanspec);
171 unsigned int range = CR_RANGE(chanspec);
172 unsigned int last_chan = (chan + nchan - 1) % s->n_chan;
173
b8c17c47 174 outb(DMM32AT_FIFO_CTRL_FIFORST, dev->iobase + DMM32AT_FIFO_CTRL_REG);
c5f1b1e5
HS
175
176 if (nchan > 1)
b8c17c47
HS
177 outb(DMM32AT_FIFO_CTRL_SCANEN,
178 dev->iobase + DMM32AT_FIFO_CTRL_REG);
c5f1b1e5 179
d443fae2
HS
180 outb(chan, dev->iobase + DMM32AT_AI_LO_CHAN_REG);
181 outb(last_chan, dev->iobase + DMM32AT_AI_HI_CHAN_REG);
06d0ac36 182 outb(dmm32at_rangebits[range], dev->iobase + DMM32AT_AI_CFG_REG);
c5f1b1e5
HS
183}
184
0c0eadad
HS
185static unsigned int dmm32at_ai_get_sample(struct comedi_device *dev,
186 struct comedi_subdevice *s)
187{
188 unsigned int val;
189
3f4beddf
HS
190 val = inb(dev->iobase + DMM32AT_AI_LSB_REG);
191 val |= (inb(dev->iobase + DMM32AT_AI_MSB_REG) << 8);
0c0eadad
HS
192
193 /* munge two's complement value to offset binary */
194 return comedi_offset_munge(s, val);
195}
196
f7b3d79a
HS
197static int dmm32at_ai_status(struct comedi_device *dev,
198 struct comedi_subdevice *s,
199 struct comedi_insn *insn,
200 unsigned long context)
201{
202 unsigned char status;
203
204 status = inb(dev->iobase + context);
4b82531e 205 if ((status & DMM32AT_AI_STATUS_STS) == 0)
f7b3d79a
HS
206 return 0;
207 return -EBUSY;
208}
209
01b7ecdd
HS
210static int dmm32at_ai_insn_read(struct comedi_device *dev,
211 struct comedi_subdevice *s,
212 struct comedi_insn *insn,
213 unsigned int *data)
3c501880 214{
f7b3d79a 215 int ret;
01b7ecdd 216 int i;
3c501880 217
c5f1b1e5 218 dmm32at_ai_set_chanspec(dev, s, insn->chanspec, 1);
3c501880
PP
219
220 /* wait for circuit to settle */
fc7e1c08
HS
221 ret = comedi_timeout(dev, s, insn, dmm32at_ai_status,
222 DMM32AT_AI_READBACK_REG);
f7b3d79a
HS
223 if (ret)
224 return ret;
3c501880 225
01b7ecdd 226 for (i = 0; i < insn->n; i++) {
32b994ea 227 outb(0xff, dev->iobase + DMM32AT_AI_START_CONV_REG);
f7b3d79a 228
f7b3d79a 229 ret = comedi_timeout(dev, s, insn, dmm32at_ai_status,
4b82531e 230 DMM32AT_AI_STATUS_REG);
f7b3d79a
HS
231 if (ret)
232 return ret;
3c501880 233
01b7ecdd 234 data[i] = dmm32at_ai_get_sample(dev, s);
3c501880
PP
235 }
236
01b7ecdd 237 return insn->n;
3c501880
PP
238}
239
86914996
HS
240static int dmm32at_ai_check_chanlist(struct comedi_device *dev,
241 struct comedi_subdevice *s,
242 struct comedi_cmd *cmd)
243{
244 unsigned int chan0 = CR_CHAN(cmd->chanlist[0]);
245 unsigned int range0 = CR_RANGE(cmd->chanlist[0]);
246 int i;
247
248 for (i = 1; i < cmd->chanlist_len; i++) {
249 unsigned int chan = CR_CHAN(cmd->chanlist[i]);
250 unsigned int range = CR_RANGE(cmd->chanlist[i]);
251
252 if (chan != (chan0 + i) % s->n_chan) {
253 dev_dbg(dev->class_dev,
254 "entries in chanlist must be consecutive channels, counting upwards\n");
255 return -EINVAL;
256 }
257 if (range != range0) {
258 dev_dbg(dev->class_dev,
259 "entries in chanlist must all have the same gain\n");
260 return -EINVAL;
261 }
262 }
263
264 return 0;
265}
266
0a85b6f0
MT
267static int dmm32at_ai_cmdtest(struct comedi_device *dev,
268 struct comedi_subdevice *s,
269 struct comedi_cmd *cmd)
3c501880
PP
270{
271 int err = 0;
d579392a 272 unsigned int arg;
3c501880 273
27020ffe 274 /* Step 1 : check if triggers are trivially valid */
3c501880 275
b504252a
IA
276 err |= comedi_check_trigger_src(&cmd->start_src, TRIG_NOW);
277 err |= comedi_check_trigger_src(&cmd->scan_begin_src, TRIG_TIMER);
278 err |= comedi_check_trigger_src(&cmd->convert_src, TRIG_TIMER);
279 err |= comedi_check_trigger_src(&cmd->scan_end_src, TRIG_COUNT);
280 err |= comedi_check_trigger_src(&cmd->stop_src, TRIG_COUNT | TRIG_NONE);
3c501880
PP
281
282 if (err)
283 return 1;
284
27020ffe 285 /* Step 2a : make sure trigger sources are unique */
3c501880 286
b504252a 287 err |= comedi_check_trigger_is_unique(cmd->stop_src);
27020ffe
HS
288
289 /* Step 2b : and mutually compatible */
3c501880
PP
290
291 if (err)
292 return 2;
293
e43ed5fa
HS
294 /* Step 3: check if arguments are trivially valid */
295
b504252a 296 err |= comedi_check_trigger_arg_is(&cmd->start_arg, 0);
3c501880 297
b504252a
IA
298 err |= comedi_check_trigger_arg_min(&cmd->scan_begin_arg, 1000000);
299 err |= comedi_check_trigger_arg_max(&cmd->scan_begin_arg, 1000000000);
e43ed5fa 300
85b0e766
HS
301 if (cmd->convert_arg >= 17500)
302 cmd->convert_arg = 20000;
303 else if (cmd->convert_arg >= 12500)
304 cmd->convert_arg = 15000;
305 else if (cmd->convert_arg >= 7500)
306 cmd->convert_arg = 10000;
307 else
308 cmd->convert_arg = 5000;
3c501880 309
b504252a
IA
310 err |= comedi_check_trigger_arg_is(&cmd->scan_end_arg,
311 cmd->chanlist_len);
e43ed5fa 312
933fca13 313 if (cmd->stop_src == TRIG_COUNT)
b504252a 314 err |= comedi_check_trigger_arg_min(&cmd->stop_arg, 1);
933fca13 315 else /* TRIG_NONE */
b504252a 316 err |= comedi_check_trigger_arg_is(&cmd->stop_arg, 0);
3c501880
PP
317
318 if (err)
319 return 3;
320
ec1b2320 321 /* Step 4: fix up any arguments */
d579392a 322
85b0e766 323 arg = cmd->convert_arg * cmd->scan_end_arg;
b504252a 324 err |= comedi_check_trigger_arg_min(&cmd->scan_begin_arg, arg);
3c501880
PP
325
326 if (err)
327 return 4;
328
86914996
HS
329 /* Step 5: check channel list if it exists */
330 if (cmd->chanlist && cmd->chanlist_len > 0)
331 err |= dmm32at_ai_check_chanlist(dev, s, cmd);
3c501880
PP
332
333 if (err)
334 return 5;
335
336 return 0;
337}
338
47ae6a72
HS
339static void dmm32at_setaitimer(struct comedi_device *dev, unsigned int nansec)
340{
341 unsigned char lo1, lo2, hi2;
342 unsigned short both2;
343
344 /* based on 10mhz clock */
345 lo1 = 200;
346 both2 = nansec / 20000;
347 hi2 = (both2 & 0xff00) >> 8;
348 lo2 = both2 & 0x00ff;
349
bbf0a305
HS
350 /* set counter clocks to 10MHz, disable all aux dio */
351 outb(0, dev->iobase + DMM32AT_CTRDIO_CFG_REG);
47ae6a72
HS
352
353 /* get access to the clock regs */
d900a488 354 outb(DMM32AT_CTRL_PAGE_8254, dev->iobase + DMM32AT_CTRL_REG);
47ae6a72
HS
355
356 /* write the counter 1 control word and low byte to counter */
29f747c2
HS
357 outb(DMM32AT_CLKCT1, dev->iobase + DMM32AT_CLKCT);
358 outb(lo1, dev->iobase + DMM32AT_CLK1);
47ae6a72
HS
359
360 /* write the counter 2 control word and low byte then to counter */
29f747c2
HS
361 outb(DMM32AT_CLKCT2, dev->iobase + DMM32AT_CLKCT);
362 outb(lo2, dev->iobase + DMM32AT_CLK2);
363 outb(hi2, dev->iobase + DMM32AT_CLK2);
47ae6a72
HS
364
365 /* enable the ai conversion interrupt and the clock to start scans */
990c96d1
HS
366 outb(DMM32AT_INTCLK_ADINT |
367 DMM32AT_INTCLK_CLKEN | DMM32AT_INTCLK_CLKSEL,
fc1964a5 368 dev->iobase + DMM32AT_INTCLK_REG);
47ae6a72
HS
369}
370
da91b269 371static int dmm32at_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
3c501880 372{
ea6d0d4c 373 struct comedi_cmd *cmd = &s->async->cmd;
f7b3d79a 374 int ret;
3c501880 375
c5f1b1e5 376 dmm32at_ai_set_chanspec(dev, s, cmd->chanlist[0], cmd->chanlist_len);
3c501880
PP
377
378 /* reset the interrupt just in case */
d900a488 379 outb(DMM32AT_CTRL_INTRST, dev->iobase + DMM32AT_CTRL_REG);
3c501880 380
f7b3d79a
HS
381 /*
382 * wait for circuit to settle
383 * we don't have the 'insn' here but it's not needed
384 */
fc7e1c08
HS
385 ret = comedi_timeout(dev, s, NULL, dmm32at_ai_status,
386 DMM32AT_AI_READBACK_REG);
f7b3d79a
HS
387 if (ret)
388 return ret;
3c501880 389
933fca13 390 if (cmd->stop_src == TRIG_NONE || cmd->stop_arg > 1) {
3c501880
PP
391 /* start the clock and enable the interrupts */
392 dmm32at_setaitimer(dev, cmd->scan_begin_arg);
393 } else {
9949595c 394 /* start the interrupts and initiate a single scan */
990c96d1 395 outb(DMM32AT_INTCLK_ADINT, dev->iobase + DMM32AT_INTCLK_REG);
32b994ea 396 outb(0xff, dev->iobase + DMM32AT_AI_START_CONV_REG);
3c501880
PP
397 }
398
3c501880 399 return 0;
3c501880
PP
400}
401
0a85b6f0
MT
402static int dmm32at_ai_cancel(struct comedi_device *dev,
403 struct comedi_subdevice *s)
3c501880 404{
4d9b0714 405 /* disable further interrupts and clocks */
990c96d1 406 outb(0x0, dev->iobase + DMM32AT_INTCLK_REG);
3c501880
PP
407 return 0;
408}
409
70265d24 410static irqreturn_t dmm32at_isr(int irq, void *d)
3c501880 411{
3eff0174 412 struct comedi_device *dev = d;
3c501880 413 unsigned char intstat;
0c0eadad 414 unsigned int val;
3c501880 415 int i;
3c501880
PP
416
417 if (!dev->attached) {
2d60dd4a 418 dev_err(dev->class_dev, "spurious interrupt\n");
3c501880
PP
419 return IRQ_HANDLED;
420 }
421
990c96d1 422 intstat = inb(dev->iobase + DMM32AT_INTCLK_REG);
3c501880 423
990c96d1 424 if (intstat & DMM32AT_INTCLK_ADINT) {
34c43922 425 struct comedi_subdevice *s = dev->read_subdev;
ea6d0d4c 426 struct comedi_cmd *cmd = &s->async->cmd;
3c501880
PP
427
428 for (i = 0; i < cmd->chanlist_len; i++) {
0c0eadad
HS
429 val = dmm32at_ai_get_sample(dev, s);
430 comedi_buf_write_samples(s, &val, 1);
3c501880
PP
431 }
432
933fca13
HS
433 if (cmd->stop_src == TRIG_COUNT &&
434 s->async->scans_done >= cmd->stop_arg)
435 s->async->events |= COMEDI_CB_EOA;
3c501880 436
285d1ff1 437 comedi_handle_events(dev, s);
3c501880
PP
438 }
439
440 /* reset the interrupt */
d900a488 441 outb(DMM32AT_CTRL_INTRST, dev->iobase + DMM32AT_CTRL_REG);
3c501880
PP
442 return IRQ_HANDLED;
443}
444
f7b3d79a
HS
445static int dmm32at_ao_eoc(struct comedi_device *dev,
446 struct comedi_subdevice *s,
447 struct comedi_insn *insn,
448 unsigned long context)
449{
450 unsigned char status;
451
668a02d1
HS
452 status = inb(dev->iobase + DMM32AT_AUX_DI_REG);
453 if ((status & DMM32AT_AUX_DI_DACBUSY) == 0)
f7b3d79a
HS
454 return 0;
455 return -EBUSY;
456}
457
bf8e3e3a
HS
458static int dmm32at_ao_insn_write(struct comedi_device *dev,
459 struct comedi_subdevice *s,
460 struct comedi_insn *insn,
461 unsigned int *data)
3c501880 462{
bf8e3e3a 463 unsigned int chan = CR_CHAN(insn->chanspec);
bf8e3e3a 464 int i;
3c501880 465
3c501880 466 for (i = 0; i < insn->n; i++) {
b328ad30
HS
467 unsigned int val = data[i];
468 int ret;
3c501880 469
bf8e3e3a 470 /* write LSB then MSB + chan to load DAC */
0db01ed8 471 outb(val & 0xff, dev->iobase + DMM32AT_AO_LSB_REG);
e46f7651 472 outb((val >> 8) | DMM32AT_AO_MSB_DACH(chan),
0db01ed8 473 dev->iobase + DMM32AT_AO_MSB_REG);
3c501880
PP
474
475 /* wait for circuit to settle */
f7b3d79a
HS
476 ret = comedi_timeout(dev, s, insn, dmm32at_ao_eoc, 0);
477 if (ret)
478 return ret;
65e2618f 479
bf8e3e3a 480 /* dummy read to update DAC */
0db01ed8 481 inb(dev->iobase + DMM32AT_AO_MSB_REG);
3c501880 482
b328ad30 483 s->readback[chan] = val;
3c501880
PP
484 }
485
bf8e3e3a 486 return insn->n;
3c501880
PP
487}
488
387ca51f
HS
489static int dmm32at_8255_io(struct comedi_device *dev,
490 int dir, int port, int data, unsigned long regbase)
3c501880 491{
3c501880 492 /* get access to the DIO regs */
d900a488 493 outb(DMM32AT_CTRL_PAGE_8255, dev->iobase + DMM32AT_CTRL_REG);
3c501880 494
387ca51f
HS
495 if (dir) {
496 outb(data, dev->iobase + regbase + port);
497 return 0;
498 }
499 return inb(dev->iobase + regbase + port);
3c501880
PP
500}
501
593ea59d
HS
502/* Make sure the board is there and put it to a known state */
503static int dmm32at_reset(struct comedi_device *dev)
4f793db3 504{
4f793db3 505 unsigned char aihi, ailo, fifostat, aistat, intstat, airback;
4f793db3 506
4f793db3 507 /* reset the board */
d900a488 508 outb(DMM32AT_CTRL_RESETA, dev->iobase + DMM32AT_CTRL_REG);
4f793db3
HS
509
510 /* allow a millisecond to reset */
511 udelay(1000);
512
513 /* zero scan and fifo control */
b8c17c47 514 outb(0x0, dev->iobase + DMM32AT_FIFO_CTRL_REG);
4f793db3
HS
515
516 /* zero interrupt and clock control */
990c96d1 517 outb(0x0, dev->iobase + DMM32AT_INTCLK_REG);
4f793db3
HS
518
519 /* write a test channel range, the high 3 bits should drop */
d443fae2
HS
520 outb(0x80, dev->iobase + DMM32AT_AI_LO_CHAN_REG);
521 outb(0xff, dev->iobase + DMM32AT_AI_HI_CHAN_REG);
4f793db3
HS
522
523 /* set the range at 10v unipolar */
06d0ac36 524 outb(DMM32AT_RANGE_U10, dev->iobase + DMM32AT_AI_CFG_REG);
4f793db3
HS
525
526 /* should take 10 us to settle, here's a hundred */
527 udelay(100);
528
529 /* read back the values */
d443fae2
HS
530 ailo = inb(dev->iobase + DMM32AT_AI_LO_CHAN_REG);
531 aihi = inb(dev->iobase + DMM32AT_AI_HI_CHAN_REG);
7586f907 532 fifostat = inb(dev->iobase + DMM32AT_FIFO_STATUS_REG);
4b82531e 533 aistat = inb(dev->iobase + DMM32AT_AI_STATUS_REG);
990c96d1 534 intstat = inb(dev->iobase + DMM32AT_INTCLK_REG);
fc7e1c08 535 airback = inb(dev->iobase + DMM32AT_AI_READBACK_REG);
4f793db3 536
4b82531e
HS
537 /*
538 * NOTE: The (DMM32AT_AI_STATUS_SD1 | DMM32AT_AI_STATUS_SD0)
539 * test makes this driver only work if the board is configured
540 * with all A/D channels set for single-ended operation.
541 */
7586f907
HS
542 if (ailo != 0x00 || aihi != 0x1f ||
543 fifostat != DMM32AT_FIFO_STATUS_EF ||
4b82531e
HS
544 aistat != (DMM32AT_AI_STATUS_SD1 | DMM32AT_AI_STATUS_SD0) ||
545 intstat != 0x00 || airback != 0x0c)
4f793db3 546 return -EIO;
593ea59d 547
593ea59d
HS
548 return 0;
549}
550
551static int dmm32at_attach(struct comedi_device *dev,
552 struct comedi_devconfig *it)
553{
593ea59d
HS
554 struct comedi_subdevice *s;
555 int ret;
556
593ea59d
HS
557 ret = comedi_request_region(dev, it->options[0], 0x10);
558 if (ret)
559 return ret;
560
561 ret = dmm32at_reset(dev);
562 if (ret) {
563 dev_err(dev->class_dev, "board detection failed\n");
564 return ret;
4f793db3
HS
565 }
566
0c2e5532
HS
567 if (it->options[1]) {
568 ret = request_irq(it->options[1], dmm32at_isr, 0,
569 dev->board_name, dev);
570 if (ret == 0)
571 dev->irq = it->options[1];
4f793db3
HS
572 }
573
4f793db3
HS
574 ret = comedi_alloc_subdevices(dev, 3);
575 if (ret)
576 return ret;
577
646b55ee 578 /* Analog Input subdevice */
2930d0ba 579 s = &dev->subdevices[0];
646b55ee
HS
580 s->type = COMEDI_SUBD_AI;
581 s->subdev_flags = SDF_READABLE | SDF_GROUND | SDF_DIFF;
582 s->n_chan = 32;
583 s->maxdata = 0xffff;
584 s->range_table = &dmm32at_airanges;
585 s->insn_read = dmm32at_ai_insn_read;
0c2e5532
HS
586 if (dev->irq) {
587 dev->read_subdev = s;
646b55ee
HS
588 s->subdev_flags |= SDF_CMD_READ;
589 s->len_chanlist = s->n_chan;
590 s->do_cmd = dmm32at_ai_cmd;
591 s->do_cmdtest = dmm32at_ai_cmdtest;
592 s->cancel = dmm32at_ai_cancel;
0c2e5532 593 }
4f793db3 594
646b55ee 595 /* Analog Output subdevice */
2930d0ba 596 s = &dev->subdevices[1];
646b55ee
HS
597 s->type = COMEDI_SUBD_AO;
598 s->subdev_flags = SDF_WRITABLE;
599 s->n_chan = 4;
600 s->maxdata = 0x0fff;
601 s->range_table = &dmm32at_aoranges;
602 s->insn_write = dmm32at_ao_insn_write;
b328ad30
HS
603
604 ret = comedi_alloc_subdev_readback(s);
605 if (ret)
606 return ret;
4f793db3 607
646b55ee 608 /* Digital I/O subdevice */
2930d0ba 609 s = &dev->subdevices[2];
fa4c586e 610 return subdev_8255_init(dev, s, dmm32at_8255_io, DMM32AT_8255_IOBASE);
4f793db3
HS
611}
612
17f49dd4
HS
613static struct comedi_driver dmm32at_driver = {
614 .driver_name = "dmm32at",
615 .module = THIS_MODULE,
616 .attach = dmm32at_attach,
3d1fe3f7 617 .detach = comedi_legacy_detach,
17f49dd4
HS
618};
619module_comedi_driver(dmm32at_driver);
90f703d3
AT
620
621MODULE_AUTHOR("Comedi http://www.comedi.org");
921890b0 622MODULE_DESCRIPTION("Comedi: Diamond Systems Diamond-MM-32-AT");
90f703d3 623MODULE_LICENSE("GPL");
This page took 0.846218 seconds and 5 git commands to generate.