Staging: comedi: pcmcia irq fixes
[linux-2.6/mini2440.git] / drivers / staging / comedi / drivers / quatech_daqp_cs.c
blob344b82353e08ba96013c50cfc93b822d949d8aaa
1 /*======================================================================
3 comedi/drivers/quatech_daqp_cs.c
5 Quatech DAQP PCMCIA data capture cards COMEDI client driver
6 Copyright (C) 2000, 2003 Brent Baccala <baccala@freesoft.org>
7 The DAQP interface code in this file is released into the public domain.
9 COMEDI - Linux Control and Measurement Device Interface
10 Copyright (C) 1998 David A. Schleef <ds@schleef.org>
11 http://www.comedi.org/
13 quatech_daqp_cs.c 1.10
15 Documentation for the DAQP PCMCIA cards can be found on Quatech's site:
17 ftp://ftp.quatech.com/Manuals/daqp-208.pdf
19 This manual is for both the DAQP-208 and the DAQP-308.
21 What works:
23 - A/D conversion
24 - 8 channels
25 - 4 gain ranges
26 - ground ref or differential
27 - single-shot and timed both supported
28 - D/A conversion, single-shot
29 - digital I/O
31 What doesn't:
33 - any kind of triggering - external or D/A channel 1
34 - the card's optional expansion board
35 - the card's timer (for anything other than A/D conversion)
36 - D/A update modes other than immediate (i.e, timed)
37 - fancier timing modes
38 - setting card's FIFO buffer thresholds to anything but default
40 ======================================================================*/
43 Driver: quatech_daqp_cs
44 Description: Quatech DAQP PCMCIA data capture cards
45 Author: Brent Baccala <baccala@freesoft.org>
46 Status: works
47 Devices: [Quatech] DAQP-208 (daqp), DAQP-308
50 #include "../comedidev.h"
52 #include <pcmcia/cs_types.h>
53 #include <pcmcia/cs.h>
54 #include <pcmcia/cistpl.h>
55 #include <pcmcia/cisreg.h>
56 #include <pcmcia/ds.h>
59 All the PCMCIA modules use PCMCIA_DEBUG to control debugging. If
60 you do not define PCMCIA_DEBUG at all, all the debug code will be
61 left out. If you compile with PCMCIA_DEBUG=0, the debug code will
62 be present but disabled -- but it can then be enabled for specific
63 modules at load time with a 'pc_debug=#' option to insmod.
66 #ifdef PCMCIA_DEBUG
67 static int pc_debug = PCMCIA_DEBUG;
68 module_param(pc_debug, int, 0644);
69 #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
70 static char *version = "quatech_daqp_cs.c 1.10 2003/04/21 (Brent Baccala)";
71 #else
72 #define DEBUG(n, args...)
73 #endif
75 /* Maximum number of separate DAQP devices we'll allow */
76 #define MAX_DEV 4
78 struct local_info_t {
79 struct pcmcia_device *link;
80 dev_node_t node;
81 int stop;
82 int table_index;
83 char board_name[32];
85 enum { semaphore, buffer } interrupt_mode;
87 struct semaphore eos;
89 struct comedi_device *dev;
90 struct comedi_subdevice *s;
91 int count;
94 /* A list of "instances" of the device. */
96 static struct local_info_t *dev_table[MAX_DEV] = { NULL, /* ... */ };
98 /* The DAQP communicates with the system through a 16 byte I/O window. */
100 #define DAQP_FIFO_SIZE 4096
102 #define DAQP_FIFO 0
103 #define DAQP_SCANLIST 1
104 #define DAQP_CONTROL 2
105 #define DAQP_STATUS 2
106 #define DAQP_DIGITAL_IO 3
107 #define DAQP_PACER_LOW 4
108 #define DAQP_PACER_MID 5
109 #define DAQP_PACER_HIGH 6
110 #define DAQP_COMMAND 7
111 #define DAQP_DA 8
112 #define DAQP_TIMER 10
113 #define DAQP_AUX 15
115 #define DAQP_SCANLIST_DIFFERENTIAL 0x4000
116 #define DAQP_SCANLIST_GAIN(x) ((x)<<12)
117 #define DAQP_SCANLIST_CHANNEL(x) ((x)<<8)
118 #define DAQP_SCANLIST_START 0x0080
119 #define DAQP_SCANLIST_EXT_GAIN(x) ((x)<<4)
120 #define DAQP_SCANLIST_EXT_CHANNEL(x) (x)
122 #define DAQP_CONTROL_PACER_100kHz 0xc0
123 #define DAQP_CONTROL_PACER_1MHz 0x80
124 #define DAQP_CONTROL_PACER_5MHz 0x40
125 #define DAQP_CONTROL_PACER_EXTERNAL 0x00
126 #define DAQP_CONTORL_EXPANSION 0x20
127 #define DAQP_CONTROL_EOS_INT_ENABLE 0x10
128 #define DAQP_CONTROL_FIFO_INT_ENABLE 0x08
129 #define DAQP_CONTROL_TRIGGER_ONESHOT 0x00
130 #define DAQP_CONTROL_TRIGGER_CONTINUOUS 0x04
131 #define DAQP_CONTROL_TRIGGER_INTERNAL 0x00
132 #define DAQP_CONTROL_TRIGGER_EXTERNAL 0x02
133 #define DAQP_CONTROL_TRIGGER_RISING 0x00
134 #define DAQP_CONTROL_TRIGGER_FALLING 0x01
136 #define DAQP_STATUS_IDLE 0x80
137 #define DAQP_STATUS_RUNNING 0x40
138 #define DAQP_STATUS_EVENTS 0x38
139 #define DAQP_STATUS_DATA_LOST 0x20
140 #define DAQP_STATUS_END_OF_SCAN 0x10
141 #define DAQP_STATUS_FIFO_THRESHOLD 0x08
142 #define DAQP_STATUS_FIFO_FULL 0x04
143 #define DAQP_STATUS_FIFO_NEARFULL 0x02
144 #define DAQP_STATUS_FIFO_EMPTY 0x01
146 #define DAQP_COMMAND_ARM 0x80
147 #define DAQP_COMMAND_RSTF 0x40
148 #define DAQP_COMMAND_RSTQ 0x20
149 #define DAQP_COMMAND_STOP 0x10
150 #define DAQP_COMMAND_LATCH 0x08
151 #define DAQP_COMMAND_100kHz 0x00
152 #define DAQP_COMMAND_50kHz 0x02
153 #define DAQP_COMMAND_25kHz 0x04
154 #define DAQP_COMMAND_FIFO_DATA 0x01
155 #define DAQP_COMMAND_FIFO_PROGRAM 0x00
157 #define DAQP_AUX_TRIGGER_TTL 0x00
158 #define DAQP_AUX_TRIGGER_ANALOG 0x80
159 #define DAQP_AUX_TRIGGER_PRETRIGGER 0x40
160 #define DAQP_AUX_TIMER_INT_ENABLE 0x20
161 #define DAQP_AUX_TIMER_RELOAD 0x00
162 #define DAQP_AUX_TIMER_PAUSE 0x08
163 #define DAQP_AUX_TIMER_GO 0x10
164 #define DAQP_AUX_TIMER_GO_EXTERNAL 0x18
165 #define DAQP_AUX_TIMER_EXTERNAL_SRC 0x04
166 #define DAQP_AUX_TIMER_INTERNAL_SRC 0x00
167 #define DAQP_AUX_DA_DIRECT 0x00
168 #define DAQP_AUX_DA_OVERFLOW 0x01
169 #define DAQP_AUX_DA_EXTERNAL 0x02
170 #define DAQP_AUX_DA_PACER 0x03
172 #define DAQP_AUX_RUNNING 0x80
173 #define DAQP_AUX_TRIGGERED 0x40
174 #define DAQP_AUX_DA_BUFFER 0x20
175 #define DAQP_AUX_TIMER_OVERFLOW 0x10
176 #define DAQP_AUX_CONVERSION 0x08
177 #define DAQP_AUX_DATA_LOST 0x04
178 #define DAQP_AUX_FIFO_NEARFULL 0x02
179 #define DAQP_AUX_FIFO_EMPTY 0x01
181 /* These range structures tell COMEDI how the sample values map to
182 * voltages. The A/D converter has four .ranges = +/- 10V through
183 * +/- 1.25V, and the D/A converter has only .one = +/- 5V.
186 static const struct comedi_lrange range_daqp_ai = { 4, {
187 BIP_RANGE(10),
188 BIP_RANGE(5),
189 BIP_RANGE(2.5),
190 BIP_RANGE(1.25)
194 static const struct comedi_lrange range_daqp_ao = { 1, {BIP_RANGE(5)} };
196 /*====================================================================*/
198 /* comedi interface code */
200 static int daqp_attach(struct comedi_device *dev, struct comedi_devconfig *it);
201 static int daqp_detach(struct comedi_device *dev);
202 static struct comedi_driver driver_daqp = {
203 .driver_name = "quatech_daqp_cs",
204 .module = THIS_MODULE,
205 .attach = daqp_attach,
206 .detach = daqp_detach,
209 #ifdef DAQP_DEBUG
211 static void daqp_dump(struct comedi_device *dev)
213 printk("DAQP: status %02x; aux status %02x\n",
214 inb(dev->iobase + DAQP_STATUS), inb(dev->iobase + DAQP_AUX));
217 static void hex_dump(char *str, void *ptr, int len)
219 unsigned char *cptr = ptr;
220 int i;
222 printk(str);
224 for (i = 0; i < len; i++) {
225 if (i % 16 == 0) {
226 printk("\n0x%08x:", (unsigned int)cptr);
228 printk(" %02x", *(cptr++));
230 printk("\n");
233 #endif
235 /* Cancel a running acquisition */
237 static int daqp_ai_cancel(struct comedi_device *dev, struct comedi_subdevice *s)
239 struct local_info_t *local = (struct local_info_t *)s->private;
241 if (local->stop) {
242 return -EIO;
245 outb(DAQP_COMMAND_STOP, dev->iobase + DAQP_COMMAND);
247 /* flush any linguring data in FIFO - superfluous here */
248 /* outb(DAQP_COMMAND_RSTF, dev->iobase+DAQP_COMMAND); */
250 local->interrupt_mode = semaphore;
252 return 0;
255 /* Interrupt handler
257 * Operates in one of two modes. If local->interrupt_mode is
258 * 'semaphore', just signal the local->eos semaphore and return
259 * (one-shot mode). Otherwise (continuous mode), read data in from
260 * the card, transfer it to the buffer provided by the higher-level
261 * comedi kernel module, and signal various comedi callback routines,
262 * which run pretty quick.
265 static void daqp_interrupt(int irq, void *dev_id)
267 struct local_info_t *local = (struct local_info_t *)dev_id;
268 struct comedi_device *dev;
269 struct comedi_subdevice *s;
270 int loop_limit = 10000;
271 int status;
273 if (local == NULL) {
274 printk(KERN_WARNING
275 "daqp_interrupt(): irq %d for unknown device.\n", irq);
276 return;
279 dev = local->dev;
280 if (dev == NULL) {
281 printk(KERN_WARNING "daqp_interrupt(): NULL comedi_device.\n");
282 return;
285 if (!dev->attached) {
286 printk(KERN_WARNING
287 "daqp_interrupt(): struct comedi_device not yet attached.\n");
288 return;
291 s = local->s;
292 if (s == NULL) {
293 printk(KERN_WARNING
294 "daqp_interrupt(): NULL comedi_subdevice.\n");
295 return;
298 if ((struct local_info_t *)s->private != local) {
299 printk(KERN_WARNING
300 "daqp_interrupt(): invalid comedi_subdevice.\n");
301 return;
304 switch (local->interrupt_mode) {
306 case semaphore:
308 up(&local->eos);
309 break;
311 case buffer:
313 while (!((status = inb(dev->iobase + DAQP_STATUS))
314 & DAQP_STATUS_FIFO_EMPTY)) {
316 short data;
318 if (status & DAQP_STATUS_DATA_LOST) {
319 s->async->events |=
320 COMEDI_CB_EOA | COMEDI_CB_OVERFLOW;
321 printk("daqp: data lost\n");
322 daqp_ai_cancel(dev, s);
323 break;
326 data = inb(dev->iobase + DAQP_FIFO);
327 data |= inb(dev->iobase + DAQP_FIFO) << 8;
328 data ^= 0x8000;
330 comedi_buf_put(s->async, data);
332 /* If there's a limit, decrement it
333 * and stop conversion if zero
336 if (local->count > 0) {
337 local->count--;
338 if (local->count == 0) {
339 daqp_ai_cancel(dev, s);
340 s->async->events |= COMEDI_CB_EOA;
341 break;
345 if ((loop_limit--) <= 0)
346 break;
349 if (loop_limit <= 0) {
350 printk(KERN_WARNING
351 "loop_limit reached in daqp_interrupt()\n");
352 daqp_ai_cancel(dev, s);
353 s->async->events |= COMEDI_CB_EOA | COMEDI_CB_ERROR;
356 s->async->events |= COMEDI_CB_BLOCK;
358 comedi_event(dev, s);
362 /* One-shot analog data acquisition routine */
364 static int daqp_ai_insn_read(struct comedi_device *dev,
365 struct comedi_subdevice *s,
366 struct comedi_insn *insn, unsigned int *data)
368 struct local_info_t *local = (struct local_info_t *)s->private;
369 int i;
370 int v;
371 int counter = 10000;
373 if (local->stop) {
374 return -EIO;
377 /* Stop any running conversion */
378 daqp_ai_cancel(dev, s);
380 outb(0, dev->iobase + DAQP_AUX);
382 /* Reset scan list queue */
383 outb(DAQP_COMMAND_RSTQ, dev->iobase + DAQP_COMMAND);
385 /* Program one scan list entry */
387 v = DAQP_SCANLIST_CHANNEL(CR_CHAN(insn->chanspec))
388 | DAQP_SCANLIST_GAIN(CR_RANGE(insn->chanspec));
390 if (CR_AREF(insn->chanspec) == AREF_DIFF) {
391 v |= DAQP_SCANLIST_DIFFERENTIAL;
394 v |= DAQP_SCANLIST_START;
396 outb(v & 0xff, dev->iobase + DAQP_SCANLIST);
397 outb(v >> 8, dev->iobase + DAQP_SCANLIST);
399 /* Reset data FIFO (see page 28 of DAQP User's Manual) */
401 outb(DAQP_COMMAND_RSTF, dev->iobase + DAQP_COMMAND);
403 /* Set trigger */
405 v = DAQP_CONTROL_TRIGGER_ONESHOT | DAQP_CONTROL_TRIGGER_INTERNAL
406 | DAQP_CONTROL_PACER_100kHz | DAQP_CONTROL_EOS_INT_ENABLE;
408 outb(v, dev->iobase + DAQP_CONTROL);
410 /* Reset any pending interrupts (my card has a tendancy to require
411 * require multiple reads on the status register to achieve this)
414 while (--counter
415 && (inb(dev->iobase + DAQP_STATUS) & DAQP_STATUS_EVENTS)) ;
416 if (!counter) {
417 printk("daqp: couldn't clear interrupts in status register\n");
418 return -1;
421 /* Make sure semaphore is blocked */
422 sema_init(&local->eos, 0);
423 local->interrupt_mode = semaphore;
424 local->dev = dev;
425 local->s = s;
427 for (i = 0; i < insn->n; i++) {
429 /* Start conversion */
430 outb(DAQP_COMMAND_ARM | DAQP_COMMAND_FIFO_DATA,
431 dev->iobase + DAQP_COMMAND);
433 /* Wait for interrupt service routine to unblock semaphore */
434 /* Maybe could use a timeout here, but it's interruptible */
435 if (down_interruptible(&local->eos))
436 return -EINTR;
438 data[i] = inb(dev->iobase + DAQP_FIFO);
439 data[i] |= inb(dev->iobase + DAQP_FIFO) << 8;
440 data[i] ^= 0x8000;
443 return insn->n;
446 /* This function converts ns nanoseconds to a counter value suitable
447 * for programming the device. We always use the DAQP's 5 MHz clock,
448 * which with its 24-bit counter, allows values up to 84 seconds.
449 * Also, the function adjusts ns so that it cooresponds to the actual
450 * time that the device will use.
453 static int daqp_ns_to_timer(unsigned int *ns, int round)
455 int timer;
457 timer = *ns / 200;
458 *ns = timer * 200;
460 return timer;
463 /* cmdtest tests a particular command to see if it is valid.
464 * Using the cmdtest ioctl, a user can create a valid cmd
465 * and then have it executed by the cmd ioctl.
467 * cmdtest returns 1,2,3,4 or 0, depending on which tests
468 * the command passes.
471 static int daqp_ai_cmdtest(struct comedi_device *dev,
472 struct comedi_subdevice *s, struct comedi_cmd *cmd)
474 int err = 0;
475 int tmp;
477 /* step 1: make sure trigger sources are trivially valid */
479 tmp = cmd->start_src;
480 cmd->start_src &= TRIG_NOW;
481 if (!cmd->start_src || tmp != cmd->start_src)
482 err++;
484 tmp = cmd->scan_begin_src;
485 cmd->scan_begin_src &= TRIG_TIMER | TRIG_FOLLOW;
486 if (!cmd->scan_begin_src || tmp != cmd->scan_begin_src)
487 err++;
489 tmp = cmd->convert_src;
490 cmd->convert_src &= TRIG_TIMER | TRIG_NOW;
491 if (!cmd->convert_src || tmp != cmd->convert_src)
492 err++;
494 tmp = cmd->scan_end_src;
495 cmd->scan_end_src &= TRIG_COUNT;
496 if (!cmd->scan_end_src || tmp != cmd->scan_end_src)
497 err++;
499 tmp = cmd->stop_src;
500 cmd->stop_src &= TRIG_COUNT | TRIG_NONE;
501 if (!cmd->stop_src || tmp != cmd->stop_src)
502 err++;
504 if (err)
505 return 1;
507 /* step 2: make sure trigger sources are unique and mutually compatible */
509 /* note that mutual compatiblity is not an issue here */
510 if (cmd->scan_begin_src != TRIG_TIMER &&
511 cmd->scan_begin_src != TRIG_FOLLOW)
512 err++;
513 if (cmd->convert_src != TRIG_NOW && cmd->convert_src != TRIG_TIMER)
514 err++;
515 if (cmd->scan_begin_src == TRIG_FOLLOW && cmd->convert_src == TRIG_NOW)
516 err++;
517 if (cmd->stop_src != TRIG_COUNT && cmd->stop_src != TRIG_NONE)
518 err++;
520 if (err)
521 return 2;
523 /* step 3: make sure arguments are trivially compatible */
525 if (cmd->start_arg != 0) {
526 cmd->start_arg = 0;
527 err++;
529 #define MAX_SPEED 10000 /* 100 kHz - in nanoseconds */
531 if (cmd->scan_begin_src == TRIG_TIMER
532 && cmd->scan_begin_arg < MAX_SPEED) {
533 cmd->scan_begin_arg = MAX_SPEED;
534 err++;
537 /* If both scan_begin and convert are both timer values, the only
538 * way that can make sense is if the scan time is the number of
539 * conversions times the convert time
542 if (cmd->scan_begin_src == TRIG_TIMER && cmd->convert_src == TRIG_TIMER
543 && cmd->scan_begin_arg != cmd->convert_arg * cmd->scan_end_arg) {
544 err++;
547 if (cmd->convert_src == TRIG_TIMER && cmd->convert_arg < MAX_SPEED) {
548 cmd->convert_arg = MAX_SPEED;
549 err++;
552 if (cmd->scan_end_arg != cmd->chanlist_len) {
553 cmd->scan_end_arg = cmd->chanlist_len;
554 err++;
556 if (cmd->stop_src == TRIG_COUNT) {
557 if (cmd->stop_arg > 0x00ffffff) {
558 cmd->stop_arg = 0x00ffffff;
559 err++;
561 } else {
562 /* TRIG_NONE */
563 if (cmd->stop_arg != 0) {
564 cmd->stop_arg = 0;
565 err++;
569 if (err)
570 return 3;
572 /* step 4: fix up any arguments */
574 if (cmd->scan_begin_src == TRIG_TIMER) {
575 tmp = cmd->scan_begin_arg;
576 daqp_ns_to_timer(&cmd->scan_begin_arg,
577 cmd->flags & TRIG_ROUND_MASK);
578 if (tmp != cmd->scan_begin_arg)
579 err++;
582 if (cmd->convert_src == TRIG_TIMER) {
583 tmp = cmd->convert_arg;
584 daqp_ns_to_timer(&cmd->convert_arg,
585 cmd->flags & TRIG_ROUND_MASK);
586 if (tmp != cmd->convert_arg)
587 err++;
590 if (err)
591 return 4;
593 return 0;
596 static int daqp_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
598 struct local_info_t *local = (struct local_info_t *)s->private;
599 struct comedi_cmd *cmd = &s->async->cmd;
600 int counter = 100;
601 int scanlist_start_on_every_entry;
602 int threshold;
604 int i;
605 int v;
607 if (local->stop) {
608 return -EIO;
611 /* Stop any running conversion */
612 daqp_ai_cancel(dev, s);
614 outb(0, dev->iobase + DAQP_AUX);
616 /* Reset scan list queue */
617 outb(DAQP_COMMAND_RSTQ, dev->iobase + DAQP_COMMAND);
619 /* Program pacer clock
621 * There's two modes we can operate in. If convert_src is
622 * TRIG_TIMER, then convert_arg specifies the time between
623 * each conversion, so we program the pacer clock to that
624 * frequency and set the SCANLIST_START bit on every scanlist
625 * entry. Otherwise, convert_src is TRIG_NOW, which means
626 * we want the fastest possible conversions, scan_begin_src
627 * is TRIG_TIMER, and scan_begin_arg specifies the time between
628 * each scan, so we program the pacer clock to this frequency
629 * and only set the SCANLIST_START bit on the first entry.
632 if (cmd->convert_src == TRIG_TIMER) {
633 int counter = daqp_ns_to_timer(&cmd->convert_arg,
634 cmd->flags & TRIG_ROUND_MASK);
635 outb(counter & 0xff, dev->iobase + DAQP_PACER_LOW);
636 outb((counter >> 8) & 0xff, dev->iobase + DAQP_PACER_MID);
637 outb((counter >> 16) & 0xff, dev->iobase + DAQP_PACER_HIGH);
638 scanlist_start_on_every_entry = 1;
639 } else {
640 int counter = daqp_ns_to_timer(&cmd->scan_begin_arg,
641 cmd->flags & TRIG_ROUND_MASK);
642 outb(counter & 0xff, dev->iobase + DAQP_PACER_LOW);
643 outb((counter >> 8) & 0xff, dev->iobase + DAQP_PACER_MID);
644 outb((counter >> 16) & 0xff, dev->iobase + DAQP_PACER_HIGH);
645 scanlist_start_on_every_entry = 0;
648 /* Program scan list */
650 for (i = 0; i < cmd->chanlist_len; i++) {
652 int chanspec = cmd->chanlist[i];
654 /* Program one scan list entry */
656 v = DAQP_SCANLIST_CHANNEL(CR_CHAN(chanspec))
657 | DAQP_SCANLIST_GAIN(CR_RANGE(chanspec));
659 if (CR_AREF(chanspec) == AREF_DIFF) {
660 v |= DAQP_SCANLIST_DIFFERENTIAL;
663 if (i == 0 || scanlist_start_on_every_entry) {
664 v |= DAQP_SCANLIST_START;
667 outb(v & 0xff, dev->iobase + DAQP_SCANLIST);
668 outb(v >> 8, dev->iobase + DAQP_SCANLIST);
671 /* Now it's time to program the FIFO threshold, basically the
672 * number of samples the card will buffer before it interrupts
673 * the CPU.
675 * If we don't have a stop count, then use half the size of
676 * the FIFO (the manufacturer's recommendation). Consider
677 * that the FIFO can hold 2K samples (4K bytes). With the
678 * threshold set at half the FIFO size, we have a margin of
679 * error of 1024 samples. At the chip's maximum sample rate
680 * of 100,000 Hz, the CPU would have to delay interrupt
681 * service for a full 10 milliseconds in order to lose data
682 * here (as opposed to higher up in the kernel). I've never
683 * seen it happen. However, for slow sample rates it may
684 * buffer too much data and introduce too much delay for the
685 * user application.
687 * If we have a stop count, then things get more interesting.
688 * If the stop count is less than the FIFO size (actually
689 * three-quarters of the FIFO size - see below), we just use
690 * the stop count itself as the threshold, the card interrupts
691 * us when that many samples have been taken, and we kill the
692 * acquisition at that point and are done. If the stop count
693 * is larger than that, then we divide it by 2 until it's less
694 * than three quarters of the FIFO size (we always leave the
695 * top quarter of the FIFO as protection against sluggish CPU
696 * interrupt response) and use that as the threshold. So, if
697 * the stop count is 4000 samples, we divide by two twice to
698 * get 1000 samples, use that as the threshold, take four
699 * interrupts to get our 4000 samples and are done.
701 * The algorithm could be more clever. For example, if 81000
702 * samples are requested, we could set the threshold to 1500
703 * samples and take 54 interrupts to get 81000. But 54 isn't
704 * a power of two, so this algorithm won't find that option.
705 * Instead, it'll set the threshold at 1266 and take 64
706 * interrupts to get 81024 samples, of which the last 24 will
707 * be discarded... but we won't get the last interrupt until
708 * they've been collected. To find the first option, the
709 * computer could look at the prime decomposition of the
710 * sample count (81000 = 3^4 * 5^3 * 2^3) and factor it into a
711 * threshold (1500 = 3 * 5^3 * 2^2) and an interrupt count (54
712 * = 3^3 * 2). Hmmm... a one-line while loop or prime
713 * decomposition of integers... I'll leave it the way it is.
715 * I'll also note a mini-race condition before ignoring it in
716 * the code. Let's say we're taking 4000 samples, as before.
717 * After 1000 samples, we get an interrupt. But before that
718 * interrupt is completely serviced, another sample is taken
719 * and loaded into the FIFO. Since the interrupt handler
720 * empties the FIFO before returning, it will read 1001 samples.
721 * If that happens four times, we'll end up taking 4004 samples,
722 * not 4000. The interrupt handler will discard the extra four
723 * samples (by halting the acquisition with four samples still
724 * in the FIFO), but we will have to wait for them.
726 * In short, this code works pretty well, but for either of
727 * the two reasons noted, might end up waiting for a few more
728 * samples than actually requested. Shouldn't make too much
729 * of a difference.
732 /* Save away the number of conversions we should perform, and
733 * compute the FIFO threshold (in bytes, not samples - that's
734 * why we multiple local->count by 2 = sizeof(sample))
737 if (cmd->stop_src == TRIG_COUNT) {
738 local->count = cmd->stop_arg * cmd->scan_end_arg;
739 threshold = 2 * local->count;
740 while (threshold > DAQP_FIFO_SIZE * 3 / 4)
741 threshold /= 2;
742 } else {
743 local->count = -1;
744 threshold = DAQP_FIFO_SIZE / 2;
747 /* Reset data FIFO (see page 28 of DAQP User's Manual) */
749 outb(DAQP_COMMAND_RSTF, dev->iobase + DAQP_COMMAND);
751 /* Set FIFO threshold. First two bytes are near-empty
752 * threshold, which is unused; next two bytes are near-full
753 * threshold. We computed the number of bytes we want in the
754 * FIFO when the interrupt is generated, what the card wants
755 * is actually the number of available bytes left in the FIFO
756 * when the interrupt is to happen.
759 outb(0x00, dev->iobase + DAQP_FIFO);
760 outb(0x00, dev->iobase + DAQP_FIFO);
762 outb((DAQP_FIFO_SIZE - threshold) & 0xff, dev->iobase + DAQP_FIFO);
763 outb((DAQP_FIFO_SIZE - threshold) >> 8, dev->iobase + DAQP_FIFO);
765 /* Set trigger */
767 v = DAQP_CONTROL_TRIGGER_CONTINUOUS | DAQP_CONTROL_TRIGGER_INTERNAL
768 | DAQP_CONTROL_PACER_5MHz | DAQP_CONTROL_FIFO_INT_ENABLE;
770 outb(v, dev->iobase + DAQP_CONTROL);
772 /* Reset any pending interrupts (my card has a tendancy to require
773 * require multiple reads on the status register to achieve this)
776 while (--counter
777 && (inb(dev->iobase + DAQP_STATUS) & DAQP_STATUS_EVENTS)) ;
778 if (!counter) {
779 printk("daqp: couldn't clear interrupts in status register\n");
780 return -1;
783 local->interrupt_mode = buffer;
784 local->dev = dev;
785 local->s = s;
787 /* Start conversion */
788 outb(DAQP_COMMAND_ARM | DAQP_COMMAND_FIFO_DATA,
789 dev->iobase + DAQP_COMMAND);
791 return 0;
794 /* Single-shot analog output routine */
796 static int daqp_ao_insn_write(struct comedi_device *dev,
797 struct comedi_subdevice *s,
798 struct comedi_insn *insn, unsigned int *data)
800 struct local_info_t *local = (struct local_info_t *)s->private;
801 int d;
802 unsigned int chan;
804 if (local->stop) {
805 return -EIO;
808 chan = CR_CHAN(insn->chanspec);
809 d = data[0];
810 d &= 0x0fff;
811 d ^= 0x0800; /* Flip the sign */
812 d |= chan << 12;
814 /* Make sure D/A update mode is direct update */
815 outb(0, dev->iobase + DAQP_AUX);
817 outw(d, dev->iobase + DAQP_DA);
819 return 1;
822 /* Digital input routine */
824 static int daqp_di_insn_read(struct comedi_device *dev,
825 struct comedi_subdevice *s,
826 struct comedi_insn *insn, unsigned int *data)
828 struct local_info_t *local = (struct local_info_t *)s->private;
830 if (local->stop) {
831 return -EIO;
834 data[0] = inb(dev->iobase + DAQP_DIGITAL_IO);
836 return 1;
839 /* Digital output routine */
841 static int daqp_do_insn_write(struct comedi_device *dev,
842 struct comedi_subdevice *s,
843 struct comedi_insn *insn, unsigned int *data)
845 struct local_info_t *local = (struct local_info_t *)s->private;
847 if (local->stop) {
848 return -EIO;
851 outw(data[0] & 0xf, dev->iobase + DAQP_DIGITAL_IO);
853 return 1;
856 /* daqp_attach is called via comedi_config to attach a comedi device
857 * to a /dev/comedi*. Note that this is different from daqp_cs_attach()
858 * which is called by the pcmcia subsystem to attach the PCMCIA card
859 * when it is inserted.
862 static int daqp_attach(struct comedi_device *dev, struct comedi_devconfig *it)
864 int ret;
865 struct local_info_t *local = dev_table[it->options[0]];
866 tuple_t tuple;
867 int i;
868 struct comedi_subdevice *s;
870 if (it->options[0] < 0 || it->options[0] >= MAX_DEV || !local) {
871 printk("comedi%d: No such daqp device %d\n",
872 dev->minor, it->options[0]);
873 return -EIO;
876 /* Typically brittle code that I don't completely understand,
877 * but "it works on my card". The intent is to pull the model
878 * number of the card out the PCMCIA CIS and stash it away as
879 * the COMEDI board_name. Looks like the third field in
880 * CISTPL_VERS_1 (offset 2) holds what we're looking for. If
881 * it doesn't work, who cares, just leave it as "DAQP".
884 strcpy(local->board_name, "DAQP");
885 dev->board_name = local->board_name;
887 tuple.DesiredTuple = CISTPL_VERS_1;
888 if (pcmcia_get_first_tuple(local->link, &tuple) == 0) {
889 u_char buf[128];
891 buf[0] = buf[sizeof(buf) - 1] = 0;
892 tuple.TupleData = buf;
893 tuple.TupleDataMax = sizeof(buf);
894 tuple.TupleOffset = 2;
895 if (pcmcia_get_tuple_data(local->link, &tuple) == 0) {
897 for (i = 0; i < tuple.TupleDataLen - 4; i++)
898 if (buf[i] == 0)
899 break;
900 for (i++; i < tuple.TupleDataLen - 4; i++)
901 if (buf[i] == 0)
902 break;
903 i++;
904 if ((i < tuple.TupleDataLen - 4)
905 && (strncmp(buf + i, "DAQP", 4) == 0)) {
906 strncpy(local->board_name, buf + i,
907 sizeof(local->board_name));
912 dev->iobase = local->link->io.BasePort1;
914 ret = alloc_subdevices(dev, 4);
915 if (ret < 0)
916 return ret;
918 printk("comedi%d: attaching daqp%d (io 0x%04lx)\n",
919 dev->minor, it->options[0], dev->iobase);
921 s = dev->subdevices + 0;
922 dev->read_subdev = s;
923 s->private = local;
924 s->type = COMEDI_SUBD_AI;
925 s->subdev_flags = SDF_READABLE | SDF_GROUND | SDF_DIFF | SDF_CMD_READ;
926 s->n_chan = 8;
927 s->len_chanlist = 2048;
928 s->maxdata = 0xffff;
929 s->range_table = &range_daqp_ai;
930 s->insn_read = daqp_ai_insn_read;
931 s->do_cmdtest = daqp_ai_cmdtest;
932 s->do_cmd = daqp_ai_cmd;
933 s->cancel = daqp_ai_cancel;
935 s = dev->subdevices + 1;
936 dev->write_subdev = s;
937 s->private = local;
938 s->type = COMEDI_SUBD_AO;
939 s->subdev_flags = SDF_WRITEABLE;
940 s->n_chan = 2;
941 s->len_chanlist = 1;
942 s->maxdata = 0x0fff;
943 s->range_table = &range_daqp_ao;
944 s->insn_write = daqp_ao_insn_write;
946 s = dev->subdevices + 2;
947 s->private = local;
948 s->type = COMEDI_SUBD_DI;
949 s->subdev_flags = SDF_READABLE;
950 s->n_chan = 1;
951 s->len_chanlist = 1;
952 s->insn_read = daqp_di_insn_read;
954 s = dev->subdevices + 3;
955 s->private = local;
956 s->type = COMEDI_SUBD_DO;
957 s->subdev_flags = SDF_WRITEABLE;
958 s->n_chan = 1;
959 s->len_chanlist = 1;
960 s->insn_write = daqp_do_insn_write;
962 return 1;
965 /* daqp_detach (called from comedi_comdig) does nothing. If the PCMCIA
966 * card is removed, daqp_cs_detach() is called by the pcmcia subsystem.
969 static int daqp_detach(struct comedi_device *dev)
971 printk("comedi%d: detaching daqp\n", dev->minor);
973 return 0;
976 /*====================================================================
978 PCMCIA interface code
980 The rest of the code in this file is based on dummy_cs.c v1.24
981 from the Linux pcmcia_cs distribution v3.1.8 and is subject
982 to the following license agreement.
984 The remaining contents of this file are subject to the Mozilla Public
985 License Version 1.1 (the "License"); you may not use this file
986 except in compliance with the License. You may obtain a copy of
987 the License at http://www.mozilla.org/MPL/
989 Software distributed under the License is distributed on an "AS
990 IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
991 implied. See the License for the specific language governing
992 rights and limitations under the License.
994 The initial developer of the original code is David A. Hinds
995 <dhinds@pcmcia.sourceforge.org>. Portions created by David A. Hinds
996 are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
998 Alternatively, the contents of this file may be used under the
999 terms of the GNU Public License version 2 (the "GPL"), in which
1000 case the provisions of the GPL are applicable instead of the
1001 above. If you wish to allow the use of your version of this file
1002 only under the terms of the GPL and not to allow others to use
1003 your version of this file under the MPL, indicate your decision
1004 by deleting the provisions above and replace them with the notice
1005 and other provisions required by the GPL. If you do not delete
1006 the provisions above, a recipient may use your version of this
1007 file under either the MPL or the GPL.
1009 ======================================================================*/
1012 The event() function is this driver's Card Services event handler.
1013 It will be called by Card Services when an appropriate card status
1014 event is received. The config() and release() entry points are
1015 used to configure or release a socket, in response to card
1016 insertion and ejection events.
1018 Kernel version 2.6.16 upwards uses suspend() and resume() functions
1019 instead of an event() function.
1022 static void daqp_cs_config(struct pcmcia_device *link);
1023 static void daqp_cs_release(struct pcmcia_device *link);
1024 static int daqp_cs_suspend(struct pcmcia_device *p_dev);
1025 static int daqp_cs_resume(struct pcmcia_device *p_dev);
1028 The attach() and detach() entry points are used to create and destroy
1029 "instances" of the driver, where each instance represents everything
1030 needed to manage one actual PCMCIA card.
1033 static int daqp_cs_attach(struct pcmcia_device *);
1034 static void daqp_cs_detach(struct pcmcia_device *);
1037 The dev_info variable is the "key" that is used to match up this
1038 device driver with appropriate cards, through the card configuration
1039 database.
1042 static const dev_info_t dev_info = "quatech_daqp_cs";
1044 /*======================================================================
1046 daqp_cs_attach() creates an "instance" of the driver, allocating
1047 local data structures for one device. The device is registered
1048 with Card Services.
1050 The dev_link structure is initialized, but we don't actually
1051 configure the card at this point -- we wait until we receive a
1052 card insertion event.
1054 ======================================================================*/
1056 static int daqp_cs_attach(struct pcmcia_device *link)
1058 struct local_info_t *local;
1059 int i;
1061 DEBUG(0, "daqp_cs_attach()\n");
1063 for (i = 0; i < MAX_DEV; i++)
1064 if (dev_table[i] == NULL)
1065 break;
1066 if (i == MAX_DEV) {
1067 printk(KERN_NOTICE "daqp_cs: no devices available\n");
1068 return -ENODEV;
1071 /* Allocate space for private device-specific data */
1072 local = kzalloc(sizeof(struct local_info_t), GFP_KERNEL);
1073 if (!local)
1074 return -ENOMEM;
1076 local->table_index = i;
1077 dev_table[i] = local;
1078 local->link = link;
1079 link->priv = local;
1081 /* Interrupt setup */
1082 link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING | IRQ_HANDLE_PRESENT;
1083 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
1084 link->irq.Handler = daqp_interrupt;
1085 link->irq.Instance = local;
1088 General socket configuration defaults can go here. In this
1089 client, we assume very little, and rely on the CIS for almost
1090 everything. In most clients, many details (i.e., number, sizes,
1091 and attributes of IO windows) are fixed by the nature of the
1092 device, and can be hard-wired here.
1094 link->conf.Attributes = 0;
1095 link->conf.IntType = INT_MEMORY_AND_IO;
1097 daqp_cs_config(link);
1099 return 0;
1100 } /* daqp_cs_attach */
1102 /*======================================================================
1104 This deletes a driver "instance". The device is de-registered
1105 with Card Services. If it has been released, all local data
1106 structures are freed. Otherwise, the structures will be freed
1107 when the device is released.
1109 ======================================================================*/
1111 static void daqp_cs_detach(struct pcmcia_device *link)
1113 struct local_info_t *dev = link->priv;
1115 DEBUG(0, "daqp_cs_detach(0x%p)\n", link);
1117 if (link->dev_node) {
1118 dev->stop = 1;
1119 daqp_cs_release(link);
1122 /* Unlink device structure, and free it */
1123 dev_table[dev->table_index] = NULL;
1124 if (dev)
1125 kfree(dev);
1127 } /* daqp_cs_detach */
1129 /*======================================================================
1131 daqp_cs_config() is scheduled to run after a CARD_INSERTION event
1132 is received, to configure the PCMCIA socket, and to make the
1133 device available to the system.
1135 ======================================================================*/
1137 static void daqp_cs_config(struct pcmcia_device *link)
1139 struct local_info_t *dev = link->priv;
1140 tuple_t tuple;
1141 cisparse_t parse;
1142 int last_ret;
1143 u_char buf[64];
1145 DEBUG(0, "daqp_cs_config(0x%p)\n", link);
1148 This reads the card's CONFIG tuple to find its configuration
1149 registers.
1151 tuple.DesiredTuple = CISTPL_CONFIG;
1152 tuple.Attributes = 0;
1153 tuple.TupleData = buf;
1154 tuple.TupleDataMax = sizeof(buf);
1155 tuple.TupleOffset = 0;
1157 last_ret = pcmcia_get_first_tuple(link, &tuple);
1158 if (last_ret) {
1159 cs_error(link, GetFirstTuple, last_ret);
1160 goto cs_failed;
1163 last_ret = pcmcia_get_tuple_data(link, &tuple);
1164 if (last_ret) {
1165 cs_error(link, GetTupleData, last_ret);
1166 goto cs_failed;
1169 last_ret = pcmcia_parse_tuple(&tuple, &parse);
1170 if (last_ret) {
1171 cs_error(link, ParseTuple, last_ret);
1172 goto cs_failed;
1174 link->conf.ConfigBase = parse.config.base;
1175 link->conf.Present = parse.config.rmask[0];
1178 In this loop, we scan the CIS for configuration table entries,
1179 each of which describes a valid card configuration, including
1180 voltage, IO window, memory window, and interrupt settings.
1182 We make no assumptions about the card to be configured: we use
1183 just the information available in the CIS. In an ideal world,
1184 this would work for any PCMCIA card, but it requires a complete
1185 and accurate CIS. In practice, a driver usually "knows" most of
1186 these things without consulting the CIS, and most client drivers
1187 will only use the CIS to fill in implementation-defined details.
1189 tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
1190 last_ret = pcmcia_get_first_tuple(link, &tuple);
1191 if (last_ret) {
1192 cs_error(link, GetFirstTuple, last_ret);
1193 goto cs_failed;
1196 while (1) {
1197 cistpl_cftable_entry_t dflt = { 0 };
1198 cistpl_cftable_entry_t *cfg = &(parse.cftable_entry);
1199 if (pcmcia_get_tuple_data(link, &tuple))
1200 goto next_entry;
1201 if (pcmcia_parse_tuple(&tuple, &parse))
1202 goto next_entry;
1204 if (cfg->flags & CISTPL_CFTABLE_DEFAULT)
1205 dflt = *cfg;
1206 if (cfg->index == 0)
1207 goto next_entry;
1208 link->conf.ConfigIndex = cfg->index;
1210 /* Do we need to allocate an interrupt? */
1211 if (cfg->irq.IRQInfo1 || dflt.irq.IRQInfo1)
1212 link->conf.Attributes |= CONF_ENABLE_IRQ;
1214 /* IO window settings */
1215 link->io.NumPorts1 = link->io.NumPorts2 = 0;
1216 if ((cfg->io.nwin > 0) || (dflt.io.nwin > 0)) {
1217 cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt.io;
1218 link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
1219 if (!(io->flags & CISTPL_IO_8BIT))
1220 link->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
1221 if (!(io->flags & CISTPL_IO_16BIT))
1222 link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
1223 link->io.IOAddrLines = io->flags & CISTPL_IO_LINES_MASK;
1224 link->io.BasePort1 = io->win[0].base;
1225 link->io.NumPorts1 = io->win[0].len;
1226 if (io->nwin > 1) {
1227 link->io.Attributes2 = link->io.Attributes1;
1228 link->io.BasePort2 = io->win[1].base;
1229 link->io.NumPorts2 = io->win[1].len;
1233 /* This reserves IO space but doesn't actually enable it */
1234 if (pcmcia_request_io(link, &link->io))
1235 goto next_entry;
1237 /* If we got this far, we're cool! */
1238 break;
1240 next_entry:
1241 last_ret = pcmcia_get_next_tuple(link, &tuple);
1242 if (last_ret) {
1243 cs_error(link, GetNextTuple, last_ret);
1244 goto cs_failed;
1249 Allocate an interrupt line. Note that this does not assign a
1250 handler to the interrupt, unless the 'Handler' member of the
1251 irq structure is initialized.
1253 if (link->conf.Attributes & CONF_ENABLE_IRQ) {
1254 last_ret = pcmcia_request_irq(link, &link->irq);
1255 if (last_ret) {
1256 cs_error(link, RequestIRQ, last_ret);
1257 goto cs_failed;
1262 This actually configures the PCMCIA socket -- setting up
1263 the I/O windows and the interrupt mapping, and putting the
1264 card and host interface into "Memory and IO" mode.
1266 last_ret = pcmcia_request_configuration(link, &link->conf);
1267 if (last_ret) {
1268 cs_error(link, RequestConfiguration, last_ret);
1269 goto cs_failed;
1273 At this point, the dev_node_t structure(s) need to be
1274 initialized and arranged in a linked list at link->dev.
1276 /* Comedi's PCMCIA script uses this device name (extracted
1277 * from /var/lib/pcmcia/stab) to pass to comedi_config
1279 /* sprintf(dev->node.dev_name, "daqp%d", dev->table_index); */
1280 sprintf(dev->node.dev_name, "quatech_daqp_cs");
1281 dev->node.major = dev->node.minor = 0;
1282 link->dev_node = &dev->node;
1284 /* Finally, report what we've done */
1285 printk(KERN_INFO "%s: index 0x%02x",
1286 dev->node.dev_name, link->conf.ConfigIndex);
1287 if (link->conf.Attributes & CONF_ENABLE_IRQ)
1288 printk(", irq %u", link->irq.AssignedIRQ);
1289 if (link->io.NumPorts1)
1290 printk(", io 0x%04x-0x%04x", link->io.BasePort1,
1291 link->io.BasePort1 + link->io.NumPorts1 - 1);
1292 if (link->io.NumPorts2)
1293 printk(" & 0x%04x-0x%04x", link->io.BasePort2,
1294 link->io.BasePort2 + link->io.NumPorts2 - 1);
1295 printk("\n");
1297 return;
1299 cs_failed:
1300 daqp_cs_release(link);
1302 } /* daqp_cs_config */
1304 static void daqp_cs_release(struct pcmcia_device *link)
1306 DEBUG(0, "daqp_cs_release(0x%p)\n", link);
1308 pcmcia_disable_device(link);
1309 } /* daqp_cs_release */
1311 /*======================================================================
1313 The card status event handler. Mostly, this schedules other
1314 stuff to run after an event is received.
1316 When a CARD_REMOVAL event is received, we immediately set a
1317 private flag to block future accesses to this device. All the
1318 functions that actually access the device should check this flag
1319 to make sure the card is still present.
1321 ======================================================================*/
1323 static int daqp_cs_suspend(struct pcmcia_device *link)
1325 struct local_info_t *local = link->priv;
1327 /* Mark the device as stopped, to block IO until later */
1328 local->stop = 1;
1329 return 0;
1332 static int daqp_cs_resume(struct pcmcia_device *link)
1334 struct local_info_t *local = link->priv;
1336 local->stop = 0;
1338 return 0;
1341 /*====================================================================*/
1343 #ifdef MODULE
1345 static struct pcmcia_device_id daqp_cs_id_table[] = {
1346 PCMCIA_DEVICE_MANF_CARD(0x0137, 0x0027),
1347 PCMCIA_DEVICE_NULL
1350 MODULE_DEVICE_TABLE(pcmcia, daqp_cs_id_table);
1352 struct pcmcia_driver daqp_cs_driver = {
1353 .probe = daqp_cs_attach,
1354 .remove = daqp_cs_detach,
1355 .suspend = daqp_cs_suspend,
1356 .resume = daqp_cs_resume,
1357 .id_table = daqp_cs_id_table,
1358 .owner = THIS_MODULE,
1359 .drv = {
1360 .name = dev_info,
1364 int __init init_module(void)
1366 DEBUG(0, "%s\n", version);
1367 pcmcia_register_driver(&daqp_cs_driver);
1368 comedi_driver_register(&driver_daqp);
1369 return 0;
1372 void __exit cleanup_module(void)
1374 DEBUG(0, "daqp_cs: unloading\n");
1375 comedi_driver_unregister(&driver_daqp);
1376 pcmcia_unregister_driver(&daqp_cs_driver);
1379 #endif