]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/staging/comedi/drivers/ni_670x.c
Merge branch 'kbuild/rc-fixes' into kbuild/kconfig
[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 const struct ni_670x_board *
191 ni_670x_find_boardinfo(struct pci_dev *pcidev)
192 {
193         unsigned int dev_id = pcidev->device;
194         unsigned int n;
195
196         for (n = 0; n < ARRAY_SIZE(ni_670x_boards); n++) {
197                 const struct ni_670x_board *board = &ni_670x_boards[n];
198                 if (board->dev_id == dev_id)
199                         return board;
200         }
201         return NULL;
202 }
203
204 static int ni_670x_auto_attach(struct comedi_device *dev,
205                                          unsigned long context_unused)
206 {
207         struct pci_dev *pcidev = comedi_to_pci_dev(dev);
208         const struct ni_670x_board *thisboard;
209         struct ni_670x_private *devpriv;
210         struct comedi_subdevice *s;
211         int ret;
212         int i;
213
214         devpriv = kzalloc(sizeof(*devpriv), GFP_KERNEL);
215         if (!devpriv)
216                 return -ENOMEM;
217         dev->private = devpriv;
218
219         dev->board_ptr = ni_670x_find_boardinfo(pcidev);
220         if (!dev->board_ptr)
221                 return -ENODEV;
222         devpriv->mite = mite_alloc(pcidev);
223         if (!devpriv->mite)
224                 return -ENOMEM;
225         thisboard = comedi_board(dev);
226
227         ret = mite_setup(devpriv->mite);
228         if (ret < 0) {
229                 dev_warn(dev->class_dev, "error setting up mite\n");
230                 return ret;
231         }
232         dev->board_name = thisboard->name;
233
234         ret = comedi_alloc_subdevices(dev, 2);
235         if (ret)
236                 return ret;
237
238         s = &dev->subdevices[0];
239         /* analog output subdevice */
240         s->type = COMEDI_SUBD_AO;
241         s->subdev_flags = SDF_WRITABLE;
242         s->n_chan = thisboard->ao_chans;
243         s->maxdata = 0xffff;
244         if (s->n_chan == 32) {
245                 const struct comedi_lrange **range_table_list;
246
247                 range_table_list = kmalloc(sizeof(struct comedi_lrange *) * 32,
248                                            GFP_KERNEL);
249                 if (!range_table_list)
250                         return -ENOMEM;
251                 s->range_table_list = range_table_list;
252                 for (i = 0; i < 16; i++) {
253                         range_table_list[i] = &range_bipolar10;
254                         range_table_list[16 + i] = &range_0_20mA;
255                 }
256         } else {
257                 s->range_table = &range_bipolar10;
258         }
259         s->insn_write = &ni_670x_ao_winsn;
260         s->insn_read = &ni_670x_ao_rinsn;
261
262         s = &dev->subdevices[1];
263         /* digital i/o subdevice */
264         s->type = COMEDI_SUBD_DIO;
265         s->subdev_flags = SDF_READABLE | SDF_WRITABLE;
266         s->n_chan = 8;
267         s->maxdata = 1;
268         s->range_table = &range_digital;
269         s->insn_bits = ni_670x_dio_insn_bits;
270         s->insn_config = ni_670x_dio_insn_config;
271
272         /* Config of misc registers */
273         writel(0x10, devpriv->mite->daq_io_addr + MISC_CONTROL_OFFSET);
274         /* Config of ao registers */
275         writel(0x00, devpriv->mite->daq_io_addr + AO_CONTROL_OFFSET);
276
277         dev_info(dev->class_dev, "%s: %s attached\n",
278                 dev->driver->driver_name, dev->board_name);
279
280         return 0;
281 }
282
283 static void ni_670x_detach(struct comedi_device *dev)
284 {
285         struct ni_670x_private *devpriv = dev->private;
286         struct comedi_subdevice *s;
287
288         if (dev->n_subdevices) {
289                 s = &dev->subdevices[0];
290                 if (s)
291                         kfree(s->range_table_list);
292         }
293         if (devpriv && devpriv->mite) {
294                 mite_unsetup(devpriv->mite);
295                 mite_free(devpriv->mite);
296         }
297 }
298
299 static struct comedi_driver ni_670x_driver = {
300         .driver_name    = "ni_670x",
301         .module         = THIS_MODULE,
302         .auto_attach    = ni_670x_auto_attach,
303         .detach         = ni_670x_detach,
304 };
305
306 static int ni_670x_pci_probe(struct pci_dev *dev,
307                                        const struct pci_device_id *ent)
308 {
309         return comedi_pci_auto_config(dev, &ni_670x_driver);
310 }
311
312 static void ni_670x_pci_remove(struct pci_dev *dev)
313 {
314         comedi_pci_auto_unconfig(dev);
315 }
316
317 static DEFINE_PCI_DEVICE_TABLE(ni_670x_pci_table) = {
318         { PCI_DEVICE(PCI_VENDOR_ID_NI, 0x2c90) },
319         { PCI_DEVICE(PCI_VENDOR_ID_NI, 0x1920) },
320         { 0 }
321 };
322 MODULE_DEVICE_TABLE(pci, ni_670x_pci_table);
323
324 static struct pci_driver ni_670x_pci_driver = {
325         .name           = "ni_670x",
326         .id_table       = ni_670x_pci_table,
327         .probe          = ni_670x_pci_probe,
328         .remove         = ni_670x_pci_remove,
329 };
330 module_comedi_pci_driver(ni_670x_driver, ni_670x_pci_driver);
331
332 MODULE_AUTHOR("Comedi http://www.comedi.org");
333 MODULE_DESCRIPTION("Comedi low-level driver");
334 MODULE_LICENSE("GPL");