industrialio-buffer.c 28.7 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 41
static bool iio_buffer_data_available(struct iio_buffer *buf)
{
42
	return buf->access->data_available(buf);
43 44
}

45
/**
46
 * iio_buffer_read_first_n_outer() - chrdev read for buffer access
47
 *
48 49
 * This function relies on all buffer implementations having an
 * iio_buffer as their first element.
50
 **/
51 52
ssize_t iio_buffer_read_first_n_outer(struct file *filp, char __user *buf,
				      size_t n, loff_t *f_ps)
53
{
54
	struct iio_dev *indio_dev = filp->private_data;
55
	struct iio_buffer *rb = indio_dev->buffer;
56
	int ret;
57

58 59 60
	if (!indio_dev->info)
		return -ENODEV;

61
	if (!rb || !rb->access->read_first_n)
62
		return -EINVAL;
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83

	do {
		if (!iio_buffer_data_available(rb)) {
			if (filp->f_flags & O_NONBLOCK)
				return -EAGAIN;

			ret = wait_event_interruptible(rb->pollq,
					iio_buffer_data_available(rb) ||
					indio_dev->info == NULL);
			if (ret)
				return ret;
			if (indio_dev->info == NULL)
				return -ENODEV;
		}

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

	return ret;
84 85
}

86
/**
87
 * iio_buffer_poll() - poll the buffer to find out if it has data
88
 */
89 90
unsigned int iio_buffer_poll(struct file *filp,
			     struct poll_table_struct *wait)
91
{
92
	struct iio_dev *indio_dev = filp->private_data;
93
	struct iio_buffer *rb = indio_dev->buffer;
94

95 96 97
	if (!indio_dev->info)
		return -ENODEV;

98
	poll_wait(filp, &rb->pollq, wait);
99
	if (iio_buffer_data_available(rb))
100 101
		return POLLIN | POLLRDNORM;
	/* need a way of knowing if there may be enough data... */
102
	return 0;
103 104
}

105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
/**
 * 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);
}

120
void iio_buffer_init(struct iio_buffer *buffer)
121
{
122
	INIT_LIST_HEAD(&buffer->demux_list);
123
	INIT_LIST_HEAD(&buffer->buffer_list);
124
	init_waitqueue_head(&buffer->pollq);
125
	kref_init(&buffer->ref);
126
}
127
EXPORT_SYMBOL(iio_buffer_init);
128

129
static ssize_t iio_show_scan_index(struct device *dev,
130 131
				   struct device_attribute *attr,
				   char *buf)
132
{
133
	return sprintf(buf, "%u\n", to_iio_dev_attr(attr)->c->scan_index);
134 135 136 137 138 139 140
}

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);
141 142 143
	u8 type = this_attr->c->scan_type.endianness;

	if (type == IIO_CPU) {
144 145 146 147 148
#ifdef __LITTLE_ENDIAN
		type = IIO_LE;
#else
		type = IIO_BE;
#endif
149
	}
150 151 152 153 154 155 156 157 158 159
	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",
160
		       iio_endian_prefix[type],
161 162 163 164 165 166
		       this_attr->c->scan_type.sign,
		       this_attr->c->scan_type.realbits,
		       this_attr->c->scan_type.storagebits,
		       this_attr->c->scan_type.shift);
}

167 168 169 170 171
static ssize_t iio_scan_el_show(struct device *dev,
				struct device_attribute *attr,
				char *buf)
{
	int ret;
L
Lars-Peter Clausen 已提交
172
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
173

174 175
	/* Ensure ret is 0 or 1. */
	ret = !!test_bit(to_iio_dev_attr(attr)->address,
176 177
		       indio_dev->buffer->scan_mask);

178 179 180
	return sprintf(buf, "%d\n", ret);
}

181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
/* 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,
					  const unsigned long *mask)
{
	if (bitmap_empty(mask, masklength))
		return NULL;
	while (*av_masks) {
		if (bitmap_subset(mask, av_masks, masklength))
			return av_masks;
		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,
					   trialmask);
		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;
}

255
static int iio_scan_mask_clear(struct iio_buffer *buffer, int bit)
256
{
257
	clear_bit(bit, buffer->scan_mask);
258 259 260 261 262 263 264 265
	return 0;
}

static ssize_t iio_scan_el_store(struct device *dev,
				 struct device_attribute *attr,
				 const char *buf,
				 size_t len)
{
266
	int ret;
267
	bool state;
L
Lars-Peter Clausen 已提交
268
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
269
	struct iio_buffer *buffer = indio_dev->buffer;
270 271
	struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);

272 273 274
	ret = strtobool(buf, &state);
	if (ret < 0)
		return ret;
275
	mutex_lock(&indio_dev->mlock);
276
	if (iio_buffer_is_active(indio_dev->buffer)) {
277 278 279
		ret = -EBUSY;
		goto error_ret;
	}
280
	ret = iio_scan_mask_query(indio_dev, buffer, this_attr->address);
281 282 283
	if (ret < 0)
		goto error_ret;
	if (!state && ret) {
284
		ret = iio_scan_mask_clear(buffer, this_attr->address);
285 286 287
		if (ret)
			goto error_ret;
	} else if (state && !ret) {
288
		ret = iio_scan_mask_set(indio_dev, buffer, this_attr->address);
289 290 291 292 293 294 295
		if (ret)
			goto error_ret;
	}

error_ret:
	mutex_unlock(&indio_dev->mlock);

296
	return ret < 0 ? ret : len;
297 298 299 300 301 302 303

}

static ssize_t iio_scan_el_ts_show(struct device *dev,
				   struct device_attribute *attr,
				   char *buf)
{
L
Lars-Peter Clausen 已提交
304
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
305
	return sprintf(buf, "%d\n", indio_dev->buffer->scan_timestamp);
306 307 308 309 310 311 312
}

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

317 318 319 320
	ret = strtobool(buf, &state);
	if (ret < 0)
		return ret;

321
	mutex_lock(&indio_dev->mlock);
322
	if (iio_buffer_is_active(indio_dev->buffer)) {
323 324 325
		ret = -EBUSY;
		goto error_ret;
	}
326
	indio_dev->buffer->scan_timestamp = state;
327 328 329 330 331 332
error_ret:
	mutex_unlock(&indio_dev->mlock);

	return ret ? ret : len;
}

333 334
static int iio_buffer_add_channel_sysfs(struct iio_dev *indio_dev,
					const struct iio_chan_spec *chan)
335
{
336
	int ret, attrcount = 0;
337
	struct iio_buffer *buffer = indio_dev->buffer;
338

339
	ret = __iio_add_chan_devattr("index",
340 341 342 343
				     chan,
				     &iio_show_scan_index,
				     NULL,
				     0,
344
				     IIO_SEPARATE,
345
				     &indio_dev->dev,
346
				     &buffer->scan_el_dev_attr_list);
347
	if (ret)
348
		return ret;
349 350
	attrcount++;
	ret = __iio_add_chan_devattr("type",
351 352 353 354 355
				     chan,
				     &iio_show_fixed_type,
				     NULL,
				     0,
				     0,
356
				     &indio_dev->dev,
357
				     &buffer->scan_el_dev_attr_list);
358
	if (ret)
359
		return ret;
360
	attrcount++;
361
	if (chan->type != IIO_TIMESTAMP)
362
		ret = __iio_add_chan_devattr("en",
363 364 365 366 367
					     chan,
					     &iio_scan_el_show,
					     &iio_scan_el_store,
					     chan->scan_index,
					     0,
368
					     &indio_dev->dev,
369
					     &buffer->scan_el_dev_attr_list);
370
	else
371
		ret = __iio_add_chan_devattr("en",
372 373 374 375 376
					     chan,
					     &iio_scan_el_ts_show,
					     &iio_scan_el_ts_store,
					     chan->scan_index,
					     0,
377
					     &indio_dev->dev,
378
					     &buffer->scan_el_dev_attr_list);
379
	if (ret)
380
		return ret;
381 382
	attrcount++;
	ret = attrcount;
383 384 385
	return ret;
}

386 387 388
static ssize_t iio_buffer_read_length(struct device *dev,
				      struct device_attribute *attr,
				      char *buf)
389
{
L
Lars-Peter Clausen 已提交
390
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
391
	struct iio_buffer *buffer = indio_dev->buffer;
392

393
	if (buffer->access->get_length)
394
		return sprintf(buf, "%d\n",
395
			       buffer->access->get_length(buffer));
396

397
	return 0;
398 399
}

400 401 402
static ssize_t iio_buffer_write_length(struct device *dev,
				       struct device_attribute *attr,
				       const char *buf, size_t len)
403
{
L
Lars-Peter Clausen 已提交
404
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
405
	struct iio_buffer *buffer = indio_dev->buffer;
406 407
	unsigned int val;
	int ret;
408

409
	ret = kstrtouint(buf, 10, &val);
410 411 412
	if (ret)
		return ret;

413 414
	if (buffer->access->get_length)
		if (val == buffer->access->get_length(buffer))
415 416
			return len;

417
	mutex_lock(&indio_dev->mlock);
418
	if (iio_buffer_is_active(indio_dev->buffer)) {
419 420
		ret = -EBUSY;
	} else {
421
		buffer->access->set_length(buffer, val);
422
		ret = 0;
423
	}
424
	mutex_unlock(&indio_dev->mlock);
425

426
	return ret ? ret : len;
427 428
}

429 430 431
static ssize_t iio_buffer_show_enable(struct device *dev,
				      struct device_attribute *attr,
				      char *buf)
432
{
L
Lars-Peter Clausen 已提交
433
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
434
	return sprintf(buf, "%d\n", iio_buffer_is_active(indio_dev->buffer));
435 436
}

437 438
static int iio_compute_scan_bytes(struct iio_dev *indio_dev,
				const unsigned long *mask, bool timestamp)
439 440 441 442 443 444
{
	const struct iio_chan_spec *ch;
	unsigned bytes = 0;
	int length, i;

	/* How much space will the demuxed element take? */
445
	for_each_set_bit(i, mask,
446 447
			 indio_dev->masklength) {
		ch = iio_find_channel_from_si(indio_dev, i);
448 449 450 451 452
		if (ch->scan_type.repeat > 1)
			length = ch->scan_type.storagebits / 8 *
				ch->scan_type.repeat;
		else
			length = ch->scan_type.storagebits / 8;
453 454 455
		bytes = ALIGN(bytes, length);
		bytes += length;
	}
456
	if (timestamp) {
457
		ch = iio_find_channel_from_si(indio_dev,
458
					      indio_dev->scan_index_timestamp);
459 460 461 462 463
		if (ch->scan_type.repeat > 1)
			length = ch->scan_type.storagebits / 8 *
				ch->scan_type.repeat;
		else
			length = ch->scan_type.storagebits / 8;
464 465 466
		bytes = ALIGN(bytes, length);
		bytes += length;
	}
467 468 469
	return bytes;
}

470 471 472 473 474 475 476 477 478 479 480 481 482
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);
	iio_buffer_put(buffer);
}

483 484 485 486 487 488 489 490 491 492 493 494
void iio_disable_all_buffers(struct iio_dev *indio_dev)
{
	struct iio_buffer *buffer, *_buffer;

	if (list_empty(&indio_dev->buffer_list))
		return;

	if (indio_dev->setup_ops->predisable)
		indio_dev->setup_ops->predisable(indio_dev);

	list_for_each_entry_safe(buffer, _buffer,
			&indio_dev->buffer_list, buffer_list)
495
		iio_buffer_deactivate(buffer);
496 497 498 499

	indio_dev->currentmode = INDIO_DIRECT_MODE;
	if (indio_dev->setup_ops->postdisable)
		indio_dev->setup_ops->postdisable(indio_dev);
500 501 502

	if (indio_dev->available_scan_masks == NULL)
		kfree(indio_dev->active_scan_mask);
503 504
}

505 506 507 508 509 510 511 512 513 514 515 516 517 518
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);
}

519
static int __iio_update_buffers(struct iio_dev *indio_dev,
520 521
		       struct iio_buffer *insert_buffer,
		       struct iio_buffer *remove_buffer)
522
{
523 524 525 526 527
	int ret;
	int success = 0;
	struct iio_buffer *buffer;
	unsigned long *compound_mask;
	const unsigned long *old_mask;
528

529 530 531 532 533
	/* Wind down existing buffers - iff there are any */
	if (!list_empty(&indio_dev->buffer_list)) {
		if (indio_dev->setup_ops->predisable) {
			ret = indio_dev->setup_ops->predisable(indio_dev);
			if (ret)
534
				return ret;
535 536 537 538 539
		}
		indio_dev->currentmode = INDIO_DIRECT_MODE;
		if (indio_dev->setup_ops->postdisable) {
			ret = indio_dev->setup_ops->postdisable(indio_dev);
			if (ret)
540
				return ret;
541 542 543 544 545 546 547 548
		}
	}
	/* Keep a copy of current setup to allow roll back */
	old_mask = indio_dev->active_scan_mask;
	if (!indio_dev->available_scan_masks)
		indio_dev->active_scan_mask = NULL;

	if (remove_buffer)
549
		iio_buffer_deactivate(remove_buffer);
550
	if (insert_buffer)
551
		iio_buffer_activate(indio_dev, insert_buffer);
552 553 554 555 556 557 558 559

	/* If no buffers in list, we are done */
	if (list_empty(&indio_dev->buffer_list)) {
		indio_dev->currentmode = INDIO_DIRECT_MODE;
		if (indio_dev->available_scan_masks == NULL)
			kfree(old_mask);
		return 0;
	}
560

561
	/* What scan mask do we actually have? */
562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
	compound_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength),
				sizeof(long), GFP_KERNEL);
	if (compound_mask == NULL) {
		if (indio_dev->available_scan_masks == NULL)
			kfree(old_mask);
		return -ENOMEM;
	}
	indio_dev->scan_timestamp = 0;

	list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
		bitmap_or(compound_mask, compound_mask, buffer->scan_mask,
			  indio_dev->masklength);
		indio_dev->scan_timestamp |= buffer->scan_timestamp;
	}
	if (indio_dev->available_scan_masks) {
577 578 579
		indio_dev->active_scan_mask =
			iio_scan_mask_match(indio_dev->available_scan_masks,
					    indio_dev->masklength,
580 581 582 583 584 585
					    compound_mask);
		if (indio_dev->active_scan_mask == NULL) {
			/*
			 * Roll back.
			 * Note can only occur when adding a buffer.
			 */
586
			iio_buffer_deactivate(insert_buffer);
587 588 589 590 591 592 593
			if (old_mask) {
				indio_dev->active_scan_mask = old_mask;
				success = -EINVAL;
			}
			else {
				kfree(compound_mask);
				ret = -EINVAL;
594
				return ret;
595
			}
596 597 598 599
		}
	} else {
		indio_dev->active_scan_mask = compound_mask;
	}
600

601 602
	iio_update_demux(indio_dev);

603 604 605 606 607
	/* Wind up again */
	if (indio_dev->setup_ops->preenable) {
		ret = indio_dev->setup_ops->preenable(indio_dev);
		if (ret) {
			printk(KERN_ERR
608
			       "Buffer not started: buffer preenable failed (%d)\n", ret);
609 610 611 612 613 614 615
			goto error_remove_inserted;
		}
	}
	indio_dev->scan_bytes =
		iio_compute_scan_bytes(indio_dev,
				       indio_dev->active_scan_mask,
				       indio_dev->scan_timestamp);
616 617
	list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
		iio_buffer_update_bytes_per_datum(indio_dev, buffer);
618 619 620 621
		if (buffer->access->request_update) {
			ret = buffer->access->request_update(buffer);
			if (ret) {
				printk(KERN_INFO
622
				       "Buffer not started: buffer parameter update failed (%d)\n", ret);
623 624 625
				goto error_run_postdisable;
			}
		}
626
	}
627 628
	if (indio_dev->info->update_scan_mode) {
		ret = indio_dev->info
629 630
			->update_scan_mode(indio_dev,
					   indio_dev->active_scan_mask);
631
		if (ret < 0) {
632
			printk(KERN_INFO "Buffer not started: update scan mode failed (%d)\n", ret);
633 634 635
			goto error_run_postdisable;
		}
	}
636
	/* Definitely possible for devices to support both of these. */
637 638 639 640 641 642 643 644 645 646
	if (indio_dev->modes & INDIO_BUFFER_TRIGGERED) {
		if (!indio_dev->trig) {
			printk(KERN_INFO "Buffer not started: no trigger\n");
			ret = -EINVAL;
			/* Can only occur on first buffer */
			goto error_run_postdisable;
		}
		indio_dev->currentmode = INDIO_BUFFER_TRIGGERED;
	} else if (indio_dev->modes & INDIO_BUFFER_HARDWARE) {
		indio_dev->currentmode = INDIO_BUFFER_HARDWARE;
647
	} else { /* Should never be reached */
648 649 650 651 652 653 654 655
		ret = -EINVAL;
		goto error_run_postdisable;
	}

	if (indio_dev->setup_ops->postenable) {
		ret = indio_dev->setup_ops->postenable(indio_dev);
		if (ret) {
			printk(KERN_INFO
656
			       "Buffer not started: postenable failed (%d)\n", ret);
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677
			indio_dev->currentmode = INDIO_DIRECT_MODE;
			if (indio_dev->setup_ops->postdisable)
				indio_dev->setup_ops->postdisable(indio_dev);
			goto error_disable_all_buffers;
		}
	}

	if (indio_dev->available_scan_masks)
		kfree(compound_mask);
	else
		kfree(old_mask);

	return success;

error_disable_all_buffers:
	indio_dev->currentmode = INDIO_DIRECT_MODE;
error_run_postdisable:
	if (indio_dev->setup_ops->postdisable)
		indio_dev->setup_ops->postdisable(indio_dev);
error_remove_inserted:
	if (insert_buffer)
678
		iio_buffer_deactivate(insert_buffer);
679 680 681 682
	indio_dev->active_scan_mask = old_mask;
	kfree(compound_mask);
	return ret;
}
683 684 685 686 687 688 689

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

690 691 692
	if (insert_buffer == remove_buffer)
		return 0;

693 694 695
	mutex_lock(&indio_dev->info_exist_lock);
	mutex_lock(&indio_dev->mlock);

696 697 698 699 700 701 702 703 704 705 706
	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;
	}

707 708 709 710 711 712 713 714 715 716 717 718 719
	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;
}
720 721
EXPORT_SYMBOL_GPL(iio_update_buffers);

722 723 724 725
static ssize_t iio_buffer_store_enable(struct device *dev,
				       struct device_attribute *attr,
				       const char *buf,
				       size_t len)
726 727 728 729 730 731 732 733 734 735 736 737 738
{
	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 */
739
	inlist = iio_buffer_is_active(indio_dev->buffer);
740 741 742 743 744
	/* Already in desired state */
	if (inlist == requested_state)
		goto done;

	if (requested_state)
745
		ret = __iio_update_buffers(indio_dev,
746 747
					 indio_dev->buffer, NULL);
	else
748
		ret = __iio_update_buffers(indio_dev,
749 750 751 752 753 754 755 756 757
					 NULL, indio_dev->buffer);

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

758 759
static const char * const iio_scan_elements_group_name = "scan_elements";

760 761
static DEVICE_ATTR(length, S_IRUGO | S_IWUSR, iio_buffer_read_length,
		   iio_buffer_write_length);
762 763
static struct device_attribute dev_attr_length_ro = __ATTR(length,
	S_IRUGO, iio_buffer_read_length, NULL);
764 765 766
static DEVICE_ATTR(enable, S_IRUGO | S_IWUSR,
		   iio_buffer_show_enable, iio_buffer_store_enable);

767 768 769 770 771 772 773 774 775 776 777
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;

	if (!buffer)
		return 0;

778 779 780 781 782 783 784 785 786 787 788 789
	attrcount = 0;
	if (buffer->attrs) {
		while (buffer->attrs[attrcount] != NULL)
			attrcount++;
	}

	buffer->buffer_group.name = "buffer";
	buffer->buffer_group.attrs = kcalloc(attrcount + 3,
			sizeof(*buffer->buffer_group.attrs), GFP_KERNEL);
	if (!buffer->buffer_group.attrs)
		return -ENOMEM;

790 791 792 793
	if (buffer->access->set_length)
		buffer->buffer_group.attrs[0] = &dev_attr_length.attr;
	else
		buffer->buffer_group.attrs[0] = &dev_attr_length_ro.attr;
794 795 796 797 798 799 800 801
	buffer->buffer_group.attrs[1] = &dev_attr_enable.attr;
	if (buffer->attrs)
		memcpy(&buffer->buffer_group.attrs[2], buffer->attrs,
			sizeof(*&buffer->buffer_group.attrs) * (attrcount - 2));
	buffer->buffer_group.attrs[attrcount+2] = NULL;

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

802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865
	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;

			/* Establish necessary mask length */
			if (channels[i].scan_index >
			    (int)indio_dev->masklength - 1)
				indio_dev->masklength
					= channels[i].scan_index + 1;

			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);
866
	kfree(indio_dev->buffer->buffer_group.attrs);
867 868 869 870 871 872 873 874 875 876

	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);
877
	kfree(indio_dev->buffer->buffer_group.attrs);
878 879 880 881
	kfree(indio_dev->buffer->scan_el_group.attrs);
	iio_free_chan_devattr_list(&indio_dev->buffer->scan_el_dev_attr_list);
}

882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897
/**
 * 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);

898 899
int iio_scan_mask_query(struct iio_dev *indio_dev,
			struct iio_buffer *buffer, int bit)
900
{
901
	if (bit > indio_dev->masklength)
902 903
		return -EINVAL;

904
	if (!buffer->scan_mask)
905 906
		return 0;

907 908
	/* Ensure return value is 0 or 1. */
	return !!test_bit(bit, buffer->scan_mask);
909 910
};
EXPORT_SYMBOL_GPL(iio_scan_mask_query);
911 912 913 914

/**
 * struct iio_demux_table() - table describing demux memcpy ops
 * @from:	index to copy from
915
 * @to:		index to copy to
916 917 918 919 920 921 922 923 924 925
 * @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;
};

926 927
static const void *iio_demux(struct iio_buffer *buffer,
				 const void *datain)
928 929 930 931 932 933 934 935 936 937 938 939
{
	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;
}

940
static int iio_push_to_buffer(struct iio_buffer *buffer, const void *data)
941
{
942
	const void *dataout = iio_demux(buffer, data);
943

944
	return buffer->access->store_to(buffer, dataout);
945 946
}

947 948 949 950 951 952 953 954 955
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);
	}
}

956

957
int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data)
958 959 960 961 962 963 964 965 966 967 968 969 970 971
{
	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);

972 973 974 975 976 977 978 979 980
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 {
981
		*p = kmalloc(sizeof(**p), GFP_KERNEL);
982 983 984 985 986 987 988 989 990 991 992
		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;
}

993 994
static int iio_buffer_update_demux(struct iio_dev *indio_dev,
				   struct iio_buffer *buffer)
995 996 997 998
{
	const struct iio_chan_spec *ch;
	int ret, in_ind = -1, out_ind, length;
	unsigned in_loc = 0, out_loc = 0;
999
	struct iio_demux_table *p = NULL;
1000 1001

	/* Clear out any old demux */
1002
	iio_buffer_demux_free(buffer);
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
	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,
1014
			 buffer->scan_mask,
1015 1016 1017 1018 1019 1020 1021 1022 1023
			 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);
1024 1025 1026 1027 1028
			if (ch->scan_type.repeat > 1)
				length = ch->scan_type.storagebits / 8 *
					ch->scan_type.repeat;
			else
				length = ch->scan_type.storagebits / 8;
1029
			/* Make sure we are aligned */
1030
			in_loc = roundup(in_loc, length) + length;
1031 1032
		}
		ch = iio_find_channel_from_si(indio_dev, in_ind);
1033 1034 1035 1036 1037
		if (ch->scan_type.repeat > 1)
			length = ch->scan_type.storagebits / 8 *
				ch->scan_type.repeat;
		else
			length = ch->scan_type.storagebits / 8;
1038 1039
		out_loc = roundup(out_loc, length);
		in_loc = roundup(in_loc, length);
1040 1041 1042
		ret = iio_buffer_add_demux(buffer, &p, in_loc, out_loc, length);
		if (ret)
			goto error_clear_mux_table;
1043 1044 1045 1046 1047 1048
		out_loc += length;
		in_loc += length;
	}
	/* Relies on scan_timestamp being last */
	if (buffer->scan_timestamp) {
		ch = iio_find_channel_from_si(indio_dev,
1049
			indio_dev->scan_index_timestamp);
1050 1051 1052 1053 1054
		if (ch->scan_type.repeat > 1)
			length = ch->scan_type.storagebits / 8 *
				ch->scan_type.repeat;
		else
			length = ch->scan_type.storagebits / 8;
1055 1056
		out_loc = roundup(out_loc, length);
		in_loc = roundup(in_loc, length);
1057 1058 1059
		ret = iio_buffer_add_demux(buffer, &p, in_loc, out_loc, length);
		if (ret)
			goto error_clear_mux_table;
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070
		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:
1071 1072
	iio_buffer_demux_free(buffer);

1073 1074
	return ret;
}
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093

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;
}
1094
EXPORT_SYMBOL_GPL(iio_update_demux);
1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136

/**
 * 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);