]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/staging/comedi/drivers/ni_670x.c
Merge branch 'vfs-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs
[karo-tx-linux.git] / drivers / staging / comedi / drivers / ni_670x.c
1 /*
2     comedi/drivers/ni_670x.c
3     Hardware driver for NI 670x devices
4
5     COMEDI - Linux Control and Measurement Device Interface
6     Copyright (C) 1997-2001 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 /*
24 Driver: ni_670x
25 Description: National Instruments 670x
26 Author: Bart Joris <bjoris@advalvas.be>
27 Updated: Wed, 11 Dec 2002 18:25:35 -0800
28 Devices: [National Instruments] PCI-6703 (ni_670x), PCI-6704
29 Status: unknown
30
31 Commands are not supported.
32 */
33
34 /*
35         Bart Joris <bjoris@advalvas.be> Last updated on 20/08/2001
36
37         Manuals:
38
39         322110a.pdf     PCI/PXI-6704 User Manual
40         322110b.pdf     PCI/PXI-6703/6704 User Manual
41
42 */
43
44 #include <linux/interrupt.h>
45 #include <linux/slab.h>
46 #include "../comedidev.h"
47
48 #include "mite.h"
49
50 #define AO_VALUE_OFFSET                 0x00
51 #define AO_CHAN_OFFSET                  0x0c
52 #define AO_STATUS_OFFSET                0x10
53 #define AO_CONTROL_OFFSET               0x10
54 #define DIO_PORT0_DIR_OFFSET    0x20
55 #define DIO_PORT0_DATA_OFFSET   0x24
56 #define DIO_PORT1_DIR_OFFSET    0x28
57 #define DIO_PORT1_DATA_OFFSET   0x2c
58 #define MISC_STATUS_OFFSET              0x14
59 #define MISC_CONTROL_OFFSET             0x14
60
61 /* Board description*/
62
63 struct ni_670x_board {
64         const char *name;
65         unsigned short dev_id;
66         unsigned short ao_chans;
67 };
68
69 static const struct ni_670x_board ni_670x_boards[] = {
70         {
71                 .name           = "PCI-6703",
72                 .dev_id         = 0x2c90,
73                 .ao_chans       = 16,
74         }, {
75                 .name           = "PXI-6704",
76                 .dev_id         = 0x1920,
77                 .ao_chans       = 32,
78         }, {
79                 .name           = "PCI-6704",
80                 .dev_id         = 0x1290,
81                 .ao_chans       = 32,
82         },
83 };
84
85 struct ni_670x_private {
86
87         struct mite_struct *mite;
88         int boardtype;
89         int dio;
90         unsigned int ao_readback[32];
91 };
92
93 static struct comedi_lrange range_0_20mA = { 1, {RANGE_mA(0, 20)} };
94
95 static int ni_670x_ao_winsn(struct comedi_device *dev,
96                             struct comedi_subdevice *s,
97                             struct comedi_insn *insn, unsigned int *data)
98 {
99         struct ni_670x_private *devpriv = dev->private;
100         int i;
101         int chan = CR_CHAN(insn->chanspec);
102
103         /* Channel number mapping :
104
105            NI 6703/ NI 6704     | NI 6704 Only
106            ----------------------------------------------------
107            vch(0)       :       0       | ich(16)       :       1
108            vch(1)       :       2       | ich(17)       :       3
109            .    :       .       |   .                   .
110            .    :       .       |   .                   .
111            .    :       .       |   .                   .
112            vch(15)      :       30      | ich(31)       :       31      */
113
114         for (i = 0; i < insn->n; i++) {
115                 /* First write in channel register which channel to use */
116                 writel(((chan & 15) << 1) | ((chan & 16) >> 4),
117                        devpriv->mite->daq_io_addr + AO_CHAN_OFFSET);
118                 /* write channel value */
119                 writel(data[i], devpriv->mite->daq_io_addr + AO_VALUE_OFFSET);
120                 devpriv->ao_readback[chan] = data[i];
121         }
122
123         return i;
124 }
125
126 static int ni_670x_ao_rinsn(struct comedi_device *dev,
127                             struct comedi_subdevice *s,
128                             struct comedi_insn *insn, unsigned int *data)
129 {
130         struct ni_670x_private *devpriv = dev->private;
131         int i;
132         int chan = CR_CHAN(insn->chanspec);
133
134         for (i = 0; i < insn->n; i++)
135                 data[i] = devpriv->ao_readback[chan];
136
137         return i;
138 }
139
140 static int ni_670x_dio_insn_bits(struct comedi_device *dev,
141                                  struct comedi_subdevice *s,
142                                  struct comedi_insn *insn, unsigned int *data)
143 {
144         struct ni_670x_private *devpriv = dev->private;
145         void __iomem *io_addr = devpriv->mite->daq_io_addr +
146                                         DIO_PORT0_DATA_OFFSET;
147         unsigned int mask = data[0];
148         unsigned int bits = data[1];
149
150         if (mask) {
151                 s->state &= ~mask;
152                 s->state |= (bits & mask);
153
154                 writel(s->state, io_addr);
155         }
156
157         data[1] = readl(io_addr);
158
159         return insn->n;
160 }
161
162 static int ni_670x_dio_insn_config(struct comedi_device *dev,
163                                    struct comedi_subdevice *s,
164                                    struct comedi_insn *insn, unsigned int *data)
165 {
166         struct ni_670x_private *devpriv = dev->private;
167         int chan = CR_CHAN(insn->chanspec);
168
169         switch (data[0]) {
170         case INSN_CONFIG_DIO_OUTPUT:
171                 s->io_bits |= 1 << chan;
172                 break;
173         case INSN_CONFIG_DIO_INPUT:
174                 s->io_bits &= ~(1 << chan);
175                 break;
176         case INSN_CONFIG_DIO_QUERY:
177                 data[1] =
178                     (s->io_bits & (1 << chan)) ? COMEDI_OUTPUT : COMEDI_INPUT;
179                 return insn->n;
180                 break;
181         default:
182                 return -EINVAL;
183                 break;
184         }
185         writel(s->io_bits, devpriv->mite->daq_io_addr + DIO_PORT0_DIR_OFFSET);
186
187         return insn->n;
188 }
189
190 static int ni_670x_find_device(struct comedi_device *dev, int bus, int slot)
191 {
192         struct ni_670x_private *devpriv = dev->private;
193         struct mite_struct *mite;
194         int i;
195
196         for (mite = mite_devices; mite; mite = mite->next) {
197                 if (mite->used)
198                         continue;
199                 if (bus || slot) {
200                         if (bus != mite->pcidev->bus->number
201                             || slot != PCI_SLOT(mite->pcidev->devfn))
202                                 continue;
203                 }
204
205                 for (i = 0; i < ARRAY_SIZE(ni_670x_boards); i++) {
206                         if (mite_device_id(mite) == ni_670x_boards[i].dev_id) {
207                                 dev->board_ptr = ni_670x_boards + i;
208                                 devpriv->mite = mite;
209
210                                 return 0;
211                         }
212                 }
213         }
214         dev_warn(dev->class_dev, "no device found\n");
215         mite_list_devices();
216         return -EIO;
217 }
218
219 static int ni_670x_attach(struct comedi_device *dev,
220                           struct comedi_devconfig *it)
221 {
222         const struct ni_670x_board *thisboard;
223         struct ni_670x_private *devpriv;
224         struct comedi_subdevice *s;
225         int ret;
226         int i;
227
228         ret = alloc_private(dev, sizeof(*devpriv));
229         if (ret < 0)
230                 return ret;
231         devpriv = dev->private;
232
233         ret = ni_670x_find_device(dev, it->options[0], it->options[1]);
234         if (ret < 0)
235                 return ret;
236         thisboard = comedi_board(dev);
237
238         ret = mite_setup(devpriv->mite);
239         if (ret < 0) {
240                 dev_warn(dev->class_dev, "error setting up mite\n");
241                 return ret;
242         }
243         dev->board_name = thisboard->name;
244         dev->irq = mite_irq(devpriv->mite);
245
246         ret = comedi_alloc_subdevices(dev, 2);
247         if (ret)
248                 return ret;
249
250         s = dev->subdevices + 0;
251         /* analog output subdevice */
252         s->type = COMEDI_SUBD_AO;
253         s->subdev_flags = SDF_WRITABLE;
254         s->n_chan = thisboard->ao_chans;
255         s->maxdata = 0xffff;
256         if (s->n_chan == 32) {
257                 const struct comedi_lrange **range_table_list;
258
259                 range_table_list = kmalloc(sizeof(struct comedi_lrange *) * 32,
260                                            GFP_KERNEL);
261                 if (!range_table_list)
262                         return -ENOMEM;
263                 s->range_table_list = range_table_list;
264                 for (i = 0; i < 16; i++) {
265                         range_table_list[i] = &range_bipolar10;
266                         range_table_list[16 + i] = &range_0_20mA;
267                 }
268         } else {
269                 s->range_table = &range_bipolar10;
270         }
271         s->insn_write = &ni_670x_ao_winsn;
272         s->insn_read = &ni_670x_ao_rinsn;
273
274         s = dev->subdevices + 1;
275         /* digital i/o subdevice */
276         s->type = COMEDI_SUBD_DIO;
277         s->subdev_flags = SDF_READABLE | SDF_WRITABLE;
278         s->n_chan = 8;
279         s->maxdata = 1;
280         s->range_table = &range_digital;
281         s->insn_bits = ni_670x_dio_insn_bits;
282         s->insn_config = ni_670x_dio_insn_config;
283
284         /* Config of misc registers */
285         writel(0x10, devpriv->mite->daq_io_addr + MISC_CONTROL_OFFSET);
286         /* Config of ao registers */
287         writel(0x00, devpriv->mite->daq_io_addr + AO_CONTROL_OFFSET);
288
289         dev_info(dev->class_dev, "%s: %s attached\n",
290                 dev->driver->driver_name, dev->board_name);
291
292         return 0;
293 }
294
295 static void ni_670x_detach(struct comedi_device *dev)
296 {
297         struct ni_670x_private *devpriv = dev->private;
298         struct comedi_subdevice *s;
299
300         if (dev->n_subdevices) {
301                 s = dev->subdevices + 0;
302                 if (s)
303                         kfree(s->range_table_list);
304         }
305         if (devpriv && devpriv->mite)
306                 mite_unsetup(devpriv->mite);
307         if (dev->irq)
308                 free_irq(dev->irq, dev);
309 }
310
311 static struct comedi_driver ni_670x_driver = {
312         .driver_name    = "ni_670x",
313         .module         = THIS_MODULE,
314         .attach         = ni_670x_attach,
315         .detach         = ni_670x_detach,
316 };
317
318 static int __devinit ni_670x_pci_probe(struct pci_dev *dev,
319                                        const struct pci_device_id *ent)
320 {
321         return comedi_pci_auto_config(dev, &ni_670x_driver);
322 }
323
324 static void __devexit ni_670x_pci_remove(struct pci_dev *dev)
325 {
326         comedi_pci_auto_unconfig(dev);
327 }
328
329 static DEFINE_PCI_DEVICE_TABLE(ni_670x_pci_table) = {
330         { PCI_DEVICE(PCI_VENDOR_ID_NI, 0x2c90) },
331         { PCI_DEVICE(PCI_VENDOR_ID_NI, 0x1920) },
332         { 0 }
333 };
334 MODULE_DEVICE_TABLE(pci, ni_670x_pci_table);
335
336 static struct pci_driver ni_670x_pci_driver = {
337         .name           ="ni_670x",
338         .id_table       = ni_670x_pci_table,
339         .probe          = ni_670x_pci_probe,
340         .remove         = __devexit_p(ni_670x_pci_remove),
341 };
342 module_comedi_pci_driver(ni_670x_driver, ni_670x_pci_driver);
343
344 MODULE_AUTHOR("Comedi http://www.comedi.org");
345 MODULE_DESCRIPTION("Comedi low-level driver");
346 MODULE_LICENSE("GPL");