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