staging: comedi: adl_pci9111: fix incorrect irq passed to request_irq()
[firefly-linux-kernel-4.4.55.git] / drivers / staging / comedi / drivers / contec_pci_dio.c
1 /*
2     comedi/drivers/contec_pci_dio.c
3
4     COMEDI - Linux Control and Measurement Device Interface
5     Copyright (C) 2000 David A. Schleef <ds@schleef.org>
6
7     This program is free software; you can redistribute it and/or modify
8     it under the terms of the GNU General Public License as published by
9     the Free Software Foundation; either version 2 of the License, or
10     (at your option) any later version.
11
12     This program is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU General Public License for more details.
16
17     You should have received a copy of the GNU General Public License
18     along with this program; if not, write to the Free Software
19     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21 */
22 /*
23 Driver: contec_pci_dio
24 Description: Contec PIO1616L digital I/O board
25 Devices: [Contec] PIO1616L (contec_pci_dio)
26 Author: Stefano Rivoir <s.rivoir@gts.it>
27 Updated: Wed, 27 Jun 2007 13:00:06 +0100
28 Status: works
29
30 Configuration Options: not applicable, uses comedi PCI auto config
31 */
32
33 #include <linux/pci.h>
34
35 #include "../comedidev.h"
36
37 #define PCI_DEVICE_ID_PIO1616L 0x8172
38
39 /*
40  * Register map
41  */
42 #define PIO1616L_DI_REG         0x00
43 #define PIO1616L_DO_REG         0x02
44
45 static int contec_do_insn_bits(struct comedi_device *dev,
46                                struct comedi_subdevice *s,
47                                struct comedi_insn *insn, unsigned int *data)
48 {
49         unsigned int mask = data[0];
50         unsigned int bits = data[1];
51
52         if (mask) {
53                 s->state &= ~mask;
54                 s->state |= (bits & mask);
55
56                 outw(s->state, dev->iobase + PIO1616L_DO_REG);
57         }
58
59         data[1] = s->state;
60
61         return insn->n;
62 }
63
64 static int contec_di_insn_bits(struct comedi_device *dev,
65                                struct comedi_subdevice *s,
66                                struct comedi_insn *insn, unsigned int *data)
67 {
68         data[1] = inw(dev->iobase + PIO1616L_DI_REG);
69
70         return insn->n;
71 }
72
73 static int contec_auto_attach(struct comedi_device *dev,
74                                         unsigned long context_unused)
75 {
76         struct pci_dev *pcidev = comedi_to_pci_dev(dev);
77         struct comedi_subdevice *s;
78         int ret;
79
80         ret = comedi_pci_enable(dev);
81         if (ret)
82                 return ret;
83         dev->iobase = pci_resource_start(pcidev, 0);
84
85         ret = comedi_alloc_subdevices(dev, 2);
86         if (ret)
87                 return ret;
88
89         s = &dev->subdevices[0];
90         s->type         = COMEDI_SUBD_DI;
91         s->subdev_flags = SDF_READABLE;
92         s->n_chan       = 16;
93         s->maxdata      = 1;
94         s->range_table  = &range_digital;
95         s->insn_bits    = contec_di_insn_bits;
96
97         s = &dev->subdevices[1];
98         s->type         = COMEDI_SUBD_DO;
99         s->subdev_flags = SDF_WRITABLE;
100         s->n_chan       = 16;
101         s->maxdata      = 1;
102         s->range_table  = &range_digital;
103         s->insn_bits    = contec_do_insn_bits;
104
105         dev_info(dev->class_dev, "%s attached\n", dev->board_name);
106
107         return 0;
108 }
109
110 static struct comedi_driver contec_pci_dio_driver = {
111         .driver_name    = "contec_pci_dio",
112         .module         = THIS_MODULE,
113         .auto_attach    = contec_auto_attach,
114         .detach         = comedi_pci_disable,
115 };
116
117 static int contec_pci_dio_pci_probe(struct pci_dev *dev,
118                                     const struct pci_device_id *id)
119 {
120         return comedi_pci_auto_config(dev, &contec_pci_dio_driver,
121                                       id->driver_data);
122 }
123
124 static DEFINE_PCI_DEVICE_TABLE(contec_pci_dio_pci_table) = {
125         { PCI_DEVICE(PCI_VENDOR_ID_CONTEC, PCI_DEVICE_ID_PIO1616L) },
126         { 0 }
127 };
128 MODULE_DEVICE_TABLE(pci, contec_pci_dio_pci_table);
129
130 static struct pci_driver contec_pci_dio_pci_driver = {
131         .name           = "contec_pci_dio",
132         .id_table       = contec_pci_dio_pci_table,
133         .probe          = contec_pci_dio_pci_probe,
134         .remove         = comedi_pci_auto_unconfig,
135 };
136 module_comedi_pci_driver(contec_pci_dio_driver, contec_pci_dio_pci_driver);
137
138 MODULE_AUTHOR("Comedi http://www.comedi.org");
139 MODULE_DESCRIPTION("Comedi low-level driver");
140 MODULE_LICENSE("GPL");