blob: 0a14bd825fe06879b15acd120a2f0142718ca0b7 [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
Josselin Costanzi37d34552015-03-22 20:33:38 +020040static size_t iio_buffer_data_available(struct iio_buffer *buf)
Lars-Peter Clausen647cc7b2013-11-25 14:56:00 +000041{
Josselin Costanzi9dd46942014-06-27 17:20:00 +010042 return buf->access->data_available(buf);
Lars-Peter Clausen647cc7b2013-11-25 14:56:00 +000043}
44
Octavian Purdilaf4f46732015-03-22 20:33:39 +020045static int iio_buffer_flush_hwfifo(struct iio_dev *indio_dev,
46 struct iio_buffer *buf, size_t required)
Josselin Costanzi37d34552015-03-22 20:33:38 +020047{
Octavian Purdilaf4f46732015-03-22 20:33:39 +020048 if (!indio_dev->info->hwfifo_flush_to_buffer)
49 return -ENODEV;
50
51 return indio_dev->info->hwfifo_flush_to_buffer(indio_dev, required);
52}
53
54static bool iio_buffer_ready(struct iio_dev *indio_dev, struct iio_buffer *buf,
55 size_t to_wait, int to_flush)
56{
57 size_t avail;
58 int flushed = 0;
59
Josselin Costanzi37d34552015-03-22 20:33:38 +020060 /* wakeup if the device was unregistered */
61 if (!indio_dev->info)
62 return true;
63
64 /* drain the buffer if it was disabled */
Octavian Purdilaf4f46732015-03-22 20:33:39 +020065 if (!iio_buffer_is_active(buf)) {
Josselin Costanzi37d34552015-03-22 20:33:38 +020066 to_wait = min_t(size_t, to_wait, 1);
Octavian Purdilaf4f46732015-03-22 20:33:39 +020067 to_flush = 0;
68 }
Josselin Costanzi37d34552015-03-22 20:33:38 +020069
Octavian Purdilaf4f46732015-03-22 20:33:39 +020070 avail = iio_buffer_data_available(buf);
71
72 if (avail >= to_wait) {
73 /* force a flush for non-blocking reads */
74 if (!to_wait && !avail && to_flush)
75 iio_buffer_flush_hwfifo(indio_dev, buf, to_flush);
76 return true;
77 }
78
79 if (to_flush)
80 flushed = iio_buffer_flush_hwfifo(indio_dev, buf,
81 to_wait - avail);
82 if (flushed <= 0)
83 return false;
84
85 if (avail + flushed >= to_wait)
Josselin Costanzi37d34552015-03-22 20:33:38 +020086 return true;
87
88 return false;
89}
90
Jonathan Cameron14555b12011-09-21 11:15:57 +010091/**
92 * iio_buffer_read_first_n_outer() - chrdev read for buffer access
93 *
94 * This function relies on all buffer implementations having an
95 * iio_buffer as their first element.
96 **/
97ssize_t iio_buffer_read_first_n_outer(struct file *filp, char __user *buf,
98 size_t n, loff_t *f_ps)
99{
100 struct iio_dev *indio_dev = filp->private_data;
101 struct iio_buffer *rb = indio_dev->buffer;
Josselin Costanzi37d34552015-03-22 20:33:38 +0200102 size_t datum_size;
103 size_t to_wait = 0;
Octavian Purdilaf4f46732015-03-22 20:33:39 +0200104 size_t to_read;
Lars-Peter Clausenee551a12013-11-25 14:56:00 +0000105 int ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100106
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +0100107 if (!indio_dev->info)
108 return -ENODEV;
109
Jonathan Cameron96e00f12011-10-26 17:27:45 +0100110 if (!rb || !rb->access->read_first_n)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100111 return -EINVAL;
Lars-Peter Clausenee551a12013-11-25 14:56:00 +0000112
Josselin Costanzi37d34552015-03-22 20:33:38 +0200113 datum_size = rb->bytes_per_datum;
Lars-Peter Clausenee551a12013-11-25 14:56:00 +0000114
Josselin Costanzi37d34552015-03-22 20:33:38 +0200115 /*
116 * If datum_size is 0 there will never be anything to read from the
117 * buffer, so signal end of file now.
118 */
119 if (!datum_size)
120 return 0;
121
Octavian Purdilaf4f46732015-03-22 20:33:39 +0200122 to_read = min_t(size_t, n / datum_size, rb->watermark);
123
Josselin Costanzi37d34552015-03-22 20:33:38 +0200124 if (!(filp->f_flags & O_NONBLOCK))
Octavian Purdilaf4f46732015-03-22 20:33:39 +0200125 to_wait = to_read;
Josselin Costanzi37d34552015-03-22 20:33:38 +0200126
127 do {
128 ret = wait_event_interruptible(rb->pollq,
Octavian Purdilaf4f46732015-03-22 20:33:39 +0200129 iio_buffer_ready(indio_dev, rb, to_wait, to_read));
Josselin Costanzi37d34552015-03-22 20:33:38 +0200130 if (ret)
131 return ret;
132
133 if (!indio_dev->info)
134 return -ENODEV;
Lars-Peter Clausenee551a12013-11-25 14:56:00 +0000135
136 ret = rb->access->read_first_n(rb, n, buf);
137 if (ret == 0 && (filp->f_flags & O_NONBLOCK))
138 ret = -EAGAIN;
139 } while (ret == 0);
140
141 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100142}
143
144/**
145 * iio_buffer_poll() - poll the buffer to find out if it has data
146 */
147unsigned int iio_buffer_poll(struct file *filp,
148 struct poll_table_struct *wait)
149{
150 struct iio_dev *indio_dev = filp->private_data;
151 struct iio_buffer *rb = indio_dev->buffer;
152
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +0100153 if (!indio_dev->info)
154 return -ENODEV;
155
Jonathan Cameron14555b12011-09-21 11:15:57 +0100156 poll_wait(filp, &rb->pollq, wait);
Octavian Purdilaf4f46732015-03-22 20:33:39 +0200157 if (iio_buffer_ready(indio_dev, rb, rb->watermark, 0))
Jonathan Cameron14555b12011-09-21 11:15:57 +0100158 return POLLIN | POLLRDNORM;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100159 return 0;
160}
161
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +0100162/**
163 * iio_buffer_wakeup_poll - Wakes up the buffer waitqueue
164 * @indio_dev: The IIO device
165 *
166 * Wakes up the event waitqueue used for poll(). Should usually
167 * be called when the device is unregistered.
168 */
169void iio_buffer_wakeup_poll(struct iio_dev *indio_dev)
170{
171 if (!indio_dev->buffer)
172 return;
173
174 wake_up(&indio_dev->buffer->pollq);
175}
176
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000177void iio_buffer_init(struct iio_buffer *buffer)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100178{
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000179 INIT_LIST_HEAD(&buffer->demux_list);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100180 INIT_LIST_HEAD(&buffer->buffer_list);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100181 init_waitqueue_head(&buffer->pollq);
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100182 kref_init(&buffer->ref);
Josselin Costanzi37d34552015-03-22 20:33:38 +0200183 buffer->watermark = 1;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100184}
185EXPORT_SYMBOL(iio_buffer_init);
186
187static ssize_t iio_show_scan_index(struct device *dev,
188 struct device_attribute *attr,
189 char *buf)
190{
191 return sprintf(buf, "%u\n", to_iio_dev_attr(attr)->c->scan_index);
192}
193
194static ssize_t iio_show_fixed_type(struct device *dev,
195 struct device_attribute *attr,
196 char *buf)
197{
198 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
199 u8 type = this_attr->c->scan_type.endianness;
200
201 if (type == IIO_CPU) {
Jonathan Cameron9d5d1152011-10-04 16:02:08 +0100202#ifdef __LITTLE_ENDIAN
203 type = IIO_LE;
204#else
205 type = IIO_BE;
206#endif
Jonathan Cameron14555b12011-09-21 11:15:57 +0100207 }
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +0100208 if (this_attr->c->scan_type.repeat > 1)
209 return sprintf(buf, "%s:%c%d/%dX%d>>%u\n",
210 iio_endian_prefix[type],
211 this_attr->c->scan_type.sign,
212 this_attr->c->scan_type.realbits,
213 this_attr->c->scan_type.storagebits,
214 this_attr->c->scan_type.repeat,
215 this_attr->c->scan_type.shift);
216 else
217 return sprintf(buf, "%s:%c%d/%d>>%u\n",
Jonathan Cameron14555b12011-09-21 11:15:57 +0100218 iio_endian_prefix[type],
219 this_attr->c->scan_type.sign,
220 this_attr->c->scan_type.realbits,
221 this_attr->c->scan_type.storagebits,
222 this_attr->c->scan_type.shift);
223}
224
225static ssize_t iio_scan_el_show(struct device *dev,
226 struct device_attribute *attr,
227 char *buf)
228{
229 int ret;
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200230 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100231
Alec Berg2076a202014-03-19 18:50:00 +0000232 /* Ensure ret is 0 or 1. */
233 ret = !!test_bit(to_iio_dev_attr(attr)->address,
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000234 indio_dev->buffer->scan_mask);
235
Jonathan Cameron14555b12011-09-21 11:15:57 +0100236 return sprintf(buf, "%d\n", ret);
237}
238
Lars-Peter Clausen217a5cf2014-11-26 18:55:09 +0100239/* Note NULL used as error indicator as it doesn't make sense. */
240static const unsigned long *iio_scan_mask_match(const unsigned long *av_masks,
241 unsigned int masklength,
242 const unsigned long *mask)
243{
244 if (bitmap_empty(mask, masklength))
245 return NULL;
246 while (*av_masks) {
247 if (bitmap_subset(mask, av_masks, masklength))
248 return av_masks;
249 av_masks += BITS_TO_LONGS(masklength);
250 }
251 return NULL;
252}
253
254static bool iio_validate_scan_mask(struct iio_dev *indio_dev,
255 const unsigned long *mask)
256{
257 if (!indio_dev->setup_ops->validate_scan_mask)
258 return true;
259
260 return indio_dev->setup_ops->validate_scan_mask(indio_dev, mask);
261}
262
263/**
264 * iio_scan_mask_set() - set particular bit in the scan mask
265 * @indio_dev: the iio device
266 * @buffer: the buffer whose scan mask we are interested in
267 * @bit: the bit to be set.
268 *
269 * Note that at this point we have no way of knowing what other
270 * buffers might request, hence this code only verifies that the
271 * individual buffers request is plausible.
272 */
273static int iio_scan_mask_set(struct iio_dev *indio_dev,
274 struct iio_buffer *buffer, int bit)
275{
276 const unsigned long *mask;
277 unsigned long *trialmask;
278
279 trialmask = kmalloc(sizeof(*trialmask)*
280 BITS_TO_LONGS(indio_dev->masklength),
281 GFP_KERNEL);
282
283 if (trialmask == NULL)
284 return -ENOMEM;
285 if (!indio_dev->masklength) {
286 WARN_ON("Trying to set scanmask prior to registering buffer\n");
287 goto err_invalid_mask;
288 }
289 bitmap_copy(trialmask, buffer->scan_mask, indio_dev->masklength);
290 set_bit(bit, trialmask);
291
292 if (!iio_validate_scan_mask(indio_dev, trialmask))
293 goto err_invalid_mask;
294
295 if (indio_dev->available_scan_masks) {
296 mask = iio_scan_mask_match(indio_dev->available_scan_masks,
297 indio_dev->masklength,
298 trialmask);
299 if (!mask)
300 goto err_invalid_mask;
301 }
302 bitmap_copy(buffer->scan_mask, trialmask, indio_dev->masklength);
303
304 kfree(trialmask);
305
306 return 0;
307
308err_invalid_mask:
309 kfree(trialmask);
310 return -EINVAL;
311}
312
Jonathan Cameron14555b12011-09-21 11:15:57 +0100313static int iio_scan_mask_clear(struct iio_buffer *buffer, int bit)
314{
315 clear_bit(bit, buffer->scan_mask);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100316 return 0;
317}
318
319static ssize_t iio_scan_el_store(struct device *dev,
320 struct device_attribute *attr,
321 const char *buf,
322 size_t len)
323{
Jonathan Camerona714af22012-04-21 10:09:32 +0100324 int ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100325 bool state;
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200326 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100327 struct iio_buffer *buffer = indio_dev->buffer;
328 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
329
Jonathan Camerona714af22012-04-21 10:09:32 +0100330 ret = strtobool(buf, &state);
331 if (ret < 0)
332 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100333 mutex_lock(&indio_dev->mlock);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100334 if (iio_buffer_is_active(indio_dev->buffer)) {
Jonathan Cameron14555b12011-09-21 11:15:57 +0100335 ret = -EBUSY;
336 goto error_ret;
337 }
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000338 ret = iio_scan_mask_query(indio_dev, buffer, this_attr->address);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100339 if (ret < 0)
340 goto error_ret;
341 if (!state && ret) {
342 ret = iio_scan_mask_clear(buffer, this_attr->address);
343 if (ret)
344 goto error_ret;
345 } else if (state && !ret) {
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000346 ret = iio_scan_mask_set(indio_dev, buffer, this_attr->address);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100347 if (ret)
348 goto error_ret;
349 }
350
351error_ret:
352 mutex_unlock(&indio_dev->mlock);
353
Lars-Peter Clausen5a2a6e12011-12-08 18:35:53 +0100354 return ret < 0 ? ret : len;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100355
356}
357
358static ssize_t iio_scan_el_ts_show(struct device *dev,
359 struct device_attribute *attr,
360 char *buf)
361{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200362 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100363 return sprintf(buf, "%d\n", indio_dev->buffer->scan_timestamp);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100364}
365
366static ssize_t iio_scan_el_ts_store(struct device *dev,
367 struct device_attribute *attr,
368 const char *buf,
369 size_t len)
370{
Jonathan Camerona714af22012-04-21 10:09:32 +0100371 int ret;
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200372 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100373 bool state;
374
Jonathan Camerona714af22012-04-21 10:09:32 +0100375 ret = strtobool(buf, &state);
376 if (ret < 0)
377 return ret;
378
Jonathan Cameron14555b12011-09-21 11:15:57 +0100379 mutex_lock(&indio_dev->mlock);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100380 if (iio_buffer_is_active(indio_dev->buffer)) {
Jonathan Cameron14555b12011-09-21 11:15:57 +0100381 ret = -EBUSY;
382 goto error_ret;
383 }
384 indio_dev->buffer->scan_timestamp = state;
385error_ret:
386 mutex_unlock(&indio_dev->mlock);
387
388 return ret ? ret : len;
389}
390
391static int iio_buffer_add_channel_sysfs(struct iio_dev *indio_dev,
392 const struct iio_chan_spec *chan)
393{
394 int ret, attrcount = 0;
395 struct iio_buffer *buffer = indio_dev->buffer;
396
397 ret = __iio_add_chan_devattr("index",
398 chan,
399 &iio_show_scan_index,
400 NULL,
401 0,
Jonathan Cameron37044322013-09-08 14:57:00 +0100402 IIO_SEPARATE,
Jonathan Cameron14555b12011-09-21 11:15:57 +0100403 &indio_dev->dev,
404 &buffer->scan_el_dev_attr_list);
405 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000406 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100407 attrcount++;
408 ret = __iio_add_chan_devattr("type",
409 chan,
410 &iio_show_fixed_type,
411 NULL,
412 0,
413 0,
414 &indio_dev->dev,
415 &buffer->scan_el_dev_attr_list);
416 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000417 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100418 attrcount++;
419 if (chan->type != IIO_TIMESTAMP)
420 ret = __iio_add_chan_devattr("en",
421 chan,
422 &iio_scan_el_show,
423 &iio_scan_el_store,
424 chan->scan_index,
425 0,
426 &indio_dev->dev,
427 &buffer->scan_el_dev_attr_list);
428 else
429 ret = __iio_add_chan_devattr("en",
430 chan,
431 &iio_scan_el_ts_show,
432 &iio_scan_el_ts_store,
433 chan->scan_index,
434 0,
435 &indio_dev->dev,
436 &buffer->scan_el_dev_attr_list);
Peter Meerwald95725882013-09-17 23:42:00 +0100437 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000438 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100439 attrcount++;
440 ret = attrcount;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100441 return ret;
442}
443
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100444static ssize_t iio_buffer_read_length(struct device *dev,
445 struct device_attribute *attr,
446 char *buf)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100447{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200448 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100449 struct iio_buffer *buffer = indio_dev->buffer;
450
Lars-Peter Clausen37495662014-11-26 18:55:17 +0100451 return sprintf(buf, "%d\n", buffer->length);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100452}
Jonathan Cameron14555b12011-09-21 11:15:57 +0100453
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100454static ssize_t iio_buffer_write_length(struct device *dev,
455 struct device_attribute *attr,
456 const char *buf, size_t len)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100457{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200458 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100459 struct iio_buffer *buffer = indio_dev->buffer;
Lars-Peter Clausen948ad202012-10-18 14:47:00 +0100460 unsigned int val;
461 int ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100462
Lars-Peter Clausen948ad202012-10-18 14:47:00 +0100463 ret = kstrtouint(buf, 10, &val);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100464 if (ret)
465 return ret;
466
Lars-Peter Clausen37495662014-11-26 18:55:17 +0100467 if (val == buffer->length)
468 return len;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100469
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100470 mutex_lock(&indio_dev->mlock);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100471 if (iio_buffer_is_active(indio_dev->buffer)) {
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100472 ret = -EBUSY;
473 } else {
Lars-Peter Clausen8d92db22014-11-26 18:55:16 +0100474 buffer->access->set_length(buffer, val);
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100475 ret = 0;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100476 }
Josselin Costanzi37d34552015-03-22 20:33:38 +0200477 if (ret)
478 goto out;
479 if (buffer->length && buffer->length < buffer->watermark)
480 buffer->watermark = buffer->length;
481out:
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100482 mutex_unlock(&indio_dev->mlock);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100483
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100484 return ret ? ret : len;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100485}
Jonathan Cameron14555b12011-09-21 11:15:57 +0100486
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100487static ssize_t iio_buffer_show_enable(struct device *dev,
488 struct device_attribute *attr,
489 char *buf)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100490{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200491 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100492 return sprintf(buf, "%d\n", iio_buffer_is_active(indio_dev->buffer));
Jonathan Cameron14555b12011-09-21 11:15:57 +0100493}
Jonathan Cameron14555b12011-09-21 11:15:57 +0100494
Peter Meerwald183f4172013-09-18 22:10:00 +0100495static int iio_compute_scan_bytes(struct iio_dev *indio_dev,
496 const unsigned long *mask, bool timestamp)
Jonathan Cameron959d2952011-12-05 21:37:13 +0000497{
Jonathan Cameron959d2952011-12-05 21:37:13 +0000498 const struct iio_chan_spec *ch;
499 unsigned bytes = 0;
500 int length, i;
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100501
502 /* How much space will the demuxed element take? */
503 for_each_set_bit(i, mask,
504 indio_dev->masklength) {
505 ch = iio_find_channel_from_si(indio_dev, i);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +0100506 if (ch->scan_type.repeat > 1)
507 length = ch->scan_type.storagebits / 8 *
508 ch->scan_type.repeat;
509 else
510 length = ch->scan_type.storagebits / 8;
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100511 bytes = ALIGN(bytes, length);
512 bytes += length;
513 }
514 if (timestamp) {
515 ch = iio_find_channel_from_si(indio_dev,
Jonathan Cameronf1264802012-04-21 10:09:34 +0100516 indio_dev->scan_index_timestamp);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +0100517 if (ch->scan_type.repeat > 1)
518 length = ch->scan_type.storagebits / 8 *
519 ch->scan_type.repeat;
520 else
521 length = ch->scan_type.storagebits / 8;
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100522 bytes = ALIGN(bytes, length);
523 bytes += length;
524 }
525 return bytes;
526}
527
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100528static void iio_buffer_activate(struct iio_dev *indio_dev,
529 struct iio_buffer *buffer)
530{
531 iio_buffer_get(buffer);
532 list_add(&buffer->buffer_list, &indio_dev->buffer_list);
533}
534
535static void iio_buffer_deactivate(struct iio_buffer *buffer)
536{
537 list_del_init(&buffer->buffer_list);
Josselin Costanzi37d34552015-03-22 20:33:38 +0200538 wake_up_interruptible(&buffer->pollq);
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100539 iio_buffer_put(buffer);
540}
541
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200542static void iio_buffer_deactivate_all(struct iio_dev *indio_dev)
543{
544 struct iio_buffer *buffer, *_buffer;
545
546 list_for_each_entry_safe(buffer, _buffer,
547 &indio_dev->buffer_list, buffer_list)
548 iio_buffer_deactivate(buffer);
549}
550
Lars-Peter Clausen8e050992013-10-14 17:49:00 +0100551static void iio_buffer_update_bytes_per_datum(struct iio_dev *indio_dev,
552 struct iio_buffer *buffer)
553{
554 unsigned int bytes;
555
556 if (!buffer->access->set_bytes_per_datum)
557 return;
558
559 bytes = iio_compute_scan_bytes(indio_dev, buffer->scan_mask,
560 buffer->scan_timestamp);
561
562 buffer->access->set_bytes_per_datum(buffer, bytes);
563}
564
Lars-Peter Clausenfcc1b2f2015-05-13 16:04:46 +0200565static int iio_buffer_request_update(struct iio_dev *indio_dev,
566 struct iio_buffer *buffer)
567{
568 int ret;
569
570 iio_buffer_update_bytes_per_datum(indio_dev, buffer);
571 if (buffer->access->request_update) {
572 ret = buffer->access->request_update(buffer);
573 if (ret) {
574 dev_dbg(&indio_dev->dev,
575 "Buffer not started: buffer parameter update failed (%d)\n",
576 ret);
577 return ret;
578 }
579 }
580
581 return 0;
582}
583
Lars-Peter Clausen248be5a2015-05-13 16:04:45 +0200584static void iio_free_scan_mask(struct iio_dev *indio_dev,
585 const unsigned long *mask)
586{
587 /* If the mask is dynamically allocated free it, otherwise do nothing */
588 if (!indio_dev->available_scan_masks)
589 kfree(mask);
590}
591
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200592struct iio_device_config {
593 unsigned int mode;
594 const unsigned long *scan_mask;
595 unsigned int scan_bytes;
596 bool scan_timestamp;
597};
598
599static int iio_verify_update(struct iio_dev *indio_dev,
600 struct iio_buffer *insert_buffer, struct iio_buffer *remove_buffer,
601 struct iio_device_config *config)
602{
603 unsigned long *compound_mask;
604 const unsigned long *scan_mask;
605 struct iio_buffer *buffer;
606 bool scan_timestamp;
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200607 unsigned int modes;
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200608
609 memset(config, 0, sizeof(*config));
610
611 /*
612 * If there is just one buffer and we are removing it there is nothing
613 * to verify.
614 */
615 if (remove_buffer && !insert_buffer &&
616 list_is_singular(&indio_dev->buffer_list))
617 return 0;
618
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200619 modes = indio_dev->modes;
620
621 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
622 if (buffer == remove_buffer)
623 continue;
624 modes &= buffer->access->modes;
625 }
626
627 if (insert_buffer)
628 modes &= insert_buffer->access->modes;
629
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200630 /* Definitely possible for devices to support both of these. */
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200631 if ((modes & INDIO_BUFFER_TRIGGERED) && indio_dev->trig) {
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200632 config->mode = INDIO_BUFFER_TRIGGERED;
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200633 } else if (modes & INDIO_BUFFER_HARDWARE) {
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200634 config->mode = INDIO_BUFFER_HARDWARE;
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200635 } else if (modes & INDIO_BUFFER_SOFTWARE) {
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200636 config->mode = INDIO_BUFFER_SOFTWARE;
637 } else {
638 /* Can only occur on first buffer */
639 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
640 dev_dbg(&indio_dev->dev, "Buffer not started: no trigger\n");
641 return -EINVAL;
642 }
643
644 /* What scan mask do we actually have? */
645 compound_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength),
646 sizeof(long), GFP_KERNEL);
647 if (compound_mask == NULL)
648 return -ENOMEM;
649
650 scan_timestamp = false;
651
652 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
653 if (buffer == remove_buffer)
654 continue;
655 bitmap_or(compound_mask, compound_mask, buffer->scan_mask,
656 indio_dev->masklength);
657 scan_timestamp |= buffer->scan_timestamp;
658 }
659
660 if (insert_buffer) {
661 bitmap_or(compound_mask, compound_mask,
662 insert_buffer->scan_mask, indio_dev->masklength);
663 scan_timestamp |= insert_buffer->scan_timestamp;
664 }
665
666 if (indio_dev->available_scan_masks) {
667 scan_mask = iio_scan_mask_match(indio_dev->available_scan_masks,
668 indio_dev->masklength,
669 compound_mask);
670 kfree(compound_mask);
671 if (scan_mask == NULL)
672 return -EINVAL;
673 } else {
674 scan_mask = compound_mask;
675 }
676
677 config->scan_bytes = iio_compute_scan_bytes(indio_dev,
678 scan_mask, scan_timestamp);
679 config->scan_mask = scan_mask;
680 config->scan_timestamp = scan_timestamp;
681
682 return 0;
683}
684
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200685static int iio_enable_buffers(struct iio_dev *indio_dev,
686 struct iio_device_config *config)
687{
688 int ret;
689
690 indio_dev->active_scan_mask = config->scan_mask;
691 indio_dev->scan_timestamp = config->scan_timestamp;
692 indio_dev->scan_bytes = config->scan_bytes;
693
694 iio_update_demux(indio_dev);
695
696 /* Wind up again */
697 if (indio_dev->setup_ops->preenable) {
698 ret = indio_dev->setup_ops->preenable(indio_dev);
699 if (ret) {
700 dev_dbg(&indio_dev->dev,
701 "Buffer not started: buffer preenable failed (%d)\n", ret);
702 goto err_undo_config;
703 }
704 }
705
706 if (indio_dev->info->update_scan_mode) {
707 ret = indio_dev->info
708 ->update_scan_mode(indio_dev,
709 indio_dev->active_scan_mask);
710 if (ret < 0) {
711 dev_dbg(&indio_dev->dev,
712 "Buffer not started: update scan mode failed (%d)\n",
713 ret);
714 goto err_run_postdisable;
715 }
716 }
717
718 indio_dev->currentmode = config->mode;
719
720 if (indio_dev->setup_ops->postenable) {
721 ret = indio_dev->setup_ops->postenable(indio_dev);
722 if (ret) {
723 dev_dbg(&indio_dev->dev,
724 "Buffer not started: postenable failed (%d)\n", ret);
725 goto err_run_postdisable;
726 }
727 }
728
729 return 0;
730
731err_run_postdisable:
732 indio_dev->currentmode = INDIO_DIRECT_MODE;
733 if (indio_dev->setup_ops->postdisable)
734 indio_dev->setup_ops->postdisable(indio_dev);
735err_undo_config:
736 indio_dev->active_scan_mask = NULL;
737
738 return ret;
739}
740
741static int iio_disable_buffers(struct iio_dev *indio_dev)
742{
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200743 int ret = 0;
744 int ret2;
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200745
746 /* Wind down existing buffers - iff there are any */
747 if (list_empty(&indio_dev->buffer_list))
748 return 0;
749
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200750 /*
751 * If things go wrong at some step in disable we still need to continue
752 * to perform the other steps, otherwise we leave the device in a
753 * inconsistent state. We return the error code for the first error we
754 * encountered.
755 */
756
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200757 if (indio_dev->setup_ops->predisable) {
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200758 ret2 = indio_dev->setup_ops->predisable(indio_dev);
759 if (ret2 && !ret)
760 ret = ret2;
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200761 }
762
763 indio_dev->currentmode = INDIO_DIRECT_MODE;
764
765 if (indio_dev->setup_ops->postdisable) {
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200766 ret2 = indio_dev->setup_ops->postdisable(indio_dev);
767 if (ret2 && !ret)
768 ret = ret2;
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200769 }
770
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200771 iio_free_scan_mask(indio_dev, indio_dev->active_scan_mask);
772 indio_dev->active_scan_mask = NULL;
773
774 return ret;
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200775}
776
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100777static int __iio_update_buffers(struct iio_dev *indio_dev,
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100778 struct iio_buffer *insert_buffer,
779 struct iio_buffer *remove_buffer)
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100780{
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200781 struct iio_device_config new_config;
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200782 int ret;
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200783
784 ret = iio_verify_update(indio_dev, insert_buffer, remove_buffer,
785 &new_config);
786 if (ret)
787 return ret;
Jonathan Cameron959d2952011-12-05 21:37:13 +0000788
Lars-Peter Clausenfcc1b2f2015-05-13 16:04:46 +0200789 if (insert_buffer) {
790 ret = iio_buffer_request_update(indio_dev, insert_buffer);
791 if (ret)
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200792 goto err_free_config;
Lars-Peter Clausenfcc1b2f2015-05-13 16:04:46 +0200793 }
794
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200795 ret = iio_disable_buffers(indio_dev);
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200796 if (ret)
797 goto err_deactivate_all;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100798
799 if (remove_buffer)
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100800 iio_buffer_deactivate(remove_buffer);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100801 if (insert_buffer)
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100802 iio_buffer_activate(indio_dev, insert_buffer);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100803
804 /* If no buffers in list, we are done */
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200805 if (list_empty(&indio_dev->buffer_list))
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100806 return 0;
Jonathan Cameron959d2952011-12-05 21:37:13 +0000807
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200808 ret = iio_enable_buffers(indio_dev, &new_config);
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200809 if (ret)
810 goto err_deactivate_all;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100811
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200812 return 0;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100813
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200814err_deactivate_all:
815 /*
816 * We've already verified that the config is valid earlier. If things go
817 * wrong in either enable or disable the most likely reason is an IO
818 * error from the device. In this case there is no good recovery
819 * strategy. Just make sure to disable everything and leave the device
820 * in a sane state. With a bit of luck the device might come back to
821 * life again later and userspace can try again.
822 */
823 iio_buffer_deactivate_all(indio_dev);
824
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200825err_free_config:
826 iio_free_scan_mask(indio_dev, new_config.scan_mask);
827 return ret;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100828}
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100829
830int iio_update_buffers(struct iio_dev *indio_dev,
831 struct iio_buffer *insert_buffer,
832 struct iio_buffer *remove_buffer)
833{
834 int ret;
835
Lars-Peter Clausen3909fab2013-10-04 12:07:00 +0100836 if (insert_buffer == remove_buffer)
837 return 0;
838
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100839 mutex_lock(&indio_dev->info_exist_lock);
840 mutex_lock(&indio_dev->mlock);
841
Lars-Peter Clausen3909fab2013-10-04 12:07:00 +0100842 if (insert_buffer && iio_buffer_is_active(insert_buffer))
843 insert_buffer = NULL;
844
845 if (remove_buffer && !iio_buffer_is_active(remove_buffer))
846 remove_buffer = NULL;
847
848 if (!insert_buffer && !remove_buffer) {
849 ret = 0;
850 goto out_unlock;
851 }
852
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100853 if (indio_dev->info == NULL) {
854 ret = -ENODEV;
855 goto out_unlock;
856 }
857
858 ret = __iio_update_buffers(indio_dev, insert_buffer, remove_buffer);
859
860out_unlock:
861 mutex_unlock(&indio_dev->mlock);
862 mutex_unlock(&indio_dev->info_exist_lock);
863
864 return ret;
865}
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100866EXPORT_SYMBOL_GPL(iio_update_buffers);
867
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200868void iio_disable_all_buffers(struct iio_dev *indio_dev)
869{
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200870 iio_disable_buffers(indio_dev);
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200871 iio_buffer_deactivate_all(indio_dev);
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200872}
873
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100874static ssize_t iio_buffer_store_enable(struct device *dev,
875 struct device_attribute *attr,
876 const char *buf,
877 size_t len)
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100878{
879 int ret;
880 bool requested_state;
881 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100882 bool inlist;
883
884 ret = strtobool(buf, &requested_state);
885 if (ret < 0)
886 return ret;
887
888 mutex_lock(&indio_dev->mlock);
889
890 /* Find out if it is in the list */
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100891 inlist = iio_buffer_is_active(indio_dev->buffer);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100892 /* Already in desired state */
893 if (inlist == requested_state)
894 goto done;
895
896 if (requested_state)
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100897 ret = __iio_update_buffers(indio_dev,
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100898 indio_dev->buffer, NULL);
899 else
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100900 ret = __iio_update_buffers(indio_dev,
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100901 NULL, indio_dev->buffer);
902
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100903done:
904 mutex_unlock(&indio_dev->mlock);
905 return (ret < 0) ? ret : len;
906}
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100907
Lars-Peter Clausend967cb62014-11-26 18:55:14 +0100908static const char * const iio_scan_elements_group_name = "scan_elements";
909
Josselin Costanzi37d34552015-03-22 20:33:38 +0200910static ssize_t iio_buffer_show_watermark(struct device *dev,
911 struct device_attribute *attr,
912 char *buf)
913{
914 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
915 struct iio_buffer *buffer = indio_dev->buffer;
916
917 return sprintf(buf, "%u\n", buffer->watermark);
918}
919
920static ssize_t iio_buffer_store_watermark(struct device *dev,
921 struct device_attribute *attr,
922 const char *buf,
923 size_t len)
924{
925 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
926 struct iio_buffer *buffer = indio_dev->buffer;
927 unsigned int val;
928 int ret;
929
930 ret = kstrtouint(buf, 10, &val);
931 if (ret)
932 return ret;
933 if (!val)
934 return -EINVAL;
935
936 mutex_lock(&indio_dev->mlock);
937
938 if (val > buffer->length) {
939 ret = -EINVAL;
940 goto out;
941 }
942
943 if (iio_buffer_is_active(indio_dev->buffer)) {
944 ret = -EBUSY;
945 goto out;
946 }
947
948 buffer->watermark = val;
Octavian Purdilaf4f46732015-03-22 20:33:39 +0200949
950 if (indio_dev->info->hwfifo_set_watermark)
951 indio_dev->info->hwfifo_set_watermark(indio_dev, val);
Josselin Costanzi37d34552015-03-22 20:33:38 +0200952out:
953 mutex_unlock(&indio_dev->mlock);
954
955 return ret ? ret : len;
956}
957
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100958static DEVICE_ATTR(length, S_IRUGO | S_IWUSR, iio_buffer_read_length,
959 iio_buffer_write_length);
Lars-Peter Clausen8d92db22014-11-26 18:55:16 +0100960static struct device_attribute dev_attr_length_ro = __ATTR(length,
961 S_IRUGO, iio_buffer_read_length, NULL);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100962static DEVICE_ATTR(enable, S_IRUGO | S_IWUSR,
963 iio_buffer_show_enable, iio_buffer_store_enable);
Josselin Costanzi37d34552015-03-22 20:33:38 +0200964static DEVICE_ATTR(watermark, S_IRUGO | S_IWUSR,
965 iio_buffer_show_watermark, iio_buffer_store_watermark);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100966
Octavian Purdila6da9b382015-01-31 02:00:00 +0200967static struct attribute *iio_buffer_attrs[] = {
968 &dev_attr_length.attr,
969 &dev_attr_enable.attr,
Josselin Costanzi37d34552015-03-22 20:33:38 +0200970 &dev_attr_watermark.attr,
Octavian Purdila6da9b382015-01-31 02:00:00 +0200971};
972
Lars-Peter Clausend967cb62014-11-26 18:55:14 +0100973int iio_buffer_alloc_sysfs_and_mask(struct iio_dev *indio_dev)
974{
975 struct iio_dev_attr *p;
976 struct attribute **attr;
977 struct iio_buffer *buffer = indio_dev->buffer;
978 int ret, i, attrn, attrcount, attrcount_orig = 0;
979 const struct iio_chan_spec *channels;
980
Lars-Peter Clausen629bc022015-05-29 18:14:20 +0200981 channels = indio_dev->channels;
982 if (channels) {
983 int ml = indio_dev->masklength;
984
985 for (i = 0; i < indio_dev->num_channels; i++)
986 ml = max(ml, channels[i].scan_index + 1);
987 indio_dev->masklength = ml;
988 }
989
Lars-Peter Clausend967cb62014-11-26 18:55:14 +0100990 if (!buffer)
991 return 0;
992
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100993 attrcount = 0;
994 if (buffer->attrs) {
995 while (buffer->attrs[attrcount] != NULL)
996 attrcount++;
997 }
998
Octavian Purdila6da9b382015-01-31 02:00:00 +0200999 attr = kcalloc(attrcount + ARRAY_SIZE(iio_buffer_attrs) + 1,
1000 sizeof(struct attribute *), GFP_KERNEL);
1001 if (!attr)
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001002 return -ENOMEM;
1003
Octavian Purdila6da9b382015-01-31 02:00:00 +02001004 memcpy(attr, iio_buffer_attrs, sizeof(iio_buffer_attrs));
1005 if (!buffer->access->set_length)
1006 attr[0] = &dev_attr_length_ro.attr;
1007
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001008 if (buffer->attrs)
Octavian Purdila6da9b382015-01-31 02:00:00 +02001009 memcpy(&attr[ARRAY_SIZE(iio_buffer_attrs)], buffer->attrs,
1010 sizeof(struct attribute *) * attrcount);
1011
1012 attr[attrcount + ARRAY_SIZE(iio_buffer_attrs)] = NULL;
1013
1014 buffer->buffer_group.name = "buffer";
1015 buffer->buffer_group.attrs = attr;
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001016
1017 indio_dev->groups[indio_dev->groupcounter++] = &buffer->buffer_group;
1018
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001019 if (buffer->scan_el_attrs != NULL) {
1020 attr = buffer->scan_el_attrs->attrs;
1021 while (*attr++ != NULL)
1022 attrcount_orig++;
1023 }
1024 attrcount = attrcount_orig;
1025 INIT_LIST_HEAD(&buffer->scan_el_dev_attr_list);
1026 channels = indio_dev->channels;
1027 if (channels) {
1028 /* new magic */
1029 for (i = 0; i < indio_dev->num_channels; i++) {
1030 if (channels[i].scan_index < 0)
1031 continue;
1032
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001033 ret = iio_buffer_add_channel_sysfs(indio_dev,
1034 &channels[i]);
1035 if (ret < 0)
1036 goto error_cleanup_dynamic;
1037 attrcount += ret;
1038 if (channels[i].type == IIO_TIMESTAMP)
1039 indio_dev->scan_index_timestamp =
1040 channels[i].scan_index;
1041 }
1042 if (indio_dev->masklength && buffer->scan_mask == NULL) {
1043 buffer->scan_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength),
1044 sizeof(*buffer->scan_mask),
1045 GFP_KERNEL);
1046 if (buffer->scan_mask == NULL) {
1047 ret = -ENOMEM;
1048 goto error_cleanup_dynamic;
1049 }
1050 }
1051 }
1052
1053 buffer->scan_el_group.name = iio_scan_elements_group_name;
1054
1055 buffer->scan_el_group.attrs = kcalloc(attrcount + 1,
1056 sizeof(buffer->scan_el_group.attrs[0]),
1057 GFP_KERNEL);
1058 if (buffer->scan_el_group.attrs == NULL) {
1059 ret = -ENOMEM;
1060 goto error_free_scan_mask;
1061 }
1062 if (buffer->scan_el_attrs)
1063 memcpy(buffer->scan_el_group.attrs, buffer->scan_el_attrs,
1064 sizeof(buffer->scan_el_group.attrs[0])*attrcount_orig);
1065 attrn = attrcount_orig;
1066
1067 list_for_each_entry(p, &buffer->scan_el_dev_attr_list, l)
1068 buffer->scan_el_group.attrs[attrn++] = &p->dev_attr.attr;
1069 indio_dev->groups[indio_dev->groupcounter++] = &buffer->scan_el_group;
1070
1071 return 0;
1072
1073error_free_scan_mask:
1074 kfree(buffer->scan_mask);
1075error_cleanup_dynamic:
1076 iio_free_chan_devattr_list(&buffer->scan_el_dev_attr_list);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001077 kfree(indio_dev->buffer->buffer_group.attrs);
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001078
1079 return ret;
1080}
1081
1082void iio_buffer_free_sysfs_and_mask(struct iio_dev *indio_dev)
1083{
1084 if (!indio_dev->buffer)
1085 return;
1086
1087 kfree(indio_dev->buffer->scan_mask);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001088 kfree(indio_dev->buffer->buffer_group.attrs);
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001089 kfree(indio_dev->buffer->scan_el_group.attrs);
1090 iio_free_chan_devattr_list(&indio_dev->buffer->scan_el_dev_attr_list);
1091}
1092
Jonathan Cameron14555b12011-09-21 11:15:57 +01001093/**
Lars-Peter Clausen81636632012-07-09 10:00:00 +01001094 * iio_validate_scan_mask_onehot() - Validates that exactly one channel is selected
1095 * @indio_dev: the iio device
1096 * @mask: scan mask to be checked
1097 *
1098 * Return true if exactly one bit is set in the scan mask, false otherwise. It
1099 * can be used for devices where only one channel can be active for sampling at
1100 * a time.
1101 */
1102bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev,
1103 const unsigned long *mask)
1104{
1105 return bitmap_weight(mask, indio_dev->masklength) == 1;
1106}
1107EXPORT_SYMBOL_GPL(iio_validate_scan_mask_onehot);
1108
Jonathan Cameronf79a9092011-12-05 22:18:29 +00001109int iio_scan_mask_query(struct iio_dev *indio_dev,
1110 struct iio_buffer *buffer, int bit)
Jonathan Cameron14555b12011-09-21 11:15:57 +01001111{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001112 if (bit > indio_dev->masklength)
Jonathan Cameron14555b12011-09-21 11:15:57 +01001113 return -EINVAL;
1114
1115 if (!buffer->scan_mask)
1116 return 0;
Jonathan Cameron14555b12011-09-21 11:15:57 +01001117
Alec Berg2076a202014-03-19 18:50:00 +00001118 /* Ensure return value is 0 or 1. */
1119 return !!test_bit(bit, buffer->scan_mask);
Jonathan Cameron14555b12011-09-21 11:15:57 +01001120};
1121EXPORT_SYMBOL_GPL(iio_scan_mask_query);
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001122
1123/**
1124 * struct iio_demux_table() - table describing demux memcpy ops
1125 * @from: index to copy from
Peter Meerwald99698b42012-08-26 13:43:00 +01001126 * @to: index to copy to
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001127 * @length: how many bytes to copy
1128 * @l: list head used for management
1129 */
1130struct iio_demux_table {
1131 unsigned from;
1132 unsigned to;
1133 unsigned length;
1134 struct list_head l;
1135};
1136
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +01001137static const void *iio_demux(struct iio_buffer *buffer,
1138 const void *datain)
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001139{
1140 struct iio_demux_table *t;
1141
1142 if (list_empty(&buffer->demux_list))
1143 return datain;
1144 list_for_each_entry(t, &buffer->demux_list, l)
1145 memcpy(buffer->demux_bounce + t->to,
1146 datain + t->from, t->length);
1147
1148 return buffer->demux_bounce;
1149}
1150
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +01001151static int iio_push_to_buffer(struct iio_buffer *buffer, const void *data)
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001152{
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +01001153 const void *dataout = iio_demux(buffer, data);
Josselin Costanzi37d34552015-03-22 20:33:38 +02001154 int ret;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001155
Josselin Costanzi37d34552015-03-22 20:33:38 +02001156 ret = buffer->access->store_to(buffer, dataout);
1157 if (ret)
1158 return ret;
1159
1160 /*
1161 * We can't just test for watermark to decide if we wake the poll queue
1162 * because read may request less samples than the watermark.
1163 */
1164 wake_up_interruptible_poll(&buffer->pollq, POLLIN | POLLRDNORM);
1165 return 0;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001166}
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001167
Jonathan Cameron842cd102012-04-21 10:09:45 +01001168static void iio_buffer_demux_free(struct iio_buffer *buffer)
1169{
1170 struct iio_demux_table *p, *q;
1171 list_for_each_entry_safe(p, q, &buffer->demux_list, l) {
1172 list_del(&p->l);
1173 kfree(p);
1174 }
1175}
1176
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001177
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +01001178int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data)
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001179{
1180 int ret;
1181 struct iio_buffer *buf;
1182
1183 list_for_each_entry(buf, &indio_dev->buffer_list, buffer_list) {
1184 ret = iio_push_to_buffer(buf, data);
1185 if (ret < 0)
1186 return ret;
1187 }
1188
1189 return 0;
1190}
1191EXPORT_SYMBOL_GPL(iio_push_to_buffers);
1192
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +01001193static int iio_buffer_add_demux(struct iio_buffer *buffer,
1194 struct iio_demux_table **p, unsigned int in_loc, unsigned int out_loc,
1195 unsigned int length)
1196{
1197
1198 if (*p && (*p)->from + (*p)->length == in_loc &&
1199 (*p)->to + (*p)->length == out_loc) {
1200 (*p)->length += length;
1201 } else {
Jonathan Cameron7cdca1782014-08-08 09:43:00 +01001202 *p = kmalloc(sizeof(**p), GFP_KERNEL);
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +01001203 if (*p == NULL)
1204 return -ENOMEM;
1205 (*p)->from = in_loc;
1206 (*p)->to = out_loc;
1207 (*p)->length = length;
1208 list_add_tail(&(*p)->l, &buffer->demux_list);
1209 }
1210
1211 return 0;
1212}
1213
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001214static int iio_buffer_update_demux(struct iio_dev *indio_dev,
1215 struct iio_buffer *buffer)
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001216{
1217 const struct iio_chan_spec *ch;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001218 int ret, in_ind = -1, out_ind, length;
1219 unsigned in_loc = 0, out_loc = 0;
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +01001220 struct iio_demux_table *p = NULL;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001221
1222 /* Clear out any old demux */
Jonathan Cameron842cd102012-04-21 10:09:45 +01001223 iio_buffer_demux_free(buffer);
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001224 kfree(buffer->demux_bounce);
1225 buffer->demux_bounce = NULL;
1226
1227 /* First work out which scan mode we will actually have */
1228 if (bitmap_equal(indio_dev->active_scan_mask,
1229 buffer->scan_mask,
1230 indio_dev->masklength))
1231 return 0;
1232
1233 /* Now we have the two masks, work from least sig and build up sizes */
1234 for_each_set_bit(out_ind,
Lars-Peter Clausen61bd55c2014-07-17 16:59:00 +01001235 buffer->scan_mask,
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001236 indio_dev->masklength) {
1237 in_ind = find_next_bit(indio_dev->active_scan_mask,
1238 indio_dev->masklength,
1239 in_ind + 1);
1240 while (in_ind != out_ind) {
1241 in_ind = find_next_bit(indio_dev->active_scan_mask,
1242 indio_dev->masklength,
1243 in_ind + 1);
1244 ch = iio_find_channel_from_si(indio_dev, in_ind);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +01001245 if (ch->scan_type.repeat > 1)
1246 length = ch->scan_type.storagebits / 8 *
1247 ch->scan_type.repeat;
1248 else
1249 length = ch->scan_type.storagebits / 8;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001250 /* Make sure we are aligned */
Lars-Peter Clausen61072db2014-07-17 16:59:00 +01001251 in_loc = roundup(in_loc, length) + length;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001252 }
1253 ch = iio_find_channel_from_si(indio_dev, in_ind);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +01001254 if (ch->scan_type.repeat > 1)
1255 length = ch->scan_type.storagebits / 8 *
1256 ch->scan_type.repeat;
1257 else
1258 length = ch->scan_type.storagebits / 8;
Lars-Peter Clausen61072db2014-07-17 16:59:00 +01001259 out_loc = roundup(out_loc, length);
1260 in_loc = roundup(in_loc, length);
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +01001261 ret = iio_buffer_add_demux(buffer, &p, in_loc, out_loc, length);
1262 if (ret)
1263 goto error_clear_mux_table;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001264 out_loc += length;
1265 in_loc += length;
1266 }
1267 /* Relies on scan_timestamp being last */
1268 if (buffer->scan_timestamp) {
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001269 ch = iio_find_channel_from_si(indio_dev,
Jonathan Cameronf1264802012-04-21 10:09:34 +01001270 indio_dev->scan_index_timestamp);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +01001271 if (ch->scan_type.repeat > 1)
1272 length = ch->scan_type.storagebits / 8 *
1273 ch->scan_type.repeat;
1274 else
1275 length = ch->scan_type.storagebits / 8;
Lars-Peter Clausen61072db2014-07-17 16:59:00 +01001276 out_loc = roundup(out_loc, length);
1277 in_loc = roundup(in_loc, length);
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +01001278 ret = iio_buffer_add_demux(buffer, &p, in_loc, out_loc, length);
1279 if (ret)
1280 goto error_clear_mux_table;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001281 out_loc += length;
1282 in_loc += length;
1283 }
1284 buffer->demux_bounce = kzalloc(out_loc, GFP_KERNEL);
1285 if (buffer->demux_bounce == NULL) {
1286 ret = -ENOMEM;
1287 goto error_clear_mux_table;
1288 }
1289 return 0;
1290
1291error_clear_mux_table:
Jonathan Cameron842cd102012-04-21 10:09:45 +01001292 iio_buffer_demux_free(buffer);
1293
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001294 return ret;
1295}
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001296
1297int iio_update_demux(struct iio_dev *indio_dev)
1298{
1299 struct iio_buffer *buffer;
1300 int ret;
1301
1302 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
1303 ret = iio_buffer_update_demux(indio_dev, buffer);
1304 if (ret < 0)
1305 goto error_clear_mux_table;
1306 }
1307 return 0;
1308
1309error_clear_mux_table:
1310 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list)
1311 iio_buffer_demux_free(buffer);
1312
1313 return ret;
1314}
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001315EXPORT_SYMBOL_GPL(iio_update_demux);
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +01001316
1317/**
1318 * iio_buffer_release() - Free a buffer's resources
1319 * @ref: Pointer to the kref embedded in the iio_buffer struct
1320 *
1321 * This function is called when the last reference to the buffer has been
1322 * dropped. It will typically free all resources allocated by the buffer. Do not
1323 * call this function manually, always use iio_buffer_put() when done using a
1324 * buffer.
1325 */
1326static void iio_buffer_release(struct kref *ref)
1327{
1328 struct iio_buffer *buffer = container_of(ref, struct iio_buffer, ref);
1329
1330 buffer->access->release(buffer);
1331}
1332
1333/**
1334 * iio_buffer_get() - Grab a reference to the buffer
1335 * @buffer: The buffer to grab a reference for, may be NULL
1336 *
1337 * Returns the pointer to the buffer that was passed into the function.
1338 */
1339struct iio_buffer *iio_buffer_get(struct iio_buffer *buffer)
1340{
1341 if (buffer)
1342 kref_get(&buffer->ref);
1343
1344 return buffer;
1345}
1346EXPORT_SYMBOL_GPL(iio_buffer_get);
1347
1348/**
1349 * iio_buffer_put() - Release the reference to the buffer
1350 * @buffer: The buffer to release the reference for, may be NULL
1351 */
1352void iio_buffer_put(struct iio_buffer *buffer)
1353{
1354 if (buffer)
1355 kref_put(&buffer->ref, iio_buffer_release);
1356}
1357EXPORT_SYMBOL_GPL(iio_buffer_put);