industrialio-buffer.c 34.3 KB
Newer Older
1 2 3 4 5 6 7 8
/* The industrial I/O core
 *
 * Copyright (c) 2008 Jonathan Cameron
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 *
9
 * Handling of buffer allocation / resizing.
10 11 12 13 14 15 16
 *
 *
 * Things to look at here.
 * - Better memory allocation techniques?
 * - Alternative access techniques?
 */
#include <linux/kernel.h>
17
#include <linux/export.h>
18 19 20
#include <linux/device.h>
#include <linux/fs.h>
#include <linux/cdev.h>
21
#include <linux/slab.h>
22
#include <linux/poll.h>
23
#include <linux/sched.h>
24

25
#include <linux/iio/iio.h>
26
#include "iio_core.h"
27 28
#include <linux/iio/sysfs.h>
#include <linux/iio/buffer.h>
29

30 31 32 33
static const char * const iio_endian_prefix[] = {
	[IIO_BE] = "be",
	[IIO_LE] = "le",
};
34

35
static bool iio_buffer_is_active(struct iio_buffer *buf)
36
{
37
	return !list_empty(&buf->buffer_list);
38 39
}

40
static size_t iio_buffer_data_available(struct iio_buffer *buf)
41
{
42
	return buf->access->data_available(buf);
43 44
}

45 46 47 48 49 50 51 52 53
static int iio_buffer_flush_hwfifo(struct iio_dev *indio_dev,
				   struct iio_buffer *buf, size_t required)
{
	if (!indio_dev->info->hwfifo_flush_to_buffer)
		return -ENODEV;

	return indio_dev->info->hwfifo_flush_to_buffer(indio_dev, required);
}

54
static bool iio_buffer_ready(struct iio_dev *indio_dev, struct iio_buffer *buf,
55
			     size_t to_wait, int to_flush)
56
{
57 58 59
	size_t avail;
	int flushed = 0;

60 61 62 63 64
	/* wakeup if the device was unregistered */
	if (!indio_dev->info)
		return true;

	/* drain the buffer if it was disabled */
65
	if (!iio_buffer_is_active(buf)) {
66
		to_wait = min_t(size_t, to_wait, 1);
67 68 69 70
		to_flush = 0;
	}

	avail = iio_buffer_data_available(buf);
71

72 73
	if (avail >= to_wait) {
		/* force a flush for non-blocking reads */
74 75 76
		if (!to_wait && avail < to_flush)
			iio_buffer_flush_hwfifo(indio_dev, buf,
						to_flush - avail);
77 78 79 80 81 82 83 84 85 86
		return true;
	}

	if (to_flush)
		flushed = iio_buffer_flush_hwfifo(indio_dev, buf,
						  to_wait - avail);
	if (flushed <= 0)
		return false;

	if (avail + flushed >= to_wait)
87 88 89 90 91
		return true;

	return false;
}

92
/**
93
 * iio_buffer_read_first_n_outer() - chrdev read for buffer access
94 95 96 97
 * @filp:	File structure pointer for the char device
 * @buf:	Destination buffer for iio buffer read
 * @n:		First n bytes to read
 * @f_ps:	Long offset provided by the user as a seek position
98
 *
99 100
 * This function relies on all buffer implementations having an
 * iio_buffer as their first element.
101 102 103
 *
 * Return: negative values corresponding to error codes or ret != 0
 *	   for ending the reading activity
104
 **/
105 106
ssize_t iio_buffer_read_first_n_outer(struct file *filp, char __user *buf,
				      size_t n, loff_t *f_ps)
107
{
108
	struct iio_dev *indio_dev = filp->private_data;
109
	struct iio_buffer *rb = indio_dev->buffer;
110
	size_t datum_size;
111
	size_t to_wait;
112
	int ret;
113

114 115 116
	if (!indio_dev->info)
		return -ENODEV;

117
	if (!rb || !rb->access->read_first_n)
118
		return -EINVAL;
119

120 121 122 123 124 125 126 127 128
	datum_size = rb->bytes_per_datum;

	/*
	 * If datum_size is 0 there will never be anything to read from the
	 * buffer, so signal end of file now.
	 */
	if (!datum_size)
		return 0;

129 130 131 132
	if (filp->f_flags & O_NONBLOCK)
		to_wait = 0;
	else
		to_wait = min_t(size_t, n / datum_size, rb->watermark);
133

134
	do {
135
		ret = wait_event_interruptible(rb->pollq,
136
		      iio_buffer_ready(indio_dev, rb, to_wait, n / datum_size));
137 138
		if (ret)
			return ret;
139

140 141
		if (!indio_dev->info)
			return -ENODEV;
142 143 144 145 146 147 148

		ret = rb->access->read_first_n(rb, n, buf);
		if (ret == 0 && (filp->f_flags & O_NONBLOCK))
			ret = -EAGAIN;
	 } while (ret == 0);

	return ret;
149 150
}

151
/**
152
 * iio_buffer_poll() - poll the buffer to find out if it has data
153 154 155 156 157 158
 * @filp:	File structure pointer for device access
 * @wait:	Poll table structure pointer for which the driver adds
 *		a wait queue
 *
 * Return: (POLLIN | POLLRDNORM) if data is available for reading
 *	   or 0 for other cases
159
 */
160 161
unsigned int iio_buffer_poll(struct file *filp,
			     struct poll_table_struct *wait)
162
{
163
	struct iio_dev *indio_dev = filp->private_data;
164
	struct iio_buffer *rb = indio_dev->buffer;
165

166
	if (!indio_dev->info)
167
		return 0;
168

169
	poll_wait(filp, &rb->pollq, wait);
170
	if (iio_buffer_ready(indio_dev, rb, rb->watermark, 0))
171
		return POLLIN | POLLRDNORM;
172
	return 0;
173 174
}

175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
/**
 * iio_buffer_wakeup_poll - Wakes up the buffer waitqueue
 * @indio_dev: The IIO device
 *
 * Wakes up the event waitqueue used for poll(). Should usually
 * be called when the device is unregistered.
 */
void iio_buffer_wakeup_poll(struct iio_dev *indio_dev)
{
	if (!indio_dev->buffer)
		return;

	wake_up(&indio_dev->buffer->pollq);
}

190
void iio_buffer_init(struct iio_buffer *buffer)
191
{
192
	INIT_LIST_HEAD(&buffer->demux_list);
193
	INIT_LIST_HEAD(&buffer->buffer_list);
194
	init_waitqueue_head(&buffer->pollq);
195
	kref_init(&buffer->ref);
196 197
	if (!buffer->watermark)
		buffer->watermark = 1;
198
}
199
EXPORT_SYMBOL(iio_buffer_init);
200

201
static ssize_t iio_show_scan_index(struct device *dev,
202 203
				   struct device_attribute *attr,
				   char *buf)
204
{
205
	return sprintf(buf, "%u\n", to_iio_dev_attr(attr)->c->scan_index);
206 207 208 209 210 211 212
}

static ssize_t iio_show_fixed_type(struct device *dev,
				   struct device_attribute *attr,
				   char *buf)
{
	struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
213 214 215
	u8 type = this_attr->c->scan_type.endianness;

	if (type == IIO_CPU) {
216 217 218 219 220
#ifdef __LITTLE_ENDIAN
		type = IIO_LE;
#else
		type = IIO_BE;
#endif
221
	}
222 223 224 225 226 227 228 229 230 231
	if (this_attr->c->scan_type.repeat > 1)
		return sprintf(buf, "%s:%c%d/%dX%d>>%u\n",
		       iio_endian_prefix[type],
		       this_attr->c->scan_type.sign,
		       this_attr->c->scan_type.realbits,
		       this_attr->c->scan_type.storagebits,
		       this_attr->c->scan_type.repeat,
		       this_attr->c->scan_type.shift);
		else
			return sprintf(buf, "%s:%c%d/%d>>%u\n",
232
		       iio_endian_prefix[type],
233 234 235 236 237 238
		       this_attr->c->scan_type.sign,
		       this_attr->c->scan_type.realbits,
		       this_attr->c->scan_type.storagebits,
		       this_attr->c->scan_type.shift);
}

239 240 241 242 243
static ssize_t iio_scan_el_show(struct device *dev,
				struct device_attribute *attr,
				char *buf)
{
	int ret;
L
Lars-Peter Clausen 已提交
244
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
245

246 247
	/* Ensure ret is 0 or 1. */
	ret = !!test_bit(to_iio_dev_attr(attr)->address,
248 249
		       indio_dev->buffer->scan_mask);

250 251 252
	return sprintf(buf, "%d\n", ret);
}

253 254 255
/* Note NULL used as error indicator as it doesn't make sense. */
static const unsigned long *iio_scan_mask_match(const unsigned long *av_masks,
					  unsigned int masklength,
256 257
					  const unsigned long *mask,
					  bool strict)
258 259 260 261
{
	if (bitmap_empty(mask, masklength))
		return NULL;
	while (*av_masks) {
262 263 264 265 266 267 268
		if (strict) {
			if (bitmap_equal(mask, av_masks, masklength))
				return av_masks;
		} else {
			if (bitmap_subset(mask, av_masks, masklength))
				return av_masks;
		}
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
		av_masks += BITS_TO_LONGS(masklength);
	}
	return NULL;
}

static bool iio_validate_scan_mask(struct iio_dev *indio_dev,
	const unsigned long *mask)
{
	if (!indio_dev->setup_ops->validate_scan_mask)
		return true;

	return indio_dev->setup_ops->validate_scan_mask(indio_dev, mask);
}

/**
 * iio_scan_mask_set() - set particular bit in the scan mask
 * @indio_dev: the iio device
 * @buffer: the buffer whose scan mask we are interested in
 * @bit: the bit to be set.
 *
 * Note that at this point we have no way of knowing what other
 * buffers might request, hence this code only verifies that the
 * individual buffers request is plausible.
 */
static int iio_scan_mask_set(struct iio_dev *indio_dev,
		      struct iio_buffer *buffer, int bit)
{
	const unsigned long *mask;
	unsigned long *trialmask;

	trialmask = kmalloc(sizeof(*trialmask)*
			    BITS_TO_LONGS(indio_dev->masklength),
			    GFP_KERNEL);

	if (trialmask == NULL)
		return -ENOMEM;
	if (!indio_dev->masklength) {
		WARN_ON("Trying to set scanmask prior to registering buffer\n");
		goto err_invalid_mask;
	}
	bitmap_copy(trialmask, buffer->scan_mask, indio_dev->masklength);
	set_bit(bit, trialmask);

	if (!iio_validate_scan_mask(indio_dev, trialmask))
		goto err_invalid_mask;

	if (indio_dev->available_scan_masks) {
		mask = iio_scan_mask_match(indio_dev->available_scan_masks,
					   indio_dev->masklength,
318
					   trialmask, false);
319 320 321 322 323 324 325 326 327 328 329 330 331 332
		if (!mask)
			goto err_invalid_mask;
	}
	bitmap_copy(buffer->scan_mask, trialmask, indio_dev->masklength);

	kfree(trialmask);

	return 0;

err_invalid_mask:
	kfree(trialmask);
	return -EINVAL;
}

333
static int iio_scan_mask_clear(struct iio_buffer *buffer, int bit)
334
{
335
	clear_bit(bit, buffer->scan_mask);
336 337 338 339 340 341 342 343
	return 0;
}

static ssize_t iio_scan_el_store(struct device *dev,
				 struct device_attribute *attr,
				 const char *buf,
				 size_t len)
{
344
	int ret;
345
	bool state;
L
Lars-Peter Clausen 已提交
346
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
347
	struct iio_buffer *buffer = indio_dev->buffer;
348 349
	struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);

350 351 352
	ret = strtobool(buf, &state);
	if (ret < 0)
		return ret;
353
	mutex_lock(&indio_dev->mlock);
354
	if (iio_buffer_is_active(indio_dev->buffer)) {
355 356 357
		ret = -EBUSY;
		goto error_ret;
	}
358
	ret = iio_scan_mask_query(indio_dev, buffer, this_attr->address);
359 360 361
	if (ret < 0)
		goto error_ret;
	if (!state && ret) {
362
		ret = iio_scan_mask_clear(buffer, this_attr->address);
363 364 365
		if (ret)
			goto error_ret;
	} else if (state && !ret) {
366
		ret = iio_scan_mask_set(indio_dev, buffer, this_attr->address);
367 368 369 370 371 372 373
		if (ret)
			goto error_ret;
	}

error_ret:
	mutex_unlock(&indio_dev->mlock);

374
	return ret < 0 ? ret : len;
375 376 377 378 379 380 381

}

static ssize_t iio_scan_el_ts_show(struct device *dev,
				   struct device_attribute *attr,
				   char *buf)
{
L
Lars-Peter Clausen 已提交
382
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
383
	return sprintf(buf, "%d\n", indio_dev->buffer->scan_timestamp);
384 385 386 387 388 389 390
}

static ssize_t iio_scan_el_ts_store(struct device *dev,
				    struct device_attribute *attr,
				    const char *buf,
				    size_t len)
{
391
	int ret;
L
Lars-Peter Clausen 已提交
392
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
393
	bool state;
394

395 396 397 398
	ret = strtobool(buf, &state);
	if (ret < 0)
		return ret;

399
	mutex_lock(&indio_dev->mlock);
400
	if (iio_buffer_is_active(indio_dev->buffer)) {
401 402 403
		ret = -EBUSY;
		goto error_ret;
	}
404
	indio_dev->buffer->scan_timestamp = state;
405 406 407 408 409 410
error_ret:
	mutex_unlock(&indio_dev->mlock);

	return ret ? ret : len;
}

411 412
static int iio_buffer_add_channel_sysfs(struct iio_dev *indio_dev,
					const struct iio_chan_spec *chan)
413
{
414
	int ret, attrcount = 0;
415
	struct iio_buffer *buffer = indio_dev->buffer;
416

417
	ret = __iio_add_chan_devattr("index",
418 419 420 421
				     chan,
				     &iio_show_scan_index,
				     NULL,
				     0,
422
				     IIO_SEPARATE,
423
				     &indio_dev->dev,
424
				     &buffer->scan_el_dev_attr_list);
425
	if (ret)
426
		return ret;
427 428
	attrcount++;
	ret = __iio_add_chan_devattr("type",
429 430 431 432 433
				     chan,
				     &iio_show_fixed_type,
				     NULL,
				     0,
				     0,
434
				     &indio_dev->dev,
435
				     &buffer->scan_el_dev_attr_list);
436
	if (ret)
437
		return ret;
438
	attrcount++;
439
	if (chan->type != IIO_TIMESTAMP)
440
		ret = __iio_add_chan_devattr("en",
441 442 443 444 445
					     chan,
					     &iio_scan_el_show,
					     &iio_scan_el_store,
					     chan->scan_index,
					     0,
446
					     &indio_dev->dev,
447
					     &buffer->scan_el_dev_attr_list);
448
	else
449
		ret = __iio_add_chan_devattr("en",
450 451 452 453 454
					     chan,
					     &iio_scan_el_ts_show,
					     &iio_scan_el_ts_store,
					     chan->scan_index,
					     0,
455
					     &indio_dev->dev,
456
					     &buffer->scan_el_dev_attr_list);
457
	if (ret)
458
		return ret;
459 460
	attrcount++;
	ret = attrcount;
461 462 463
	return ret;
}

464 465 466
static ssize_t iio_buffer_read_length(struct device *dev,
				      struct device_attribute *attr,
				      char *buf)
467
{
L
Lars-Peter Clausen 已提交
468
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
469
	struct iio_buffer *buffer = indio_dev->buffer;
470

471
	return sprintf(buf, "%d\n", buffer->length);
472 473
}

474 475 476
static ssize_t iio_buffer_write_length(struct device *dev,
				       struct device_attribute *attr,
				       const char *buf, size_t len)
477
{
L
Lars-Peter Clausen 已提交
478
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
479
	struct iio_buffer *buffer = indio_dev->buffer;
480 481
	unsigned int val;
	int ret;
482

483
	ret = kstrtouint(buf, 10, &val);
484 485 486
	if (ret)
		return ret;

487 488
	if (val == buffer->length)
		return len;
489

490
	mutex_lock(&indio_dev->mlock);
491
	if (iio_buffer_is_active(indio_dev->buffer)) {
492 493
		ret = -EBUSY;
	} else {
494
		buffer->access->set_length(buffer, val);
495
		ret = 0;
496
	}
497 498 499 500 501
	if (ret)
		goto out;
	if (buffer->length && buffer->length < buffer->watermark)
		buffer->watermark = buffer->length;
out:
502
	mutex_unlock(&indio_dev->mlock);
503

504
	return ret ? ret : len;
505 506
}

507 508 509
static ssize_t iio_buffer_show_enable(struct device *dev,
				      struct device_attribute *attr,
				      char *buf)
510
{
L
Lars-Peter Clausen 已提交
511
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
512
	return sprintf(buf, "%d\n", iio_buffer_is_active(indio_dev->buffer));
513 514
}

515 516
static int iio_compute_scan_bytes(struct iio_dev *indio_dev,
				const unsigned long *mask, bool timestamp)
517 518 519 520 521 522
{
	const struct iio_chan_spec *ch;
	unsigned bytes = 0;
	int length, i;

	/* How much space will the demuxed element take? */
523
	for_each_set_bit(i, mask,
524 525
			 indio_dev->masklength) {
		ch = iio_find_channel_from_si(indio_dev, i);
526 527 528 529 530
		if (ch->scan_type.repeat > 1)
			length = ch->scan_type.storagebits / 8 *
				ch->scan_type.repeat;
		else
			length = ch->scan_type.storagebits / 8;
531 532 533
		bytes = ALIGN(bytes, length);
		bytes += length;
	}
534
	if (timestamp) {
535
		ch = iio_find_channel_from_si(indio_dev,
536
					      indio_dev->scan_index_timestamp);
537 538 539 540 541
		if (ch->scan_type.repeat > 1)
			length = ch->scan_type.storagebits / 8 *
				ch->scan_type.repeat;
		else
			length = ch->scan_type.storagebits / 8;
542 543 544
		bytes = ALIGN(bytes, length);
		bytes += length;
	}
545 546 547
	return bytes;
}

548 549 550 551 552 553 554 555 556 557
static void iio_buffer_activate(struct iio_dev *indio_dev,
	struct iio_buffer *buffer)
{
	iio_buffer_get(buffer);
	list_add(&buffer->buffer_list, &indio_dev->buffer_list);
}

static void iio_buffer_deactivate(struct iio_buffer *buffer)
{
	list_del_init(&buffer->buffer_list);
558
	wake_up_interruptible(&buffer->pollq);
559 560 561
	iio_buffer_put(buffer);
}

562 563 564 565 566 567 568 569 570
static void iio_buffer_deactivate_all(struct iio_dev *indio_dev)
{
	struct iio_buffer *buffer, *_buffer;

	list_for_each_entry_safe(buffer, _buffer,
			&indio_dev->buffer_list, buffer_list)
		iio_buffer_deactivate(buffer);
}

571 572 573 574 575 576 577 578 579 580 581 582 583 584
static void iio_buffer_update_bytes_per_datum(struct iio_dev *indio_dev,
	struct iio_buffer *buffer)
{
	unsigned int bytes;

	if (!buffer->access->set_bytes_per_datum)
		return;

	bytes = iio_compute_scan_bytes(indio_dev, buffer->scan_mask,
		buffer->scan_timestamp);

	buffer->access->set_bytes_per_datum(buffer, bytes);
}

585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
static int iio_buffer_request_update(struct iio_dev *indio_dev,
	struct iio_buffer *buffer)
{
	int ret;

	iio_buffer_update_bytes_per_datum(indio_dev, buffer);
	if (buffer->access->request_update) {
		ret = buffer->access->request_update(buffer);
		if (ret) {
			dev_dbg(&indio_dev->dev,
			       "Buffer not started: buffer parameter update failed (%d)\n",
				ret);
			return ret;
		}
	}

	return 0;
}

604 605 606 607 608 609 610 611
static void iio_free_scan_mask(struct iio_dev *indio_dev,
	const unsigned long *mask)
{
	/* If the mask is dynamically allocated free it, otherwise do nothing */
	if (!indio_dev->available_scan_masks)
		kfree(mask);
}

612 613
struct iio_device_config {
	unsigned int mode;
614
	unsigned int watermark;
615 616 617 618 619 620 621 622 623 624 625
	const unsigned long *scan_mask;
	unsigned int scan_bytes;
	bool scan_timestamp;
};

static int iio_verify_update(struct iio_dev *indio_dev,
	struct iio_buffer *insert_buffer, struct iio_buffer *remove_buffer,
	struct iio_device_config *config)
{
	unsigned long *compound_mask;
	const unsigned long *scan_mask;
626
	bool strict_scanmask = false;
627 628
	struct iio_buffer *buffer;
	bool scan_timestamp;
629
	unsigned int modes;
630 631 632 633 634 635 636 637 638 639 640

	memset(config, 0, sizeof(*config));

	/*
	 * If there is just one buffer and we are removing it there is nothing
	 * to verify.
	 */
	if (remove_buffer && !insert_buffer &&
		list_is_singular(&indio_dev->buffer_list))
			return 0;

641 642 643 644 645 646
	modes = indio_dev->modes;

	list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
		if (buffer == remove_buffer)
			continue;
		modes &= buffer->access->modes;
647
		config->watermark = min(config->watermark, buffer->watermark);
648 649
	}

650
	if (insert_buffer) {
651
		modes &= insert_buffer->access->modes;
652 653 654
		config->watermark = min(config->watermark,
			insert_buffer->watermark);
	}
655

656
	/* Definitely possible for devices to support both of these. */
657
	if ((modes & INDIO_BUFFER_TRIGGERED) && indio_dev->trig) {
658
		config->mode = INDIO_BUFFER_TRIGGERED;
659
	} else if (modes & INDIO_BUFFER_HARDWARE) {
660 661 662 663 664 665
		/*
		 * Keep things simple for now and only allow a single buffer to
		 * be connected in hardware mode.
		 */
		if (insert_buffer && !list_empty(&indio_dev->buffer_list))
			return -EINVAL;
666
		config->mode = INDIO_BUFFER_HARDWARE;
667
		strict_scanmask = true;
668
	} else if (modes & INDIO_BUFFER_SOFTWARE) {
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
		config->mode = INDIO_BUFFER_SOFTWARE;
	} else {
		/* Can only occur on first buffer */
		if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
			dev_dbg(&indio_dev->dev, "Buffer not started: no trigger\n");
		return -EINVAL;
	}

	/* What scan mask do we actually have? */
	compound_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength),
				sizeof(long), GFP_KERNEL);
	if (compound_mask == NULL)
		return -ENOMEM;

	scan_timestamp = false;

	list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
		if (buffer == remove_buffer)
			continue;
		bitmap_or(compound_mask, compound_mask, buffer->scan_mask,
			  indio_dev->masklength);
		scan_timestamp |= buffer->scan_timestamp;
	}

	if (insert_buffer) {
		bitmap_or(compound_mask, compound_mask,
			  insert_buffer->scan_mask, indio_dev->masklength);
		scan_timestamp |= insert_buffer->scan_timestamp;
	}

	if (indio_dev->available_scan_masks) {
		scan_mask = iio_scan_mask_match(indio_dev->available_scan_masks,
				    indio_dev->masklength,
702 703
				    compound_mask,
				    strict_scanmask);
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
		kfree(compound_mask);
		if (scan_mask == NULL)
			return -EINVAL;
	} else {
	    scan_mask = compound_mask;
	}

	config->scan_bytes = iio_compute_scan_bytes(indio_dev,
				    scan_mask, scan_timestamp);
	config->scan_mask = scan_mask;
	config->scan_timestamp = scan_timestamp;

	return 0;
}

719 720
static int iio_enable_buffers(struct iio_dev *indio_dev,
	struct iio_device_config *config)
721
{
722
	int ret;
723

724 725 726
	indio_dev->active_scan_mask = config->scan_mask;
	indio_dev->scan_timestamp = config->scan_timestamp;
	indio_dev->scan_bytes = config->scan_bytes;
727

728 729
	iio_update_demux(indio_dev);

730 731 732 733
	/* Wind up again */
	if (indio_dev->setup_ops->preenable) {
		ret = indio_dev->setup_ops->preenable(indio_dev);
		if (ret) {
734
			dev_dbg(&indio_dev->dev,
735
			       "Buffer not started: buffer preenable failed (%d)\n", ret);
736
			goto err_undo_config;
737 738
		}
	}
739

740 741
	if (indio_dev->info->update_scan_mode) {
		ret = indio_dev->info
742 743
			->update_scan_mode(indio_dev,
					   indio_dev->active_scan_mask);
744
		if (ret < 0) {
745 746 747
			dev_dbg(&indio_dev->dev,
				"Buffer not started: update scan mode failed (%d)\n",
				ret);
748
			goto err_run_postdisable;
749 750
		}
	}
751

752 753 754 755
	if (indio_dev->info->hwfifo_set_watermark)
		indio_dev->info->hwfifo_set_watermark(indio_dev,
			config->watermark);

756
	indio_dev->currentmode = config->mode;
757 758 759 760

	if (indio_dev->setup_ops->postenable) {
		ret = indio_dev->setup_ops->postenable(indio_dev);
		if (ret) {
761
			dev_dbg(&indio_dev->dev,
762
			       "Buffer not started: postenable failed (%d)\n", ret);
763
			goto err_run_postdisable;
764 765 766
		}
	}

767
	return 0;
768

769
err_run_postdisable:
770 771 772
	indio_dev->currentmode = INDIO_DIRECT_MODE;
	if (indio_dev->setup_ops->postdisable)
		indio_dev->setup_ops->postdisable(indio_dev);
773 774 775
err_undo_config:
	indio_dev->active_scan_mask = NULL;

776
	return ret;
777 778 779 780
}

static int iio_disable_buffers(struct iio_dev *indio_dev)
{
781 782
	int ret = 0;
	int ret2;
783 784 785 786 787

	/* Wind down existing buffers - iff there are any */
	if (list_empty(&indio_dev->buffer_list))
		return 0;

788 789 790 791 792 793 794
	/*
	 * If things go wrong at some step in disable we still need to continue
	 * to perform the other steps, otherwise we leave the device in a
	 * inconsistent state. We return the error code for the first error we
	 * encountered.
	 */

795
	if (indio_dev->setup_ops->predisable) {
796 797 798
		ret2 = indio_dev->setup_ops->predisable(indio_dev);
		if (ret2 && !ret)
			ret = ret2;
799 800 801 802 803
	}

	indio_dev->currentmode = INDIO_DIRECT_MODE;

	if (indio_dev->setup_ops->postdisable) {
804 805 806
		ret2 = indio_dev->setup_ops->postdisable(indio_dev);
		if (ret2 && !ret)
			ret = ret2;
807 808
	}

809 810 811 812
	iio_free_scan_mask(indio_dev, indio_dev->active_scan_mask);
	indio_dev->active_scan_mask = NULL;

	return ret;
813 814 815 816 817 818 819
}

static int __iio_update_buffers(struct iio_dev *indio_dev,
		       struct iio_buffer *insert_buffer,
		       struct iio_buffer *remove_buffer)
{
	struct iio_device_config new_config;
820
	int ret;
821 822 823 824 825 826 827 828 829 830 831 832 833

	ret = iio_verify_update(indio_dev, insert_buffer, remove_buffer,
		&new_config);
	if (ret)
		return ret;

	if (insert_buffer) {
		ret = iio_buffer_request_update(indio_dev, insert_buffer);
		if (ret)
			goto err_free_config;
	}

	ret = iio_disable_buffers(indio_dev);
834 835
	if (ret)
		goto err_deactivate_all;
836 837 838 839 840 841 842

	if (remove_buffer)
		iio_buffer_deactivate(remove_buffer);
	if (insert_buffer)
		iio_buffer_activate(indio_dev, insert_buffer);

	/* If no buffers in list, we are done */
843
	if (list_empty(&indio_dev->buffer_list))
844 845 846
		return 0;

	ret = iio_enable_buffers(indio_dev, &new_config);
847 848
	if (ret)
		goto err_deactivate_all;
849 850

	return 0;
851

852 853 854 855 856 857 858 859 860 861 862
err_deactivate_all:
	/*
	 * We've already verified that the config is valid earlier. If things go
	 * wrong in either enable or disable the most likely reason is an IO
	 * error from the device. In this case there is no good recovery
	 * strategy. Just make sure to disable everything and leave the device
	 * in a sane state.  With a bit of luck the device might come back to
	 * life again later and userspace can try again.
	 */
	iio_buffer_deactivate_all(indio_dev);

863 864 865
err_free_config:
	iio_free_scan_mask(indio_dev, new_config.scan_mask);
	return ret;
866
}
867 868 869 870 871 872 873

int iio_update_buffers(struct iio_dev *indio_dev,
		       struct iio_buffer *insert_buffer,
		       struct iio_buffer *remove_buffer)
{
	int ret;

874 875 876
	if (insert_buffer == remove_buffer)
		return 0;

877 878 879
	mutex_lock(&indio_dev->info_exist_lock);
	mutex_lock(&indio_dev->mlock);

880 881 882 883 884 885 886 887 888 889 890
	if (insert_buffer && iio_buffer_is_active(insert_buffer))
		insert_buffer = NULL;

	if (remove_buffer && !iio_buffer_is_active(remove_buffer))
		remove_buffer = NULL;

	if (!insert_buffer && !remove_buffer) {
		ret = 0;
		goto out_unlock;
	}

891 892 893 894 895 896 897 898 899 900 901 902 903
	if (indio_dev->info == NULL) {
		ret = -ENODEV;
		goto out_unlock;
	}

	ret = __iio_update_buffers(indio_dev, insert_buffer, remove_buffer);

out_unlock:
	mutex_unlock(&indio_dev->mlock);
	mutex_unlock(&indio_dev->info_exist_lock);

	return ret;
}
904 905
EXPORT_SYMBOL_GPL(iio_update_buffers);

906 907 908
void iio_disable_all_buffers(struct iio_dev *indio_dev)
{
	iio_disable_buffers(indio_dev);
909
	iio_buffer_deactivate_all(indio_dev);
910 911
}

912 913 914 915
static ssize_t iio_buffer_store_enable(struct device *dev,
				       struct device_attribute *attr,
				       const char *buf,
				       size_t len)
916 917 918 919 920 921 922 923 924 925 926 927 928
{
	int ret;
	bool requested_state;
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
	bool inlist;

	ret = strtobool(buf, &requested_state);
	if (ret < 0)
		return ret;

	mutex_lock(&indio_dev->mlock);

	/* Find out if it is in the list */
929
	inlist = iio_buffer_is_active(indio_dev->buffer);
930 931 932 933 934
	/* Already in desired state */
	if (inlist == requested_state)
		goto done;

	if (requested_state)
935
		ret = __iio_update_buffers(indio_dev,
936 937
					 indio_dev->buffer, NULL);
	else
938
		ret = __iio_update_buffers(indio_dev,
939 940 941 942 943 944 945
					 NULL, indio_dev->buffer);

done:
	mutex_unlock(&indio_dev->mlock);
	return (ret < 0) ? ret : len;
}

946 947
static const char * const iio_scan_elements_group_name = "scan_elements";

948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992
static ssize_t iio_buffer_show_watermark(struct device *dev,
					 struct device_attribute *attr,
					 char *buf)
{
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
	struct iio_buffer *buffer = indio_dev->buffer;

	return sprintf(buf, "%u\n", buffer->watermark);
}

static ssize_t iio_buffer_store_watermark(struct device *dev,
					  struct device_attribute *attr,
					  const char *buf,
					  size_t len)
{
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
	struct iio_buffer *buffer = indio_dev->buffer;
	unsigned int val;
	int ret;

	ret = kstrtouint(buf, 10, &val);
	if (ret)
		return ret;
	if (!val)
		return -EINVAL;

	mutex_lock(&indio_dev->mlock);

	if (val > buffer->length) {
		ret = -EINVAL;
		goto out;
	}

	if (iio_buffer_is_active(indio_dev->buffer)) {
		ret = -EBUSY;
		goto out;
	}

	buffer->watermark = val;
out:
	mutex_unlock(&indio_dev->mlock);

	return ret ? ret : len;
}

993 994
static DEVICE_ATTR(length, S_IRUGO | S_IWUSR, iio_buffer_read_length,
		   iio_buffer_write_length);
995 996
static struct device_attribute dev_attr_length_ro = __ATTR(length,
	S_IRUGO, iio_buffer_read_length, NULL);
997 998
static DEVICE_ATTR(enable, S_IRUGO | S_IWUSR,
		   iio_buffer_show_enable, iio_buffer_store_enable);
999 1000
static DEVICE_ATTR(watermark, S_IRUGO | S_IWUSR,
		   iio_buffer_show_watermark, iio_buffer_store_watermark);
1001

1002 1003 1004
static struct attribute *iio_buffer_attrs[] = {
	&dev_attr_length.attr,
	&dev_attr_enable.attr,
1005
	&dev_attr_watermark.attr,
1006 1007
};

1008 1009 1010 1011 1012 1013 1014 1015
int iio_buffer_alloc_sysfs_and_mask(struct iio_dev *indio_dev)
{
	struct iio_dev_attr *p;
	struct attribute **attr;
	struct iio_buffer *buffer = indio_dev->buffer;
	int ret, i, attrn, attrcount, attrcount_orig = 0;
	const struct iio_chan_spec *channels;

1016 1017 1018 1019 1020 1021 1022 1023 1024
	channels = indio_dev->channels;
	if (channels) {
		int ml = indio_dev->masklength;

		for (i = 0; i < indio_dev->num_channels; i++)
			ml = max(ml, channels[i].scan_index + 1);
		indio_dev->masklength = ml;
	}

1025 1026 1027
	if (!buffer)
		return 0;

1028 1029 1030 1031 1032 1033
	attrcount = 0;
	if (buffer->attrs) {
		while (buffer->attrs[attrcount] != NULL)
			attrcount++;
	}

1034 1035 1036
	attr = kcalloc(attrcount + ARRAY_SIZE(iio_buffer_attrs) + 1,
		       sizeof(struct attribute *), GFP_KERNEL);
	if (!attr)
1037 1038
		return -ENOMEM;

1039 1040 1041 1042
	memcpy(attr, iio_buffer_attrs, sizeof(iio_buffer_attrs));
	if (!buffer->access->set_length)
		attr[0] = &dev_attr_length_ro.attr;

1043
	if (buffer->attrs)
1044 1045 1046 1047 1048 1049 1050
		memcpy(&attr[ARRAY_SIZE(iio_buffer_attrs)], buffer->attrs,
		       sizeof(struct attribute *) * attrcount);

	attr[attrcount + ARRAY_SIZE(iio_buffer_attrs)] = NULL;

	buffer->buffer_group.name = "buffer";
	buffer->buffer_group.attrs = attr;
1051 1052 1053

	indio_dev->groups[indio_dev->groupcounter++] = &buffer->buffer_group;

1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
	if (buffer->scan_el_attrs != NULL) {
		attr = buffer->scan_el_attrs->attrs;
		while (*attr++ != NULL)
			attrcount_orig++;
	}
	attrcount = attrcount_orig;
	INIT_LIST_HEAD(&buffer->scan_el_dev_attr_list);
	channels = indio_dev->channels;
	if (channels) {
		/* new magic */
		for (i = 0; i < indio_dev->num_channels; i++) {
			if (channels[i].scan_index < 0)
				continue;

			ret = iio_buffer_add_channel_sysfs(indio_dev,
							 &channels[i]);
			if (ret < 0)
				goto error_cleanup_dynamic;
			attrcount += ret;
			if (channels[i].type == IIO_TIMESTAMP)
				indio_dev->scan_index_timestamp =
					channels[i].scan_index;
		}
		if (indio_dev->masklength && buffer->scan_mask == NULL) {
			buffer->scan_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength),
						    sizeof(*buffer->scan_mask),
						    GFP_KERNEL);
			if (buffer->scan_mask == NULL) {
				ret = -ENOMEM;
				goto error_cleanup_dynamic;
			}
		}
	}

	buffer->scan_el_group.name = iio_scan_elements_group_name;

	buffer->scan_el_group.attrs = kcalloc(attrcount + 1,
					      sizeof(buffer->scan_el_group.attrs[0]),
					      GFP_KERNEL);
	if (buffer->scan_el_group.attrs == NULL) {
		ret = -ENOMEM;
		goto error_free_scan_mask;
	}
	if (buffer->scan_el_attrs)
		memcpy(buffer->scan_el_group.attrs, buffer->scan_el_attrs,
		       sizeof(buffer->scan_el_group.attrs[0])*attrcount_orig);
	attrn = attrcount_orig;

	list_for_each_entry(p, &buffer->scan_el_dev_attr_list, l)
		buffer->scan_el_group.attrs[attrn++] = &p->dev_attr.attr;
	indio_dev->groups[indio_dev->groupcounter++] = &buffer->scan_el_group;

	return 0;

error_free_scan_mask:
	kfree(buffer->scan_mask);
error_cleanup_dynamic:
	iio_free_chan_devattr_list(&buffer->scan_el_dev_attr_list);
1112
	kfree(indio_dev->buffer->buffer_group.attrs);
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122

	return ret;
}

void iio_buffer_free_sysfs_and_mask(struct iio_dev *indio_dev)
{
	if (!indio_dev->buffer)
		return;

	kfree(indio_dev->buffer->scan_mask);
1123
	kfree(indio_dev->buffer->buffer_group.attrs);
1124 1125 1126 1127
	kfree(indio_dev->buffer->scan_el_group.attrs);
	iio_free_chan_devattr_list(&indio_dev->buffer->scan_el_dev_attr_list);
}

1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
/**
 * iio_validate_scan_mask_onehot() - Validates that exactly one channel is selected
 * @indio_dev: the iio device
 * @mask: scan mask to be checked
 *
 * Return true if exactly one bit is set in the scan mask, false otherwise. It
 * can be used for devices where only one channel can be active for sampling at
 * a time.
 */
bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev,
	const unsigned long *mask)
{
	return bitmap_weight(mask, indio_dev->masklength) == 1;
}
EXPORT_SYMBOL_GPL(iio_validate_scan_mask_onehot);

1144 1145
int iio_scan_mask_query(struct iio_dev *indio_dev,
			struct iio_buffer *buffer, int bit)
1146
{
1147
	if (bit > indio_dev->masklength)
1148 1149
		return -EINVAL;

1150
	if (!buffer->scan_mask)
1151 1152
		return 0;

1153 1154
	/* Ensure return value is 0 or 1. */
	return !!test_bit(bit, buffer->scan_mask);
1155 1156
};
EXPORT_SYMBOL_GPL(iio_scan_mask_query);
1157 1158

/**
1159
 * struct iio_demux_table - table describing demux memcpy ops
1160
 * @from:	index to copy from
1161
 * @to:		index to copy to
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
 * @length:	how many bytes to copy
 * @l:		list head used for management
 */
struct iio_demux_table {
	unsigned from;
	unsigned to;
	unsigned length;
	struct list_head l;
};

1172 1173
static const void *iio_demux(struct iio_buffer *buffer,
				 const void *datain)
1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185
{
	struct iio_demux_table *t;

	if (list_empty(&buffer->demux_list))
		return datain;
	list_for_each_entry(t, &buffer->demux_list, l)
		memcpy(buffer->demux_bounce + t->to,
		       datain + t->from, t->length);

	return buffer->demux_bounce;
}

1186
static int iio_push_to_buffer(struct iio_buffer *buffer, const void *data)
1187
{
1188
	const void *dataout = iio_demux(buffer, data);
1189 1190 1191 1192 1193
	int ret;

	ret = buffer->access->store_to(buffer, dataout);
	if (ret)
		return ret;
1194

1195 1196 1197 1198 1199 1200
	/*
	 * We can't just test for watermark to decide if we wake the poll queue
	 * because read may request less samples than the watermark.
	 */
	wake_up_interruptible_poll(&buffer->pollq, POLLIN | POLLRDNORM);
	return 0;
1201 1202
}

1203 1204 1205 1206 1207 1208 1209 1210 1211
static void iio_buffer_demux_free(struct iio_buffer *buffer)
{
	struct iio_demux_table *p, *q;
	list_for_each_entry_safe(p, q, &buffer->demux_list, l) {
		list_del(&p->l);
		kfree(p);
	}
}

1212

1213
int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data)
1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
{
	int ret;
	struct iio_buffer *buf;

	list_for_each_entry(buf, &indio_dev->buffer_list, buffer_list) {
		ret = iio_push_to_buffer(buf, data);
		if (ret < 0)
			return ret;
	}

	return 0;
}
EXPORT_SYMBOL_GPL(iio_push_to_buffers);

1228 1229 1230 1231 1232 1233 1234 1235 1236
static int iio_buffer_add_demux(struct iio_buffer *buffer,
	struct iio_demux_table **p, unsigned int in_loc, unsigned int out_loc,
	unsigned int length)
{

	if (*p && (*p)->from + (*p)->length == in_loc &&
		(*p)->to + (*p)->length == out_loc) {
		(*p)->length += length;
	} else {
1237
		*p = kmalloc(sizeof(**p), GFP_KERNEL);
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248
		if (*p == NULL)
			return -ENOMEM;
		(*p)->from = in_loc;
		(*p)->to = out_loc;
		(*p)->length = length;
		list_add_tail(&(*p)->l, &buffer->demux_list);
	}

	return 0;
}

1249 1250
static int iio_buffer_update_demux(struct iio_dev *indio_dev,
				   struct iio_buffer *buffer)
1251 1252 1253 1254
{
	const struct iio_chan_spec *ch;
	int ret, in_ind = -1, out_ind, length;
	unsigned in_loc = 0, out_loc = 0;
1255
	struct iio_demux_table *p = NULL;
1256 1257

	/* Clear out any old demux */
1258
	iio_buffer_demux_free(buffer);
1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
	kfree(buffer->demux_bounce);
	buffer->demux_bounce = NULL;

	/* First work out which scan mode we will actually have */
	if (bitmap_equal(indio_dev->active_scan_mask,
			 buffer->scan_mask,
			 indio_dev->masklength))
		return 0;

	/* Now we have the two masks, work from least sig and build up sizes */
	for_each_set_bit(out_ind,
1270
			 buffer->scan_mask,
1271 1272 1273 1274 1275 1276 1277 1278 1279
			 indio_dev->masklength) {
		in_ind = find_next_bit(indio_dev->active_scan_mask,
				       indio_dev->masklength,
				       in_ind + 1);
		while (in_ind != out_ind) {
			in_ind = find_next_bit(indio_dev->active_scan_mask,
					       indio_dev->masklength,
					       in_ind + 1);
			ch = iio_find_channel_from_si(indio_dev, in_ind);
1280 1281 1282 1283 1284
			if (ch->scan_type.repeat > 1)
				length = ch->scan_type.storagebits / 8 *
					ch->scan_type.repeat;
			else
				length = ch->scan_type.storagebits / 8;
1285
			/* Make sure we are aligned */
1286
			in_loc = roundup(in_loc, length) + length;
1287 1288
		}
		ch = iio_find_channel_from_si(indio_dev, in_ind);
1289 1290 1291 1292 1293
		if (ch->scan_type.repeat > 1)
			length = ch->scan_type.storagebits / 8 *
				ch->scan_type.repeat;
		else
			length = ch->scan_type.storagebits / 8;
1294 1295
		out_loc = roundup(out_loc, length);
		in_loc = roundup(in_loc, length);
1296 1297 1298
		ret = iio_buffer_add_demux(buffer, &p, in_loc, out_loc, length);
		if (ret)
			goto error_clear_mux_table;
1299 1300 1301 1302 1303 1304
		out_loc += length;
		in_loc += length;
	}
	/* Relies on scan_timestamp being last */
	if (buffer->scan_timestamp) {
		ch = iio_find_channel_from_si(indio_dev,
1305
			indio_dev->scan_index_timestamp);
1306 1307 1308 1309 1310
		if (ch->scan_type.repeat > 1)
			length = ch->scan_type.storagebits / 8 *
				ch->scan_type.repeat;
		else
			length = ch->scan_type.storagebits / 8;
1311 1312
		out_loc = roundup(out_loc, length);
		in_loc = roundup(in_loc, length);
1313 1314 1315
		ret = iio_buffer_add_demux(buffer, &p, in_loc, out_loc, length);
		if (ret)
			goto error_clear_mux_table;
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
		out_loc += length;
		in_loc += length;
	}
	buffer->demux_bounce = kzalloc(out_loc, GFP_KERNEL);
	if (buffer->demux_bounce == NULL) {
		ret = -ENOMEM;
		goto error_clear_mux_table;
	}
	return 0;

error_clear_mux_table:
1327 1328
	iio_buffer_demux_free(buffer);

1329 1330
	return ret;
}
1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349

int iio_update_demux(struct iio_dev *indio_dev)
{
	struct iio_buffer *buffer;
	int ret;

	list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
		ret = iio_buffer_update_demux(indio_dev, buffer);
		if (ret < 0)
			goto error_clear_mux_table;
	}
	return 0;

error_clear_mux_table:
	list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list)
		iio_buffer_demux_free(buffer);

	return ret;
}
1350
EXPORT_SYMBOL_GPL(iio_update_demux);
1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392

/**
 * iio_buffer_release() - Free a buffer's resources
 * @ref: Pointer to the kref embedded in the iio_buffer struct
 *
 * This function is called when the last reference to the buffer has been
 * dropped. It will typically free all resources allocated by the buffer. Do not
 * call this function manually, always use iio_buffer_put() when done using a
 * buffer.
 */
static void iio_buffer_release(struct kref *ref)
{
	struct iio_buffer *buffer = container_of(ref, struct iio_buffer, ref);

	buffer->access->release(buffer);
}

/**
 * iio_buffer_get() - Grab a reference to the buffer
 * @buffer: The buffer to grab a reference for, may be NULL
 *
 * Returns the pointer to the buffer that was passed into the function.
 */
struct iio_buffer *iio_buffer_get(struct iio_buffer *buffer)
{
	if (buffer)
		kref_get(&buffer->ref);

	return buffer;
}
EXPORT_SYMBOL_GPL(iio_buffer_get);

/**
 * iio_buffer_put() - Release the reference to the buffer
 * @buffer: The buffer to release the reference for, may be NULL
 */
void iio_buffer_put(struct iio_buffer *buffer)
{
	if (buffer)
		kref_put(&buffer->ref, iio_buffer_release);
}
EXPORT_SYMBOL_GPL(iio_buffer_put);