Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ni_at_ao.c
Go to the documentation of this file.
1 /*
2  comedi/drivers/ni_at_ao.c
3  Driver for NI AT-AO-6/10 boards
4 
5  COMEDI - Linux Control and Measurement Device Interface
6  Copyright (C) 2000,2002 David A. Schleef <[email protected]>
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_at_ao
25 Description: National Instruments AT-AO-6/10
26 Devices: [National Instruments] AT-AO-6 (at-ao-6), AT-AO-10 (at-ao-10)
27 Status: should work
28 Author: ds
29 Updated: Sun Dec 26 12:26:28 EST 2004
30 
31 Configuration options:
32  [0] - I/O port base address
33  [1] - IRQ (unused)
34  [2] - DMA (unused)
35  [3] - analog output range, set by jumpers on hardware (0 for -10 to 10V
36  bipolar, 1 for 0V to 10V unipolar)
37 
38 */
39 /*
40  * Register-level programming information can be found in NI
41  * document 320379.pdf.
42  */
43 
44 #include "../comedidev.h"
45 
46 #include <linux/ioport.h>
47 
48 /* board egisters */
49 /* registers with _2_ are accessed when GRP2WR is set in CFG1 */
50 
51 #define ATAO_SIZE 0x20
52 
53 #define ATAO_2_DMATCCLR 0x00 /* W 16 */
54 #define ATAO_DIN 0x00 /* R 16 */
55 #define ATAO_DOUT 0x00 /* W 16 */
56 
57 #define ATAO_CFG2 0x02 /* W 16 */
58 #define CALLD1 0x8000
59 #define CALLD0 0x4000
60 #define FFRTEN 0x2000
61 #define DAC2S8 0x1000
62 #define DAC2S6 0x0800
63 #define DAC2S4 0x0400
64 #define DAC2S2 0x0200
65 #define DAC2S0 0x0100
66 #define LDAC8 0x0080
67 #define LDAC6 0x0040
68 #define LDAC4 0x0020
69 #define LDAC2 0x0010
70 #define LDAC0 0x0008
71 #define PROMEN 0x0004
72 #define SCLK 0x0002
73 #define SDATA 0x0001
74 
75 #define ATAO_2_INT1CLR 0x02 /* W 16 */
76 
77 #define ATAO_CFG3 0x04 /* W 16 */
78 #define DMAMODE 0x0040
79 #define CLKOUT 0x0020
80 #define RCLKEN 0x0010
81 #define DOUTEN2 0x0008
82 #define DOUTEN1 0x0004
83 #define EN2_5V 0x0002
84 #define SCANEN 0x0001
85 
86 #define ATAO_2_INT2CLR 0x04 /* W 16 */
87 
88 #define ATAO_82C53_BASE 0x06 /* RW 8 */
89 
90 #define ATAO_82C53_CNTR1 0x06 /* RW 8 */
91 #define ATAO_82C53_CNTR2 0x07 /* RW 8 */
92 #define ATAO_82C53_CNTR3 0x08 /* RW 8 */
93 #define ATAO_82C53_CNTRCMD 0x09 /* W 8 */
94 #define CNTRSEL1 0x80
95 #define CNTRSEL0 0x40
96 #define RWSEL1 0x20
97 #define RWSEL0 0x10
98 #define MODESEL2 0x08
99 #define MODESEL1 0x04
100 #define MODESEL0 0x02
101 #define BCDSEL 0x01
102  /* read-back command */
103 #define COUNT 0x20
104 #define STATUS 0x10
105 #define CNTR3 0x08
106 #define CNTR2 0x04
107 #define CNTR1 0x02
108  /* status */
109 #define OUT 0x80
110 #define _NULL 0x40
111 #define RW1 0x20
112 #define RW0 0x10
113 #define MODE2 0x08
114 #define MODE1 0x04
115 #define MODE0 0x02
116 #define BCD 0x01
117 
118 #define ATAO_2_RTSISHFT 0x06 /* W 8 */
119 #define RSI 0x01
120 
121 #define ATAO_2_RTSISTRB 0x07 /* W 8 */
122 
123 #define ATAO_CFG1 0x0a /* W 16 */
124 #define EXTINT2EN 0x8000
125 #define EXTINT1EN 0x4000
126 #define CNTINT2EN 0x2000
127 #define CNTINT1EN 0x1000
128 #define TCINTEN 0x0800
129 #define CNT1SRC 0x0400
130 #define CNT2SRC 0x0200
131 #define FIFOEN 0x0100
132 #define GRP2WR 0x0080
133 #define EXTUPDEN 0x0040
134 #define DMARQ 0x0020
135 #define DMAEN 0x0010
136 #define CH_mask 0x000f
137 #define ATAO_STATUS 0x0a /* R 16 */
138 #define FH 0x0040
139 #define FE 0x0020
140 #define FF 0x0010
141 #define INT2 0x0008
142 #define INT1 0x0004
143 #define TCINT 0x0002
144 #define PROMOUT 0x0001
145 
146 #define ATAO_FIFO_WRITE 0x0c /* W 16 */
147 #define ATAO_FIFO_CLEAR 0x0c /* R 16 */
148 #define ATAO_DACn(x) (0x0c + 2*(x)) /* W */
149 
150 /*
151  * Board descriptions for two imaginary boards. Describing the
152  * boards in this way is optional, and completely driver-dependent.
153  * Some drivers use arrays such as this, other do not.
154  */
155 struct atao_board {
156  const char *name;
158 };
159 
160 struct atao_private {
161 
162  unsigned short cfg1;
163  unsigned short cfg2;
164  unsigned short cfg3;
165 
166  /* Used for AO readback */
167  unsigned int ao_readback[10];
168 };
169 
170 #define devpriv ((struct atao_private *)dev->private)
171 
172 static void atao_reset(struct comedi_device *dev)
173 {
174  /* This is the reset sequence described in the manual */
175 
176  devpriv->cfg1 = 0;
177  outw(devpriv->cfg1, dev->iobase + ATAO_CFG1);
178 
180  outb(0x03, dev->iobase + ATAO_82C53_CNTR1);
182 
183  devpriv->cfg2 = 0;
184  outw(devpriv->cfg2, dev->iobase + ATAO_CFG2);
185 
186  devpriv->cfg3 = 0;
187  outw(devpriv->cfg3, dev->iobase + ATAO_CFG3);
188 
189  inw(dev->iobase + ATAO_FIFO_CLEAR);
190 
191  devpriv->cfg1 |= GRP2WR;
192  outw(devpriv->cfg1, dev->iobase + ATAO_CFG1);
193 
194  outw(0, dev->iobase + ATAO_2_INT1CLR);
195  outw(0, dev->iobase + ATAO_2_INT2CLR);
196  outw(0, dev->iobase + ATAO_2_DMATCCLR);
197 
198  devpriv->cfg1 &= ~GRP2WR;
199  outw(devpriv->cfg1, dev->iobase + ATAO_CFG1);
200 }
201 
202 static int atao_ao_winsn(struct comedi_device *dev, struct comedi_subdevice *s,
203  struct comedi_insn *insn, unsigned int *data)
204 {
205  int i;
206  int chan = CR_CHAN(insn->chanspec);
207  short bits;
208 
209  for (i = 0; i < insn->n; i++) {
210  bits = data[i] - 0x800;
211  if (chan == 0) {
212  devpriv->cfg1 |= GRP2WR;
213  outw(devpriv->cfg1, dev->iobase + ATAO_CFG1);
214  }
215  outw(bits, dev->iobase + ATAO_DACn(chan));
216  if (chan == 0) {
217  devpriv->cfg1 &= ~GRP2WR;
218  outw(devpriv->cfg1, dev->iobase + ATAO_CFG1);
219  }
220  devpriv->ao_readback[chan] = data[i];
221  }
222 
223  return i;
224 }
225 
226 static int atao_ao_rinsn(struct comedi_device *dev, struct comedi_subdevice *s,
227  struct comedi_insn *insn, unsigned int *data)
228 {
229  int i;
230  int chan = CR_CHAN(insn->chanspec);
231 
232  for (i = 0; i < insn->n; i++)
233  data[i] = devpriv->ao_readback[chan];
234 
235  return i;
236 }
237 
238 static int atao_dio_insn_bits(struct comedi_device *dev,
239  struct comedi_subdevice *s,
240  struct comedi_insn *insn, unsigned int *data)
241 {
242  if (data[0]) {
243  s->state &= ~data[0];
244  s->state |= data[0] & data[1];
245  outw(s->state, dev->iobase + ATAO_DOUT);
246  }
247 
248  data[1] = inw(dev->iobase + ATAO_DIN);
249 
250  return insn->n;
251 }
252 
253 static int atao_dio_insn_config(struct comedi_device *dev,
254  struct comedi_subdevice *s,
255  struct comedi_insn *insn, unsigned int *data)
256 {
257  int chan = CR_CHAN(insn->chanspec);
258  unsigned int mask, bit;
259 
260  /* The input or output configuration of each digital line is
261  * configured by a special insn_config instruction. chanspec
262  * contains the channel to be changed, and data[0] contains the
263  * value COMEDI_INPUT or COMEDI_OUTPUT. */
264 
265  mask = (chan < 4) ? 0x0f : 0xf0;
266  bit = (chan < 4) ? DOUTEN1 : DOUTEN2;
267 
268  switch (data[0]) {
270  s->io_bits |= mask;
271  devpriv->cfg3 |= bit;
272  break;
274  s->io_bits &= ~mask;
275  devpriv->cfg3 &= ~bit;
276  break;
278  data[1] =
279  (s->io_bits & (1 << chan)) ? COMEDI_OUTPUT : COMEDI_INPUT;
280  return insn->n;
281  break;
282  default:
283  return -EINVAL;
284  break;
285  }
286 
287  outw(devpriv->cfg3, dev->iobase + ATAO_CFG3);
288 
289  return 1;
290 }
291 
292 /*
293  * Figure 2-1 in the manual shows 3 chips labeled DAC8800, which
294  * are 8-channel 8-bit DACs. These are most likely the calibration
295  * DACs. It is not explicitly stated in the manual how to access
296  * the caldacs, but we can guess.
297  */
298 static int atao_calib_insn_read(struct comedi_device *dev,
299  struct comedi_subdevice *s,
300  struct comedi_insn *insn, unsigned int *data)
301 {
302  int i;
303  for (i = 0; i < insn->n; i++)
304  data[i] = 0; /* XXX */
305  return insn->n;
306 }
307 
308 static int atao_calib_insn_write(struct comedi_device *dev,
309  struct comedi_subdevice *s,
310  struct comedi_insn *insn, unsigned int *data)
311 {
312  unsigned int bitstring, bit;
313  unsigned int chan = CR_CHAN(insn->chanspec);
314 
315  bitstring = ((chan & 0x7) << 8) | (data[insn->n - 1] & 0xff);
316 
317  for (bit = 1 << (11 - 1); bit; bit >>= 1) {
318  outw(devpriv->cfg2 | ((bit & bitstring) ? SDATA : 0),
319  dev->iobase + ATAO_CFG2);
320  outw(devpriv->cfg2 | SCLK | ((bit & bitstring) ? SDATA : 0),
321  dev->iobase + ATAO_CFG2);
322  }
323  /* strobe the appropriate caldac */
324  outw(devpriv->cfg2 | (((chan >> 3) + 1) << 14),
325  dev->iobase + ATAO_CFG2);
326  outw(devpriv->cfg2, dev->iobase + ATAO_CFG2);
327 
328  return insn->n;
329 }
330 
331 static int atao_attach(struct comedi_device *dev, struct comedi_devconfig *it)
332 {
333  const struct atao_board *board = comedi_board(dev);
334  struct comedi_subdevice *s;
335  unsigned long iobase;
336  int ao_unipolar;
337  int ret;
338 
339  iobase = it->options[0];
340  if (iobase == 0)
341  iobase = 0x1c0;
342  ao_unipolar = it->options[3];
343 
344  printk(KERN_INFO "comedi%d: ni_at_ao: 0x%04lx", dev->minor, iobase);
345 
346  if (!request_region(iobase, ATAO_SIZE, "ni_at_ao")) {
347  printk(" I/O port conflict\n");
348  return -EIO;
349  }
350  dev->iobase = iobase;
351 
352  dev->board_name = board->name;
353 
354  if (alloc_private(dev, sizeof(struct atao_private)) < 0)
355  return -ENOMEM;
356 
357  ret = comedi_alloc_subdevices(dev, 4);
358  if (ret)
359  return ret;
360 
361  s = &dev->subdevices[0];
362  /* analog output subdevice */
363  s->type = COMEDI_SUBD_AO;
365  s->n_chan = board->n_ao_chans;
366  s->maxdata = (1 << 12) - 1;
367  if (ao_unipolar)
369  else
371  s->insn_write = &atao_ao_winsn;
372  s->insn_read = &atao_ao_rinsn;
373 
374  s = &dev->subdevices[1];
375  /* digital i/o subdevice */
376  s->type = COMEDI_SUBD_DIO;
378  s->n_chan = 8;
379  s->maxdata = 1;
381  s->insn_bits = atao_dio_insn_bits;
382  s->insn_config = atao_dio_insn_config;
383 
384  s = &dev->subdevices[2];
385  /* caldac subdevice */
386  s->type = COMEDI_SUBD_CALIB;
388  s->n_chan = 21;
389  s->maxdata = 0xff;
390  s->insn_read = atao_calib_insn_read;
391  s->insn_write = atao_calib_insn_write;
392 
393  s = &dev->subdevices[3];
394  /* eeprom subdevice */
395  /* s->type=COMEDI_SUBD_EEPROM; */
397 
398  atao_reset(dev);
399 
400  printk(KERN_INFO "\n");
401 
402  return 0;
403 }
404 
405 static void atao_detach(struct comedi_device *dev)
406 {
407  if (dev->iobase)
409 }
410 
411 static const struct atao_board atao_boards[] = {
412  {
413  .name = "ai-ao-6",
414  .n_ao_chans = 6,
415  }, {
416  .name = "ai-ao-10",
417  .n_ao_chans = 10,
418  },
419 };
420 
421 static struct comedi_driver ni_at_ao_driver = {
422  .driver_name = "ni_at_ao",
423  .module = THIS_MODULE,
424  .attach = atao_attach,
425  .detach = atao_detach,
426  .board_name = &atao_boards[0].name,
427  .offset = sizeof(struct atao_board),
428  .num_names = ARRAY_SIZE(atao_boards),
429 };
430 module_comedi_driver(ni_at_ao_driver);
431 
432 MODULE_AUTHOR("Comedi http://www.comedi.org");
433 MODULE_DESCRIPTION("Comedi low-level driver");
434 MODULE_LICENSE("GPL");