ke_counter.c revision 727b286b44ea359d66f47d241cc2cdad36ed7bdc
1/*
2    comedi/drivers/ke_counter.c
3    Comedi driver for Kolter-Electronic PCI Counter 1 Card
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: ke_counter
25Description: Driver for Kolter Electronic Counter Card
26Devices: [Kolter Electronic] PCI Counter Card (ke_counter)
27Author: Michael Hillmann
28Updated: Mon, 14 Apr 2008 15:42:42 +0100
29Status: tested
30
31Configuration Options:
32  [0] - PCI bus of device (optional)
33  [1] - PCI slot of device (optional)
34  If bus/slot is not specified, the first supported
35  PCI device found will be used.
36
37This driver is a simple driver to read the counter values from
38Kolter Electronic PCI Counter Card.
39*/
40
41#include "../comedidev.h"
42
43#include "comedi_pci.h"
44
45#define CNT_DRIVER_NAME         "ke_counter"
46#define PCI_VENDOR_ID_KOLTER    0x1001
47#define CNT_CARD_DEVICE_ID      0x0014
48
49/*-- function prototypes ----------------------------------------------------*/
50
51static int cnt_attach(struct comedi_device *dev, struct comedi_devconfig *it);
52static int cnt_detach(struct comedi_device *dev);
53
54static DEFINE_PCI_DEVICE_TABLE(cnt_pci_table) = {
55	{
56	PCI_VENDOR_ID_KOLTER, CNT_CARD_DEVICE_ID, PCI_ANY_ID,
57		    PCI_ANY_ID, 0, 0, 0}, {
58	0}
59};
60
61MODULE_DEVICE_TABLE(pci, cnt_pci_table);
62
63/*-- board specification structure ------------------------------------------*/
64
65struct cnt_board_struct {
66
67	const char *name;
68	int device_id;
69	int cnt_channel_nbr;
70	int cnt_bits;
71};
72
73static const struct cnt_board_struct cnt_boards[] = {
74	{
75	 .name = CNT_DRIVER_NAME,
76	 .device_id = CNT_CARD_DEVICE_ID,
77	 .cnt_channel_nbr = 3,
78	 .cnt_bits = 24}
79};
80
81#define cnt_board_nbr (sizeof(cnt_boards)/sizeof(struct cnt_board_struct))
82
83/*-- device private structure -----------------------------------------------*/
84
85struct cnt_device_private {
86
87	struct pci_dev *pcidev;
88};
89
90#define devpriv ((struct cnt_device_private *)dev->private)
91
92static struct comedi_driver cnt_driver = {
93	.driver_name = CNT_DRIVER_NAME,
94	.module = THIS_MODULE,
95	.attach = cnt_attach,
96	.detach = cnt_detach,
97};
98
99static int __devinit cnt_driver_pci_probe(struct pci_dev *dev,
100					  const struct pci_device_id *ent)
101{
102	return comedi_pci_auto_config(dev, cnt_driver.driver_name);
103}
104
105static void __devexit cnt_driver_pci_remove(struct pci_dev *dev)
106{
107	comedi_pci_auto_unconfig(dev);
108}
109
110static struct pci_driver cnt_driver_pci_driver = {
111	.id_table = cnt_pci_table,
112	.probe = &cnt_driver_pci_probe,
113	.remove = __devexit_p(&cnt_driver_pci_remove)
114};
115
116static int __init cnt_driver_init_module(void)
117{
118	int retval;
119
120	retval = comedi_driver_register(&cnt_driver);
121	if (retval < 0)
122		return retval;
123
124	cnt_driver_pci_driver.name = (char *)cnt_driver.driver_name;
125	return pci_register_driver(&cnt_driver_pci_driver);
126}
127
128static void __exit cnt_driver_cleanup_module(void)
129{
130	pci_unregister_driver(&cnt_driver_pci_driver);
131	comedi_driver_unregister(&cnt_driver);
132}
133
134module_init(cnt_driver_init_module);
135module_exit(cnt_driver_cleanup_module);
136
137/*-- counter write ----------------------------------------------------------*/
138
139/* This should be used only for resetting the counters; maybe it is better
140   to make a special command 'reset'. */
141static int cnt_winsn(struct comedi_device *dev,
142		     struct comedi_subdevice *s, struct comedi_insn *insn,
143		     unsigned int *data)
144{
145	int chan = CR_CHAN(insn->chanspec);
146
147	outb((unsigned char)((data[0] >> 24) & 0xff),
148	     dev->iobase + chan * 0x20 + 0x10);
149	outb((unsigned char)((data[0] >> 16) & 0xff),
150	     dev->iobase + chan * 0x20 + 0x0c);
151	outb((unsigned char)((data[0] >> 8) & 0xff),
152	     dev->iobase + chan * 0x20 + 0x08);
153	outb((unsigned char)((data[0] >> 0) & 0xff),
154	     dev->iobase + chan * 0x20 + 0x04);
155
156	/* return the number of samples written */
157	return 1;
158}
159
160/*-- counter read -----------------------------------------------------------*/
161
162static int cnt_rinsn(struct comedi_device *dev,
163		     struct comedi_subdevice *s, struct comedi_insn *insn,
164		     unsigned int *data)
165{
166	unsigned char a0, a1, a2, a3, a4;
167	int chan = CR_CHAN(insn->chanspec);
168	int result;
169
170	a0 = inb(dev->iobase + chan * 0x20);
171	a1 = inb(dev->iobase + chan * 0x20 + 0x04);
172	a2 = inb(dev->iobase + chan * 0x20 + 0x08);
173	a3 = inb(dev->iobase + chan * 0x20 + 0x0c);
174	a4 = inb(dev->iobase + chan * 0x20 + 0x10);
175
176	result = (a1 + (a2 * 256) + (a3 * 65536));
177	if (a4 > 0)
178		result = result - s->maxdata;
179
180	*data = (unsigned int)result;
181
182	/* return the number of samples read */
183	return 1;
184}
185
186/*-- attach -----------------------------------------------------------------*/
187
188static int cnt_attach(struct comedi_device *dev, struct comedi_devconfig *it)
189{
190	struct comedi_subdevice *subdevice;
191	struct pci_dev *pci_device;
192	struct cnt_board_struct *board;
193	unsigned long io_base;
194	int error, i;
195
196	/* allocate device private structure */
197	error = alloc_private(dev, sizeof(struct cnt_device_private));
198	if (error < 0)
199		return error;
200
201	/* Probe the device to determine what device in the series it is. */
202	for (pci_device = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, NULL);
203	     pci_device != NULL;
204	     pci_device = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, pci_device)) {
205		if (pci_device->vendor == PCI_VENDOR_ID_KOLTER) {
206			for (i = 0; i < cnt_board_nbr; i++) {
207				if (cnt_boards[i].device_id ==
208				    pci_device->device) {
209					/* was a particular bus/slot requested? */
210					if ((it->options[0] != 0)
211					    || (it->options[1] != 0)) {
212						/* are we on the wrong bus/slot? */
213						if (pci_device->bus->number !=
214						    it->options[0]
215						    ||
216						    PCI_SLOT(pci_device->devfn)
217						    != it->options[1]) {
218							continue;
219						}
220					}
221
222					dev->board_ptr = cnt_boards + i;
223					board =
224					    (struct cnt_board_struct *)
225					    dev->board_ptr;
226					goto found;
227				}
228			}
229		}
230	}
231	printk(KERN_WARNING
232	       "comedi%d: no supported board found! (req. bus/slot: %d/%d)\n",
233	       dev->minor, it->options[0], it->options[1]);
234	return -EIO;
235
236found:
237	printk(KERN_INFO
238	       "comedi%d: found %s at PCI bus %d, slot %d\n", dev->minor,
239	       board->name, pci_device->bus->number,
240	       PCI_SLOT(pci_device->devfn));
241	devpriv->pcidev = pci_device;
242	dev->board_name = board->name;
243
244	/* enable PCI device and request regions */
245	error = comedi_pci_enable(pci_device, CNT_DRIVER_NAME);
246	if (error < 0) {
247		printk(KERN_WARNING "comedi%d: "
248		       "failed to enable PCI device and request regions!\n",
249		       dev->minor);
250		return error;
251	}
252
253	/* read register base address [PCI_BASE_ADDRESS #0] */
254	io_base = pci_resource_start(pci_device, 0);
255	dev->iobase = io_base;
256
257	/* allocate the subdevice structures */
258	error = alloc_subdevices(dev, 1);
259	if (error < 0)
260		return error;
261
262	subdevice = dev->subdevices + 0;
263	dev->read_subdev = subdevice;
264
265	subdevice->type = COMEDI_SUBD_COUNTER;
266	subdevice->subdev_flags = SDF_READABLE /* | SDF_COMMON */ ;
267	subdevice->n_chan = board->cnt_channel_nbr;
268	subdevice->maxdata = (1 << board->cnt_bits) - 1;
269	subdevice->insn_read = cnt_rinsn;
270	subdevice->insn_write = cnt_winsn;
271
272	/*  select 20MHz clock */
273	outb(3, dev->iobase + 248);
274
275	/*  reset all counters */
276	outb(0, dev->iobase);
277	outb(0, dev->iobase + 0x20);
278	outb(0, dev->iobase + 0x40);
279
280	printk(KERN_INFO "comedi%d: " CNT_DRIVER_NAME " attached.\n",
281	       dev->minor);
282	return 0;
283}
284
285/*-- detach -----------------------------------------------------------------*/
286
287static int cnt_detach(struct comedi_device *dev)
288{
289	if (devpriv && devpriv->pcidev) {
290		if (dev->iobase)
291			comedi_pci_disable(devpriv->pcidev);
292		pci_dev_put(devpriv->pcidev);
293	}
294	printk(KERN_INFO "comedi%d: " CNT_DRIVER_NAME " remove\n",
295	       dev->minor);
296	return 0;
297}
298
299MODULE_AUTHOR("Comedi http://www.comedi.org");
300MODULE_DESCRIPTION("Comedi low-level driver");
301MODULE_LICENSE("GPL");
302