cb_pcimdas.c revision 2c6abc58f20f96673a0900f316cfdde3df378e70
1/*
2    comedi/drivers/cb_pcimdas.c
3    Comedi driver for Computer Boards PCIM-DAS1602/16
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
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.
21
22*/
23/*
24Driver: cb_pcimdas
25Description: Measurement Computing PCI Migration series boards
26Devices: [ComputerBoards] PCIM-DAS1602/16 (cb_pcimdas)
27Author: Richard Bytheway
28Updated: Wed, 13 Nov 2002 12:34:56 +0000
29Status: experimental
30
31Written to support the PCIM-DAS1602/16 on a 2.4 series kernel.
32
33Configuration Options:
34    [0] - PCI bus number
35    [1] - PCI slot number
36
37Developed from cb_pcidas and skel by Richard Bytheway (mocelet@sucs.org).
38Only supports DIO, AO and simple AI in it's present form.
39No interrupts, multi channel or FIFO AI, although the card looks like it could support this.
40See http://www.mccdaq.com/PDFs/Manuals/pcim-das1602-16.pdf for more details.
41*/
42
43#include "../comedidev.h"
44
45#include <linux/delay.h>
46#include <linux/interrupt.h>
47
48#include "comedi_pci.h"
49#include "plx9052.h"
50#include "8255.h"
51
52/* #define CBPCIMDAS_DEBUG */
53#undef CBPCIMDAS_DEBUG
54
55#define PCI_VENDOR_ID_COMPUTERBOARDS	0x1307
56
57/* Registers for the PCIM-DAS1602/16 */
58
59/* sizes of io regions (bytes) */
60#define BADR0_SIZE 2		/* ?? */
61#define BADR1_SIZE 4
62#define BADR2_SIZE 6
63#define BADR3_SIZE 16
64#define BADR4_SIZE 4
65
66/* DAC Offsets */
67#define ADC_TRIG 0
68#define DAC0_OFFSET 2
69#define DAC1_OFFSET 4
70
71/* AI and Counter Constants */
72#define MUX_LIMITS 0
73#define MAIN_CONN_DIO 1
74#define ADC_STAT 2
75#define ADC_CONV_STAT 3
76#define ADC_INT 4
77#define ADC_PACER 5
78#define BURST_MODE 6
79#define PROG_GAIN 7
80#define CLK8254_1_DATA 8
81#define CLK8254_2_DATA 9
82#define CLK8254_3_DATA 10
83#define CLK8254_CONTROL 11
84#define USER_COUNTER 12
85#define RESID_COUNT_H 13
86#define RESID_COUNT_L 14
87
88/* Board description */
89struct cb_pcimdas_board {
90	const char *name;
91	unsigned short device_id;
92	int ai_se_chans;	/*  Inputs in single-ended mode */
93	int ai_diff_chans;	/*  Inputs in differential mode */
94	int ai_bits;		/*  analog input resolution */
95	int ai_speed;		/*  fastest conversion period in ns */
96	int ao_nchan;		/*  number of analog out channels */
97	int ao_bits;		/*  analogue output resolution */
98	int has_ao_fifo;	/*  analog output has fifo */
99	int ao_scan_speed;	/*  analog output speed for 1602 series (for a scan, not conversion) */
100	int fifo_size;		/*  number of samples fifo can hold */
101	int dio_bits;		/*  number of dio bits */
102	int has_dio;		/*  has DIO */
103	const struct comedi_lrange *ranges;
104};
105
106static const struct cb_pcimdas_board cb_pcimdas_boards[] = {
107	{
108	 .name = "PCIM-DAS1602/16",
109	 .device_id = 0x56,
110	 .ai_se_chans = 16,
111	 .ai_diff_chans = 8,
112	 .ai_bits = 16,
113	 .ai_speed = 10000,	/* ?? */
114	 .ao_nchan = 2,
115	 .ao_bits = 12,
116	 .has_ao_fifo = 0,	/* ?? */
117	 .ao_scan_speed = 10000,
118	 /* ?? */
119	 .fifo_size = 1024,
120	 .dio_bits = 24,
121	 .has_dio = 1,
122/*	.ranges = &cb_pcimdas_ranges, */
123	 },
124};
125
126/* This is used by modprobe to translate PCI IDs to drivers.  Should
127 * only be used for PCI and ISA-PnP devices */
128static DEFINE_PCI_DEVICE_TABLE(cb_pcimdas_pci_table) = {
129	{ PCI_DEVICE(PCI_VENDOR_ID_COMPUTERBOARDS, 0x0056) },
130	{ 0 }
131};
132
133MODULE_DEVICE_TABLE(pci, cb_pcimdas_pci_table);
134
135#define N_BOARDS 1		/*  Max number of boards supported */
136
137/*
138 * Useful for shorthand access to the particular board structure
139 */
140#define thisboard ((const struct cb_pcimdas_board *)dev->board_ptr)
141
142/* this structure is for data unique to this hardware driver.  If
143   several hardware drivers keep similar information in this structure,
144   feel free to suggest moving the variable to the struct comedi_device struct.  */
145struct cb_pcimdas_private {
146	int data;
147
148	/*  would be useful for a PCI device */
149	struct pci_dev *pci_dev;
150
151	/* base addresses */
152	unsigned long BADR0;
153	unsigned long BADR1;
154	unsigned long BADR2;
155	unsigned long BADR3;
156	unsigned long BADR4;
157
158	/* Used for AO readback */
159	unsigned int ao_readback[2];
160
161	/*  Used for DIO */
162	unsigned short int port_a;	/*  copy of BADR4+0 */
163	unsigned short int port_b;	/*  copy of BADR4+1 */
164	unsigned short int port_c;	/*  copy of BADR4+2 */
165	unsigned short int dio_mode;	/*  copy of BADR4+3 */
166
167};
168
169/*
170 * most drivers define the following macro to make it easy to
171 * access the private structure.
172 */
173#define devpriv ((struct cb_pcimdas_private *)dev->private)
174
175/*
176 * The struct comedi_driver structure tells the Comedi core module
177 * which functions to call to configure/deconfigure (attach/detach)
178 * the board, and also about the kernel module that contains
179 * the device code.
180 */
181static int cb_pcimdas_attach(struct comedi_device *dev,
182			     struct comedi_devconfig *it);
183static int cb_pcimdas_detach(struct comedi_device *dev);
184static struct comedi_driver driver_cb_pcimdas = {
185	.driver_name = "cb_pcimdas",
186	.module = THIS_MODULE,
187	.attach = cb_pcimdas_attach,
188	.detach = cb_pcimdas_detach,
189};
190
191static int cb_pcimdas_ai_rinsn(struct comedi_device *dev,
192			       struct comedi_subdevice *s,
193			       struct comedi_insn *insn, unsigned int *data);
194static int cb_pcimdas_ao_winsn(struct comedi_device *dev,
195			       struct comedi_subdevice *s,
196			       struct comedi_insn *insn, unsigned int *data);
197static int cb_pcimdas_ao_rinsn(struct comedi_device *dev,
198			       struct comedi_subdevice *s,
199			       struct comedi_insn *insn, unsigned int *data);
200
201/*
202 * Attach is called by the Comedi core to configure the driver
203 * for a particular board.  If you specified a board_name array
204 * in the driver structure, dev->board_ptr contains that
205 * address.
206 */
207static int cb_pcimdas_attach(struct comedi_device *dev,
208			     struct comedi_devconfig *it)
209{
210	struct comedi_subdevice *s;
211	struct pci_dev *pcidev = NULL;
212	int index;
213	/* int i; */
214
215/*
216 * Allocate the private structure area.
217 */
218	if (alloc_private(dev, sizeof(struct cb_pcimdas_private)) < 0)
219		return -ENOMEM;
220
221/*
222 * Probe the device to determine what device in the series it is.
223 */
224
225	for_each_pci_dev(pcidev) {
226		/*  is it not a computer boards card? */
227		if (pcidev->vendor != PCI_VENDOR_ID_COMPUTERBOARDS)
228			continue;
229		/*  loop through cards supported by this driver */
230		for (index = 0; index < N_BOARDS; index++) {
231			if (cb_pcimdas_boards[index].device_id !=
232			    pcidev->device)
233				continue;
234			/*  was a particular bus/slot requested? */
235			if (it->options[0] || it->options[1]) {
236				/*  are we on the wrong bus/slot? */
237				if (pcidev->bus->number != it->options[0] ||
238				    PCI_SLOT(pcidev->devfn) != it->options[1]) {
239					continue;
240				}
241			}
242			devpriv->pci_dev = pcidev;
243			dev->board_ptr = cb_pcimdas_boards + index;
244			goto found;
245		}
246	}
247
248	dev_err(dev->hw_dev, "No supported ComputerBoards/MeasurementComputing card found on requested position\n");
249	return -EIO;
250
251found:
252
253	dev_dbg(dev->hw_dev, "Found %s on bus %i, slot %i\n",
254		cb_pcimdas_boards[index].name, pcidev->bus->number,
255		PCI_SLOT(pcidev->devfn));
256
257	/*  Warn about non-tested features */
258	switch (thisboard->device_id) {
259	case 0x56:
260		break;
261	default:
262		dev_dbg(dev->hw_dev, "THIS CARD IS UNSUPPORTED.\n"
263			"PLEASE REPORT USAGE TO <mocelet@sucs.org>\n");
264	}
265
266	if (comedi_pci_enable(pcidev, "cb_pcimdas")) {
267		dev_err(dev->hw_dev, "Failed to enable PCI device and request regions\n");
268		return -EIO;
269	}
270
271	devpriv->BADR0 = pci_resource_start(devpriv->pci_dev, 0);
272	devpriv->BADR1 = pci_resource_start(devpriv->pci_dev, 1);
273	devpriv->BADR2 = pci_resource_start(devpriv->pci_dev, 2);
274	devpriv->BADR3 = pci_resource_start(devpriv->pci_dev, 3);
275	devpriv->BADR4 = pci_resource_start(devpriv->pci_dev, 4);
276
277#ifdef CBPCIMDAS_DEBUG
278	printk("devpriv->BADR0 = 0x%lx\n", devpriv->BADR0);
279	printk("devpriv->BADR1 = 0x%lx\n", devpriv->BADR1);
280	printk("devpriv->BADR2 = 0x%lx\n", devpriv->BADR2);
281	printk("devpriv->BADR3 = 0x%lx\n", devpriv->BADR3);
282	printk("devpriv->BADR4 = 0x%lx\n", devpriv->BADR4);
283#endif
284
285/* Dont support IRQ yet */
286/*  get irq */
287/* if(request_irq(devpriv->pci_dev->irq, cb_pcimdas_interrupt, IRQF_SHARED, "cb_pcimdas", dev )) */
288/* { */
289/* printk(" unable to allocate irq %u\n", devpriv->pci_dev->irq); */
290/* return -EINVAL; */
291/* } */
292/* dev->irq = devpriv->pci_dev->irq; */
293
294	/* Initialize dev->board_name */
295	dev->board_name = thisboard->name;
296
297/*
298 * Allocate the subdevice structures.  alloc_subdevice() is a
299 * convenient macro defined in comedidev.h.
300 */
301	if (alloc_subdevices(dev, 3) < 0)
302		return -ENOMEM;
303
304	s = dev->subdevices + 0;
305	/* dev->read_subdev=s; */
306	/*  analog input subdevice */
307	s->type = COMEDI_SUBD_AI;
308	s->subdev_flags = SDF_READABLE | SDF_GROUND;
309	s->n_chan = thisboard->ai_se_chans;
310	s->maxdata = (1 << thisboard->ai_bits) - 1;
311	s->range_table = &range_unknown;
312	s->len_chanlist = 1;	/*  This is the maximum chanlist length that */
313	/*  the board can handle */
314	s->insn_read = cb_pcimdas_ai_rinsn;
315
316	s = dev->subdevices + 1;
317	/*  analog output subdevice */
318	s->type = COMEDI_SUBD_AO;
319	s->subdev_flags = SDF_WRITABLE;
320	s->n_chan = thisboard->ao_nchan;
321	s->maxdata = 1 << thisboard->ao_bits;
322	s->range_table = &range_unknown;	/* ranges are hardware settable, but not software readable. */
323	s->insn_write = &cb_pcimdas_ao_winsn;
324	s->insn_read = &cb_pcimdas_ao_rinsn;
325
326	s = dev->subdevices + 2;
327	/* digital i/o subdevice */
328	if (thisboard->has_dio)
329		subdev_8255_init(dev, s, NULL, devpriv->BADR4);
330	else
331		s->type = COMEDI_SUBD_UNUSED;
332
333	return 1;
334}
335
336/*
337 * _detach is called to deconfigure a device.  It should deallocate
338 * resources.
339 * This function is also called when _attach() fails, so it should be
340 * careful not to release resources that were not necessarily
341 * allocated by _attach().  dev->private and dev->subdevices are
342 * deallocated automatically by the core.
343 */
344static int cb_pcimdas_detach(struct comedi_device *dev)
345{
346#ifdef CBPCIMDAS_DEBUG
347	if (devpriv) {
348		printk("devpriv->BADR0 = 0x%lx\n", devpriv->BADR0);
349		printk("devpriv->BADR1 = 0x%lx\n", devpriv->BADR1);
350		printk("devpriv->BADR2 = 0x%lx\n", devpriv->BADR2);
351		printk("devpriv->BADR3 = 0x%lx\n", devpriv->BADR3);
352		printk("devpriv->BADR4 = 0x%lx\n", devpriv->BADR4);
353	}
354#endif
355	printk("comedi%d: cb_pcimdas: remove\n", dev->minor);
356	if (dev->irq)
357		free_irq(dev->irq, dev);
358	if (devpriv) {
359		if (devpriv->pci_dev) {
360			if (devpriv->BADR0)
361				comedi_pci_disable(devpriv->pci_dev);
362			pci_dev_put(devpriv->pci_dev);
363		}
364	}
365
366	return 0;
367}
368
369/*
370 * "instructions" read/write data in "one-shot" or "software-triggered"
371 * mode.
372 */
373static int cb_pcimdas_ai_rinsn(struct comedi_device *dev,
374			       struct comedi_subdevice *s,
375			       struct comedi_insn *insn, unsigned int *data)
376{
377	int n, i;
378	unsigned int d;
379	unsigned int busy;
380	int chan = CR_CHAN(insn->chanspec);
381	unsigned short chanlims;
382	int maxchans;
383
384	/*  only support sw initiated reads from a single channel */
385
386	/* check channel number */
387	if ((inb(devpriv->BADR3 + 2) & 0x20) == 0)	/* differential mode */
388		maxchans = thisboard->ai_diff_chans;
389	else
390		maxchans = thisboard->ai_se_chans;
391
392	if (chan > (maxchans - 1))
393		return -ETIMEDOUT;	/* *** Wrong error code. Fixme. */
394
395	/* configure for sw initiated read */
396	d = inb(devpriv->BADR3 + 5);
397	if ((d & 0x03) > 0) {	/* only reset if needed. */
398		d = d & 0xfd;
399		outb(d, devpriv->BADR3 + 5);
400	}
401	outb(0x01, devpriv->BADR3 + 6);	/* set bursting off, conversions on */
402	outb(0x00, devpriv->BADR3 + 7);	/* set range to 10V. UP/BP is controlled by a switch on the board */
403
404	/*  write channel limits to multiplexer, set Low (bits 0-3) and High (bits 4-7) channels to chan. */
405	chanlims = chan | (chan << 4);
406	outb(chanlims, devpriv->BADR3 + 0);
407
408	/* convert n samples */
409	for (n = 0; n < insn->n; n++) {
410		/* trigger conversion */
411		outw(0, devpriv->BADR2 + 0);
412
413#define TIMEOUT 1000		/* typically takes 5 loops on a lightly loaded Pentium 100MHz, */
414		/* this is likely to be 100 loops on a 2GHz machine, so set 1000 as the limit. */
415
416		/* wait for conversion to end */
417		for (i = 0; i < TIMEOUT; i++) {
418			busy = inb(devpriv->BADR3 + 2) & 0x80;
419			if (!busy)
420				break;
421		}
422		if (i == TIMEOUT) {
423			printk("timeout\n");
424			return -ETIMEDOUT;
425		}
426		/* read data */
427		d = inw(devpriv->BADR2 + 0);
428
429		/* mangle the data as necessary */
430		/* d ^= 1<<(thisboard->ai_bits-1); // 16 bit data from ADC, so no mangle needed. */
431
432		data[n] = d;
433	}
434
435	/* return the number of samples read/written */
436	return n;
437}
438
439static int cb_pcimdas_ao_winsn(struct comedi_device *dev,
440			       struct comedi_subdevice *s,
441			       struct comedi_insn *insn, unsigned int *data)
442{
443	int i;
444	int chan = CR_CHAN(insn->chanspec);
445
446	/* Writing a list of values to an AO channel is probably not
447	 * very useful, but that's how the interface is defined. */
448	for (i = 0; i < insn->n; i++) {
449		switch (chan) {
450		case 0:
451			outw(data[i] & 0x0FFF, devpriv->BADR2 + DAC0_OFFSET);
452			break;
453		case 1:
454			outw(data[i] & 0x0FFF, devpriv->BADR2 + DAC1_OFFSET);
455			break;
456		default:
457			return -1;
458		}
459		devpriv->ao_readback[chan] = data[i];
460	}
461
462	/* return the number of samples read/written */
463	return i;
464}
465
466/* AO subdevices should have a read insn as well as a write insn.
467 * Usually this means copying a value stored in devpriv. */
468static int cb_pcimdas_ao_rinsn(struct comedi_device *dev,
469			       struct comedi_subdevice *s,
470			       struct comedi_insn *insn, unsigned int *data)
471{
472	int i;
473	int chan = CR_CHAN(insn->chanspec);
474
475	for (i = 0; i < insn->n; i++)
476		data[i] = devpriv->ao_readback[chan];
477
478	return i;
479}
480
481/*
482 * A convenient macro that defines init_module() and cleanup_module(),
483 * as necessary.
484 */
485static int __devinit driver_cb_pcimdas_pci_probe(struct pci_dev *dev,
486						 const struct pci_device_id
487						 *ent)
488{
489	return comedi_pci_auto_config(dev, driver_cb_pcimdas.driver_name);
490}
491
492static void __devexit driver_cb_pcimdas_pci_remove(struct pci_dev *dev)
493{
494	comedi_pci_auto_unconfig(dev);
495}
496
497static struct pci_driver driver_cb_pcimdas_pci_driver = {
498	.id_table = cb_pcimdas_pci_table,
499	.probe = &driver_cb_pcimdas_pci_probe,
500	.remove = __devexit_p(&driver_cb_pcimdas_pci_remove)
501};
502
503static int __init driver_cb_pcimdas_init_module(void)
504{
505	int retval;
506
507	retval = comedi_driver_register(&driver_cb_pcimdas);
508	if (retval < 0)
509		return retval;
510
511	driver_cb_pcimdas_pci_driver.name =
512	    (char *)driver_cb_pcimdas.driver_name;
513	return pci_register_driver(&driver_cb_pcimdas_pci_driver);
514}
515
516static void __exit driver_cb_pcimdas_cleanup_module(void)
517{
518	pci_unregister_driver(&driver_cb_pcimdas_pci_driver);
519	comedi_driver_unregister(&driver_cb_pcimdas);
520}
521
522module_init(driver_cb_pcimdas_init_module);
523module_exit(driver_cb_pcimdas_cleanup_module);
524
525MODULE_AUTHOR("Comedi http://www.comedi.org");
526MODULE_DESCRIPTION("Comedi low-level driver");
527MODULE_LICENSE("GPL");
528