blob: c2d5440aa2265258e41ec11d6c9e6d60f18705f3 [file] [log] [blame]
Jonathan Cameron14555b12011-09-21 11:15:57 +01001/* The industrial I/O core
2 *
3 * Copyright (c) 2008 Jonathan Cameron
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 *
9 * Handling of buffer allocation / resizing.
10 *
11 *
12 * Things to look at here.
13 * - Better memory allocation techniques?
14 * - Alternative access techniques?
15 */
16#include <linux/kernel.h>
Paul Gortmaker8e336a72011-07-10 13:09:12 -040017#include <linux/export.h>
Jonathan Cameron14555b12011-09-21 11:15:57 +010018#include <linux/device.h>
19#include <linux/fs.h>
20#include <linux/cdev.h>
21#include <linux/slab.h>
22#include <linux/poll.h>
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +010023#include <linux/sched.h>
Jonathan Cameron14555b12011-09-21 11:15:57 +010024
Jonathan Cameron06458e22012-04-25 15:54:58 +010025#include <linux/iio/iio.h>
Jonathan Cameron14555b12011-09-21 11:15:57 +010026#include "iio_core.h"
Jonathan Cameron06458e22012-04-25 15:54:58 +010027#include <linux/iio/sysfs.h>
28#include <linux/iio/buffer.h>
Jonathan Cameron14555b12011-09-21 11:15:57 +010029
30static const char * const iio_endian_prefix[] = {
31 [IIO_BE] = "be",
32 [IIO_LE] = "le",
33};
34
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +010035static bool iio_buffer_is_active(struct iio_buffer *buf)
Jonathan Cameron84b36ce2012-06-30 20:06:00 +010036{
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +010037 return !list_empty(&buf->buffer_list);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +010038}
39
Lars-Peter Clausen647cc7b2013-11-25 14:56:00 +000040static bool iio_buffer_data_available(struct iio_buffer *buf)
41{
Josselin Costanzi9dd46942014-06-27 17:20:00 +010042 return buf->access->data_available(buf);
Lars-Peter Clausen647cc7b2013-11-25 14:56:00 +000043}
44
Jonathan Cameron14555b12011-09-21 11:15:57 +010045/**
46 * iio_buffer_read_first_n_outer() - chrdev read for buffer access
47 *
48 * This function relies on all buffer implementations having an
49 * iio_buffer as their first element.
50 **/
51ssize_t iio_buffer_read_first_n_outer(struct file *filp, char __user *buf,
52 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;
Lars-Peter Clausenee551a12013-11-25 14:56:00 +000056 int ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +010057
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +010058 if (!indio_dev->info)
59 return -ENODEV;
60
Jonathan Cameron96e00f12011-10-26 17:27:45 +010061 if (!rb || !rb->access->read_first_n)
Jonathan Cameron14555b12011-09-21 11:15:57 +010062 return -EINVAL;
Lars-Peter Clausenee551a12013-11-25 14:56:00 +000063
64 do {
65 if (!iio_buffer_data_available(rb)) {
66 if (filp->f_flags & O_NONBLOCK)
67 return -EAGAIN;
68
69 ret = wait_event_interruptible(rb->pollq,
70 iio_buffer_data_available(rb) ||
71 indio_dev->info == NULL);
72 if (ret)
73 return ret;
74 if (indio_dev->info == NULL)
75 return -ENODEV;
76 }
77
78 ret = rb->access->read_first_n(rb, n, buf);
79 if (ret == 0 && (filp->f_flags & O_NONBLOCK))
80 ret = -EAGAIN;
81 } while (ret == 0);
82
83 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +010084}
85
86/**
87 * iio_buffer_poll() - poll the buffer to find out if it has data
88 */
89unsigned int iio_buffer_poll(struct file *filp,
90 struct poll_table_struct *wait)
91{
92 struct iio_dev *indio_dev = filp->private_data;
93 struct iio_buffer *rb = indio_dev->buffer;
94
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +010095 if (!indio_dev->info)
96 return -ENODEV;
97
Jonathan Cameron14555b12011-09-21 11:15:57 +010098 poll_wait(filp, &rb->pollq, wait);
Lars-Peter Clausen647cc7b2013-11-25 14:56:00 +000099 if (iio_buffer_data_available(rb))
Jonathan Cameron14555b12011-09-21 11:15:57 +0100100 return POLLIN | POLLRDNORM;
101 /* need a way of knowing if there may be enough data... */
102 return 0;
103}
104
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +0100105/**
106 * iio_buffer_wakeup_poll - Wakes up the buffer waitqueue
107 * @indio_dev: The IIO device
108 *
109 * Wakes up the event waitqueue used for poll(). Should usually
110 * be called when the device is unregistered.
111 */
112void iio_buffer_wakeup_poll(struct iio_dev *indio_dev)
113{
114 if (!indio_dev->buffer)
115 return;
116
117 wake_up(&indio_dev->buffer->pollq);
118}
119
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000120void iio_buffer_init(struct iio_buffer *buffer)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100121{
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000122 INIT_LIST_HEAD(&buffer->demux_list);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100123 INIT_LIST_HEAD(&buffer->buffer_list);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100124 init_waitqueue_head(&buffer->pollq);
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100125 kref_init(&buffer->ref);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100126}
127EXPORT_SYMBOL(iio_buffer_init);
128
129static ssize_t iio_show_scan_index(struct device *dev,
130 struct device_attribute *attr,
131 char *buf)
132{
133 return sprintf(buf, "%u\n", to_iio_dev_attr(attr)->c->scan_index);
134}
135
136static ssize_t iio_show_fixed_type(struct device *dev,
137 struct device_attribute *attr,
138 char *buf)
139{
140 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
141 u8 type = this_attr->c->scan_type.endianness;
142
143 if (type == IIO_CPU) {
Jonathan Cameron9d5d1152011-10-04 16:02:08 +0100144#ifdef __LITTLE_ENDIAN
145 type = IIO_LE;
146#else
147 type = IIO_BE;
148#endif
Jonathan Cameron14555b12011-09-21 11:15:57 +0100149 }
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +0100150 if (this_attr->c->scan_type.repeat > 1)
151 return sprintf(buf, "%s:%c%d/%dX%d>>%u\n",
152 iio_endian_prefix[type],
153 this_attr->c->scan_type.sign,
154 this_attr->c->scan_type.realbits,
155 this_attr->c->scan_type.storagebits,
156 this_attr->c->scan_type.repeat,
157 this_attr->c->scan_type.shift);
158 else
159 return sprintf(buf, "%s:%c%d/%d>>%u\n",
Jonathan Cameron14555b12011-09-21 11:15:57 +0100160 iio_endian_prefix[type],
161 this_attr->c->scan_type.sign,
162 this_attr->c->scan_type.realbits,
163 this_attr->c->scan_type.storagebits,
164 this_attr->c->scan_type.shift);
165}
166
167static ssize_t iio_scan_el_show(struct device *dev,
168 struct device_attribute *attr,
169 char *buf)
170{
171 int ret;
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200172 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100173
Alec Berg2076a202014-03-19 18:50:00 +0000174 /* Ensure ret is 0 or 1. */
175 ret = !!test_bit(to_iio_dev_attr(attr)->address,
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000176 indio_dev->buffer->scan_mask);
177
Jonathan Cameron14555b12011-09-21 11:15:57 +0100178 return sprintf(buf, "%d\n", ret);
179}
180
Lars-Peter Clausen217a5cf2014-11-26 18:55:09 +0100181/* Note NULL used as error indicator as it doesn't make sense. */
182static const unsigned long *iio_scan_mask_match(const unsigned long *av_masks,
183 unsigned int masklength,
184 const unsigned long *mask)
185{
186 if (bitmap_empty(mask, masklength))
187 return NULL;
188 while (*av_masks) {
189 if (bitmap_subset(mask, av_masks, masklength))
190 return av_masks;
191 av_masks += BITS_TO_LONGS(masklength);
192 }
193 return NULL;
194}
195
196static bool iio_validate_scan_mask(struct iio_dev *indio_dev,
197 const unsigned long *mask)
198{
199 if (!indio_dev->setup_ops->validate_scan_mask)
200 return true;
201
202 return indio_dev->setup_ops->validate_scan_mask(indio_dev, mask);
203}
204
205/**
206 * iio_scan_mask_set() - set particular bit in the scan mask
207 * @indio_dev: the iio device
208 * @buffer: the buffer whose scan mask we are interested in
209 * @bit: the bit to be set.
210 *
211 * Note that at this point we have no way of knowing what other
212 * buffers might request, hence this code only verifies that the
213 * individual buffers request is plausible.
214 */
215static int iio_scan_mask_set(struct iio_dev *indio_dev,
216 struct iio_buffer *buffer, int bit)
217{
218 const unsigned long *mask;
219 unsigned long *trialmask;
220
221 trialmask = kmalloc(sizeof(*trialmask)*
222 BITS_TO_LONGS(indio_dev->masklength),
223 GFP_KERNEL);
224
225 if (trialmask == NULL)
226 return -ENOMEM;
227 if (!indio_dev->masklength) {
228 WARN_ON("Trying to set scanmask prior to registering buffer\n");
229 goto err_invalid_mask;
230 }
231 bitmap_copy(trialmask, buffer->scan_mask, indio_dev->masklength);
232 set_bit(bit, trialmask);
233
234 if (!iio_validate_scan_mask(indio_dev, trialmask))
235 goto err_invalid_mask;
236
237 if (indio_dev->available_scan_masks) {
238 mask = iio_scan_mask_match(indio_dev->available_scan_masks,
239 indio_dev->masklength,
240 trialmask);
241 if (!mask)
242 goto err_invalid_mask;
243 }
244 bitmap_copy(buffer->scan_mask, trialmask, indio_dev->masklength);
245
246 kfree(trialmask);
247
248 return 0;
249
250err_invalid_mask:
251 kfree(trialmask);
252 return -EINVAL;
253}
254
Jonathan Cameron14555b12011-09-21 11:15:57 +0100255static int iio_scan_mask_clear(struct iio_buffer *buffer, int bit)
256{
257 clear_bit(bit, buffer->scan_mask);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100258 return 0;
259}
260
261static ssize_t iio_scan_el_store(struct device *dev,
262 struct device_attribute *attr,
263 const char *buf,
264 size_t len)
265{
Jonathan Camerona714af22012-04-21 10:09:32 +0100266 int ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100267 bool state;
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200268 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100269 struct iio_buffer *buffer = indio_dev->buffer;
270 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
271
Jonathan Camerona714af22012-04-21 10:09:32 +0100272 ret = strtobool(buf, &state);
273 if (ret < 0)
274 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100275 mutex_lock(&indio_dev->mlock);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100276 if (iio_buffer_is_active(indio_dev->buffer)) {
Jonathan Cameron14555b12011-09-21 11:15:57 +0100277 ret = -EBUSY;
278 goto error_ret;
279 }
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000280 ret = iio_scan_mask_query(indio_dev, buffer, this_attr->address);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100281 if (ret < 0)
282 goto error_ret;
283 if (!state && ret) {
284 ret = iio_scan_mask_clear(buffer, this_attr->address);
285 if (ret)
286 goto error_ret;
287 } else if (state && !ret) {
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000288 ret = iio_scan_mask_set(indio_dev, buffer, this_attr->address);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100289 if (ret)
290 goto error_ret;
291 }
292
293error_ret:
294 mutex_unlock(&indio_dev->mlock);
295
Lars-Peter Clausen5a2a6e12011-12-08 18:35:53 +0100296 return ret < 0 ? ret : len;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100297
298}
299
300static ssize_t iio_scan_el_ts_show(struct device *dev,
301 struct device_attribute *attr,
302 char *buf)
303{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200304 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100305 return sprintf(buf, "%d\n", indio_dev->buffer->scan_timestamp);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100306}
307
308static ssize_t iio_scan_el_ts_store(struct device *dev,
309 struct device_attribute *attr,
310 const char *buf,
311 size_t len)
312{
Jonathan Camerona714af22012-04-21 10:09:32 +0100313 int ret;
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200314 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100315 bool state;
316
Jonathan Camerona714af22012-04-21 10:09:32 +0100317 ret = strtobool(buf, &state);
318 if (ret < 0)
319 return ret;
320
Jonathan Cameron14555b12011-09-21 11:15:57 +0100321 mutex_lock(&indio_dev->mlock);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100322 if (iio_buffer_is_active(indio_dev->buffer)) {
Jonathan Cameron14555b12011-09-21 11:15:57 +0100323 ret = -EBUSY;
324 goto error_ret;
325 }
326 indio_dev->buffer->scan_timestamp = state;
327error_ret:
328 mutex_unlock(&indio_dev->mlock);
329
330 return ret ? ret : len;
331}
332
333static int iio_buffer_add_channel_sysfs(struct iio_dev *indio_dev,
334 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 chan,
341 &iio_show_scan_index,
342 NULL,
343 0,
Jonathan Cameron37044322013-09-08 14:57:00 +0100344 IIO_SEPARATE,
Jonathan Cameron14555b12011-09-21 11:15:57 +0100345 &indio_dev->dev,
346 &buffer->scan_el_dev_attr_list);
347 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000348 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100349 attrcount++;
350 ret = __iio_add_chan_devattr("type",
351 chan,
352 &iio_show_fixed_type,
353 NULL,
354 0,
355 0,
356 &indio_dev->dev,
357 &buffer->scan_el_dev_attr_list);
358 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000359 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100360 attrcount++;
361 if (chan->type != IIO_TIMESTAMP)
362 ret = __iio_add_chan_devattr("en",
363 chan,
364 &iio_scan_el_show,
365 &iio_scan_el_store,
366 chan->scan_index,
367 0,
368 &indio_dev->dev,
369 &buffer->scan_el_dev_attr_list);
370 else
371 ret = __iio_add_chan_devattr("en",
372 chan,
373 &iio_scan_el_ts_show,
374 &iio_scan_el_ts_store,
375 chan->scan_index,
376 0,
377 &indio_dev->dev,
378 &buffer->scan_el_dev_attr_list);
Peter Meerwald95725882013-09-17 23:42:00 +0100379 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000380 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100381 attrcount++;
382 ret = attrcount;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100383 return ret;
384}
385
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100386static ssize_t iio_buffer_read_length(struct device *dev,
387 struct device_attribute *attr,
388 char *buf)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100389{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200390 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100391 struct iio_buffer *buffer = indio_dev->buffer;
392
Lars-Peter Clausen37495662014-11-26 18:55:17 +0100393 return sprintf(buf, "%d\n", buffer->length);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100394}
Jonathan Cameron14555b12011-09-21 11:15:57 +0100395
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100396static ssize_t iio_buffer_write_length(struct device *dev,
397 struct device_attribute *attr,
398 const char *buf, size_t len)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100399{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200400 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100401 struct iio_buffer *buffer = indio_dev->buffer;
Lars-Peter Clausen948ad202012-10-18 14:47:00 +0100402 unsigned int val;
403 int ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100404
Lars-Peter Clausen948ad202012-10-18 14:47:00 +0100405 ret = kstrtouint(buf, 10, &val);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100406 if (ret)
407 return ret;
408
Lars-Peter Clausen37495662014-11-26 18:55:17 +0100409 if (val == buffer->length)
410 return len;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100411
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100412 mutex_lock(&indio_dev->mlock);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100413 if (iio_buffer_is_active(indio_dev->buffer)) {
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100414 ret = -EBUSY;
415 } else {
Lars-Peter Clausen8d92db22014-11-26 18:55:16 +0100416 buffer->access->set_length(buffer, val);
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100417 ret = 0;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100418 }
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100419 mutex_unlock(&indio_dev->mlock);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100420
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100421 return ret ? ret : len;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100422}
Jonathan Cameron14555b12011-09-21 11:15:57 +0100423
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100424static ssize_t iio_buffer_show_enable(struct device *dev,
425 struct device_attribute *attr,
426 char *buf)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100427{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200428 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100429 return sprintf(buf, "%d\n", iio_buffer_is_active(indio_dev->buffer));
Jonathan Cameron14555b12011-09-21 11:15:57 +0100430}
Jonathan Cameron14555b12011-09-21 11:15:57 +0100431
Peter Meerwald183f4172013-09-18 22:10:00 +0100432static int iio_compute_scan_bytes(struct iio_dev *indio_dev,
433 const unsigned long *mask, bool timestamp)
Jonathan Cameron959d2952011-12-05 21:37:13 +0000434{
Jonathan Cameron959d2952011-12-05 21:37:13 +0000435 const struct iio_chan_spec *ch;
436 unsigned bytes = 0;
437 int length, i;
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100438
439 /* How much space will the demuxed element take? */
440 for_each_set_bit(i, mask,
441 indio_dev->masklength) {
442 ch = iio_find_channel_from_si(indio_dev, i);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +0100443 if (ch->scan_type.repeat > 1)
444 length = ch->scan_type.storagebits / 8 *
445 ch->scan_type.repeat;
446 else
447 length = ch->scan_type.storagebits / 8;
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100448 bytes = ALIGN(bytes, length);
449 bytes += length;
450 }
451 if (timestamp) {
452 ch = iio_find_channel_from_si(indio_dev,
Jonathan Cameronf1264802012-04-21 10:09:34 +0100453 indio_dev->scan_index_timestamp);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +0100454 if (ch->scan_type.repeat > 1)
455 length = ch->scan_type.storagebits / 8 *
456 ch->scan_type.repeat;
457 else
458 length = ch->scan_type.storagebits / 8;
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100459 bytes = ALIGN(bytes, length);
460 bytes += length;
461 }
462 return bytes;
463}
464
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100465static void iio_buffer_activate(struct iio_dev *indio_dev,
466 struct iio_buffer *buffer)
467{
468 iio_buffer_get(buffer);
469 list_add(&buffer->buffer_list, &indio_dev->buffer_list);
470}
471
472static void iio_buffer_deactivate(struct iio_buffer *buffer)
473{
474 list_del_init(&buffer->buffer_list);
475 iio_buffer_put(buffer);
476}
477
Lars-Peter Clausena87c82e2013-09-18 21:02:00 +0100478void iio_disable_all_buffers(struct iio_dev *indio_dev)
479{
480 struct iio_buffer *buffer, *_buffer;
481
482 if (list_empty(&indio_dev->buffer_list))
483 return;
484
485 if (indio_dev->setup_ops->predisable)
486 indio_dev->setup_ops->predisable(indio_dev);
487
488 list_for_each_entry_safe(buffer, _buffer,
489 &indio_dev->buffer_list, buffer_list)
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100490 iio_buffer_deactivate(buffer);
Lars-Peter Clausena87c82e2013-09-18 21:02:00 +0100491
492 indio_dev->currentmode = INDIO_DIRECT_MODE;
493 if (indio_dev->setup_ops->postdisable)
494 indio_dev->setup_ops->postdisable(indio_dev);
Lars-Peter Clausene086ed72013-10-15 09:38:00 +0100495
496 if (indio_dev->available_scan_masks == NULL)
497 kfree(indio_dev->active_scan_mask);
Lars-Peter Clausena87c82e2013-09-18 21:02:00 +0100498}
499
Lars-Peter Clausen8e050992013-10-14 17:49:00 +0100500static void iio_buffer_update_bytes_per_datum(struct iio_dev *indio_dev,
501 struct iio_buffer *buffer)
502{
503 unsigned int bytes;
504
505 if (!buffer->access->set_bytes_per_datum)
506 return;
507
508 bytes = iio_compute_scan_bytes(indio_dev, buffer->scan_mask,
509 buffer->scan_timestamp);
510
511 buffer->access->set_bytes_per_datum(buffer, bytes);
512}
513
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100514static int __iio_update_buffers(struct iio_dev *indio_dev,
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100515 struct iio_buffer *insert_buffer,
516 struct iio_buffer *remove_buffer)
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100517{
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100518 int ret;
519 int success = 0;
520 struct iio_buffer *buffer;
521 unsigned long *compound_mask;
522 const unsigned long *old_mask;
Jonathan Cameron959d2952011-12-05 21:37:13 +0000523
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100524 /* Wind down existing buffers - iff there are any */
525 if (!list_empty(&indio_dev->buffer_list)) {
526 if (indio_dev->setup_ops->predisable) {
527 ret = indio_dev->setup_ops->predisable(indio_dev);
528 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000529 return ret;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100530 }
531 indio_dev->currentmode = INDIO_DIRECT_MODE;
532 if (indio_dev->setup_ops->postdisable) {
533 ret = indio_dev->setup_ops->postdisable(indio_dev);
534 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000535 return ret;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100536 }
537 }
538 /* Keep a copy of current setup to allow roll back */
539 old_mask = indio_dev->active_scan_mask;
540 if (!indio_dev->available_scan_masks)
541 indio_dev->active_scan_mask = NULL;
542
543 if (remove_buffer)
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100544 iio_buffer_deactivate(remove_buffer);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100545 if (insert_buffer)
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100546 iio_buffer_activate(indio_dev, insert_buffer);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100547
548 /* If no buffers in list, we are done */
549 if (list_empty(&indio_dev->buffer_list)) {
550 indio_dev->currentmode = INDIO_DIRECT_MODE;
551 if (indio_dev->available_scan_masks == NULL)
552 kfree(old_mask);
553 return 0;
554 }
Jonathan Cameron959d2952011-12-05 21:37:13 +0000555
Peter Meerwald95725882013-09-17 23:42:00 +0100556 /* What scan mask do we actually have? */
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100557 compound_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength),
558 sizeof(long), GFP_KERNEL);
559 if (compound_mask == NULL) {
560 if (indio_dev->available_scan_masks == NULL)
561 kfree(old_mask);
562 return -ENOMEM;
563 }
564 indio_dev->scan_timestamp = 0;
565
566 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
567 bitmap_or(compound_mask, compound_mask, buffer->scan_mask,
568 indio_dev->masklength);
569 indio_dev->scan_timestamp |= buffer->scan_timestamp;
570 }
571 if (indio_dev->available_scan_masks) {
Jonathan Cameron959d2952011-12-05 21:37:13 +0000572 indio_dev->active_scan_mask =
573 iio_scan_mask_match(indio_dev->available_scan_masks,
574 indio_dev->masklength,
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100575 compound_mask);
576 if (indio_dev->active_scan_mask == NULL) {
577 /*
578 * Roll back.
579 * Note can only occur when adding a buffer.
580 */
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100581 iio_buffer_deactivate(insert_buffer);
Peter Meerwaldd66e0452013-09-18 22:10:00 +0100582 if (old_mask) {
583 indio_dev->active_scan_mask = old_mask;
584 success = -EINVAL;
585 }
586 else {
587 kfree(compound_mask);
588 ret = -EINVAL;
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000589 return ret;
Peter Meerwaldd66e0452013-09-18 22:10:00 +0100590 }
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100591 }
592 } else {
593 indio_dev->active_scan_mask = compound_mask;
594 }
Lars-Peter Clausenaff1eb42012-06-15 18:08:59 +0200595
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000596 iio_update_demux(indio_dev);
597
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100598 /* Wind up again */
599 if (indio_dev->setup_ops->preenable) {
600 ret = indio_dev->setup_ops->preenable(indio_dev);
601 if (ret) {
602 printk(KERN_ERR
Michał Mirosławbec18892013-05-04 14:19:00 +0100603 "Buffer not started: buffer preenable failed (%d)\n", ret);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100604 goto error_remove_inserted;
605 }
606 }
607 indio_dev->scan_bytes =
608 iio_compute_scan_bytes(indio_dev,
609 indio_dev->active_scan_mask,
610 indio_dev->scan_timestamp);
Lars-Peter Clausen8e050992013-10-14 17:49:00 +0100611 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
612 iio_buffer_update_bytes_per_datum(indio_dev, buffer);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100613 if (buffer->access->request_update) {
614 ret = buffer->access->request_update(buffer);
615 if (ret) {
616 printk(KERN_INFO
Michał Mirosławbec18892013-05-04 14:19:00 +0100617 "Buffer not started: buffer parameter update failed (%d)\n", ret);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100618 goto error_run_postdisable;
619 }
620 }
Lars-Peter Clausen8e050992013-10-14 17:49:00 +0100621 }
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100622 if (indio_dev->info->update_scan_mode) {
623 ret = indio_dev->info
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000624 ->update_scan_mode(indio_dev,
625 indio_dev->active_scan_mask);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100626 if (ret < 0) {
Michał Mirosławbec18892013-05-04 14:19:00 +0100627 printk(KERN_INFO "Buffer not started: update scan mode failed (%d)\n", ret);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100628 goto error_run_postdisable;
629 }
630 }
Peter Meerwald95725882013-09-17 23:42:00 +0100631 /* Definitely possible for devices to support both of these. */
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100632 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED) {
633 if (!indio_dev->trig) {
634 printk(KERN_INFO "Buffer not started: no trigger\n");
635 ret = -EINVAL;
636 /* Can only occur on first buffer */
637 goto error_run_postdisable;
638 }
639 indio_dev->currentmode = INDIO_BUFFER_TRIGGERED;
640 } else if (indio_dev->modes & INDIO_BUFFER_HARDWARE) {
641 indio_dev->currentmode = INDIO_BUFFER_HARDWARE;
Karol Wrona03af03a2015-01-07 19:36:11 +0100642 } else if (indio_dev->modes & INDIO_BUFFER_SOFTWARE) {
643 indio_dev->currentmode = INDIO_BUFFER_SOFTWARE;
Peter Meerwald95725882013-09-17 23:42:00 +0100644 } else { /* Should never be reached */
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100645 ret = -EINVAL;
646 goto error_run_postdisable;
647 }
648
649 if (indio_dev->setup_ops->postenable) {
650 ret = indio_dev->setup_ops->postenable(indio_dev);
651 if (ret) {
652 printk(KERN_INFO
Michał Mirosławbec18892013-05-04 14:19:00 +0100653 "Buffer not started: postenable failed (%d)\n", ret);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100654 indio_dev->currentmode = INDIO_DIRECT_MODE;
655 if (indio_dev->setup_ops->postdisable)
656 indio_dev->setup_ops->postdisable(indio_dev);
657 goto error_disable_all_buffers;
658 }
659 }
660
661 if (indio_dev->available_scan_masks)
662 kfree(compound_mask);
663 else
664 kfree(old_mask);
665
666 return success;
667
668error_disable_all_buffers:
669 indio_dev->currentmode = INDIO_DIRECT_MODE;
670error_run_postdisable:
671 if (indio_dev->setup_ops->postdisable)
672 indio_dev->setup_ops->postdisable(indio_dev);
673error_remove_inserted:
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100674 if (insert_buffer)
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100675 iio_buffer_deactivate(insert_buffer);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100676 indio_dev->active_scan_mask = old_mask;
677 kfree(compound_mask);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100678 return ret;
679}
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100680
681int iio_update_buffers(struct iio_dev *indio_dev,
682 struct iio_buffer *insert_buffer,
683 struct iio_buffer *remove_buffer)
684{
685 int ret;
686
Lars-Peter Clausen3909fab2013-10-04 12:07:00 +0100687 if (insert_buffer == remove_buffer)
688 return 0;
689
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100690 mutex_lock(&indio_dev->info_exist_lock);
691 mutex_lock(&indio_dev->mlock);
692
Lars-Peter Clausen3909fab2013-10-04 12:07:00 +0100693 if (insert_buffer && iio_buffer_is_active(insert_buffer))
694 insert_buffer = NULL;
695
696 if (remove_buffer && !iio_buffer_is_active(remove_buffer))
697 remove_buffer = NULL;
698
699 if (!insert_buffer && !remove_buffer) {
700 ret = 0;
701 goto out_unlock;
702 }
703
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100704 if (indio_dev->info == NULL) {
705 ret = -ENODEV;
706 goto out_unlock;
707 }
708
709 ret = __iio_update_buffers(indio_dev, insert_buffer, remove_buffer);
710
711out_unlock:
712 mutex_unlock(&indio_dev->mlock);
713 mutex_unlock(&indio_dev->info_exist_lock);
714
715 return ret;
716}
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100717EXPORT_SYMBOL_GPL(iio_update_buffers);
718
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100719static ssize_t iio_buffer_store_enable(struct device *dev,
720 struct device_attribute *attr,
721 const char *buf,
722 size_t len)
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100723{
724 int ret;
725 bool requested_state;
726 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100727 bool inlist;
728
729 ret = strtobool(buf, &requested_state);
730 if (ret < 0)
731 return ret;
732
733 mutex_lock(&indio_dev->mlock);
734
735 /* Find out if it is in the list */
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100736 inlist = iio_buffer_is_active(indio_dev->buffer);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100737 /* Already in desired state */
738 if (inlist == requested_state)
739 goto done;
740
741 if (requested_state)
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100742 ret = __iio_update_buffers(indio_dev,
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100743 indio_dev->buffer, NULL);
744 else
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100745 ret = __iio_update_buffers(indio_dev,
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100746 NULL, indio_dev->buffer);
747
748 if (ret < 0)
749 goto done;
750done:
751 mutex_unlock(&indio_dev->mlock);
752 return (ret < 0) ? ret : len;
753}
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100754
Lars-Peter Clausend967cb62014-11-26 18:55:14 +0100755static const char * const iio_scan_elements_group_name = "scan_elements";
756
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100757static DEVICE_ATTR(length, S_IRUGO | S_IWUSR, iio_buffer_read_length,
758 iio_buffer_write_length);
Lars-Peter Clausen8d92db22014-11-26 18:55:16 +0100759static struct device_attribute dev_attr_length_ro = __ATTR(length,
760 S_IRUGO, iio_buffer_read_length, NULL);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100761static DEVICE_ATTR(enable, S_IRUGO | S_IWUSR,
762 iio_buffer_show_enable, iio_buffer_store_enable);
763
Octavian Purdila6da9b382015-01-31 02:00:00 +0200764static struct attribute *iio_buffer_attrs[] = {
765 &dev_attr_length.attr,
766 &dev_attr_enable.attr,
767};
768
Lars-Peter Clausend967cb62014-11-26 18:55:14 +0100769int iio_buffer_alloc_sysfs_and_mask(struct iio_dev *indio_dev)
770{
771 struct iio_dev_attr *p;
772 struct attribute **attr;
773 struct iio_buffer *buffer = indio_dev->buffer;
774 int ret, i, attrn, attrcount, attrcount_orig = 0;
775 const struct iio_chan_spec *channels;
776
777 if (!buffer)
778 return 0;
779
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100780 attrcount = 0;
781 if (buffer->attrs) {
782 while (buffer->attrs[attrcount] != NULL)
783 attrcount++;
784 }
785
Octavian Purdila6da9b382015-01-31 02:00:00 +0200786 attr = kcalloc(attrcount + ARRAY_SIZE(iio_buffer_attrs) + 1,
787 sizeof(struct attribute *), GFP_KERNEL);
788 if (!attr)
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100789 return -ENOMEM;
790
Octavian Purdila6da9b382015-01-31 02:00:00 +0200791 memcpy(attr, iio_buffer_attrs, sizeof(iio_buffer_attrs));
792 if (!buffer->access->set_length)
793 attr[0] = &dev_attr_length_ro.attr;
794
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100795 if (buffer->attrs)
Octavian Purdila6da9b382015-01-31 02:00:00 +0200796 memcpy(&attr[ARRAY_SIZE(iio_buffer_attrs)], buffer->attrs,
797 sizeof(struct attribute *) * attrcount);
798
799 attr[attrcount + ARRAY_SIZE(iio_buffer_attrs)] = NULL;
800
801 buffer->buffer_group.name = "buffer";
802 buffer->buffer_group.attrs = attr;
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100803
804 indio_dev->groups[indio_dev->groupcounter++] = &buffer->buffer_group;
805
Lars-Peter Clausend967cb62014-11-26 18:55:14 +0100806 if (buffer->scan_el_attrs != NULL) {
807 attr = buffer->scan_el_attrs->attrs;
808 while (*attr++ != NULL)
809 attrcount_orig++;
810 }
811 attrcount = attrcount_orig;
812 INIT_LIST_HEAD(&buffer->scan_el_dev_attr_list);
813 channels = indio_dev->channels;
814 if (channels) {
815 /* new magic */
816 for (i = 0; i < indio_dev->num_channels; i++) {
817 if (channels[i].scan_index < 0)
818 continue;
819
820 /* Establish necessary mask length */
821 if (channels[i].scan_index >
822 (int)indio_dev->masklength - 1)
823 indio_dev->masklength
824 = channels[i].scan_index + 1;
825
826 ret = iio_buffer_add_channel_sysfs(indio_dev,
827 &channels[i]);
828 if (ret < 0)
829 goto error_cleanup_dynamic;
830 attrcount += ret;
831 if (channels[i].type == IIO_TIMESTAMP)
832 indio_dev->scan_index_timestamp =
833 channels[i].scan_index;
834 }
835 if (indio_dev->masklength && buffer->scan_mask == NULL) {
836 buffer->scan_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength),
837 sizeof(*buffer->scan_mask),
838 GFP_KERNEL);
839 if (buffer->scan_mask == NULL) {
840 ret = -ENOMEM;
841 goto error_cleanup_dynamic;
842 }
843 }
844 }
845
846 buffer->scan_el_group.name = iio_scan_elements_group_name;
847
848 buffer->scan_el_group.attrs = kcalloc(attrcount + 1,
849 sizeof(buffer->scan_el_group.attrs[0]),
850 GFP_KERNEL);
851 if (buffer->scan_el_group.attrs == NULL) {
852 ret = -ENOMEM;
853 goto error_free_scan_mask;
854 }
855 if (buffer->scan_el_attrs)
856 memcpy(buffer->scan_el_group.attrs, buffer->scan_el_attrs,
857 sizeof(buffer->scan_el_group.attrs[0])*attrcount_orig);
858 attrn = attrcount_orig;
859
860 list_for_each_entry(p, &buffer->scan_el_dev_attr_list, l)
861 buffer->scan_el_group.attrs[attrn++] = &p->dev_attr.attr;
862 indio_dev->groups[indio_dev->groupcounter++] = &buffer->scan_el_group;
863
864 return 0;
865
866error_free_scan_mask:
867 kfree(buffer->scan_mask);
868error_cleanup_dynamic:
869 iio_free_chan_devattr_list(&buffer->scan_el_dev_attr_list);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100870 kfree(indio_dev->buffer->buffer_group.attrs);
Lars-Peter Clausend967cb62014-11-26 18:55:14 +0100871
872 return ret;
873}
874
875void iio_buffer_free_sysfs_and_mask(struct iio_dev *indio_dev)
876{
877 if (!indio_dev->buffer)
878 return;
879
880 kfree(indio_dev->buffer->scan_mask);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100881 kfree(indio_dev->buffer->buffer_group.attrs);
Lars-Peter Clausend967cb62014-11-26 18:55:14 +0100882 kfree(indio_dev->buffer->scan_el_group.attrs);
883 iio_free_chan_devattr_list(&indio_dev->buffer->scan_el_dev_attr_list);
884}
885
Jonathan Cameron14555b12011-09-21 11:15:57 +0100886/**
Lars-Peter Clausen81636632012-07-09 10:00:00 +0100887 * iio_validate_scan_mask_onehot() - Validates that exactly one channel is selected
888 * @indio_dev: the iio device
889 * @mask: scan mask to be checked
890 *
891 * Return true if exactly one bit is set in the scan mask, false otherwise. It
892 * can be used for devices where only one channel can be active for sampling at
893 * a time.
894 */
895bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev,
896 const unsigned long *mask)
897{
898 return bitmap_weight(mask, indio_dev->masklength) == 1;
899}
900EXPORT_SYMBOL_GPL(iio_validate_scan_mask_onehot);
901
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000902int iio_scan_mask_query(struct iio_dev *indio_dev,
903 struct iio_buffer *buffer, int bit)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100904{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100905 if (bit > indio_dev->masklength)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100906 return -EINVAL;
907
908 if (!buffer->scan_mask)
909 return 0;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100910
Alec Berg2076a202014-03-19 18:50:00 +0000911 /* Ensure return value is 0 or 1. */
912 return !!test_bit(bit, buffer->scan_mask);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100913};
914EXPORT_SYMBOL_GPL(iio_scan_mask_query);
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000915
916/**
917 * struct iio_demux_table() - table describing demux memcpy ops
918 * @from: index to copy from
Peter Meerwald99698b42012-08-26 13:43:00 +0100919 * @to: index to copy to
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000920 * @length: how many bytes to copy
921 * @l: list head used for management
922 */
923struct iio_demux_table {
924 unsigned from;
925 unsigned to;
926 unsigned length;
927 struct list_head l;
928};
929
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +0100930static const void *iio_demux(struct iio_buffer *buffer,
931 const void *datain)
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000932{
933 struct iio_demux_table *t;
934
935 if (list_empty(&buffer->demux_list))
936 return datain;
937 list_for_each_entry(t, &buffer->demux_list, l)
938 memcpy(buffer->demux_bounce + t->to,
939 datain + t->from, t->length);
940
941 return buffer->demux_bounce;
942}
943
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +0100944static int iio_push_to_buffer(struct iio_buffer *buffer, const void *data)
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000945{
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +0100946 const void *dataout = iio_demux(buffer, data);
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000947
Lars-Peter Clausence56ade2012-09-04 13:38:00 +0100948 return buffer->access->store_to(buffer, dataout);
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000949}
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000950
Jonathan Cameron842cd102012-04-21 10:09:45 +0100951static void iio_buffer_demux_free(struct iio_buffer *buffer)
952{
953 struct iio_demux_table *p, *q;
954 list_for_each_entry_safe(p, q, &buffer->demux_list, l) {
955 list_del(&p->l);
956 kfree(p);
957 }
958}
959
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100960
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +0100961int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data)
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100962{
963 int ret;
964 struct iio_buffer *buf;
965
966 list_for_each_entry(buf, &indio_dev->buffer_list, buffer_list) {
967 ret = iio_push_to_buffer(buf, data);
968 if (ret < 0)
969 return ret;
970 }
971
972 return 0;
973}
974EXPORT_SYMBOL_GPL(iio_push_to_buffers);
975
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +0100976static int iio_buffer_add_demux(struct iio_buffer *buffer,
977 struct iio_demux_table **p, unsigned int in_loc, unsigned int out_loc,
978 unsigned int length)
979{
980
981 if (*p && (*p)->from + (*p)->length == in_loc &&
982 (*p)->to + (*p)->length == out_loc) {
983 (*p)->length += length;
984 } else {
Jonathan Cameron7cdca1782014-08-08 09:43:00 +0100985 *p = kmalloc(sizeof(**p), GFP_KERNEL);
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +0100986 if (*p == NULL)
987 return -ENOMEM;
988 (*p)->from = in_loc;
989 (*p)->to = out_loc;
990 (*p)->length = length;
991 list_add_tail(&(*p)->l, &buffer->demux_list);
992 }
993
994 return 0;
995}
996
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100997static int iio_buffer_update_demux(struct iio_dev *indio_dev,
998 struct iio_buffer *buffer)
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000999{
1000 const struct iio_chan_spec *ch;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001001 int ret, in_ind = -1, out_ind, length;
1002 unsigned in_loc = 0, out_loc = 0;
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +01001003 struct iio_demux_table *p = NULL;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001004
1005 /* Clear out any old demux */
Jonathan Cameron842cd102012-04-21 10:09:45 +01001006 iio_buffer_demux_free(buffer);
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001007 kfree(buffer->demux_bounce);
1008 buffer->demux_bounce = NULL;
1009
1010 /* First work out which scan mode we will actually have */
1011 if (bitmap_equal(indio_dev->active_scan_mask,
1012 buffer->scan_mask,
1013 indio_dev->masklength))
1014 return 0;
1015
1016 /* Now we have the two masks, work from least sig and build up sizes */
1017 for_each_set_bit(out_ind,
Lars-Peter Clausen61bd55c2014-07-17 16:59:00 +01001018 buffer->scan_mask,
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001019 indio_dev->masklength) {
1020 in_ind = find_next_bit(indio_dev->active_scan_mask,
1021 indio_dev->masklength,
1022 in_ind + 1);
1023 while (in_ind != out_ind) {
1024 in_ind = find_next_bit(indio_dev->active_scan_mask,
1025 indio_dev->masklength,
1026 in_ind + 1);
1027 ch = iio_find_channel_from_si(indio_dev, in_ind);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +01001028 if (ch->scan_type.repeat > 1)
1029 length = ch->scan_type.storagebits / 8 *
1030 ch->scan_type.repeat;
1031 else
1032 length = ch->scan_type.storagebits / 8;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001033 /* Make sure we are aligned */
Lars-Peter Clausen61072db2014-07-17 16:59:00 +01001034 in_loc = roundup(in_loc, length) + length;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001035 }
1036 ch = iio_find_channel_from_si(indio_dev, in_ind);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +01001037 if (ch->scan_type.repeat > 1)
1038 length = ch->scan_type.storagebits / 8 *
1039 ch->scan_type.repeat;
1040 else
1041 length = ch->scan_type.storagebits / 8;
Lars-Peter Clausen61072db2014-07-17 16:59:00 +01001042 out_loc = roundup(out_loc, length);
1043 in_loc = roundup(in_loc, length);
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +01001044 ret = iio_buffer_add_demux(buffer, &p, in_loc, out_loc, length);
1045 if (ret)
1046 goto error_clear_mux_table;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001047 out_loc += length;
1048 in_loc += length;
1049 }
1050 /* Relies on scan_timestamp being last */
1051 if (buffer->scan_timestamp) {
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001052 ch = iio_find_channel_from_si(indio_dev,
Jonathan Cameronf1264802012-04-21 10:09:34 +01001053 indio_dev->scan_index_timestamp);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +01001054 if (ch->scan_type.repeat > 1)
1055 length = ch->scan_type.storagebits / 8 *
1056 ch->scan_type.repeat;
1057 else
1058 length = ch->scan_type.storagebits / 8;
Lars-Peter Clausen61072db2014-07-17 16:59:00 +01001059 out_loc = roundup(out_loc, length);
1060 in_loc = roundup(in_loc, length);
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +01001061 ret = iio_buffer_add_demux(buffer, &p, in_loc, out_loc, length);
1062 if (ret)
1063 goto error_clear_mux_table;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001064 out_loc += length;
1065 in_loc += length;
1066 }
1067 buffer->demux_bounce = kzalloc(out_loc, GFP_KERNEL);
1068 if (buffer->demux_bounce == NULL) {
1069 ret = -ENOMEM;
1070 goto error_clear_mux_table;
1071 }
1072 return 0;
1073
1074error_clear_mux_table:
Jonathan Cameron842cd102012-04-21 10:09:45 +01001075 iio_buffer_demux_free(buffer);
1076
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001077 return ret;
1078}
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001079
1080int iio_update_demux(struct iio_dev *indio_dev)
1081{
1082 struct iio_buffer *buffer;
1083 int ret;
1084
1085 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
1086 ret = iio_buffer_update_demux(indio_dev, buffer);
1087 if (ret < 0)
1088 goto error_clear_mux_table;
1089 }
1090 return 0;
1091
1092error_clear_mux_table:
1093 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list)
1094 iio_buffer_demux_free(buffer);
1095
1096 return ret;
1097}
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001098EXPORT_SYMBOL_GPL(iio_update_demux);
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +01001099
1100/**
1101 * iio_buffer_release() - Free a buffer's resources
1102 * @ref: Pointer to the kref embedded in the iio_buffer struct
1103 *
1104 * This function is called when the last reference to the buffer has been
1105 * dropped. It will typically free all resources allocated by the buffer. Do not
1106 * call this function manually, always use iio_buffer_put() when done using a
1107 * buffer.
1108 */
1109static void iio_buffer_release(struct kref *ref)
1110{
1111 struct iio_buffer *buffer = container_of(ref, struct iio_buffer, ref);
1112
1113 buffer->access->release(buffer);
1114}
1115
1116/**
1117 * iio_buffer_get() - Grab a reference to the buffer
1118 * @buffer: The buffer to grab a reference for, may be NULL
1119 *
1120 * Returns the pointer to the buffer that was passed into the function.
1121 */
1122struct iio_buffer *iio_buffer_get(struct iio_buffer *buffer)
1123{
1124 if (buffer)
1125 kref_get(&buffer->ref);
1126
1127 return buffer;
1128}
1129EXPORT_SYMBOL_GPL(iio_buffer_get);
1130
1131/**
1132 * iio_buffer_put() - Release the reference to the buffer
1133 * @buffer: The buffer to release the reference for, may be NULL
1134 */
1135void iio_buffer_put(struct iio_buffer *buffer)
1136{
1137 if (buffer)
1138 kref_put(&buffer->ref, iio_buffer_release);
1139}
1140EXPORT_SYMBOL_GPL(iio_buffer_put);