Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 1 | /* The industrial I/O core |
| 2 | * |
| 3 | * Copyright (c) 2008 Jonathan Cameron |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms of the GNU General Public License version 2 as published by |
| 7 | * the Free Software Foundation. |
| 8 | * |
| 9 | * Handling of buffer allocation / resizing. |
| 10 | * |
| 11 | * |
| 12 | * Things to look at here. |
| 13 | * - Better memory allocation techniques? |
| 14 | * - Alternative access techniques? |
| 15 | */ |
| 16 | #include <linux/kernel.h> |
Paul Gortmaker | 8e336a7 | 2011-07-10 13:09:12 -0400 | [diff] [blame] | 17 | #include <linux/export.h> |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 18 | #include <linux/device.h> |
| 19 | #include <linux/fs.h> |
| 20 | #include <linux/cdev.h> |
| 21 | #include <linux/slab.h> |
| 22 | #include <linux/poll.h> |
| 23 | |
Jonathan Cameron | 06458e2 | 2012-04-25 15:54:58 +0100 | [diff] [blame] | 24 | #include <linux/iio/iio.h> |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 25 | #include "iio_core.h" |
Jonathan Cameron | 06458e2 | 2012-04-25 15:54:58 +0100 | [diff] [blame] | 26 | #include <linux/iio/sysfs.h> |
| 27 | #include <linux/iio/buffer.h> |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 28 | |
| 29 | static const char * const iio_endian_prefix[] = { |
| 30 | [IIO_BE] = "be", |
| 31 | [IIO_LE] = "le", |
| 32 | }; |
| 33 | |
Lars-Peter Clausen | 705ee2c | 2013-09-15 16:31:00 +0100 | [diff] [blame] | 34 | static bool iio_buffer_is_active(struct iio_buffer *buf) |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 35 | { |
Lars-Peter Clausen | 705ee2c | 2013-09-15 16:31:00 +0100 | [diff] [blame] | 36 | return !list_empty(&buf->buffer_list); |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 37 | } |
| 38 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 39 | /** |
| 40 | * iio_buffer_read_first_n_outer() - chrdev read for buffer access |
| 41 | * |
| 42 | * This function relies on all buffer implementations having an |
| 43 | * iio_buffer as their first element. |
| 44 | **/ |
| 45 | ssize_t iio_buffer_read_first_n_outer(struct file *filp, char __user *buf, |
| 46 | size_t n, loff_t *f_ps) |
| 47 | { |
| 48 | struct iio_dev *indio_dev = filp->private_data; |
| 49 | struct iio_buffer *rb = indio_dev->buffer; |
| 50 | |
Jonathan Cameron | 96e00f1 | 2011-10-26 17:27:45 +0100 | [diff] [blame] | 51 | if (!rb || !rb->access->read_first_n) |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 52 | return -EINVAL; |
| 53 | return rb->access->read_first_n(rb, n, buf); |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * iio_buffer_poll() - poll the buffer to find out if it has data |
| 58 | */ |
| 59 | unsigned int iio_buffer_poll(struct file *filp, |
| 60 | struct poll_table_struct *wait) |
| 61 | { |
| 62 | struct iio_dev *indio_dev = filp->private_data; |
| 63 | struct iio_buffer *rb = indio_dev->buffer; |
| 64 | |
| 65 | poll_wait(filp, &rb->pollq, wait); |
| 66 | if (rb->stufftoread) |
| 67 | return POLLIN | POLLRDNORM; |
| 68 | /* need a way of knowing if there may be enough data... */ |
| 69 | return 0; |
| 70 | } |
| 71 | |
Jonathan Cameron | f79a909 | 2011-12-05 22:18:29 +0000 | [diff] [blame] | 72 | void iio_buffer_init(struct iio_buffer *buffer) |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 73 | { |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 74 | INIT_LIST_HEAD(&buffer->demux_list); |
Lars-Peter Clausen | 705ee2c | 2013-09-15 16:31:00 +0100 | [diff] [blame] | 75 | INIT_LIST_HEAD(&buffer->buffer_list); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 76 | init_waitqueue_head(&buffer->pollq); |
| 77 | } |
| 78 | EXPORT_SYMBOL(iio_buffer_init); |
| 79 | |
| 80 | static ssize_t iio_show_scan_index(struct device *dev, |
| 81 | struct device_attribute *attr, |
| 82 | char *buf) |
| 83 | { |
| 84 | return sprintf(buf, "%u\n", to_iio_dev_attr(attr)->c->scan_index); |
| 85 | } |
| 86 | |
| 87 | static ssize_t iio_show_fixed_type(struct device *dev, |
| 88 | struct device_attribute *attr, |
| 89 | char *buf) |
| 90 | { |
| 91 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
| 92 | u8 type = this_attr->c->scan_type.endianness; |
| 93 | |
| 94 | if (type == IIO_CPU) { |
Jonathan Cameron | 9d5d115 | 2011-10-04 16:02:08 +0100 | [diff] [blame] | 95 | #ifdef __LITTLE_ENDIAN |
| 96 | type = IIO_LE; |
| 97 | #else |
| 98 | type = IIO_BE; |
| 99 | #endif |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 100 | } |
| 101 | return sprintf(buf, "%s:%c%d/%d>>%u\n", |
| 102 | iio_endian_prefix[type], |
| 103 | this_attr->c->scan_type.sign, |
| 104 | this_attr->c->scan_type.realbits, |
| 105 | this_attr->c->scan_type.storagebits, |
| 106 | this_attr->c->scan_type.shift); |
| 107 | } |
| 108 | |
| 109 | static ssize_t iio_scan_el_show(struct device *dev, |
| 110 | struct device_attribute *attr, |
| 111 | char *buf) |
| 112 | { |
| 113 | int ret; |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 114 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 115 | |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 116 | ret = test_bit(to_iio_dev_attr(attr)->address, |
| 117 | indio_dev->buffer->scan_mask); |
| 118 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 119 | return sprintf(buf, "%d\n", ret); |
| 120 | } |
| 121 | |
| 122 | static int iio_scan_mask_clear(struct iio_buffer *buffer, int bit) |
| 123 | { |
| 124 | clear_bit(bit, buffer->scan_mask); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 125 | return 0; |
| 126 | } |
| 127 | |
| 128 | static ssize_t iio_scan_el_store(struct device *dev, |
| 129 | struct device_attribute *attr, |
| 130 | const char *buf, |
| 131 | size_t len) |
| 132 | { |
Jonathan Cameron | a714af2 | 2012-04-21 10:09:32 +0100 | [diff] [blame] | 133 | int ret; |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 134 | bool state; |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 135 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 136 | struct iio_buffer *buffer = indio_dev->buffer; |
| 137 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
| 138 | |
Jonathan Cameron | a714af2 | 2012-04-21 10:09:32 +0100 | [diff] [blame] | 139 | ret = strtobool(buf, &state); |
| 140 | if (ret < 0) |
| 141 | return ret; |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 142 | mutex_lock(&indio_dev->mlock); |
Lars-Peter Clausen | 705ee2c | 2013-09-15 16:31:00 +0100 | [diff] [blame] | 143 | if (iio_buffer_is_active(indio_dev->buffer)) { |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 144 | ret = -EBUSY; |
| 145 | goto error_ret; |
| 146 | } |
Jonathan Cameron | f79a909 | 2011-12-05 22:18:29 +0000 | [diff] [blame] | 147 | ret = iio_scan_mask_query(indio_dev, buffer, this_attr->address); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 148 | if (ret < 0) |
| 149 | goto error_ret; |
| 150 | if (!state && ret) { |
| 151 | ret = iio_scan_mask_clear(buffer, this_attr->address); |
| 152 | if (ret) |
| 153 | goto error_ret; |
| 154 | } else if (state && !ret) { |
Jonathan Cameron | f79a909 | 2011-12-05 22:18:29 +0000 | [diff] [blame] | 155 | ret = iio_scan_mask_set(indio_dev, buffer, this_attr->address); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 156 | if (ret) |
| 157 | goto error_ret; |
| 158 | } |
| 159 | |
| 160 | error_ret: |
| 161 | mutex_unlock(&indio_dev->mlock); |
| 162 | |
Lars-Peter Clausen | 5a2a6e1 | 2011-12-08 18:35:53 +0100 | [diff] [blame] | 163 | return ret < 0 ? ret : len; |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 164 | |
| 165 | } |
| 166 | |
| 167 | static ssize_t iio_scan_el_ts_show(struct device *dev, |
| 168 | struct device_attribute *attr, |
| 169 | char *buf) |
| 170 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 171 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 172 | return sprintf(buf, "%d\n", indio_dev->buffer->scan_timestamp); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | static ssize_t iio_scan_el_ts_store(struct device *dev, |
| 176 | struct device_attribute *attr, |
| 177 | const char *buf, |
| 178 | size_t len) |
| 179 | { |
Jonathan Cameron | a714af2 | 2012-04-21 10:09:32 +0100 | [diff] [blame] | 180 | int ret; |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 181 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 182 | bool state; |
| 183 | |
Jonathan Cameron | a714af2 | 2012-04-21 10:09:32 +0100 | [diff] [blame] | 184 | ret = strtobool(buf, &state); |
| 185 | if (ret < 0) |
| 186 | return ret; |
| 187 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 188 | mutex_lock(&indio_dev->mlock); |
Lars-Peter Clausen | 705ee2c | 2013-09-15 16:31:00 +0100 | [diff] [blame] | 189 | if (iio_buffer_is_active(indio_dev->buffer)) { |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 190 | ret = -EBUSY; |
| 191 | goto error_ret; |
| 192 | } |
| 193 | indio_dev->buffer->scan_timestamp = state; |
| 194 | error_ret: |
| 195 | mutex_unlock(&indio_dev->mlock); |
| 196 | |
| 197 | return ret ? ret : len; |
| 198 | } |
| 199 | |
| 200 | static int iio_buffer_add_channel_sysfs(struct iio_dev *indio_dev, |
| 201 | const struct iio_chan_spec *chan) |
| 202 | { |
| 203 | int ret, attrcount = 0; |
| 204 | struct iio_buffer *buffer = indio_dev->buffer; |
| 205 | |
| 206 | ret = __iio_add_chan_devattr("index", |
| 207 | chan, |
| 208 | &iio_show_scan_index, |
| 209 | NULL, |
| 210 | 0, |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame^] | 211 | IIO_SEPARATE, |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 212 | &indio_dev->dev, |
| 213 | &buffer->scan_el_dev_attr_list); |
| 214 | if (ret) |
| 215 | goto error_ret; |
| 216 | attrcount++; |
| 217 | ret = __iio_add_chan_devattr("type", |
| 218 | chan, |
| 219 | &iio_show_fixed_type, |
| 220 | NULL, |
| 221 | 0, |
| 222 | 0, |
| 223 | &indio_dev->dev, |
| 224 | &buffer->scan_el_dev_attr_list); |
| 225 | if (ret) |
| 226 | goto error_ret; |
| 227 | attrcount++; |
| 228 | if (chan->type != IIO_TIMESTAMP) |
| 229 | ret = __iio_add_chan_devattr("en", |
| 230 | chan, |
| 231 | &iio_scan_el_show, |
| 232 | &iio_scan_el_store, |
| 233 | chan->scan_index, |
| 234 | 0, |
| 235 | &indio_dev->dev, |
| 236 | &buffer->scan_el_dev_attr_list); |
| 237 | else |
| 238 | ret = __iio_add_chan_devattr("en", |
| 239 | chan, |
| 240 | &iio_scan_el_ts_show, |
| 241 | &iio_scan_el_ts_store, |
| 242 | chan->scan_index, |
| 243 | 0, |
| 244 | &indio_dev->dev, |
| 245 | &buffer->scan_el_dev_attr_list); |
| 246 | attrcount++; |
| 247 | ret = attrcount; |
| 248 | error_ret: |
| 249 | return ret; |
| 250 | } |
| 251 | |
| 252 | static void iio_buffer_remove_and_free_scan_dev_attr(struct iio_dev *indio_dev, |
| 253 | struct iio_dev_attr *p) |
| 254 | { |
| 255 | kfree(p->dev_attr.attr.name); |
| 256 | kfree(p); |
| 257 | } |
| 258 | |
| 259 | static void __iio_buffer_attr_cleanup(struct iio_dev *indio_dev) |
| 260 | { |
| 261 | struct iio_dev_attr *p, *n; |
| 262 | struct iio_buffer *buffer = indio_dev->buffer; |
| 263 | |
| 264 | list_for_each_entry_safe(p, n, |
| 265 | &buffer->scan_el_dev_attr_list, l) |
| 266 | iio_buffer_remove_and_free_scan_dev_attr(indio_dev, p); |
| 267 | } |
| 268 | |
| 269 | static const char * const iio_scan_elements_group_name = "scan_elements"; |
| 270 | |
| 271 | int iio_buffer_register(struct iio_dev *indio_dev, |
| 272 | const struct iio_chan_spec *channels, |
| 273 | int num_channels) |
| 274 | { |
| 275 | struct iio_dev_attr *p; |
| 276 | struct attribute **attr; |
| 277 | struct iio_buffer *buffer = indio_dev->buffer; |
| 278 | int ret, i, attrn, attrcount, attrcount_orig = 0; |
| 279 | |
| 280 | if (buffer->attrs) |
| 281 | indio_dev->groups[indio_dev->groupcounter++] = buffer->attrs; |
| 282 | |
| 283 | if (buffer->scan_el_attrs != NULL) { |
| 284 | attr = buffer->scan_el_attrs->attrs; |
| 285 | while (*attr++ != NULL) |
| 286 | attrcount_orig++; |
| 287 | } |
| 288 | attrcount = attrcount_orig; |
| 289 | INIT_LIST_HEAD(&buffer->scan_el_dev_attr_list); |
| 290 | if (channels) { |
| 291 | /* new magic */ |
| 292 | for (i = 0; i < num_channels; i++) { |
Lars-Peter Clausen | f5b81dd | 2012-06-18 18:33:47 +0200 | [diff] [blame] | 293 | if (channels[i].scan_index < 0) |
| 294 | continue; |
| 295 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 296 | /* Establish necessary mask length */ |
| 297 | if (channels[i].scan_index > |
| 298 | (int)indio_dev->masklength - 1) |
| 299 | indio_dev->masklength |
Lars-Peter Clausen | e1dc7be | 2012-07-02 14:52:56 +0200 | [diff] [blame] | 300 | = channels[i].scan_index + 1; |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 301 | |
| 302 | ret = iio_buffer_add_channel_sysfs(indio_dev, |
| 303 | &channels[i]); |
| 304 | if (ret < 0) |
| 305 | goto error_cleanup_dynamic; |
| 306 | attrcount += ret; |
Jonathan Cameron | beb8060 | 2011-12-05 21:37:11 +0000 | [diff] [blame] | 307 | if (channels[i].type == IIO_TIMESTAMP) |
Jonathan Cameron | f126480 | 2012-04-21 10:09:34 +0100 | [diff] [blame] | 308 | indio_dev->scan_index_timestamp = |
Jonathan Cameron | beb8060 | 2011-12-05 21:37:11 +0000 | [diff] [blame] | 309 | channels[i].scan_index; |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 310 | } |
| 311 | if (indio_dev->masklength && buffer->scan_mask == NULL) { |
Thomas Meyer | d83fb18 | 2011-11-29 22:08:00 +0100 | [diff] [blame] | 312 | buffer->scan_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength), |
| 313 | sizeof(*buffer->scan_mask), |
| 314 | GFP_KERNEL); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 315 | if (buffer->scan_mask == NULL) { |
| 316 | ret = -ENOMEM; |
| 317 | goto error_cleanup_dynamic; |
| 318 | } |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | buffer->scan_el_group.name = iio_scan_elements_group_name; |
| 323 | |
Thomas Meyer | d83fb18 | 2011-11-29 22:08:00 +0100 | [diff] [blame] | 324 | buffer->scan_el_group.attrs = kcalloc(attrcount + 1, |
| 325 | sizeof(buffer->scan_el_group.attrs[0]), |
| 326 | GFP_KERNEL); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 327 | if (buffer->scan_el_group.attrs == NULL) { |
| 328 | ret = -ENOMEM; |
| 329 | goto error_free_scan_mask; |
| 330 | } |
| 331 | if (buffer->scan_el_attrs) |
| 332 | memcpy(buffer->scan_el_group.attrs, buffer->scan_el_attrs, |
| 333 | sizeof(buffer->scan_el_group.attrs[0])*attrcount_orig); |
| 334 | attrn = attrcount_orig; |
| 335 | |
| 336 | list_for_each_entry(p, &buffer->scan_el_dev_attr_list, l) |
| 337 | buffer->scan_el_group.attrs[attrn++] = &p->dev_attr.attr; |
| 338 | indio_dev->groups[indio_dev->groupcounter++] = &buffer->scan_el_group; |
| 339 | |
| 340 | return 0; |
| 341 | |
| 342 | error_free_scan_mask: |
| 343 | kfree(buffer->scan_mask); |
| 344 | error_cleanup_dynamic: |
| 345 | __iio_buffer_attr_cleanup(indio_dev); |
| 346 | |
| 347 | return ret; |
| 348 | } |
| 349 | EXPORT_SYMBOL(iio_buffer_register); |
| 350 | |
| 351 | void iio_buffer_unregister(struct iio_dev *indio_dev) |
| 352 | { |
| 353 | kfree(indio_dev->buffer->scan_mask); |
| 354 | kfree(indio_dev->buffer->scan_el_group.attrs); |
| 355 | __iio_buffer_attr_cleanup(indio_dev); |
| 356 | } |
| 357 | EXPORT_SYMBOL(iio_buffer_unregister); |
| 358 | |
| 359 | ssize_t iio_buffer_read_length(struct device *dev, |
| 360 | struct device_attribute *attr, |
| 361 | char *buf) |
| 362 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 363 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 364 | struct iio_buffer *buffer = indio_dev->buffer; |
| 365 | |
| 366 | if (buffer->access->get_length) |
| 367 | return sprintf(buf, "%d\n", |
| 368 | buffer->access->get_length(buffer)); |
| 369 | |
| 370 | return 0; |
| 371 | } |
| 372 | EXPORT_SYMBOL(iio_buffer_read_length); |
| 373 | |
| 374 | ssize_t iio_buffer_write_length(struct device *dev, |
| 375 | struct device_attribute *attr, |
| 376 | const char *buf, |
| 377 | size_t len) |
| 378 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 379 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 380 | struct iio_buffer *buffer = indio_dev->buffer; |
Lars-Peter Clausen | 948ad20 | 2012-10-18 14:47:00 +0100 | [diff] [blame] | 381 | unsigned int val; |
| 382 | int ret; |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 383 | |
Lars-Peter Clausen | 948ad20 | 2012-10-18 14:47:00 +0100 | [diff] [blame] | 384 | ret = kstrtouint(buf, 10, &val); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 385 | if (ret) |
| 386 | return ret; |
| 387 | |
| 388 | if (buffer->access->get_length) |
| 389 | if (val == buffer->access->get_length(buffer)) |
| 390 | return len; |
| 391 | |
Lars-Peter Clausen | e38c79e | 2011-12-19 15:23:44 +0100 | [diff] [blame] | 392 | mutex_lock(&indio_dev->mlock); |
Lars-Peter Clausen | 705ee2c | 2013-09-15 16:31:00 +0100 | [diff] [blame] | 393 | if (iio_buffer_is_active(indio_dev->buffer)) { |
Lars-Peter Clausen | e38c79e | 2011-12-19 15:23:44 +0100 | [diff] [blame] | 394 | ret = -EBUSY; |
| 395 | } else { |
Lars-Peter Clausen | 869871b | 2011-12-19 15:23:48 +0100 | [diff] [blame] | 396 | if (buffer->access->set_length) |
Lars-Peter Clausen | e38c79e | 2011-12-19 15:23:44 +0100 | [diff] [blame] | 397 | buffer->access->set_length(buffer, val); |
Lars-Peter Clausen | e38c79e | 2011-12-19 15:23:44 +0100 | [diff] [blame] | 398 | ret = 0; |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 399 | } |
Lars-Peter Clausen | e38c79e | 2011-12-19 15:23:44 +0100 | [diff] [blame] | 400 | mutex_unlock(&indio_dev->mlock); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 401 | |
Lars-Peter Clausen | e38c79e | 2011-12-19 15:23:44 +0100 | [diff] [blame] | 402 | return ret ? ret : len; |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 403 | } |
| 404 | EXPORT_SYMBOL(iio_buffer_write_length); |
| 405 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 406 | ssize_t iio_buffer_show_enable(struct device *dev, |
| 407 | struct device_attribute *attr, |
| 408 | char *buf) |
| 409 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 410 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Lars-Peter Clausen | 705ee2c | 2013-09-15 16:31:00 +0100 | [diff] [blame] | 411 | return sprintf(buf, "%d\n", iio_buffer_is_active(indio_dev->buffer)); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 412 | } |
| 413 | EXPORT_SYMBOL(iio_buffer_show_enable); |
| 414 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 415 | /* note NULL used as error indicator as it doesn't make sense. */ |
Michael Hennerich | cd4361c | 2012-02-22 13:16:49 +0100 | [diff] [blame] | 416 | static const unsigned long *iio_scan_mask_match(const unsigned long *av_masks, |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 417 | unsigned int masklength, |
Michael Hennerich | cd4361c | 2012-02-22 13:16:49 +0100 | [diff] [blame] | 418 | const unsigned long *mask) |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 419 | { |
| 420 | if (bitmap_empty(mask, masklength)) |
| 421 | return NULL; |
| 422 | while (*av_masks) { |
| 423 | if (bitmap_subset(mask, av_masks, masklength)) |
| 424 | return av_masks; |
| 425 | av_masks += BITS_TO_LONGS(masklength); |
| 426 | } |
| 427 | return NULL; |
| 428 | } |
| 429 | |
Jonathan Cameron | 6b3b58e | 2012-04-21 10:09:33 +0100 | [diff] [blame] | 430 | static int iio_compute_scan_bytes(struct iio_dev *indio_dev, const long *mask, |
| 431 | bool timestamp) |
Jonathan Cameron | 959d295 | 2011-12-05 21:37:13 +0000 | [diff] [blame] | 432 | { |
Jonathan Cameron | 959d295 | 2011-12-05 21:37:13 +0000 | [diff] [blame] | 433 | const struct iio_chan_spec *ch; |
| 434 | unsigned bytes = 0; |
| 435 | int length, i; |
Jonathan Cameron | 6b3b58e | 2012-04-21 10:09:33 +0100 | [diff] [blame] | 436 | |
| 437 | /* How much space will the demuxed element take? */ |
| 438 | for_each_set_bit(i, mask, |
| 439 | indio_dev->masklength) { |
| 440 | ch = iio_find_channel_from_si(indio_dev, i); |
| 441 | length = ch->scan_type.storagebits / 8; |
| 442 | bytes = ALIGN(bytes, length); |
| 443 | bytes += length; |
| 444 | } |
| 445 | if (timestamp) { |
| 446 | ch = iio_find_channel_from_si(indio_dev, |
Jonathan Cameron | f126480 | 2012-04-21 10:09:34 +0100 | [diff] [blame] | 447 | indio_dev->scan_index_timestamp); |
Jonathan Cameron | 6b3b58e | 2012-04-21 10:09:33 +0100 | [diff] [blame] | 448 | length = ch->scan_type.storagebits / 8; |
| 449 | bytes = ALIGN(bytes, length); |
| 450 | bytes += length; |
| 451 | } |
| 452 | return bytes; |
| 453 | } |
| 454 | |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 455 | int iio_update_buffers(struct iio_dev *indio_dev, |
| 456 | struct iio_buffer *insert_buffer, |
| 457 | struct iio_buffer *remove_buffer) |
Jonathan Cameron | 6b3b58e | 2012-04-21 10:09:33 +0100 | [diff] [blame] | 458 | { |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 459 | int ret; |
| 460 | int success = 0; |
| 461 | struct iio_buffer *buffer; |
| 462 | unsigned long *compound_mask; |
| 463 | const unsigned long *old_mask; |
Jonathan Cameron | 959d295 | 2011-12-05 21:37:13 +0000 | [diff] [blame] | 464 | |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 465 | /* Wind down existing buffers - iff there are any */ |
| 466 | if (!list_empty(&indio_dev->buffer_list)) { |
| 467 | if (indio_dev->setup_ops->predisable) { |
| 468 | ret = indio_dev->setup_ops->predisable(indio_dev); |
| 469 | if (ret) |
| 470 | goto error_ret; |
| 471 | } |
| 472 | indio_dev->currentmode = INDIO_DIRECT_MODE; |
| 473 | if (indio_dev->setup_ops->postdisable) { |
| 474 | ret = indio_dev->setup_ops->postdisable(indio_dev); |
| 475 | if (ret) |
| 476 | goto error_ret; |
| 477 | } |
| 478 | } |
| 479 | /* Keep a copy of current setup to allow roll back */ |
| 480 | old_mask = indio_dev->active_scan_mask; |
| 481 | if (!indio_dev->available_scan_masks) |
| 482 | indio_dev->active_scan_mask = NULL; |
| 483 | |
| 484 | if (remove_buffer) |
Lars-Peter Clausen | 705ee2c | 2013-09-15 16:31:00 +0100 | [diff] [blame] | 485 | list_del_init(&remove_buffer->buffer_list); |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 486 | if (insert_buffer) |
| 487 | list_add(&insert_buffer->buffer_list, &indio_dev->buffer_list); |
| 488 | |
| 489 | /* If no buffers in list, we are done */ |
| 490 | if (list_empty(&indio_dev->buffer_list)) { |
| 491 | indio_dev->currentmode = INDIO_DIRECT_MODE; |
| 492 | if (indio_dev->available_scan_masks == NULL) |
| 493 | kfree(old_mask); |
| 494 | return 0; |
| 495 | } |
Jonathan Cameron | 959d295 | 2011-12-05 21:37:13 +0000 | [diff] [blame] | 496 | |
| 497 | /* What scan mask do we actually have ?*/ |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 498 | compound_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength), |
| 499 | sizeof(long), GFP_KERNEL); |
| 500 | if (compound_mask == NULL) { |
| 501 | if (indio_dev->available_scan_masks == NULL) |
| 502 | kfree(old_mask); |
| 503 | return -ENOMEM; |
| 504 | } |
| 505 | indio_dev->scan_timestamp = 0; |
| 506 | |
| 507 | list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) { |
| 508 | bitmap_or(compound_mask, compound_mask, buffer->scan_mask, |
| 509 | indio_dev->masklength); |
| 510 | indio_dev->scan_timestamp |= buffer->scan_timestamp; |
| 511 | } |
| 512 | if (indio_dev->available_scan_masks) { |
Jonathan Cameron | 959d295 | 2011-12-05 21:37:13 +0000 | [diff] [blame] | 513 | indio_dev->active_scan_mask = |
| 514 | iio_scan_mask_match(indio_dev->available_scan_masks, |
| 515 | indio_dev->masklength, |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 516 | compound_mask); |
| 517 | if (indio_dev->active_scan_mask == NULL) { |
| 518 | /* |
| 519 | * Roll back. |
| 520 | * Note can only occur when adding a buffer. |
| 521 | */ |
Lars-Peter Clausen | 705ee2c | 2013-09-15 16:31:00 +0100 | [diff] [blame] | 522 | list_del_init(&insert_buffer->buffer_list); |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 523 | indio_dev->active_scan_mask = old_mask; |
| 524 | success = -EINVAL; |
| 525 | } |
| 526 | } else { |
| 527 | indio_dev->active_scan_mask = compound_mask; |
| 528 | } |
Lars-Peter Clausen | aff1eb4 | 2012-06-15 18:08:59 +0200 | [diff] [blame] | 529 | |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 530 | iio_update_demux(indio_dev); |
| 531 | |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 532 | /* Wind up again */ |
| 533 | if (indio_dev->setup_ops->preenable) { |
| 534 | ret = indio_dev->setup_ops->preenable(indio_dev); |
| 535 | if (ret) { |
| 536 | printk(KERN_ERR |
Michał Mirosław | bec1889 | 2013-05-04 14:19:00 +0100 | [diff] [blame] | 537 | "Buffer not started: buffer preenable failed (%d)\n", ret); |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 538 | goto error_remove_inserted; |
| 539 | } |
| 540 | } |
| 541 | indio_dev->scan_bytes = |
| 542 | iio_compute_scan_bytes(indio_dev, |
| 543 | indio_dev->active_scan_mask, |
| 544 | indio_dev->scan_timestamp); |
| 545 | list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) |
| 546 | if (buffer->access->request_update) { |
| 547 | ret = buffer->access->request_update(buffer); |
| 548 | if (ret) { |
| 549 | printk(KERN_INFO |
Michał Mirosław | bec1889 | 2013-05-04 14:19:00 +0100 | [diff] [blame] | 550 | "Buffer not started: buffer parameter update failed (%d)\n", ret); |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 551 | goto error_run_postdisable; |
| 552 | } |
| 553 | } |
| 554 | if (indio_dev->info->update_scan_mode) { |
| 555 | ret = indio_dev->info |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 556 | ->update_scan_mode(indio_dev, |
| 557 | indio_dev->active_scan_mask); |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 558 | if (ret < 0) { |
Michał Mirosław | bec1889 | 2013-05-04 14:19:00 +0100 | [diff] [blame] | 559 | printk(KERN_INFO "Buffer not started: update scan mode failed (%d)\n", ret); |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 560 | goto error_run_postdisable; |
| 561 | } |
| 562 | } |
| 563 | /* Definitely possible for devices to support both of these.*/ |
| 564 | if (indio_dev->modes & INDIO_BUFFER_TRIGGERED) { |
| 565 | if (!indio_dev->trig) { |
| 566 | printk(KERN_INFO "Buffer not started: no trigger\n"); |
| 567 | ret = -EINVAL; |
| 568 | /* Can only occur on first buffer */ |
| 569 | goto error_run_postdisable; |
| 570 | } |
| 571 | indio_dev->currentmode = INDIO_BUFFER_TRIGGERED; |
| 572 | } else if (indio_dev->modes & INDIO_BUFFER_HARDWARE) { |
| 573 | indio_dev->currentmode = INDIO_BUFFER_HARDWARE; |
| 574 | } else { /* should never be reached */ |
| 575 | ret = -EINVAL; |
| 576 | goto error_run_postdisable; |
| 577 | } |
| 578 | |
| 579 | if (indio_dev->setup_ops->postenable) { |
| 580 | ret = indio_dev->setup_ops->postenable(indio_dev); |
| 581 | if (ret) { |
| 582 | printk(KERN_INFO |
Michał Mirosław | bec1889 | 2013-05-04 14:19:00 +0100 | [diff] [blame] | 583 | "Buffer not started: postenable failed (%d)\n", ret); |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 584 | indio_dev->currentmode = INDIO_DIRECT_MODE; |
| 585 | if (indio_dev->setup_ops->postdisable) |
| 586 | indio_dev->setup_ops->postdisable(indio_dev); |
| 587 | goto error_disable_all_buffers; |
| 588 | } |
| 589 | } |
| 590 | |
| 591 | if (indio_dev->available_scan_masks) |
| 592 | kfree(compound_mask); |
| 593 | else |
| 594 | kfree(old_mask); |
| 595 | |
| 596 | return success; |
| 597 | |
| 598 | error_disable_all_buffers: |
| 599 | indio_dev->currentmode = INDIO_DIRECT_MODE; |
| 600 | error_run_postdisable: |
| 601 | if (indio_dev->setup_ops->postdisable) |
| 602 | indio_dev->setup_ops->postdisable(indio_dev); |
| 603 | error_remove_inserted: |
| 604 | |
| 605 | if (insert_buffer) |
Lars-Peter Clausen | 705ee2c | 2013-09-15 16:31:00 +0100 | [diff] [blame] | 606 | list_del_init(&insert_buffer->buffer_list); |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 607 | indio_dev->active_scan_mask = old_mask; |
| 608 | kfree(compound_mask); |
| 609 | error_ret: |
| 610 | |
| 611 | return ret; |
| 612 | } |
| 613 | EXPORT_SYMBOL_GPL(iio_update_buffers); |
| 614 | |
| 615 | ssize_t iio_buffer_store_enable(struct device *dev, |
| 616 | struct device_attribute *attr, |
| 617 | const char *buf, |
| 618 | size_t len) |
| 619 | { |
| 620 | int ret; |
| 621 | bool requested_state; |
| 622 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 623 | bool inlist; |
| 624 | |
| 625 | ret = strtobool(buf, &requested_state); |
| 626 | if (ret < 0) |
| 627 | return ret; |
| 628 | |
| 629 | mutex_lock(&indio_dev->mlock); |
| 630 | |
| 631 | /* Find out if it is in the list */ |
Lars-Peter Clausen | 705ee2c | 2013-09-15 16:31:00 +0100 | [diff] [blame] | 632 | inlist = iio_buffer_is_active(indio_dev->buffer); |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 633 | /* Already in desired state */ |
| 634 | if (inlist == requested_state) |
| 635 | goto done; |
| 636 | |
| 637 | if (requested_state) |
| 638 | ret = iio_update_buffers(indio_dev, |
| 639 | indio_dev->buffer, NULL); |
| 640 | else |
| 641 | ret = iio_update_buffers(indio_dev, |
| 642 | NULL, indio_dev->buffer); |
| 643 | |
| 644 | if (ret < 0) |
| 645 | goto done; |
| 646 | done: |
| 647 | mutex_unlock(&indio_dev->mlock); |
| 648 | return (ret < 0) ? ret : len; |
| 649 | } |
| 650 | EXPORT_SYMBOL(iio_buffer_store_enable); |
| 651 | |
| 652 | int iio_sw_buffer_preenable(struct iio_dev *indio_dev) |
| 653 | { |
| 654 | struct iio_buffer *buffer; |
| 655 | unsigned bytes; |
| 656 | dev_dbg(&indio_dev->dev, "%s\n", __func__); |
| 657 | |
| 658 | list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) |
| 659 | if (buffer->access->set_bytes_per_datum) { |
| 660 | bytes = iio_compute_scan_bytes(indio_dev, |
| 661 | buffer->scan_mask, |
| 662 | buffer->scan_timestamp); |
| 663 | |
| 664 | buffer->access->set_bytes_per_datum(buffer, bytes); |
| 665 | } |
Jonathan Cameron | 959d295 | 2011-12-05 21:37:13 +0000 | [diff] [blame] | 666 | return 0; |
| 667 | } |
| 668 | EXPORT_SYMBOL(iio_sw_buffer_preenable); |
| 669 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 670 | /** |
Lars-Peter Clausen | 8163663 | 2012-07-09 10:00:00 +0100 | [diff] [blame] | 671 | * iio_validate_scan_mask_onehot() - Validates that exactly one channel is selected |
| 672 | * @indio_dev: the iio device |
| 673 | * @mask: scan mask to be checked |
| 674 | * |
| 675 | * Return true if exactly one bit is set in the scan mask, false otherwise. It |
| 676 | * can be used for devices where only one channel can be active for sampling at |
| 677 | * a time. |
| 678 | */ |
| 679 | bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev, |
| 680 | const unsigned long *mask) |
| 681 | { |
| 682 | return bitmap_weight(mask, indio_dev->masklength) == 1; |
| 683 | } |
| 684 | EXPORT_SYMBOL_GPL(iio_validate_scan_mask_onehot); |
| 685 | |
Lars-Peter Clausen | 939546d | 2012-07-09 10:00:00 +0100 | [diff] [blame] | 686 | static bool iio_validate_scan_mask(struct iio_dev *indio_dev, |
| 687 | const unsigned long *mask) |
| 688 | { |
| 689 | if (!indio_dev->setup_ops->validate_scan_mask) |
| 690 | return true; |
| 691 | |
| 692 | return indio_dev->setup_ops->validate_scan_mask(indio_dev, mask); |
| 693 | } |
| 694 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 695 | /** |
| 696 | * iio_scan_mask_set() - set particular bit in the scan mask |
| 697 | * @buffer: the buffer whose scan mask we are interested in |
| 698 | * @bit: the bit to be set. |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 699 | * |
| 700 | * Note that at this point we have no way of knowing what other |
| 701 | * buffers might request, hence this code only verifies that the |
| 702 | * individual buffers request is plausible. |
| 703 | */ |
Jonathan Cameron | f79a909 | 2011-12-05 22:18:29 +0000 | [diff] [blame] | 704 | int iio_scan_mask_set(struct iio_dev *indio_dev, |
| 705 | struct iio_buffer *buffer, int bit) |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 706 | { |
Michael Hennerich | cd4361c | 2012-02-22 13:16:49 +0100 | [diff] [blame] | 707 | const unsigned long *mask; |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 708 | unsigned long *trialmask; |
| 709 | |
| 710 | trialmask = kmalloc(sizeof(*trialmask)* |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 711 | BITS_TO_LONGS(indio_dev->masklength), |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 712 | GFP_KERNEL); |
| 713 | |
| 714 | if (trialmask == NULL) |
| 715 | return -ENOMEM; |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 716 | if (!indio_dev->masklength) { |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 717 | WARN_ON("trying to set scanmask prior to registering buffer\n"); |
Lars-Peter Clausen | 939546d | 2012-07-09 10:00:00 +0100 | [diff] [blame] | 718 | goto err_invalid_mask; |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 719 | } |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 720 | bitmap_copy(trialmask, buffer->scan_mask, indio_dev->masklength); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 721 | set_bit(bit, trialmask); |
| 722 | |
Lars-Peter Clausen | 939546d | 2012-07-09 10:00:00 +0100 | [diff] [blame] | 723 | if (!iio_validate_scan_mask(indio_dev, trialmask)) |
| 724 | goto err_invalid_mask; |
| 725 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 726 | if (indio_dev->available_scan_masks) { |
| 727 | mask = iio_scan_mask_match(indio_dev->available_scan_masks, |
| 728 | indio_dev->masklength, |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 729 | trialmask); |
Lars-Peter Clausen | 939546d | 2012-07-09 10:00:00 +0100 | [diff] [blame] | 730 | if (!mask) |
| 731 | goto err_invalid_mask; |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 732 | } |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 733 | bitmap_copy(buffer->scan_mask, trialmask, indio_dev->masklength); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 734 | |
| 735 | kfree(trialmask); |
| 736 | |
| 737 | return 0; |
Lars-Peter Clausen | 939546d | 2012-07-09 10:00:00 +0100 | [diff] [blame] | 738 | |
| 739 | err_invalid_mask: |
| 740 | kfree(trialmask); |
| 741 | return -EINVAL; |
| 742 | } |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 743 | EXPORT_SYMBOL_GPL(iio_scan_mask_set); |
| 744 | |
Jonathan Cameron | f79a909 | 2011-12-05 22:18:29 +0000 | [diff] [blame] | 745 | int iio_scan_mask_query(struct iio_dev *indio_dev, |
| 746 | struct iio_buffer *buffer, int bit) |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 747 | { |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 748 | if (bit > indio_dev->masklength) |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 749 | return -EINVAL; |
| 750 | |
| 751 | if (!buffer->scan_mask) |
| 752 | return 0; |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 753 | |
Lars-Peter Clausen | 5a2a6e1 | 2011-12-08 18:35:53 +0100 | [diff] [blame] | 754 | return test_bit(bit, buffer->scan_mask); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 755 | }; |
| 756 | EXPORT_SYMBOL_GPL(iio_scan_mask_query); |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 757 | |
| 758 | /** |
| 759 | * struct iio_demux_table() - table describing demux memcpy ops |
| 760 | * @from: index to copy from |
Peter Meerwald | 99698b4 | 2012-08-26 13:43:00 +0100 | [diff] [blame] | 761 | * @to: index to copy to |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 762 | * @length: how many bytes to copy |
| 763 | * @l: list head used for management |
| 764 | */ |
| 765 | struct iio_demux_table { |
| 766 | unsigned from; |
| 767 | unsigned to; |
| 768 | unsigned length; |
| 769 | struct list_head l; |
| 770 | }; |
| 771 | |
| 772 | static unsigned char *iio_demux(struct iio_buffer *buffer, |
| 773 | unsigned char *datain) |
| 774 | { |
| 775 | struct iio_demux_table *t; |
| 776 | |
| 777 | if (list_empty(&buffer->demux_list)) |
| 778 | return datain; |
| 779 | list_for_each_entry(t, &buffer->demux_list, l) |
| 780 | memcpy(buffer->demux_bounce + t->to, |
| 781 | datain + t->from, t->length); |
| 782 | |
| 783 | return buffer->demux_bounce; |
| 784 | } |
| 785 | |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 786 | static int iio_push_to_buffer(struct iio_buffer *buffer, unsigned char *data) |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 787 | { |
| 788 | unsigned char *dataout = iio_demux(buffer, data); |
| 789 | |
Lars-Peter Clausen | ce56ade | 2012-09-04 13:38:00 +0100 | [diff] [blame] | 790 | return buffer->access->store_to(buffer, dataout); |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 791 | } |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 792 | |
Jonathan Cameron | 842cd10 | 2012-04-21 10:09:45 +0100 | [diff] [blame] | 793 | static void iio_buffer_demux_free(struct iio_buffer *buffer) |
| 794 | { |
| 795 | struct iio_demux_table *p, *q; |
| 796 | list_for_each_entry_safe(p, q, &buffer->demux_list, l) { |
| 797 | list_del(&p->l); |
| 798 | kfree(p); |
| 799 | } |
| 800 | } |
| 801 | |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 802 | |
| 803 | int iio_push_to_buffers(struct iio_dev *indio_dev, unsigned char *data) |
| 804 | { |
| 805 | int ret; |
| 806 | struct iio_buffer *buf; |
| 807 | |
| 808 | list_for_each_entry(buf, &indio_dev->buffer_list, buffer_list) { |
| 809 | ret = iio_push_to_buffer(buf, data); |
| 810 | if (ret < 0) |
| 811 | return ret; |
| 812 | } |
| 813 | |
| 814 | return 0; |
| 815 | } |
| 816 | EXPORT_SYMBOL_GPL(iio_push_to_buffers); |
| 817 | |
| 818 | static int iio_buffer_update_demux(struct iio_dev *indio_dev, |
| 819 | struct iio_buffer *buffer) |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 820 | { |
| 821 | const struct iio_chan_spec *ch; |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 822 | int ret, in_ind = -1, out_ind, length; |
| 823 | unsigned in_loc = 0, out_loc = 0; |
Jonathan Cameron | 842cd10 | 2012-04-21 10:09:45 +0100 | [diff] [blame] | 824 | struct iio_demux_table *p; |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 825 | |
| 826 | /* Clear out any old demux */ |
Jonathan Cameron | 842cd10 | 2012-04-21 10:09:45 +0100 | [diff] [blame] | 827 | iio_buffer_demux_free(buffer); |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 828 | kfree(buffer->demux_bounce); |
| 829 | buffer->demux_bounce = NULL; |
| 830 | |
| 831 | /* First work out which scan mode we will actually have */ |
| 832 | if (bitmap_equal(indio_dev->active_scan_mask, |
| 833 | buffer->scan_mask, |
| 834 | indio_dev->masklength)) |
| 835 | return 0; |
| 836 | |
| 837 | /* Now we have the two masks, work from least sig and build up sizes */ |
| 838 | for_each_set_bit(out_ind, |
| 839 | indio_dev->active_scan_mask, |
| 840 | indio_dev->masklength) { |
| 841 | in_ind = find_next_bit(indio_dev->active_scan_mask, |
| 842 | indio_dev->masklength, |
| 843 | in_ind + 1); |
| 844 | while (in_ind != out_ind) { |
| 845 | in_ind = find_next_bit(indio_dev->active_scan_mask, |
| 846 | indio_dev->masklength, |
| 847 | in_ind + 1); |
| 848 | ch = iio_find_channel_from_si(indio_dev, in_ind); |
| 849 | length = ch->scan_type.storagebits/8; |
| 850 | /* Make sure we are aligned */ |
| 851 | in_loc += length; |
| 852 | if (in_loc % length) |
| 853 | in_loc += length - in_loc % length; |
| 854 | } |
| 855 | p = kmalloc(sizeof(*p), GFP_KERNEL); |
| 856 | if (p == NULL) { |
| 857 | ret = -ENOMEM; |
| 858 | goto error_clear_mux_table; |
| 859 | } |
| 860 | ch = iio_find_channel_from_si(indio_dev, in_ind); |
| 861 | length = ch->scan_type.storagebits/8; |
| 862 | if (out_loc % length) |
| 863 | out_loc += length - out_loc % length; |
| 864 | if (in_loc % length) |
| 865 | in_loc += length - in_loc % length; |
| 866 | p->from = in_loc; |
| 867 | p->to = out_loc; |
| 868 | p->length = length; |
| 869 | list_add_tail(&p->l, &buffer->demux_list); |
| 870 | out_loc += length; |
| 871 | in_loc += length; |
| 872 | } |
| 873 | /* Relies on scan_timestamp being last */ |
| 874 | if (buffer->scan_timestamp) { |
| 875 | p = kmalloc(sizeof(*p), GFP_KERNEL); |
| 876 | if (p == NULL) { |
| 877 | ret = -ENOMEM; |
| 878 | goto error_clear_mux_table; |
| 879 | } |
| 880 | ch = iio_find_channel_from_si(indio_dev, |
Jonathan Cameron | f126480 | 2012-04-21 10:09:34 +0100 | [diff] [blame] | 881 | indio_dev->scan_index_timestamp); |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 882 | length = ch->scan_type.storagebits/8; |
| 883 | if (out_loc % length) |
| 884 | out_loc += length - out_loc % length; |
| 885 | if (in_loc % length) |
| 886 | in_loc += length - in_loc % length; |
| 887 | p->from = in_loc; |
| 888 | p->to = out_loc; |
| 889 | p->length = length; |
| 890 | list_add_tail(&p->l, &buffer->demux_list); |
| 891 | out_loc += length; |
| 892 | in_loc += length; |
| 893 | } |
| 894 | buffer->demux_bounce = kzalloc(out_loc, GFP_KERNEL); |
| 895 | if (buffer->demux_bounce == NULL) { |
| 896 | ret = -ENOMEM; |
| 897 | goto error_clear_mux_table; |
| 898 | } |
| 899 | return 0; |
| 900 | |
| 901 | error_clear_mux_table: |
Jonathan Cameron | 842cd10 | 2012-04-21 10:09:45 +0100 | [diff] [blame] | 902 | iio_buffer_demux_free(buffer); |
| 903 | |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 904 | return ret; |
| 905 | } |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 906 | |
| 907 | int iio_update_demux(struct iio_dev *indio_dev) |
| 908 | { |
| 909 | struct iio_buffer *buffer; |
| 910 | int ret; |
| 911 | |
| 912 | list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) { |
| 913 | ret = iio_buffer_update_demux(indio_dev, buffer); |
| 914 | if (ret < 0) |
| 915 | goto error_clear_mux_table; |
| 916 | } |
| 917 | return 0; |
| 918 | |
| 919 | error_clear_mux_table: |
| 920 | list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) |
| 921 | iio_buffer_demux_free(buffer); |
| 922 | |
| 923 | return ret; |
| 924 | } |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 925 | EXPORT_SYMBOL_GPL(iio_update_demux); |