f0ba81d4b9efcfa14aa83aacf0ec5a0fa4f11438
[safe/jmp/linux-2.6] / drivers / staging / comedi / kcomedilib / dio.c
1 /*
2     kcomedilib/dio.c
3     implements comedi_dio_*() functions
4
5     COMEDI - Linux Control and Measurement Device Interface
6     Copyright (C) 2000 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 #include "../comedi.h"
25 #include "../comedilib.h"
26
27 #include <linux/string.h>
28 #include <linux/module.h>
29
30 int comedi_dio_config(void *dev, unsigned int subdev, unsigned int chan,
31                       unsigned int io)
32 {
33         struct comedi_insn insn;
34
35         memset(&insn, 0, sizeof(insn));
36         insn.insn = INSN_CONFIG;
37         insn.n = 1;
38         insn.data = &io;
39         insn.subdev = subdev;
40         insn.chanspec = CR_PACK(chan, 0, 0);
41
42         return comedi_do_insn(dev, &insn);
43 }
44 EXPORT_SYMBOL(comedi_dio_config);
45
46 int comedi_dio_bitfield(void *dev, unsigned int subdev, unsigned int mask,
47                         unsigned int *bits)
48 {
49         struct comedi_insn insn;
50         unsigned int data[2];
51         int ret;
52
53         memset(&insn, 0, sizeof(insn));
54         insn.insn = INSN_BITS;
55         insn.n = 2;
56         insn.data = data;
57         insn.subdev = subdev;
58
59         data[0] = mask;
60         data[1] = *bits;
61
62         ret = comedi_do_insn(dev, &insn);
63
64         *bits = data[1];
65
66         return ret;
67 }
68 EXPORT_SYMBOL(comedi_dio_bitfield);