]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/iio/industrialio-buffer.c
iio: Set device watermark based on watermark of all attached buffers
[mirror_ubuntu-artful-kernel.git] / drivers / iio / industrialio-buffer.c
CommitLineData
7026ea4b
JC
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 *
14555b14 9 * Handling of buffer allocation / resizing.
7026ea4b
JC
10 *
11 *
12 * Things to look at here.
13 * - Better memory allocation techniques?
14 * - Alternative access techniques?
15 */
16#include <linux/kernel.h>
8e336a72 17#include <linux/export.h>
7026ea4b 18#include <linux/device.h>
7026ea4b 19#include <linux/fs.h>
7026ea4b 20#include <linux/cdev.h>
5a0e3ad6 21#include <linux/slab.h>
a7348347 22#include <linux/poll.h>
d2f0a48f 23#include <linux/sched.h>
7026ea4b 24
06458e27 25#include <linux/iio/iio.h>
df9c1c42 26#include "iio_core.h"
06458e27
JC
27#include <linux/iio/sysfs.h>
28#include <linux/iio/buffer.h>
7026ea4b 29
8310b86c
JC
30static const char * const iio_endian_prefix[] = {
31 [IIO_BE] = "be",
32 [IIO_LE] = "le",
33};
7026ea4b 34
705ee2c9 35static bool iio_buffer_is_active(struct iio_buffer *buf)
84b36ce5 36{
705ee2c9 37 return !list_empty(&buf->buffer_list);
84b36ce5
JC
38}
39
37d34556 40static size_t iio_buffer_data_available(struct iio_buffer *buf)
647cc7b9 41{
9dd4694d 42 return buf->access->data_available(buf);
647cc7b9
LPC
43}
44
f4f4673b
OP
45static int iio_buffer_flush_hwfifo(struct iio_dev *indio_dev,
46 struct iio_buffer *buf, size_t required)
47{
48 if (!indio_dev->info->hwfifo_flush_to_buffer)
49 return -ENODEV;
50
51 return indio_dev->info->hwfifo_flush_to_buffer(indio_dev, required);
52}
53
37d34556 54static bool iio_buffer_ready(struct iio_dev *indio_dev, struct iio_buffer *buf,
f4f4673b 55 size_t to_wait, int to_flush)
37d34556 56{
f4f4673b
OP
57 size_t avail;
58 int flushed = 0;
59
37d34556
JC
60 /* wakeup if the device was unregistered */
61 if (!indio_dev->info)
62 return true;
63
64 /* drain the buffer if it was disabled */
f4f4673b 65 if (!iio_buffer_is_active(buf)) {
37d34556 66 to_wait = min_t(size_t, to_wait, 1);
f4f4673b
OP
67 to_flush = 0;
68 }
69
70 avail = iio_buffer_data_available(buf);
37d34556 71
f4f4673b
OP
72 if (avail >= to_wait) {
73 /* force a flush for non-blocking reads */
c6f67a1f
OP
74 if (!to_wait && avail < to_flush)
75 iio_buffer_flush_hwfifo(indio_dev, buf,
76 to_flush - avail);
f4f4673b
OP
77 return true;
78 }
79
80 if (to_flush)
81 flushed = iio_buffer_flush_hwfifo(indio_dev, buf,
82 to_wait - avail);
83 if (flushed <= 0)
84 return false;
85
86 if (avail + flushed >= to_wait)
37d34556
JC
87 return true;
88
89 return false;
90}
91
7026ea4b 92/**
14555b14 93 * iio_buffer_read_first_n_outer() - chrdev read for buffer access
0123635a
CO
94 * @filp: File structure pointer for the char device
95 * @buf: Destination buffer for iio buffer read
96 * @n: First n bytes to read
97 * @f_ps: Long offset provided by the user as a seek position
7026ea4b 98 *
14555b14
JC
99 * This function relies on all buffer implementations having an
100 * iio_buffer as their first element.
0123635a
CO
101 *
102 * Return: negative values corresponding to error codes or ret != 0
103 * for ending the reading activity
7026ea4b 104 **/
14555b14
JC
105ssize_t iio_buffer_read_first_n_outer(struct file *filp, char __user *buf,
106 size_t n, loff_t *f_ps)
7026ea4b 107{
1aa04278 108 struct iio_dev *indio_dev = filp->private_data;
14555b14 109 struct iio_buffer *rb = indio_dev->buffer;
37d34556 110 size_t datum_size;
c6f67a1f 111 size_t to_wait;
ee551a10 112 int ret;
d5857d65 113
f18e7a06
LPC
114 if (!indio_dev->info)
115 return -ENODEV;
116
96e00f11 117 if (!rb || !rb->access->read_first_n)
7026ea4b 118 return -EINVAL;
ee551a10 119
37d34556
JC
120 datum_size = rb->bytes_per_datum;
121
122 /*
123 * If datum_size is 0 there will never be anything to read from the
124 * buffer, so signal end of file now.
125 */
126 if (!datum_size)
127 return 0;
128
c6f67a1f
OP
129 if (filp->f_flags & O_NONBLOCK)
130 to_wait = 0;
131 else
132 to_wait = min_t(size_t, n / datum_size, rb->watermark);
37d34556 133
ee551a10 134 do {
37d34556 135 ret = wait_event_interruptible(rb->pollq,
c6f67a1f 136 iio_buffer_ready(indio_dev, rb, to_wait, n / datum_size));
37d34556
JC
137 if (ret)
138 return ret;
ee551a10 139
37d34556
JC
140 if (!indio_dev->info)
141 return -ENODEV;
ee551a10
LPC
142
143 ret = rb->access->read_first_n(rb, n, buf);
144 if (ret == 0 && (filp->f_flags & O_NONBLOCK))
145 ret = -EAGAIN;
146 } while (ret == 0);
147
148 return ret;
7026ea4b
JC
149}
150
a7348347 151/**
14555b14 152 * iio_buffer_poll() - poll the buffer to find out if it has data
0123635a
CO
153 * @filp: File structure pointer for device access
154 * @wait: Poll table structure pointer for which the driver adds
155 * a wait queue
156 *
157 * Return: (POLLIN | POLLRDNORM) if data is available for reading
158 * or 0 for other cases
a7348347 159 */
14555b14
JC
160unsigned int iio_buffer_poll(struct file *filp,
161 struct poll_table_struct *wait)
a7348347 162{
1aa04278 163 struct iio_dev *indio_dev = filp->private_data;
14555b14 164 struct iio_buffer *rb = indio_dev->buffer;
a7348347 165
f18e7a06 166 if (!indio_dev->info)
1bdc0293 167 return 0;
f18e7a06 168
a7348347 169 poll_wait(filp, &rb->pollq, wait);
f4f4673b 170 if (iio_buffer_ready(indio_dev, rb, rb->watermark, 0))
a7348347 171 return POLLIN | POLLRDNORM;
8d213f24 172 return 0;
a7348347
JC
173}
174
d2f0a48f
LPC
175/**
176 * iio_buffer_wakeup_poll - Wakes up the buffer waitqueue
177 * @indio_dev: The IIO device
178 *
179 * Wakes up the event waitqueue used for poll(). Should usually
180 * be called when the device is unregistered.
181 */
182void iio_buffer_wakeup_poll(struct iio_dev *indio_dev)
183{
184 if (!indio_dev->buffer)
185 return;
186
187 wake_up(&indio_dev->buffer->pollq);
188}
189
f79a9098 190void iio_buffer_init(struct iio_buffer *buffer)
7026ea4b 191{
5ada4ea9 192 INIT_LIST_HEAD(&buffer->demux_list);
705ee2c9 193 INIT_LIST_HEAD(&buffer->buffer_list);
14555b14 194 init_waitqueue_head(&buffer->pollq);
9e69c935 195 kref_init(&buffer->ref);
37d34556 196 buffer->watermark = 1;
7026ea4b 197}
14555b14 198EXPORT_SYMBOL(iio_buffer_init);
7026ea4b 199
1d892719 200static ssize_t iio_show_scan_index(struct device *dev,
8d213f24
JC
201 struct device_attribute *attr,
202 char *buf)
1d892719 203{
8d213f24 204 return sprintf(buf, "%u\n", to_iio_dev_attr(attr)->c->scan_index);
1d892719
JC
205}
206
207static ssize_t iio_show_fixed_type(struct device *dev,
208 struct device_attribute *attr,
209 char *buf)
210{
211 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
8310b86c
JC
212 u8 type = this_attr->c->scan_type.endianness;
213
214 if (type == IIO_CPU) {
9d5d1153
JC
215#ifdef __LITTLE_ENDIAN
216 type = IIO_LE;
217#else
218 type = IIO_BE;
219#endif
8310b86c 220 }
0ee8546a
SP
221 if (this_attr->c->scan_type.repeat > 1)
222 return sprintf(buf, "%s:%c%d/%dX%d>>%u\n",
223 iio_endian_prefix[type],
224 this_attr->c->scan_type.sign,
225 this_attr->c->scan_type.realbits,
226 this_attr->c->scan_type.storagebits,
227 this_attr->c->scan_type.repeat,
228 this_attr->c->scan_type.shift);
229 else
230 return sprintf(buf, "%s:%c%d/%d>>%u\n",
8310b86c 231 iio_endian_prefix[type],
1d892719
JC
232 this_attr->c->scan_type.sign,
233 this_attr->c->scan_type.realbits,
234 this_attr->c->scan_type.storagebits,
235 this_attr->c->scan_type.shift);
236}
237
8d213f24
JC
238static ssize_t iio_scan_el_show(struct device *dev,
239 struct device_attribute *attr,
240 char *buf)
241{
242 int ret;
e53f5ac5 243 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
8d213f24 244
2076a20f
AB
245 /* Ensure ret is 0 or 1. */
246 ret = !!test_bit(to_iio_dev_attr(attr)->address,
5ada4ea9
JC
247 indio_dev->buffer->scan_mask);
248
8d213f24
JC
249 return sprintf(buf, "%d\n", ret);
250}
251
217a5cf0
LPC
252/* Note NULL used as error indicator as it doesn't make sense. */
253static const unsigned long *iio_scan_mask_match(const unsigned long *av_masks,
254 unsigned int masklength,
1e1ec286
LPC
255 const unsigned long *mask,
256 bool strict)
217a5cf0
LPC
257{
258 if (bitmap_empty(mask, masklength))
259 return NULL;
260 while (*av_masks) {
1e1ec286
LPC
261 if (strict) {
262 if (bitmap_equal(mask, av_masks, masklength))
263 return av_masks;
264 } else {
265 if (bitmap_subset(mask, av_masks, masklength))
266 return av_masks;
267 }
217a5cf0
LPC
268 av_masks += BITS_TO_LONGS(masklength);
269 }
270 return NULL;
271}
272
273static bool iio_validate_scan_mask(struct iio_dev *indio_dev,
274 const unsigned long *mask)
275{
276 if (!indio_dev->setup_ops->validate_scan_mask)
277 return true;
278
279 return indio_dev->setup_ops->validate_scan_mask(indio_dev, mask);
280}
281
282/**
283 * iio_scan_mask_set() - set particular bit in the scan mask
284 * @indio_dev: the iio device
285 * @buffer: the buffer whose scan mask we are interested in
286 * @bit: the bit to be set.
287 *
288 * Note that at this point we have no way of knowing what other
289 * buffers might request, hence this code only verifies that the
290 * individual buffers request is plausible.
291 */
292static int iio_scan_mask_set(struct iio_dev *indio_dev,
293 struct iio_buffer *buffer, int bit)
294{
295 const unsigned long *mask;
296 unsigned long *trialmask;
297
298 trialmask = kmalloc(sizeof(*trialmask)*
299 BITS_TO_LONGS(indio_dev->masklength),
300 GFP_KERNEL);
301
302 if (trialmask == NULL)
303 return -ENOMEM;
304 if (!indio_dev->masklength) {
305 WARN_ON("Trying to set scanmask prior to registering buffer\n");
306 goto err_invalid_mask;
307 }
308 bitmap_copy(trialmask, buffer->scan_mask, indio_dev->masklength);
309 set_bit(bit, trialmask);
310
311 if (!iio_validate_scan_mask(indio_dev, trialmask))
312 goto err_invalid_mask;
313
314 if (indio_dev->available_scan_masks) {
315 mask = iio_scan_mask_match(indio_dev->available_scan_masks,
316 indio_dev->masklength,
1e1ec286 317 trialmask, false);
217a5cf0
LPC
318 if (!mask)
319 goto err_invalid_mask;
320 }
321 bitmap_copy(buffer->scan_mask, trialmask, indio_dev->masklength);
322
323 kfree(trialmask);
324
325 return 0;
326
327err_invalid_mask:
328 kfree(trialmask);
329 return -EINVAL;
330}
331
14555b14 332static int iio_scan_mask_clear(struct iio_buffer *buffer, int bit)
8d213f24 333{
14555b14 334 clear_bit(bit, buffer->scan_mask);
8d213f24
JC
335 return 0;
336}
337
338static ssize_t iio_scan_el_store(struct device *dev,
339 struct device_attribute *attr,
340 const char *buf,
341 size_t len)
342{
a714af27 343 int ret;
8d213f24 344 bool state;
e53f5ac5 345 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
14555b14 346 struct iio_buffer *buffer = indio_dev->buffer;
8d213f24
JC
347 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
348
a714af27
JC
349 ret = strtobool(buf, &state);
350 if (ret < 0)
351 return ret;
8d213f24 352 mutex_lock(&indio_dev->mlock);
705ee2c9 353 if (iio_buffer_is_active(indio_dev->buffer)) {
8d213f24
JC
354 ret = -EBUSY;
355 goto error_ret;
356 }
f79a9098 357 ret = iio_scan_mask_query(indio_dev, buffer, this_attr->address);
8d213f24
JC
358 if (ret < 0)
359 goto error_ret;
360 if (!state && ret) {
14555b14 361 ret = iio_scan_mask_clear(buffer, this_attr->address);
8d213f24
JC
362 if (ret)
363 goto error_ret;
364 } else if (state && !ret) {
f79a9098 365 ret = iio_scan_mask_set(indio_dev, buffer, this_attr->address);
8d213f24
JC
366 if (ret)
367 goto error_ret;
368 }
369
370error_ret:
371 mutex_unlock(&indio_dev->mlock);
372
5a2a6e11 373 return ret < 0 ? ret : len;
8d213f24
JC
374
375}
376
377static ssize_t iio_scan_el_ts_show(struct device *dev,
378 struct device_attribute *attr,
379 char *buf)
380{
e53f5ac5 381 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
f8c6f4e9 382 return sprintf(buf, "%d\n", indio_dev->buffer->scan_timestamp);
8d213f24
JC
383}
384
385static ssize_t iio_scan_el_ts_store(struct device *dev,
386 struct device_attribute *attr,
387 const char *buf,
388 size_t len)
389{
a714af27 390 int ret;
e53f5ac5 391 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
8d213f24 392 bool state;
1aa04278 393
a714af27
JC
394 ret = strtobool(buf, &state);
395 if (ret < 0)
396 return ret;
397
8d213f24 398 mutex_lock(&indio_dev->mlock);
705ee2c9 399 if (iio_buffer_is_active(indio_dev->buffer)) {
8d213f24
JC
400 ret = -EBUSY;
401 goto error_ret;
402 }
14555b14 403 indio_dev->buffer->scan_timestamp = state;
8d213f24
JC
404error_ret:
405 mutex_unlock(&indio_dev->mlock);
406
407 return ret ? ret : len;
408}
409
14555b14
JC
410static int iio_buffer_add_channel_sysfs(struct iio_dev *indio_dev,
411 const struct iio_chan_spec *chan)
1d892719 412{
26d25ae3 413 int ret, attrcount = 0;
14555b14 414 struct iio_buffer *buffer = indio_dev->buffer;
1d892719 415
26d25ae3 416 ret = __iio_add_chan_devattr("index",
1d892719
JC
417 chan,
418 &iio_show_scan_index,
419 NULL,
420 0,
3704432f 421 IIO_SEPARATE,
1aa04278 422 &indio_dev->dev,
14555b14 423 &buffer->scan_el_dev_attr_list);
1d892719 424 if (ret)
92825ff9 425 return ret;
26d25ae3
JC
426 attrcount++;
427 ret = __iio_add_chan_devattr("type",
1d892719
JC
428 chan,
429 &iio_show_fixed_type,
430 NULL,
431 0,
432 0,
1aa04278 433 &indio_dev->dev,
14555b14 434 &buffer->scan_el_dev_attr_list);
1d892719 435 if (ret)
92825ff9 436 return ret;
26d25ae3 437 attrcount++;
a88b3ebc 438 if (chan->type != IIO_TIMESTAMP)
26d25ae3 439 ret = __iio_add_chan_devattr("en",
a88b3ebc
JC
440 chan,
441 &iio_scan_el_show,
442 &iio_scan_el_store,
443 chan->scan_index,
444 0,
1aa04278 445 &indio_dev->dev,
14555b14 446 &buffer->scan_el_dev_attr_list);
a88b3ebc 447 else
26d25ae3 448 ret = __iio_add_chan_devattr("en",
a88b3ebc
JC
449 chan,
450 &iio_scan_el_ts_show,
451 &iio_scan_el_ts_store,
452 chan->scan_index,
453 0,
1aa04278 454 &indio_dev->dev,
14555b14 455 &buffer->scan_el_dev_attr_list);
9572588c 456 if (ret)
92825ff9 457 return ret;
26d25ae3
JC
458 attrcount++;
459 ret = attrcount;
1d892719
JC
460 return ret;
461}
462
08e7e0ad
LPC
463static ssize_t iio_buffer_read_length(struct device *dev,
464 struct device_attribute *attr,
465 char *buf)
7026ea4b 466{
e53f5ac5 467 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
14555b14 468 struct iio_buffer *buffer = indio_dev->buffer;
7026ea4b 469
37495660 470 return sprintf(buf, "%d\n", buffer->length);
7026ea4b 471}
7026ea4b 472
08e7e0ad
LPC
473static ssize_t iio_buffer_write_length(struct device *dev,
474 struct device_attribute *attr,
475 const char *buf, size_t len)
7026ea4b 476{
e53f5ac5 477 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
14555b14 478 struct iio_buffer *buffer = indio_dev->buffer;
948ad205
LPC
479 unsigned int val;
480 int ret;
8d213f24 481
948ad205 482 ret = kstrtouint(buf, 10, &val);
7026ea4b
JC
483 if (ret)
484 return ret;
485
37495660
LPC
486 if (val == buffer->length)
487 return len;
7026ea4b 488
e38c79e0 489 mutex_lock(&indio_dev->mlock);
705ee2c9 490 if (iio_buffer_is_active(indio_dev->buffer)) {
e38c79e0
LPC
491 ret = -EBUSY;
492 } else {
8d92db28 493 buffer->access->set_length(buffer, val);
e38c79e0 494 ret = 0;
7026ea4b 495 }
37d34556
JC
496 if (ret)
497 goto out;
498 if (buffer->length && buffer->length < buffer->watermark)
499 buffer->watermark = buffer->length;
500out:
e38c79e0 501 mutex_unlock(&indio_dev->mlock);
7026ea4b 502
e38c79e0 503 return ret ? ret : len;
7026ea4b 504}
7026ea4b 505
08e7e0ad
LPC
506static ssize_t iio_buffer_show_enable(struct device *dev,
507 struct device_attribute *attr,
508 char *buf)
7026ea4b 509{
e53f5ac5 510 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
705ee2c9 511 return sprintf(buf, "%d\n", iio_buffer_is_active(indio_dev->buffer));
7026ea4b 512}
7026ea4b 513
183f4173
PM
514static int iio_compute_scan_bytes(struct iio_dev *indio_dev,
515 const unsigned long *mask, bool timestamp)
959d2952 516{
959d2952
JC
517 const struct iio_chan_spec *ch;
518 unsigned bytes = 0;
519 int length, i;
959d2952
JC
520
521 /* How much space will the demuxed element take? */
6b3b58ed 522 for_each_set_bit(i, mask,
959d2952
JC
523 indio_dev->masklength) {
524 ch = iio_find_channel_from_si(indio_dev, i);
0ee8546a
SP
525 if (ch->scan_type.repeat > 1)
526 length = ch->scan_type.storagebits / 8 *
527 ch->scan_type.repeat;
528 else
529 length = ch->scan_type.storagebits / 8;
959d2952
JC
530 bytes = ALIGN(bytes, length);
531 bytes += length;
532 }
6b3b58ed 533 if (timestamp) {
959d2952 534 ch = iio_find_channel_from_si(indio_dev,
f1264809 535 indio_dev->scan_index_timestamp);
0ee8546a
SP
536 if (ch->scan_type.repeat > 1)
537 length = ch->scan_type.storagebits / 8 *
538 ch->scan_type.repeat;
539 else
540 length = ch->scan_type.storagebits / 8;
959d2952
JC
541 bytes = ALIGN(bytes, length);
542 bytes += length;
543 }
6b3b58ed
JC
544 return bytes;
545}
546
9e69c935
LPC
547static void iio_buffer_activate(struct iio_dev *indio_dev,
548 struct iio_buffer *buffer)
549{
550 iio_buffer_get(buffer);
551 list_add(&buffer->buffer_list, &indio_dev->buffer_list);
552}
553
554static void iio_buffer_deactivate(struct iio_buffer *buffer)
555{
556 list_del_init(&buffer->buffer_list);
37d34556 557 wake_up_interruptible(&buffer->pollq);
9e69c935
LPC
558 iio_buffer_put(buffer);
559}
560
1250186a
LPC
561static void iio_buffer_deactivate_all(struct iio_dev *indio_dev)
562{
563 struct iio_buffer *buffer, *_buffer;
564
565 list_for_each_entry_safe(buffer, _buffer,
566 &indio_dev->buffer_list, buffer_list)
567 iio_buffer_deactivate(buffer);
568}
569
8e050996
LPC
570static void iio_buffer_update_bytes_per_datum(struct iio_dev *indio_dev,
571 struct iio_buffer *buffer)
572{
573 unsigned int bytes;
574
575 if (!buffer->access->set_bytes_per_datum)
576 return;
577
578 bytes = iio_compute_scan_bytes(indio_dev, buffer->scan_mask,
579 buffer->scan_timestamp);
580
581 buffer->access->set_bytes_per_datum(buffer, bytes);
582}
583
fcc1b2f5
LPC
584static int iio_buffer_request_update(struct iio_dev *indio_dev,
585 struct iio_buffer *buffer)
586{
587 int ret;
588
589 iio_buffer_update_bytes_per_datum(indio_dev, buffer);
590 if (buffer->access->request_update) {
591 ret = buffer->access->request_update(buffer);
592 if (ret) {
593 dev_dbg(&indio_dev->dev,
594 "Buffer not started: buffer parameter update failed (%d)\n",
595 ret);
596 return ret;
597 }
598 }
599
600 return 0;
601}
602
248be5aa
LPC
603static void iio_free_scan_mask(struct iio_dev *indio_dev,
604 const unsigned long *mask)
605{
606 /* If the mask is dynamically allocated free it, otherwise do nothing */
607 if (!indio_dev->available_scan_masks)
608 kfree(mask);
609}
610
6e509c4d
LPC
611struct iio_device_config {
612 unsigned int mode;
f0566c0c 613 unsigned int watermark;
6e509c4d
LPC
614 const unsigned long *scan_mask;
615 unsigned int scan_bytes;
616 bool scan_timestamp;
617};
618
619static int iio_verify_update(struct iio_dev *indio_dev,
620 struct iio_buffer *insert_buffer, struct iio_buffer *remove_buffer,
621 struct iio_device_config *config)
622{
623 unsigned long *compound_mask;
624 const unsigned long *scan_mask;
1e1ec286 625 bool strict_scanmask = false;
6e509c4d
LPC
626 struct iio_buffer *buffer;
627 bool scan_timestamp;
225d59ad 628 unsigned int modes;
6e509c4d
LPC
629
630 memset(config, 0, sizeof(*config));
631
632 /*
633 * If there is just one buffer and we are removing it there is nothing
634 * to verify.
635 */
636 if (remove_buffer && !insert_buffer &&
637 list_is_singular(&indio_dev->buffer_list))
638 return 0;
639
225d59ad
LPC
640 modes = indio_dev->modes;
641
642 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
643 if (buffer == remove_buffer)
644 continue;
645 modes &= buffer->access->modes;
f0566c0c 646 config->watermark = min(config->watermark, buffer->watermark);
225d59ad
LPC
647 }
648
f0566c0c 649 if (insert_buffer) {
225d59ad 650 modes &= insert_buffer->access->modes;
f0566c0c
LPC
651 config->watermark = min(config->watermark,
652 insert_buffer->watermark);
653 }
225d59ad 654
6e509c4d 655 /* Definitely possible for devices to support both of these. */
225d59ad 656 if ((modes & INDIO_BUFFER_TRIGGERED) && indio_dev->trig) {
6e509c4d 657 config->mode = INDIO_BUFFER_TRIGGERED;
225d59ad 658 } else if (modes & INDIO_BUFFER_HARDWARE) {
1e1ec286
LPC
659 /*
660 * Keep things simple for now and only allow a single buffer to
661 * be connected in hardware mode.
662 */
663 if (insert_buffer && !list_empty(&indio_dev->buffer_list))
664 return -EINVAL;
6e509c4d 665 config->mode = INDIO_BUFFER_HARDWARE;
1e1ec286 666 strict_scanmask = true;
225d59ad 667 } else if (modes & INDIO_BUFFER_SOFTWARE) {
6e509c4d
LPC
668 config->mode = INDIO_BUFFER_SOFTWARE;
669 } else {
670 /* Can only occur on first buffer */
671 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
672 dev_dbg(&indio_dev->dev, "Buffer not started: no trigger\n");
673 return -EINVAL;
674 }
675
676 /* What scan mask do we actually have? */
677 compound_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength),
678 sizeof(long), GFP_KERNEL);
679 if (compound_mask == NULL)
680 return -ENOMEM;
681
682 scan_timestamp = false;
683
684 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
685 if (buffer == remove_buffer)
686 continue;
687 bitmap_or(compound_mask, compound_mask, buffer->scan_mask,
688 indio_dev->masklength);
689 scan_timestamp |= buffer->scan_timestamp;
690 }
691
692 if (insert_buffer) {
693 bitmap_or(compound_mask, compound_mask,
694 insert_buffer->scan_mask, indio_dev->masklength);
695 scan_timestamp |= insert_buffer->scan_timestamp;
696 }
697
698 if (indio_dev->available_scan_masks) {
699 scan_mask = iio_scan_mask_match(indio_dev->available_scan_masks,
700 indio_dev->masklength,
1e1ec286
LPC
701 compound_mask,
702 strict_scanmask);
6e509c4d
LPC
703 kfree(compound_mask);
704 if (scan_mask == NULL)
705 return -EINVAL;
706 } else {
707 scan_mask = compound_mask;
708 }
709
710 config->scan_bytes = iio_compute_scan_bytes(indio_dev,
711 scan_mask, scan_timestamp);
712 config->scan_mask = scan_mask;
713 config->scan_timestamp = scan_timestamp;
714
715 return 0;
716}
717
623d74e3
LPC
718static int iio_enable_buffers(struct iio_dev *indio_dev,
719 struct iio_device_config *config)
6b3b58ed 720{
84b36ce5 721 int ret;
fcc1b2f5 722
623d74e3
LPC
723 indio_dev->active_scan_mask = config->scan_mask;
724 indio_dev->scan_timestamp = config->scan_timestamp;
725 indio_dev->scan_bytes = config->scan_bytes;
aff1eb4e 726
5ada4ea9
JC
727 iio_update_demux(indio_dev);
728
84b36ce5
JC
729 /* Wind up again */
730 if (indio_dev->setup_ops->preenable) {
731 ret = indio_dev->setup_ops->preenable(indio_dev);
732 if (ret) {
63223c5f 733 dev_dbg(&indio_dev->dev,
bec1889d 734 "Buffer not started: buffer preenable failed (%d)\n", ret);
623d74e3 735 goto err_undo_config;
84b36ce5
JC
736 }
737 }
6e509c4d 738
84b36ce5
JC
739 if (indio_dev->info->update_scan_mode) {
740 ret = indio_dev->info
5ada4ea9
JC
741 ->update_scan_mode(indio_dev,
742 indio_dev->active_scan_mask);
84b36ce5 743 if (ret < 0) {
63223c5f
LPC
744 dev_dbg(&indio_dev->dev,
745 "Buffer not started: update scan mode failed (%d)\n",
746 ret);
623d74e3 747 goto err_run_postdisable;
84b36ce5
JC
748 }
749 }
6e509c4d 750
f0566c0c
LPC
751 if (indio_dev->info->hwfifo_set_watermark)
752 indio_dev->info->hwfifo_set_watermark(indio_dev,
753 config->watermark);
754
623d74e3 755 indio_dev->currentmode = config->mode;
84b36ce5
JC
756
757 if (indio_dev->setup_ops->postenable) {
758 ret = indio_dev->setup_ops->postenable(indio_dev);
759 if (ret) {
63223c5f 760 dev_dbg(&indio_dev->dev,
bec1889d 761 "Buffer not started: postenable failed (%d)\n", ret);
623d74e3 762 goto err_run_postdisable;
84b36ce5
JC
763 }
764 }
765
6e509c4d 766 return 0;
84b36ce5 767
623d74e3 768err_run_postdisable:
84b36ce5 769 indio_dev->currentmode = INDIO_DIRECT_MODE;
84b36ce5
JC
770 if (indio_dev->setup_ops->postdisable)
771 indio_dev->setup_ops->postdisable(indio_dev);
623d74e3
LPC
772err_undo_config:
773 indio_dev->active_scan_mask = NULL;
774
84b36ce5 775 return ret;
623d74e3
LPC
776}
777
778static int iio_disable_buffers(struct iio_dev *indio_dev)
779{
1250186a
LPC
780 int ret = 0;
781 int ret2;
623d74e3
LPC
782
783 /* Wind down existing buffers - iff there are any */
784 if (list_empty(&indio_dev->buffer_list))
785 return 0;
786
1250186a
LPC
787 /*
788 * If things go wrong at some step in disable we still need to continue
789 * to perform the other steps, otherwise we leave the device in a
790 * inconsistent state. We return the error code for the first error we
791 * encountered.
792 */
793
623d74e3 794 if (indio_dev->setup_ops->predisable) {
1250186a
LPC
795 ret2 = indio_dev->setup_ops->predisable(indio_dev);
796 if (ret2 && !ret)
797 ret = ret2;
623d74e3
LPC
798 }
799
800 indio_dev->currentmode = INDIO_DIRECT_MODE;
801
802 if (indio_dev->setup_ops->postdisable) {
1250186a
LPC
803 ret2 = indio_dev->setup_ops->postdisable(indio_dev);
804 if (ret2 && !ret)
805 ret = ret2;
623d74e3
LPC
806 }
807
1250186a
LPC
808 iio_free_scan_mask(indio_dev, indio_dev->active_scan_mask);
809 indio_dev->active_scan_mask = NULL;
810
811 return ret;
623d74e3
LPC
812}
813
814static int __iio_update_buffers(struct iio_dev *indio_dev,
815 struct iio_buffer *insert_buffer,
816 struct iio_buffer *remove_buffer)
817{
623d74e3 818 struct iio_device_config new_config;
1250186a 819 int ret;
623d74e3
LPC
820
821 ret = iio_verify_update(indio_dev, insert_buffer, remove_buffer,
822 &new_config);
823 if (ret)
824 return ret;
825
826 if (insert_buffer) {
827 ret = iio_buffer_request_update(indio_dev, insert_buffer);
828 if (ret)
829 goto err_free_config;
830 }
831
623d74e3 832 ret = iio_disable_buffers(indio_dev);
1250186a
LPC
833 if (ret)
834 goto err_deactivate_all;
623d74e3
LPC
835
836 if (remove_buffer)
837 iio_buffer_deactivate(remove_buffer);
838 if (insert_buffer)
839 iio_buffer_activate(indio_dev, insert_buffer);
840
841 /* If no buffers in list, we are done */
1250186a 842 if (list_empty(&indio_dev->buffer_list))
623d74e3 843 return 0;
623d74e3
LPC
844
845 ret = iio_enable_buffers(indio_dev, &new_config);
1250186a
LPC
846 if (ret)
847 goto err_deactivate_all;
623d74e3 848
623d74e3 849 return 0;
6e509c4d 850
1250186a
LPC
851err_deactivate_all:
852 /*
853 * We've already verified that the config is valid earlier. If things go
854 * wrong in either enable or disable the most likely reason is an IO
855 * error from the device. In this case there is no good recovery
856 * strategy. Just make sure to disable everything and leave the device
857 * in a sane state. With a bit of luck the device might come back to
858 * life again later and userspace can try again.
859 */
860 iio_buffer_deactivate_all(indio_dev);
861
6e509c4d
LPC
862err_free_config:
863 iio_free_scan_mask(indio_dev, new_config.scan_mask);
864 return ret;
84b36ce5 865}
a9519456
LPC
866
867int iio_update_buffers(struct iio_dev *indio_dev,
868 struct iio_buffer *insert_buffer,
869 struct iio_buffer *remove_buffer)
870{
871 int ret;
872
3909fab5
LPC
873 if (insert_buffer == remove_buffer)
874 return 0;
875
a9519456
LPC
876 mutex_lock(&indio_dev->info_exist_lock);
877 mutex_lock(&indio_dev->mlock);
878
3909fab5
LPC
879 if (insert_buffer && iio_buffer_is_active(insert_buffer))
880 insert_buffer = NULL;
881
882 if (remove_buffer && !iio_buffer_is_active(remove_buffer))
883 remove_buffer = NULL;
884
885 if (!insert_buffer && !remove_buffer) {
886 ret = 0;
887 goto out_unlock;
888 }
889
a9519456
LPC
890 if (indio_dev->info == NULL) {
891 ret = -ENODEV;
892 goto out_unlock;
893 }
894
895 ret = __iio_update_buffers(indio_dev, insert_buffer, remove_buffer);
896
897out_unlock:
898 mutex_unlock(&indio_dev->mlock);
899 mutex_unlock(&indio_dev->info_exist_lock);
900
901 return ret;
902}
84b36ce5
JC
903EXPORT_SYMBOL_GPL(iio_update_buffers);
904
623d74e3
LPC
905void iio_disable_all_buffers(struct iio_dev *indio_dev)
906{
623d74e3 907 iio_disable_buffers(indio_dev);
1250186a 908 iio_buffer_deactivate_all(indio_dev);
623d74e3
LPC
909}
910
08e7e0ad
LPC
911static ssize_t iio_buffer_store_enable(struct device *dev,
912 struct device_attribute *attr,
913 const char *buf,
914 size_t len)
84b36ce5
JC
915{
916 int ret;
917 bool requested_state;
918 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
84b36ce5
JC
919 bool inlist;
920
921 ret = strtobool(buf, &requested_state);
922 if (ret < 0)
923 return ret;
924
925 mutex_lock(&indio_dev->mlock);
926
927 /* Find out if it is in the list */
705ee2c9 928 inlist = iio_buffer_is_active(indio_dev->buffer);
84b36ce5
JC
929 /* Already in desired state */
930 if (inlist == requested_state)
931 goto done;
932
933 if (requested_state)
a9519456 934 ret = __iio_update_buffers(indio_dev,
84b36ce5
JC
935 indio_dev->buffer, NULL);
936 else
a9519456 937 ret = __iio_update_buffers(indio_dev,
84b36ce5
JC
938 NULL, indio_dev->buffer);
939
84b36ce5
JC
940done:
941 mutex_unlock(&indio_dev->mlock);
942 return (ret < 0) ? ret : len;
943}
84b36ce5 944
d967cb6b
LPC
945static const char * const iio_scan_elements_group_name = "scan_elements";
946
37d34556
JC
947static ssize_t iio_buffer_show_watermark(struct device *dev,
948 struct device_attribute *attr,
949 char *buf)
950{
951 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
952 struct iio_buffer *buffer = indio_dev->buffer;
953
954 return sprintf(buf, "%u\n", buffer->watermark);
955}
956
957static ssize_t iio_buffer_store_watermark(struct device *dev,
958 struct device_attribute *attr,
959 const char *buf,
960 size_t len)
961{
962 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
963 struct iio_buffer *buffer = indio_dev->buffer;
964 unsigned int val;
965 int ret;
966
967 ret = kstrtouint(buf, 10, &val);
968 if (ret)
969 return ret;
970 if (!val)
971 return -EINVAL;
972
973 mutex_lock(&indio_dev->mlock);
974
975 if (val > buffer->length) {
976 ret = -EINVAL;
977 goto out;
978 }
979
980 if (iio_buffer_is_active(indio_dev->buffer)) {
981 ret = -EBUSY;
982 goto out;
983 }
984
985 buffer->watermark = val;
986out:
987 mutex_unlock(&indio_dev->mlock);
988
989 return ret ? ret : len;
990}
991
08e7e0ad
LPC
992static DEVICE_ATTR(length, S_IRUGO | S_IWUSR, iio_buffer_read_length,
993 iio_buffer_write_length);
8d92db28
LPC
994static struct device_attribute dev_attr_length_ro = __ATTR(length,
995 S_IRUGO, iio_buffer_read_length, NULL);
08e7e0ad
LPC
996static DEVICE_ATTR(enable, S_IRUGO | S_IWUSR,
997 iio_buffer_show_enable, iio_buffer_store_enable);
37d34556
JC
998static DEVICE_ATTR(watermark, S_IRUGO | S_IWUSR,
999 iio_buffer_show_watermark, iio_buffer_store_watermark);
08e7e0ad 1000
6da9b382
OP
1001static struct attribute *iio_buffer_attrs[] = {
1002 &dev_attr_length.attr,
1003 &dev_attr_enable.attr,
37d34556 1004 &dev_attr_watermark.attr,
6da9b382
OP
1005};
1006
d967cb6b
LPC
1007int iio_buffer_alloc_sysfs_and_mask(struct iio_dev *indio_dev)
1008{
1009 struct iio_dev_attr *p;
1010 struct attribute **attr;
1011 struct iio_buffer *buffer = indio_dev->buffer;
1012 int ret, i, attrn, attrcount, attrcount_orig = 0;
1013 const struct iio_chan_spec *channels;
1014
629bc023
LPC
1015 channels = indio_dev->channels;
1016 if (channels) {
1017 int ml = indio_dev->masklength;
1018
1019 for (i = 0; i < indio_dev->num_channels; i++)
1020 ml = max(ml, channels[i].scan_index + 1);
1021 indio_dev->masklength = ml;
1022 }
1023
d967cb6b
LPC
1024 if (!buffer)
1025 return 0;
1026
08e7e0ad
LPC
1027 attrcount = 0;
1028 if (buffer->attrs) {
1029 while (buffer->attrs[attrcount] != NULL)
1030 attrcount++;
1031 }
1032
6da9b382
OP
1033 attr = kcalloc(attrcount + ARRAY_SIZE(iio_buffer_attrs) + 1,
1034 sizeof(struct attribute *), GFP_KERNEL);
1035 if (!attr)
08e7e0ad
LPC
1036 return -ENOMEM;
1037
6da9b382
OP
1038 memcpy(attr, iio_buffer_attrs, sizeof(iio_buffer_attrs));
1039 if (!buffer->access->set_length)
1040 attr[0] = &dev_attr_length_ro.attr;
1041
08e7e0ad 1042 if (buffer->attrs)
6da9b382
OP
1043 memcpy(&attr[ARRAY_SIZE(iio_buffer_attrs)], buffer->attrs,
1044 sizeof(struct attribute *) * attrcount);
1045
1046 attr[attrcount + ARRAY_SIZE(iio_buffer_attrs)] = NULL;
1047
1048 buffer->buffer_group.name = "buffer";
1049 buffer->buffer_group.attrs = attr;
08e7e0ad
LPC
1050
1051 indio_dev->groups[indio_dev->groupcounter++] = &buffer->buffer_group;
1052
d967cb6b
LPC
1053 if (buffer->scan_el_attrs != NULL) {
1054 attr = buffer->scan_el_attrs->attrs;
1055 while (*attr++ != NULL)
1056 attrcount_orig++;
1057 }
1058 attrcount = attrcount_orig;
1059 INIT_LIST_HEAD(&buffer->scan_el_dev_attr_list);
1060 channels = indio_dev->channels;
1061 if (channels) {
1062 /* new magic */
1063 for (i = 0; i < indio_dev->num_channels; i++) {
1064 if (channels[i].scan_index < 0)
1065 continue;
1066
d967cb6b
LPC
1067 ret = iio_buffer_add_channel_sysfs(indio_dev,
1068 &channels[i]);
1069 if (ret < 0)
1070 goto error_cleanup_dynamic;
1071 attrcount += ret;
1072 if (channels[i].type == IIO_TIMESTAMP)
1073 indio_dev->scan_index_timestamp =
1074 channels[i].scan_index;
1075 }
1076 if (indio_dev->masklength && buffer->scan_mask == NULL) {
1077 buffer->scan_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength),
1078 sizeof(*buffer->scan_mask),
1079 GFP_KERNEL);
1080 if (buffer->scan_mask == NULL) {
1081 ret = -ENOMEM;
1082 goto error_cleanup_dynamic;
1083 }
1084 }
1085 }
1086
1087 buffer->scan_el_group.name = iio_scan_elements_group_name;
1088
1089 buffer->scan_el_group.attrs = kcalloc(attrcount + 1,
1090 sizeof(buffer->scan_el_group.attrs[0]),
1091 GFP_KERNEL);
1092 if (buffer->scan_el_group.attrs == NULL) {
1093 ret = -ENOMEM;
1094 goto error_free_scan_mask;
1095 }
1096 if (buffer->scan_el_attrs)
1097 memcpy(buffer->scan_el_group.attrs, buffer->scan_el_attrs,
1098 sizeof(buffer->scan_el_group.attrs[0])*attrcount_orig);
1099 attrn = attrcount_orig;
1100
1101 list_for_each_entry(p, &buffer->scan_el_dev_attr_list, l)
1102 buffer->scan_el_group.attrs[attrn++] = &p->dev_attr.attr;
1103 indio_dev->groups[indio_dev->groupcounter++] = &buffer->scan_el_group;
1104
1105 return 0;
1106
1107error_free_scan_mask:
1108 kfree(buffer->scan_mask);
1109error_cleanup_dynamic:
1110 iio_free_chan_devattr_list(&buffer->scan_el_dev_attr_list);
08e7e0ad 1111 kfree(indio_dev->buffer->buffer_group.attrs);
d967cb6b
LPC
1112
1113 return ret;
1114}
1115
1116void iio_buffer_free_sysfs_and_mask(struct iio_dev *indio_dev)
1117{
1118 if (!indio_dev->buffer)
1119 return;
1120
1121 kfree(indio_dev->buffer->scan_mask);
08e7e0ad 1122 kfree(indio_dev->buffer->buffer_group.attrs);
d967cb6b
LPC
1123 kfree(indio_dev->buffer->scan_el_group.attrs);
1124 iio_free_chan_devattr_list(&indio_dev->buffer->scan_el_dev_attr_list);
1125}
1126
81636632
LPC
1127/**
1128 * iio_validate_scan_mask_onehot() - Validates that exactly one channel is selected
1129 * @indio_dev: the iio device
1130 * @mask: scan mask to be checked
1131 *
1132 * Return true if exactly one bit is set in the scan mask, false otherwise. It
1133 * can be used for devices where only one channel can be active for sampling at
1134 * a time.
1135 */
1136bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev,
1137 const unsigned long *mask)
1138{
1139 return bitmap_weight(mask, indio_dev->masklength) == 1;
1140}
1141EXPORT_SYMBOL_GPL(iio_validate_scan_mask_onehot);
1142
f79a9098
JC
1143int iio_scan_mask_query(struct iio_dev *indio_dev,
1144 struct iio_buffer *buffer, int bit)
32b5eeca 1145{
f8c6f4e9 1146 if (bit > indio_dev->masklength)
32b5eeca
JC
1147 return -EINVAL;
1148
14555b14 1149 if (!buffer->scan_mask)
32b5eeca 1150 return 0;
32b5eeca 1151
2076a20f
AB
1152 /* Ensure return value is 0 or 1. */
1153 return !!test_bit(bit, buffer->scan_mask);
32b5eeca
JC
1154};
1155EXPORT_SYMBOL_GPL(iio_scan_mask_query);
5ada4ea9
JC
1156
1157/**
0123635a 1158 * struct iio_demux_table - table describing demux memcpy ops
5ada4ea9 1159 * @from: index to copy from
99698b45 1160 * @to: index to copy to
5ada4ea9
JC
1161 * @length: how many bytes to copy
1162 * @l: list head used for management
1163 */
1164struct iio_demux_table {
1165 unsigned from;
1166 unsigned to;
1167 unsigned length;
1168 struct list_head l;
1169};
1170
5d65d920
LPC
1171static const void *iio_demux(struct iio_buffer *buffer,
1172 const void *datain)
5ada4ea9
JC
1173{
1174 struct iio_demux_table *t;
1175
1176 if (list_empty(&buffer->demux_list))
1177 return datain;
1178 list_for_each_entry(t, &buffer->demux_list, l)
1179 memcpy(buffer->demux_bounce + t->to,
1180 datain + t->from, t->length);
1181
1182 return buffer->demux_bounce;
1183}
1184
5d65d920 1185static int iio_push_to_buffer(struct iio_buffer *buffer, const void *data)
5ada4ea9 1186{
5d65d920 1187 const void *dataout = iio_demux(buffer, data);
37d34556
JC
1188 int ret;
1189
1190 ret = buffer->access->store_to(buffer, dataout);
1191 if (ret)
1192 return ret;
5ada4ea9 1193
37d34556
JC
1194 /*
1195 * We can't just test for watermark to decide if we wake the poll queue
1196 * because read may request less samples than the watermark.
1197 */
1198 wake_up_interruptible_poll(&buffer->pollq, POLLIN | POLLRDNORM);
1199 return 0;
5ada4ea9 1200}
5ada4ea9 1201
842cd100
JC
1202static void iio_buffer_demux_free(struct iio_buffer *buffer)
1203{
1204 struct iio_demux_table *p, *q;
1205 list_for_each_entry_safe(p, q, &buffer->demux_list, l) {
1206 list_del(&p->l);
1207 kfree(p);
1208 }
1209}
1210
84b36ce5 1211
5d65d920 1212int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data)
84b36ce5
JC
1213{
1214 int ret;
1215 struct iio_buffer *buf;
1216
1217 list_for_each_entry(buf, &indio_dev->buffer_list, buffer_list) {
1218 ret = iio_push_to_buffer(buf, data);
1219 if (ret < 0)
1220 return ret;
1221 }
1222
1223 return 0;
1224}
1225EXPORT_SYMBOL_GPL(iio_push_to_buffers);
1226
cbe88bcc
LPC
1227static int iio_buffer_add_demux(struct iio_buffer *buffer,
1228 struct iio_demux_table **p, unsigned int in_loc, unsigned int out_loc,
1229 unsigned int length)
1230{
1231
1232 if (*p && (*p)->from + (*p)->length == in_loc &&
1233 (*p)->to + (*p)->length == out_loc) {
1234 (*p)->length += length;
1235 } else {
7cdca178 1236 *p = kmalloc(sizeof(**p), GFP_KERNEL);
cbe88bcc
LPC
1237 if (*p == NULL)
1238 return -ENOMEM;
1239 (*p)->from = in_loc;
1240 (*p)->to = out_loc;
1241 (*p)->length = length;
1242 list_add_tail(&(*p)->l, &buffer->demux_list);
1243 }
1244
1245 return 0;
1246}
1247
84b36ce5
JC
1248static int iio_buffer_update_demux(struct iio_dev *indio_dev,
1249 struct iio_buffer *buffer)
5ada4ea9
JC
1250{
1251 const struct iio_chan_spec *ch;
5ada4ea9
JC
1252 int ret, in_ind = -1, out_ind, length;
1253 unsigned in_loc = 0, out_loc = 0;
cbe88bcc 1254 struct iio_demux_table *p = NULL;
5ada4ea9
JC
1255
1256 /* Clear out any old demux */
842cd100 1257 iio_buffer_demux_free(buffer);
5ada4ea9
JC
1258 kfree(buffer->demux_bounce);
1259 buffer->demux_bounce = NULL;
1260
1261 /* First work out which scan mode we will actually have */
1262 if (bitmap_equal(indio_dev->active_scan_mask,
1263 buffer->scan_mask,
1264 indio_dev->masklength))
1265 return 0;
1266
1267 /* Now we have the two masks, work from least sig and build up sizes */
1268 for_each_set_bit(out_ind,
61bd55ce 1269 buffer->scan_mask,
5ada4ea9
JC
1270 indio_dev->masklength) {
1271 in_ind = find_next_bit(indio_dev->active_scan_mask,
1272 indio_dev->masklength,
1273 in_ind + 1);
1274 while (in_ind != out_ind) {
1275 in_ind = find_next_bit(indio_dev->active_scan_mask,
1276 indio_dev->masklength,
1277 in_ind + 1);
1278 ch = iio_find_channel_from_si(indio_dev, in_ind);
0ee8546a
SP
1279 if (ch->scan_type.repeat > 1)
1280 length = ch->scan_type.storagebits / 8 *
1281 ch->scan_type.repeat;
1282 else
1283 length = ch->scan_type.storagebits / 8;
5ada4ea9 1284 /* Make sure we are aligned */
61072dbc 1285 in_loc = roundup(in_loc, length) + length;
5ada4ea9
JC
1286 }
1287 ch = iio_find_channel_from_si(indio_dev, in_ind);
0ee8546a
SP
1288 if (ch->scan_type.repeat > 1)
1289 length = ch->scan_type.storagebits / 8 *
1290 ch->scan_type.repeat;
1291 else
1292 length = ch->scan_type.storagebits / 8;
61072dbc
LPC
1293 out_loc = roundup(out_loc, length);
1294 in_loc = roundup(in_loc, length);
cbe88bcc
LPC
1295 ret = iio_buffer_add_demux(buffer, &p, in_loc, out_loc, length);
1296 if (ret)
1297 goto error_clear_mux_table;
5ada4ea9
JC
1298 out_loc += length;
1299 in_loc += length;
1300 }
1301 /* Relies on scan_timestamp being last */
1302 if (buffer->scan_timestamp) {
5ada4ea9 1303 ch = iio_find_channel_from_si(indio_dev,
f1264809 1304 indio_dev->scan_index_timestamp);
0ee8546a
SP
1305 if (ch->scan_type.repeat > 1)
1306 length = ch->scan_type.storagebits / 8 *
1307 ch->scan_type.repeat;
1308 else
1309 length = ch->scan_type.storagebits / 8;
61072dbc
LPC
1310 out_loc = roundup(out_loc, length);
1311 in_loc = roundup(in_loc, length);
cbe88bcc
LPC
1312 ret = iio_buffer_add_demux(buffer, &p, in_loc, out_loc, length);
1313 if (ret)
1314 goto error_clear_mux_table;
5ada4ea9
JC
1315 out_loc += length;
1316 in_loc += length;
1317 }
1318 buffer->demux_bounce = kzalloc(out_loc, GFP_KERNEL);
1319 if (buffer->demux_bounce == NULL) {
1320 ret = -ENOMEM;
1321 goto error_clear_mux_table;
1322 }
1323 return 0;
1324
1325error_clear_mux_table:
842cd100
JC
1326 iio_buffer_demux_free(buffer);
1327
5ada4ea9
JC
1328 return ret;
1329}
84b36ce5
JC
1330
1331int iio_update_demux(struct iio_dev *indio_dev)
1332{
1333 struct iio_buffer *buffer;
1334 int ret;
1335
1336 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
1337 ret = iio_buffer_update_demux(indio_dev, buffer);
1338 if (ret < 0)
1339 goto error_clear_mux_table;
1340 }
1341 return 0;
1342
1343error_clear_mux_table:
1344 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list)
1345 iio_buffer_demux_free(buffer);
1346
1347 return ret;
1348}
5ada4ea9 1349EXPORT_SYMBOL_GPL(iio_update_demux);
9e69c935
LPC
1350
1351/**
1352 * iio_buffer_release() - Free a buffer's resources
1353 * @ref: Pointer to the kref embedded in the iio_buffer struct
1354 *
1355 * This function is called when the last reference to the buffer has been
1356 * dropped. It will typically free all resources allocated by the buffer. Do not
1357 * call this function manually, always use iio_buffer_put() when done using a
1358 * buffer.
1359 */
1360static void iio_buffer_release(struct kref *ref)
1361{
1362 struct iio_buffer *buffer = container_of(ref, struct iio_buffer, ref);
1363
1364 buffer->access->release(buffer);
1365}
1366
1367/**
1368 * iio_buffer_get() - Grab a reference to the buffer
1369 * @buffer: The buffer to grab a reference for, may be NULL
1370 *
1371 * Returns the pointer to the buffer that was passed into the function.
1372 */
1373struct iio_buffer *iio_buffer_get(struct iio_buffer *buffer)
1374{
1375 if (buffer)
1376 kref_get(&buffer->ref);
1377
1378 return buffer;
1379}
1380EXPORT_SYMBOL_GPL(iio_buffer_get);
1381
1382/**
1383 * iio_buffer_put() - Release the reference to the buffer
1384 * @buffer: The buffer to release the reference for, may be NULL
1385 */
1386void iio_buffer_put(struct iio_buffer *buffer)
1387{
1388 if (buffer)
1389 kref_put(&buffer->ref, iio_buffer_release);
1390}
1391EXPORT_SYMBOL_GPL(iio_buffer_put);