Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | /* module/range.c comedi routines for voltage ranges COMEDI - Linux Control and Measurement Device Interface Copyright (C) 1997-8 David A. Schleef <ds@schleef.org> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */ #include <linux/uaccess.h> #include "comedidev.h" #include "comedi_internal.h" const struct comedi_lrange range_bipolar10 = { 1, {BIP_RANGE(10)} }; EXPORT_SYMBOL_GPL(range_bipolar10); const struct comedi_lrange range_bipolar5 = { 1, {BIP_RANGE(5)} }; EXPORT_SYMBOL_GPL(range_bipolar5); const struct comedi_lrange range_bipolar2_5 = { 1, {BIP_RANGE(2.5)} }; EXPORT_SYMBOL_GPL(range_bipolar2_5); const struct comedi_lrange range_unipolar10 = { 1, {UNI_RANGE(10)} }; EXPORT_SYMBOL_GPL(range_unipolar10); const struct comedi_lrange range_unipolar5 = { 1, {UNI_RANGE(5)} }; EXPORT_SYMBOL_GPL(range_unipolar5); const struct comedi_lrange range_unipolar2_5 = { 1, {UNI_RANGE(2.5)} }; EXPORT_SYMBOL_GPL(range_unipolar2_5); const struct comedi_lrange range_0_20mA = { 1, {RANGE_mA(0, 20)} }; EXPORT_SYMBOL_GPL(range_0_20mA); const struct comedi_lrange range_4_20mA = { 1, {RANGE_mA(4, 20)} }; EXPORT_SYMBOL_GPL(range_4_20mA); const struct comedi_lrange range_0_32mA = { 1, {RANGE_mA(0, 32)} }; EXPORT_SYMBOL_GPL(range_0_32mA); const struct comedi_lrange range_unknown = { 1, {{0, 1000000, UNIT_none} } }; EXPORT_SYMBOL_GPL(range_unknown); /* COMEDI_RANGEINFO range information ioctl arg: pointer to rangeinfo structure reads: range info structure writes: n struct comedi_krange structures to rangeinfo->range_ptr */ int do_rangeinfo_ioctl(struct comedi_device *dev, struct comedi_rangeinfo __user *arg) { struct comedi_rangeinfo it; int subd, chan; const struct comedi_lrange *lr; struct comedi_subdevice *s; if (copy_from_user(&it, arg, sizeof(struct comedi_rangeinfo))) return -EFAULT; subd = (it.range_type >> 24) & 0xf; chan = (it.range_type >> 16) & 0xff; if (!dev->attached) return -EINVAL; if (subd >= dev->n_subdevices) return -EINVAL; s = &dev->subdevices[subd]; if (s->range_table) { lr = s->range_table; } else if (s->range_table_list) { if (chan >= s->n_chan) return -EINVAL; lr = s->range_table_list[chan]; } else { return -EINVAL; } if (RANGE_LENGTH(it.range_type) != lr->length) { dev_dbg(dev->class_dev, "wrong length %d should be %d (0x%08x)\n", RANGE_LENGTH(it.range_type), lr->length, it.range_type); return -EINVAL; } if (copy_to_user(it.range_ptr, lr->range, sizeof(struct comedi_krange) * lr->length)) return -EFAULT; return 0; } static int aref_invalid(struct comedi_subdevice *s, unsigned int chanspec) { unsigned int aref; /* disable reporting invalid arefs... maybe someday */ return 0; aref = CR_AREF(chanspec); switch (aref) { case AREF_DIFF: if (s->subdev_flags & SDF_DIFF) return 0; break; case AREF_COMMON: if (s->subdev_flags & SDF_COMMON) return 0; break; case AREF_GROUND: if (s->subdev_flags & SDF_GROUND) return 0; break; case AREF_OTHER: if (s->subdev_flags & SDF_OTHER) return 0; break; default: break; } dev_dbg(s->device->class_dev, "subdevice does not support aref %i", aref); return 1; } /** * comedi_check_chanlist() - Validate each element in a chanlist. * @s: comedi_subdevice struct * @n: number of elements in the chanlist * @chanlist: the chanlist to validate */ int comedi_check_chanlist(struct comedi_subdevice *s, int n, unsigned int *chanlist) { struct comedi_device *dev = s->device; unsigned int chanspec; int chan, range_len, i; for (i = 0; i < n; i++) { chanspec = chanlist[i]; chan = CR_CHAN(chanspec); if (s->range_table) range_len = s->range_table->length; else if (s->range_table_list && chan < s->n_chan) range_len = s->range_table_list[chan]->length; else range_len = 0; if (chan >= s->n_chan || CR_RANGE(chanspec) >= range_len || aref_invalid(s, chanspec)) { dev_warn(dev->class_dev, "bad chanlist[%d]=0x%08x chan=%d range length=%d\n", i, chanspec, chan, range_len); return -EINVAL; } } return 0; } EXPORT_SYMBOL_GPL(comedi_check_chanlist); |