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