Merge branch 'for-3.11' of git://linux-nfs.org/~bfields/linux
[linux-2.6.git] / drivers / staging / comedi / drivers / ni_labpc_cs.c
blobce67f4bbb1f5596060f471fb96e93d986dda8883
1 /*
2 comedi/drivers/ni_labpc_cs.c
3 Driver for National Instruments daqcard-1200 boards
4 Copyright (C) 2001, 2002, 2003 Frank Mori Hess <fmhess@users.sourceforge.net>
6 PCMCIA crap is adapted from dummy_cs.c 1.31 2001/08/24 12:13:13
7 from the pcmcia package.
8 The initial developer of the pcmcia dummy_cs.c code is David A. Hinds
9 <dahinds@users.sourceforge.net>. Portions created by David A. Hinds
10 are Copyright (C) 1999 David A. Hinds.
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
23 Driver: ni_labpc_cs
24 Description: National Instruments Lab-PC (& compatibles)
25 Author: Frank Mori Hess <fmhess@users.sourceforge.net>
26 Devices: [National Instruments] DAQCard-1200 (daqcard-1200)
27 Status: works
29 Thanks go to Fredrik Lingvall for much testing and perseverance in
30 helping to debug daqcard-1200 support.
32 The 1200 series boards have onboard calibration dacs for correcting
33 analog input/output offsets and gains. The proper settings for these
34 caldacs are stored on the board's eeprom. To read the caldac values
35 from the eeprom and store them into a file that can be then be used by
36 comedilib, use the comedi_calibrate program.
38 Configuration options:
39 none
41 The daqcard-1200 has quirky chanlist requirements
42 when scanning multiple channels. Multiple channel scan
43 sequence must start at highest channel, then decrement down to
44 channel 0. Chanlists consisting of all one channel
45 are also legal, and allow you to pace conversions in bursts.
51 NI manuals:
52 340988a (daqcard-1200)
56 #include "../comedidev.h"
58 #include <linux/delay.h>
59 #include <linux/slab.h>
61 #include "8253.h"
62 #include "8255.h"
63 #include "comedi_fc.h"
64 #include "ni_labpc.h"
66 #include <pcmcia/cistpl.h>
67 #include <pcmcia/cisreg.h>
68 #include <pcmcia/ds.h>
70 static const struct labpc_boardinfo labpc_cs_boards[] = {
72 .name = "daqcard-1200",
73 .ai_speed = 10000,
74 .has_ao = 1,
75 .is_labpc1200 = 1,
79 static int labpc_auto_attach(struct comedi_device *dev,
80 unsigned long context)
82 struct pcmcia_device *link = comedi_to_pcmcia_dev(dev);
83 struct labpc_private *devpriv;
84 int ret;
86 /* The ni_labpc driver needs the board_ptr */
87 dev->board_ptr = &labpc_cs_boards[0];
89 link->config_flags |= CONF_AUTO_SET_IO |
90 CONF_ENABLE_IRQ | CONF_ENABLE_PULSE_IRQ;
91 ret = comedi_pcmcia_enable(dev, NULL);
92 if (ret)
93 return ret;
94 dev->iobase = link->resource[0]->start;
96 if (!link->irq)
97 return -EINVAL;
99 devpriv = kzalloc(sizeof(*devpriv), GFP_KERNEL);
100 if (!devpriv)
101 return -ENOMEM;
102 dev->private = devpriv;
104 return labpc_common_attach(dev, link->irq, IRQF_SHARED);
107 static struct comedi_driver driver_labpc_cs = {
108 .driver_name = "ni_labpc_cs",
109 .module = THIS_MODULE,
110 .auto_attach = labpc_auto_attach,
111 .detach = comedi_pcmcia_disable,
114 static int labpc_cs_attach(struct pcmcia_device *link)
116 return comedi_pcmcia_auto_config(link, &driver_labpc_cs);
119 static const struct pcmcia_device_id labpc_cs_ids[] = {
120 PCMCIA_DEVICE_MANF_CARD(0x010b, 0x0103), /* daqcard-1200 */
121 PCMCIA_DEVICE_NULL
123 MODULE_DEVICE_TABLE(pcmcia, labpc_cs_ids);
125 static struct pcmcia_driver labpc_cs_driver = {
126 .name = "daqcard-1200",
127 .owner = THIS_MODULE,
128 .id_table = labpc_cs_ids,
129 .probe = labpc_cs_attach,
130 .remove = comedi_pcmcia_auto_unconfig,
132 module_comedi_pcmcia_driver(driver_labpc_cs, labpc_cs_driver);
134 MODULE_DESCRIPTION("Comedi driver for National Instruments Lab-PC");
135 MODULE_AUTHOR("Frank Mori Hess <fmhess@users.sourceforge.net>");
136 MODULE_LICENSE("GPL");