]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/staging/comedi/drivers/comedi_fc.h
8ecb6bc9b60b195d4935d087b1296461c8d6fb4c
[karo-tx-linux.git] / drivers / staging / comedi / drivers / comedi_fc.h
1 /*
2  * comedi_fc.h
3  * This is a place for code driver writers wish to share between
4  * two or more drivers. These functions are meant to be used only
5  * by drivers, they are NOT part of the kcomedilib API!
6  *
7  * Author: Frank Mori Hess <fmhess@users.sourceforge.net>
8  * Copyright (C) 2002 Frank Mori Hess
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  */
20
21 #ifndef _COMEDI_FC_H
22 #define _COMEDI_FC_H
23
24 #include "../comedidev.h"
25
26 static inline unsigned int cfc_write_array_to_buffer(struct comedi_subdevice *s,
27                                                      const void *data,
28                                                      unsigned int num_bytes)
29 {
30         return comedi_write_array_to_buffer(s, data, num_bytes);
31 }
32
33 /**
34  * cfc_check_trigger_src() - trivially validate a comedi_cmd trigger source
35  * @src: pointer to the trigger source to validate
36  * @flags: bitmask of valid TRIG_* for the trigger
37  *
38  * This is used in "step 1" of the do_cmdtest functions of comedi drivers
39  * to vaildate the comedi_cmd triggers. The mask of the @src against the
40  * @flags allows the userspace comedilib to pass all the comedi_cmd
41  * triggers as TRIG_ANY and get back a bitmask of the valid trigger sources.
42  */
43 static inline int cfc_check_trigger_src(unsigned int *src, unsigned int flags)
44 {
45         unsigned int orig_src = *src;
46
47         *src = orig_src & flags;
48         if (*src == TRIG_INVALID || *src != orig_src)
49                 return -EINVAL;
50         return 0;
51 }
52
53 /**
54  * cfc_check_trigger_is_unique() - make sure a trigger source is unique
55  * @src: the trigger source to check
56  */
57 static inline int cfc_check_trigger_is_unique(unsigned int src)
58 {
59         /* this test is true if more than one _src bit is set */
60         if ((src & (src - 1)) != 0)
61                 return -EINVAL;
62         return 0;
63 }
64
65 /**
66  * cfc_check_trigger_arg_is() - trivially validate a trigger argument
67  * @arg: pointer to the trigger arg to validate
68  * @val: the value the argument should be
69  */
70 static inline int cfc_check_trigger_arg_is(unsigned int *arg, unsigned int val)
71 {
72         if (*arg != val) {
73                 *arg = val;
74                 return -EINVAL;
75         }
76         return 0;
77 }
78
79 /**
80  * cfc_check_trigger_arg_min() - trivially validate a trigger argument
81  * @arg: pointer to the trigger arg to validate
82  * @val: the minimum value the argument should be
83  */
84 static inline int cfc_check_trigger_arg_min(unsigned int *arg,
85                                             unsigned int val)
86 {
87         if (*arg < val) {
88                 *arg = val;
89                 return -EINVAL;
90         }
91         return 0;
92 }
93
94 /**
95  * cfc_check_trigger_arg_max() - trivially validate a trigger argument
96  * @arg: pointer to the trigger arg to validate
97  * @val: the maximum value the argument should be
98  */
99 static inline int cfc_check_trigger_arg_max(unsigned int *arg,
100                                             unsigned int val)
101 {
102         if (*arg > val) {
103                 *arg = val;
104                 return -EINVAL;
105         }
106         return 0;
107 }
108
109 #endif /* _COMEDI_FC_H */