blob: d7e908acb48020b3f5390030e5a3687b03ba9878 [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 */
Octavian Purdilac6f67a12015-06-05 15:56:47 +030074 if (!to_wait && avail < to_flush)
75 iio_buffer_flush_hwfifo(indio_dev, buf,
76 to_flush - avail);
Octavian Purdilaf4f46732015-03-22 20:33:39 +020077 return true;
78 }
79
80 if (to_flush)
81 flushed = iio_buffer_flush_hwfifo(indio_dev, buf,
82 to_wait - avail);
83 if (flushed <= 0)
84 return false;
85
86 if (avail + flushed >= to_wait)
Josselin Costanzi37d34552015-03-22 20:33:38 +020087 return true;
88
89 return false;
90}
91
Jonathan Cameron14555b12011-09-21 11:15:57 +010092/**
93 * iio_buffer_read_first_n_outer() - chrdev read for buffer access
Cristina Opriceana01236352015-07-24 16:18:09 +030094 * @filp: File structure pointer for the char device
95 * @buf: Destination buffer for iio buffer read
96 * @n: First n bytes to read
97 * @f_ps: Long offset provided by the user as a seek position
Jonathan Cameron14555b12011-09-21 11:15:57 +010098 *
99 * This function relies on all buffer implementations having an
100 * iio_buffer as their first element.
Cristina Opriceana01236352015-07-24 16:18:09 +0300101 *
102 * Return: negative values corresponding to error codes or ret != 0
103 * for ending the reading activity
Jonathan Cameron14555b12011-09-21 11:15:57 +0100104 **/
105ssize_t iio_buffer_read_first_n_outer(struct file *filp, char __user *buf,
106 size_t n, loff_t *f_ps)
107{
108 struct iio_dev *indio_dev = filp->private_data;
109 struct iio_buffer *rb = indio_dev->buffer;
Josselin Costanzi37d34552015-03-22 20:33:38 +0200110 size_t datum_size;
Octavian Purdilac6f67a12015-06-05 15:56:47 +0300111 size_t to_wait;
Lars-Peter Clausenee551a12013-11-25 14:56:00 +0000112 int ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100113
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +0100114 if (!indio_dev->info)
115 return -ENODEV;
116
Jonathan Cameron96e00f12011-10-26 17:27:45 +0100117 if (!rb || !rb->access->read_first_n)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100118 return -EINVAL;
Lars-Peter Clausenee551a12013-11-25 14:56:00 +0000119
Josselin Costanzi37d34552015-03-22 20:33:38 +0200120 datum_size = rb->bytes_per_datum;
Lars-Peter Clausenee551a12013-11-25 14:56:00 +0000121
Josselin Costanzi37d34552015-03-22 20:33:38 +0200122 /*
123 * If datum_size is 0 there will never be anything to read from the
124 * buffer, so signal end of file now.
125 */
126 if (!datum_size)
127 return 0;
128
Octavian Purdilac6f67a12015-06-05 15:56:47 +0300129 if (filp->f_flags & O_NONBLOCK)
130 to_wait = 0;
131 else
132 to_wait = min_t(size_t, n / datum_size, rb->watermark);
Josselin Costanzi37d34552015-03-22 20:33:38 +0200133
134 do {
135 ret = wait_event_interruptible(rb->pollq,
Octavian Purdilac6f67a12015-06-05 15:56:47 +0300136 iio_buffer_ready(indio_dev, rb, to_wait, n / datum_size));
Josselin Costanzi37d34552015-03-22 20:33:38 +0200137 if (ret)
138 return ret;
139
140 if (!indio_dev->info)
141 return -ENODEV;
Lars-Peter Clausenee551a12013-11-25 14:56:00 +0000142
143 ret = rb->access->read_first_n(rb, n, buf);
144 if (ret == 0 && (filp->f_flags & O_NONBLOCK))
145 ret = -EAGAIN;
146 } while (ret == 0);
147
148 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100149}
150
151/**
152 * iio_buffer_poll() - poll the buffer to find out if it has data
Cristina Opriceana01236352015-07-24 16:18:09 +0300153 * @filp: File structure pointer for device access
154 * @wait: Poll table structure pointer for which the driver adds
155 * a wait queue
156 *
157 * Return: (POLLIN | POLLRDNORM) if data is available for reading
158 * or 0 for other cases
Jonathan Cameron14555b12011-09-21 11:15:57 +0100159 */
160unsigned int iio_buffer_poll(struct file *filp,
161 struct poll_table_struct *wait)
162{
163 struct iio_dev *indio_dev = filp->private_data;
164 struct iio_buffer *rb = indio_dev->buffer;
165
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +0100166 if (!indio_dev->info)
Cristina Opriceana1bdc0292015-08-03 13:37:40 +0300167 return 0;
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +0100168
Jonathan Cameron14555b12011-09-21 11:15:57 +0100169 poll_wait(filp, &rb->pollq, wait);
Octavian Purdilaf4f46732015-03-22 20:33:39 +0200170 if (iio_buffer_ready(indio_dev, rb, rb->watermark, 0))
Jonathan Cameron14555b12011-09-21 11:15:57 +0100171 return POLLIN | POLLRDNORM;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100172 return 0;
173}
174
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +0100175/**
176 * iio_buffer_wakeup_poll - Wakes up the buffer waitqueue
177 * @indio_dev: The IIO device
178 *
179 * Wakes up the event waitqueue used for poll(). Should usually
180 * be called when the device is unregistered.
181 */
182void iio_buffer_wakeup_poll(struct iio_dev *indio_dev)
183{
184 if (!indio_dev->buffer)
185 return;
186
187 wake_up(&indio_dev->buffer->pollq);
188}
189
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000190void iio_buffer_init(struct iio_buffer *buffer)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100191{
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000192 INIT_LIST_HEAD(&buffer->demux_list);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100193 INIT_LIST_HEAD(&buffer->buffer_list);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100194 init_waitqueue_head(&buffer->pollq);
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100195 kref_init(&buffer->ref);
Josselin Costanzi37d34552015-03-22 20:33:38 +0200196 buffer->watermark = 1;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100197}
198EXPORT_SYMBOL(iio_buffer_init);
199
200static ssize_t iio_show_scan_index(struct device *dev,
201 struct device_attribute *attr,
202 char *buf)
203{
204 return sprintf(buf, "%u\n", to_iio_dev_attr(attr)->c->scan_index);
205}
206
207static ssize_t iio_show_fixed_type(struct device *dev,
208 struct device_attribute *attr,
209 char *buf)
210{
211 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
212 u8 type = this_attr->c->scan_type.endianness;
213
214 if (type == IIO_CPU) {
Jonathan Cameron9d5d1152011-10-04 16:02:08 +0100215#ifdef __LITTLE_ENDIAN
216 type = IIO_LE;
217#else
218 type = IIO_BE;
219#endif
Jonathan Cameron14555b12011-09-21 11:15:57 +0100220 }
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +0100221 if (this_attr->c->scan_type.repeat > 1)
222 return sprintf(buf, "%s:%c%d/%dX%d>>%u\n",
223 iio_endian_prefix[type],
224 this_attr->c->scan_type.sign,
225 this_attr->c->scan_type.realbits,
226 this_attr->c->scan_type.storagebits,
227 this_attr->c->scan_type.repeat,
228 this_attr->c->scan_type.shift);
229 else
230 return sprintf(buf, "%s:%c%d/%d>>%u\n",
Jonathan Cameron14555b12011-09-21 11:15:57 +0100231 iio_endian_prefix[type],
232 this_attr->c->scan_type.sign,
233 this_attr->c->scan_type.realbits,
234 this_attr->c->scan_type.storagebits,
235 this_attr->c->scan_type.shift);
236}
237
238static ssize_t iio_scan_el_show(struct device *dev,
239 struct device_attribute *attr,
240 char *buf)
241{
242 int ret;
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200243 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100244
Alec Berg2076a202014-03-19 18:50:00 +0000245 /* Ensure ret is 0 or 1. */
246 ret = !!test_bit(to_iio_dev_attr(attr)->address,
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000247 indio_dev->buffer->scan_mask);
248
Jonathan Cameron14555b12011-09-21 11:15:57 +0100249 return sprintf(buf, "%d\n", ret);
250}
251
Lars-Peter Clausen217a5cf2014-11-26 18:55:09 +0100252/* Note NULL used as error indicator as it doesn't make sense. */
253static const unsigned long *iio_scan_mask_match(const unsigned long *av_masks,
254 unsigned int masklength,
Lars-Peter Clausen1e1ec282015-05-29 18:14:22 +0200255 const unsigned long *mask,
256 bool strict)
Lars-Peter Clausen217a5cf2014-11-26 18:55:09 +0100257{
258 if (bitmap_empty(mask, masklength))
259 return NULL;
260 while (*av_masks) {
Lars-Peter Clausen1e1ec282015-05-29 18:14:22 +0200261 if (strict) {
262 if (bitmap_equal(mask, av_masks, masklength))
263 return av_masks;
264 } else {
265 if (bitmap_subset(mask, av_masks, masklength))
266 return av_masks;
267 }
Lars-Peter Clausen217a5cf2014-11-26 18:55:09 +0100268 av_masks += BITS_TO_LONGS(masklength);
269 }
270 return NULL;
271}
272
273static bool iio_validate_scan_mask(struct iio_dev *indio_dev,
274 const unsigned long *mask)
275{
276 if (!indio_dev->setup_ops->validate_scan_mask)
277 return true;
278
279 return indio_dev->setup_ops->validate_scan_mask(indio_dev, mask);
280}
281
282/**
283 * iio_scan_mask_set() - set particular bit in the scan mask
284 * @indio_dev: the iio device
285 * @buffer: the buffer whose scan mask we are interested in
286 * @bit: the bit to be set.
287 *
288 * Note that at this point we have no way of knowing what other
289 * buffers might request, hence this code only verifies that the
290 * individual buffers request is plausible.
291 */
292static int iio_scan_mask_set(struct iio_dev *indio_dev,
293 struct iio_buffer *buffer, int bit)
294{
295 const unsigned long *mask;
296 unsigned long *trialmask;
297
298 trialmask = kmalloc(sizeof(*trialmask)*
299 BITS_TO_LONGS(indio_dev->masklength),
300 GFP_KERNEL);
301
302 if (trialmask == NULL)
303 return -ENOMEM;
304 if (!indio_dev->masklength) {
305 WARN_ON("Trying to set scanmask prior to registering buffer\n");
306 goto err_invalid_mask;
307 }
308 bitmap_copy(trialmask, buffer->scan_mask, indio_dev->masklength);
309 set_bit(bit, trialmask);
310
311 if (!iio_validate_scan_mask(indio_dev, trialmask))
312 goto err_invalid_mask;
313
314 if (indio_dev->available_scan_masks) {
315 mask = iio_scan_mask_match(indio_dev->available_scan_masks,
316 indio_dev->masklength,
Lars-Peter Clausen1e1ec282015-05-29 18:14:22 +0200317 trialmask, false);
Lars-Peter Clausen217a5cf2014-11-26 18:55:09 +0100318 if (!mask)
319 goto err_invalid_mask;
320 }
321 bitmap_copy(buffer->scan_mask, trialmask, indio_dev->masklength);
322
323 kfree(trialmask);
324
325 return 0;
326
327err_invalid_mask:
328 kfree(trialmask);
329 return -EINVAL;
330}
331
Jonathan Cameron14555b12011-09-21 11:15:57 +0100332static int iio_scan_mask_clear(struct iio_buffer *buffer, int bit)
333{
334 clear_bit(bit, buffer->scan_mask);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100335 return 0;
336}
337
338static ssize_t iio_scan_el_store(struct device *dev,
339 struct device_attribute *attr,
340 const char *buf,
341 size_t len)
342{
Jonathan Camerona714af22012-04-21 10:09:32 +0100343 int ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100344 bool state;
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200345 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100346 struct iio_buffer *buffer = indio_dev->buffer;
347 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
348
Jonathan Camerona714af22012-04-21 10:09:32 +0100349 ret = strtobool(buf, &state);
350 if (ret < 0)
351 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100352 mutex_lock(&indio_dev->mlock);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100353 if (iio_buffer_is_active(indio_dev->buffer)) {
Jonathan Cameron14555b12011-09-21 11:15:57 +0100354 ret = -EBUSY;
355 goto error_ret;
356 }
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000357 ret = iio_scan_mask_query(indio_dev, buffer, this_attr->address);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100358 if (ret < 0)
359 goto error_ret;
360 if (!state && ret) {
361 ret = iio_scan_mask_clear(buffer, this_attr->address);
362 if (ret)
363 goto error_ret;
364 } else if (state && !ret) {
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000365 ret = iio_scan_mask_set(indio_dev, buffer, this_attr->address);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100366 if (ret)
367 goto error_ret;
368 }
369
370error_ret:
371 mutex_unlock(&indio_dev->mlock);
372
Lars-Peter Clausen5a2a6e12011-12-08 18:35:53 +0100373 return ret < 0 ? ret : len;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100374
375}
376
377static ssize_t iio_scan_el_ts_show(struct device *dev,
378 struct device_attribute *attr,
379 char *buf)
380{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200381 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100382 return sprintf(buf, "%d\n", indio_dev->buffer->scan_timestamp);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100383}
384
385static ssize_t iio_scan_el_ts_store(struct device *dev,
386 struct device_attribute *attr,
387 const char *buf,
388 size_t len)
389{
Jonathan Camerona714af22012-04-21 10:09:32 +0100390 int ret;
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200391 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100392 bool state;
393
Jonathan Camerona714af22012-04-21 10:09:32 +0100394 ret = strtobool(buf, &state);
395 if (ret < 0)
396 return ret;
397
Jonathan Cameron14555b12011-09-21 11:15:57 +0100398 mutex_lock(&indio_dev->mlock);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100399 if (iio_buffer_is_active(indio_dev->buffer)) {
Jonathan Cameron14555b12011-09-21 11:15:57 +0100400 ret = -EBUSY;
401 goto error_ret;
402 }
403 indio_dev->buffer->scan_timestamp = state;
404error_ret:
405 mutex_unlock(&indio_dev->mlock);
406
407 return ret ? ret : len;
408}
409
410static int iio_buffer_add_channel_sysfs(struct iio_dev *indio_dev,
411 const struct iio_chan_spec *chan)
412{
413 int ret, attrcount = 0;
414 struct iio_buffer *buffer = indio_dev->buffer;
415
416 ret = __iio_add_chan_devattr("index",
417 chan,
418 &iio_show_scan_index,
419 NULL,
420 0,
Jonathan Cameron37044322013-09-08 14:57:00 +0100421 IIO_SEPARATE,
Jonathan Cameron14555b12011-09-21 11:15:57 +0100422 &indio_dev->dev,
423 &buffer->scan_el_dev_attr_list);
424 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000425 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100426 attrcount++;
427 ret = __iio_add_chan_devattr("type",
428 chan,
429 &iio_show_fixed_type,
430 NULL,
431 0,
432 0,
433 &indio_dev->dev,
434 &buffer->scan_el_dev_attr_list);
435 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000436 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100437 attrcount++;
438 if (chan->type != IIO_TIMESTAMP)
439 ret = __iio_add_chan_devattr("en",
440 chan,
441 &iio_scan_el_show,
442 &iio_scan_el_store,
443 chan->scan_index,
444 0,
445 &indio_dev->dev,
446 &buffer->scan_el_dev_attr_list);
447 else
448 ret = __iio_add_chan_devattr("en",
449 chan,
450 &iio_scan_el_ts_show,
451 &iio_scan_el_ts_store,
452 chan->scan_index,
453 0,
454 &indio_dev->dev,
455 &buffer->scan_el_dev_attr_list);
Peter Meerwald95725882013-09-17 23:42:00 +0100456 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000457 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100458 attrcount++;
459 ret = attrcount;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100460 return ret;
461}
462
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100463static ssize_t iio_buffer_read_length(struct device *dev,
464 struct device_attribute *attr,
465 char *buf)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100466{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200467 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100468 struct iio_buffer *buffer = indio_dev->buffer;
469
Lars-Peter Clausen37495662014-11-26 18:55:17 +0100470 return sprintf(buf, "%d\n", buffer->length);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100471}
Jonathan Cameron14555b12011-09-21 11:15:57 +0100472
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100473static ssize_t iio_buffer_write_length(struct device *dev,
474 struct device_attribute *attr,
475 const char *buf, size_t len)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100476{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200477 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100478 struct iio_buffer *buffer = indio_dev->buffer;
Lars-Peter Clausen948ad202012-10-18 14:47:00 +0100479 unsigned int val;
480 int ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100481
Lars-Peter Clausen948ad202012-10-18 14:47:00 +0100482 ret = kstrtouint(buf, 10, &val);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100483 if (ret)
484 return ret;
485
Lars-Peter Clausen37495662014-11-26 18:55:17 +0100486 if (val == buffer->length)
487 return len;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100488
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100489 mutex_lock(&indio_dev->mlock);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100490 if (iio_buffer_is_active(indio_dev->buffer)) {
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100491 ret = -EBUSY;
492 } else {
Lars-Peter Clausen8d92db22014-11-26 18:55:16 +0100493 buffer->access->set_length(buffer, val);
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100494 ret = 0;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100495 }
Josselin Costanzi37d34552015-03-22 20:33:38 +0200496 if (ret)
497 goto out;
498 if (buffer->length && buffer->length < buffer->watermark)
499 buffer->watermark = buffer->length;
500out:
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100501 mutex_unlock(&indio_dev->mlock);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100502
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100503 return ret ? ret : len;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100504}
Jonathan Cameron14555b12011-09-21 11:15:57 +0100505
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100506static ssize_t iio_buffer_show_enable(struct device *dev,
507 struct device_attribute *attr,
508 char *buf)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100509{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200510 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100511 return sprintf(buf, "%d\n", iio_buffer_is_active(indio_dev->buffer));
Jonathan Cameron14555b12011-09-21 11:15:57 +0100512}
Jonathan Cameron14555b12011-09-21 11:15:57 +0100513
Peter Meerwald183f4172013-09-18 22:10:00 +0100514static int iio_compute_scan_bytes(struct iio_dev *indio_dev,
515 const unsigned long *mask, bool timestamp)
Jonathan Cameron959d2952011-12-05 21:37:13 +0000516{
Jonathan Cameron959d2952011-12-05 21:37:13 +0000517 const struct iio_chan_spec *ch;
518 unsigned bytes = 0;
519 int length, i;
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100520
521 /* How much space will the demuxed element take? */
522 for_each_set_bit(i, mask,
523 indio_dev->masklength) {
524 ch = iio_find_channel_from_si(indio_dev, i);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +0100525 if (ch->scan_type.repeat > 1)
526 length = ch->scan_type.storagebits / 8 *
527 ch->scan_type.repeat;
528 else
529 length = ch->scan_type.storagebits / 8;
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100530 bytes = ALIGN(bytes, length);
531 bytes += length;
532 }
533 if (timestamp) {
534 ch = iio_find_channel_from_si(indio_dev,
Jonathan Cameronf1264802012-04-21 10:09:34 +0100535 indio_dev->scan_index_timestamp);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +0100536 if (ch->scan_type.repeat > 1)
537 length = ch->scan_type.storagebits / 8 *
538 ch->scan_type.repeat;
539 else
540 length = ch->scan_type.storagebits / 8;
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100541 bytes = ALIGN(bytes, length);
542 bytes += length;
543 }
544 return bytes;
545}
546
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100547static void iio_buffer_activate(struct iio_dev *indio_dev,
548 struct iio_buffer *buffer)
549{
550 iio_buffer_get(buffer);
551 list_add(&buffer->buffer_list, &indio_dev->buffer_list);
552}
553
554static void iio_buffer_deactivate(struct iio_buffer *buffer)
555{
556 list_del_init(&buffer->buffer_list);
Josselin Costanzi37d34552015-03-22 20:33:38 +0200557 wake_up_interruptible(&buffer->pollq);
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100558 iio_buffer_put(buffer);
559}
560
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200561static void iio_buffer_deactivate_all(struct iio_dev *indio_dev)
562{
563 struct iio_buffer *buffer, *_buffer;
564
565 list_for_each_entry_safe(buffer, _buffer,
566 &indio_dev->buffer_list, buffer_list)
567 iio_buffer_deactivate(buffer);
568}
569
Lars-Peter Clausen8e050992013-10-14 17:49:00 +0100570static void iio_buffer_update_bytes_per_datum(struct iio_dev *indio_dev,
571 struct iio_buffer *buffer)
572{
573 unsigned int bytes;
574
575 if (!buffer->access->set_bytes_per_datum)
576 return;
577
578 bytes = iio_compute_scan_bytes(indio_dev, buffer->scan_mask,
579 buffer->scan_timestamp);
580
581 buffer->access->set_bytes_per_datum(buffer, bytes);
582}
583
Lars-Peter Clausenfcc1b2f2015-05-13 16:04:46 +0200584static int iio_buffer_request_update(struct iio_dev *indio_dev,
585 struct iio_buffer *buffer)
586{
587 int ret;
588
589 iio_buffer_update_bytes_per_datum(indio_dev, buffer);
590 if (buffer->access->request_update) {
591 ret = buffer->access->request_update(buffer);
592 if (ret) {
593 dev_dbg(&indio_dev->dev,
594 "Buffer not started: buffer parameter update failed (%d)\n",
595 ret);
596 return ret;
597 }
598 }
599
600 return 0;
601}
602
Lars-Peter Clausen248be5a2015-05-13 16:04:45 +0200603static void iio_free_scan_mask(struct iio_dev *indio_dev,
604 const unsigned long *mask)
605{
606 /* If the mask is dynamically allocated free it, otherwise do nothing */
607 if (!indio_dev->available_scan_masks)
608 kfree(mask);
609}
610
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200611struct iio_device_config {
612 unsigned int mode;
613 const unsigned long *scan_mask;
614 unsigned int scan_bytes;
615 bool scan_timestamp;
616};
617
618static int iio_verify_update(struct iio_dev *indio_dev,
619 struct iio_buffer *insert_buffer, struct iio_buffer *remove_buffer,
620 struct iio_device_config *config)
621{
622 unsigned long *compound_mask;
623 const unsigned long *scan_mask;
Lars-Peter Clausen1e1ec282015-05-29 18:14:22 +0200624 bool strict_scanmask = false;
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200625 struct iio_buffer *buffer;
626 bool scan_timestamp;
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200627 unsigned int modes;
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200628
629 memset(config, 0, sizeof(*config));
630
631 /*
632 * If there is just one buffer and we are removing it there is nothing
633 * to verify.
634 */
635 if (remove_buffer && !insert_buffer &&
636 list_is_singular(&indio_dev->buffer_list))
637 return 0;
638
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200639 modes = indio_dev->modes;
640
641 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
642 if (buffer == remove_buffer)
643 continue;
644 modes &= buffer->access->modes;
645 }
646
647 if (insert_buffer)
648 modes &= insert_buffer->access->modes;
649
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200650 /* Definitely possible for devices to support both of these. */
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200651 if ((modes & INDIO_BUFFER_TRIGGERED) && indio_dev->trig) {
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200652 config->mode = INDIO_BUFFER_TRIGGERED;
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200653 } else if (modes & INDIO_BUFFER_HARDWARE) {
Lars-Peter Clausen1e1ec282015-05-29 18:14:22 +0200654 /*
655 * Keep things simple for now and only allow a single buffer to
656 * be connected in hardware mode.
657 */
658 if (insert_buffer && !list_empty(&indio_dev->buffer_list))
659 return -EINVAL;
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200660 config->mode = INDIO_BUFFER_HARDWARE;
Lars-Peter Clausen1e1ec282015-05-29 18:14:22 +0200661 strict_scanmask = true;
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200662 } else if (modes & INDIO_BUFFER_SOFTWARE) {
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200663 config->mode = INDIO_BUFFER_SOFTWARE;
664 } else {
665 /* Can only occur on first buffer */
666 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
667 dev_dbg(&indio_dev->dev, "Buffer not started: no trigger\n");
668 return -EINVAL;
669 }
670
671 /* What scan mask do we actually have? */
672 compound_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength),
673 sizeof(long), GFP_KERNEL);
674 if (compound_mask == NULL)
675 return -ENOMEM;
676
677 scan_timestamp = false;
678
679 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
680 if (buffer == remove_buffer)
681 continue;
682 bitmap_or(compound_mask, compound_mask, buffer->scan_mask,
683 indio_dev->masklength);
684 scan_timestamp |= buffer->scan_timestamp;
685 }
686
687 if (insert_buffer) {
688 bitmap_or(compound_mask, compound_mask,
689 insert_buffer->scan_mask, indio_dev->masklength);
690 scan_timestamp |= insert_buffer->scan_timestamp;
691 }
692
693 if (indio_dev->available_scan_masks) {
694 scan_mask = iio_scan_mask_match(indio_dev->available_scan_masks,
695 indio_dev->masklength,
Lars-Peter Clausen1e1ec282015-05-29 18:14:22 +0200696 compound_mask,
697 strict_scanmask);
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200698 kfree(compound_mask);
699 if (scan_mask == NULL)
700 return -EINVAL;
701 } else {
702 scan_mask = compound_mask;
703 }
704
705 config->scan_bytes = iio_compute_scan_bytes(indio_dev,
706 scan_mask, scan_timestamp);
707 config->scan_mask = scan_mask;
708 config->scan_timestamp = scan_timestamp;
709
710 return 0;
711}
712
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200713static int iio_enable_buffers(struct iio_dev *indio_dev,
714 struct iio_device_config *config)
715{
716 int ret;
717
718 indio_dev->active_scan_mask = config->scan_mask;
719 indio_dev->scan_timestamp = config->scan_timestamp;
720 indio_dev->scan_bytes = config->scan_bytes;
721
722 iio_update_demux(indio_dev);
723
724 /* Wind up again */
725 if (indio_dev->setup_ops->preenable) {
726 ret = indio_dev->setup_ops->preenable(indio_dev);
727 if (ret) {
728 dev_dbg(&indio_dev->dev,
729 "Buffer not started: buffer preenable failed (%d)\n", ret);
730 goto err_undo_config;
731 }
732 }
733
734 if (indio_dev->info->update_scan_mode) {
735 ret = indio_dev->info
736 ->update_scan_mode(indio_dev,
737 indio_dev->active_scan_mask);
738 if (ret < 0) {
739 dev_dbg(&indio_dev->dev,
740 "Buffer not started: update scan mode failed (%d)\n",
741 ret);
742 goto err_run_postdisable;
743 }
744 }
745
746 indio_dev->currentmode = config->mode;
747
748 if (indio_dev->setup_ops->postenable) {
749 ret = indio_dev->setup_ops->postenable(indio_dev);
750 if (ret) {
751 dev_dbg(&indio_dev->dev,
752 "Buffer not started: postenable failed (%d)\n", ret);
753 goto err_run_postdisable;
754 }
755 }
756
757 return 0;
758
759err_run_postdisable:
760 indio_dev->currentmode = INDIO_DIRECT_MODE;
761 if (indio_dev->setup_ops->postdisable)
762 indio_dev->setup_ops->postdisable(indio_dev);
763err_undo_config:
764 indio_dev->active_scan_mask = NULL;
765
766 return ret;
767}
768
769static int iio_disable_buffers(struct iio_dev *indio_dev)
770{
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200771 int ret = 0;
772 int ret2;
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200773
774 /* Wind down existing buffers - iff there are any */
775 if (list_empty(&indio_dev->buffer_list))
776 return 0;
777
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200778 /*
779 * If things go wrong at some step in disable we still need to continue
780 * to perform the other steps, otherwise we leave the device in a
781 * inconsistent state. We return the error code for the first error we
782 * encountered.
783 */
784
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200785 if (indio_dev->setup_ops->predisable) {
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200786 ret2 = indio_dev->setup_ops->predisable(indio_dev);
787 if (ret2 && !ret)
788 ret = ret2;
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200789 }
790
791 indio_dev->currentmode = INDIO_DIRECT_MODE;
792
793 if (indio_dev->setup_ops->postdisable) {
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200794 ret2 = indio_dev->setup_ops->postdisable(indio_dev);
795 if (ret2 && !ret)
796 ret = ret2;
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200797 }
798
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200799 iio_free_scan_mask(indio_dev, indio_dev->active_scan_mask);
800 indio_dev->active_scan_mask = NULL;
801
802 return ret;
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200803}
804
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100805static int __iio_update_buffers(struct iio_dev *indio_dev,
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100806 struct iio_buffer *insert_buffer,
807 struct iio_buffer *remove_buffer)
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100808{
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200809 struct iio_device_config new_config;
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200810 int ret;
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200811
812 ret = iio_verify_update(indio_dev, insert_buffer, remove_buffer,
813 &new_config);
814 if (ret)
815 return ret;
Jonathan Cameron959d2952011-12-05 21:37:13 +0000816
Lars-Peter Clausenfcc1b2f2015-05-13 16:04:46 +0200817 if (insert_buffer) {
818 ret = iio_buffer_request_update(indio_dev, insert_buffer);
819 if (ret)
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200820 goto err_free_config;
Lars-Peter Clausenfcc1b2f2015-05-13 16:04:46 +0200821 }
822
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200823 ret = iio_disable_buffers(indio_dev);
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200824 if (ret)
825 goto err_deactivate_all;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100826
827 if (remove_buffer)
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100828 iio_buffer_deactivate(remove_buffer);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100829 if (insert_buffer)
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100830 iio_buffer_activate(indio_dev, insert_buffer);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100831
832 /* If no buffers in list, we are done */
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200833 if (list_empty(&indio_dev->buffer_list))
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100834 return 0;
Jonathan Cameron959d2952011-12-05 21:37:13 +0000835
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200836 ret = iio_enable_buffers(indio_dev, &new_config);
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200837 if (ret)
838 goto err_deactivate_all;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100839
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200840 return 0;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100841
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200842err_deactivate_all:
843 /*
844 * We've already verified that the config is valid earlier. If things go
845 * wrong in either enable or disable the most likely reason is an IO
846 * error from the device. In this case there is no good recovery
847 * strategy. Just make sure to disable everything and leave the device
848 * in a sane state. With a bit of luck the device might come back to
849 * life again later and userspace can try again.
850 */
851 iio_buffer_deactivate_all(indio_dev);
852
Lars-Peter Clausen6e509c4d2015-05-18 13:34:47 +0200853err_free_config:
854 iio_free_scan_mask(indio_dev, new_config.scan_mask);
855 return ret;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100856}
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100857
858int iio_update_buffers(struct iio_dev *indio_dev,
859 struct iio_buffer *insert_buffer,
860 struct iio_buffer *remove_buffer)
861{
862 int ret;
863
Lars-Peter Clausen3909fab2013-10-04 12:07:00 +0100864 if (insert_buffer == remove_buffer)
865 return 0;
866
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100867 mutex_lock(&indio_dev->info_exist_lock);
868 mutex_lock(&indio_dev->mlock);
869
Lars-Peter Clausen3909fab2013-10-04 12:07:00 +0100870 if (insert_buffer && iio_buffer_is_active(insert_buffer))
871 insert_buffer = NULL;
872
873 if (remove_buffer && !iio_buffer_is_active(remove_buffer))
874 remove_buffer = NULL;
875
876 if (!insert_buffer && !remove_buffer) {
877 ret = 0;
878 goto out_unlock;
879 }
880
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100881 if (indio_dev->info == NULL) {
882 ret = -ENODEV;
883 goto out_unlock;
884 }
885
886 ret = __iio_update_buffers(indio_dev, insert_buffer, remove_buffer);
887
888out_unlock:
889 mutex_unlock(&indio_dev->mlock);
890 mutex_unlock(&indio_dev->info_exist_lock);
891
892 return ret;
893}
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100894EXPORT_SYMBOL_GPL(iio_update_buffers);
895
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200896void iio_disable_all_buffers(struct iio_dev *indio_dev)
897{
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200898 iio_disable_buffers(indio_dev);
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200899 iio_buffer_deactivate_all(indio_dev);
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200900}
901
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100902static ssize_t iio_buffer_store_enable(struct device *dev,
903 struct device_attribute *attr,
904 const char *buf,
905 size_t len)
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100906{
907 int ret;
908 bool requested_state;
909 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100910 bool inlist;
911
912 ret = strtobool(buf, &requested_state);
913 if (ret < 0)
914 return ret;
915
916 mutex_lock(&indio_dev->mlock);
917
918 /* Find out if it is in the list */
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100919 inlist = iio_buffer_is_active(indio_dev->buffer);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100920 /* Already in desired state */
921 if (inlist == requested_state)
922 goto done;
923
924 if (requested_state)
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100925 ret = __iio_update_buffers(indio_dev,
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100926 indio_dev->buffer, NULL);
927 else
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100928 ret = __iio_update_buffers(indio_dev,
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100929 NULL, indio_dev->buffer);
930
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100931done:
932 mutex_unlock(&indio_dev->mlock);
933 return (ret < 0) ? ret : len;
934}
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100935
Lars-Peter Clausend967cb62014-11-26 18:55:14 +0100936static const char * const iio_scan_elements_group_name = "scan_elements";
937
Josselin Costanzi37d34552015-03-22 20:33:38 +0200938static ssize_t iio_buffer_show_watermark(struct device *dev,
939 struct device_attribute *attr,
940 char *buf)
941{
942 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
943 struct iio_buffer *buffer = indio_dev->buffer;
944
945 return sprintf(buf, "%u\n", buffer->watermark);
946}
947
948static ssize_t iio_buffer_store_watermark(struct device *dev,
949 struct device_attribute *attr,
950 const char *buf,
951 size_t len)
952{
953 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
954 struct iio_buffer *buffer = indio_dev->buffer;
955 unsigned int val;
956 int ret;
957
958 ret = kstrtouint(buf, 10, &val);
959 if (ret)
960 return ret;
961 if (!val)
962 return -EINVAL;
963
964 mutex_lock(&indio_dev->mlock);
965
966 if (val > buffer->length) {
967 ret = -EINVAL;
968 goto out;
969 }
970
971 if (iio_buffer_is_active(indio_dev->buffer)) {
972 ret = -EBUSY;
973 goto out;
974 }
975
976 buffer->watermark = val;
Octavian Purdilaf4f46732015-03-22 20:33:39 +0200977
978 if (indio_dev->info->hwfifo_set_watermark)
979 indio_dev->info->hwfifo_set_watermark(indio_dev, val);
Josselin Costanzi37d34552015-03-22 20:33:38 +0200980out:
981 mutex_unlock(&indio_dev->mlock);
982
983 return ret ? ret : len;
984}
985
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100986static DEVICE_ATTR(length, S_IRUGO | S_IWUSR, iio_buffer_read_length,
987 iio_buffer_write_length);
Lars-Peter Clausen8d92db22014-11-26 18:55:16 +0100988static struct device_attribute dev_attr_length_ro = __ATTR(length,
989 S_IRUGO, iio_buffer_read_length, NULL);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100990static DEVICE_ATTR(enable, S_IRUGO | S_IWUSR,
991 iio_buffer_show_enable, iio_buffer_store_enable);
Josselin Costanzi37d34552015-03-22 20:33:38 +0200992static DEVICE_ATTR(watermark, S_IRUGO | S_IWUSR,
993 iio_buffer_show_watermark, iio_buffer_store_watermark);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100994
Octavian Purdila6da9b382015-01-31 02:00:00 +0200995static struct attribute *iio_buffer_attrs[] = {
996 &dev_attr_length.attr,
997 &dev_attr_enable.attr,
Josselin Costanzi37d34552015-03-22 20:33:38 +0200998 &dev_attr_watermark.attr,
Octavian Purdila6da9b382015-01-31 02:00:00 +0200999};
1000
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001001int iio_buffer_alloc_sysfs_and_mask(struct iio_dev *indio_dev)
1002{
1003 struct iio_dev_attr *p;
1004 struct attribute **attr;
1005 struct iio_buffer *buffer = indio_dev->buffer;
1006 int ret, i, attrn, attrcount, attrcount_orig = 0;
1007 const struct iio_chan_spec *channels;
1008
Lars-Peter Clausen629bc022015-05-29 18:14:20 +02001009 channels = indio_dev->channels;
1010 if (channels) {
1011 int ml = indio_dev->masklength;
1012
1013 for (i = 0; i < indio_dev->num_channels; i++)
1014 ml = max(ml, channels[i].scan_index + 1);
1015 indio_dev->masklength = ml;
1016 }
1017
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001018 if (!buffer)
1019 return 0;
1020
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001021 attrcount = 0;
1022 if (buffer->attrs) {
1023 while (buffer->attrs[attrcount] != NULL)
1024 attrcount++;
1025 }
1026
Octavian Purdila6da9b382015-01-31 02:00:00 +02001027 attr = kcalloc(attrcount + ARRAY_SIZE(iio_buffer_attrs) + 1,
1028 sizeof(struct attribute *), GFP_KERNEL);
1029 if (!attr)
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001030 return -ENOMEM;
1031
Octavian Purdila6da9b382015-01-31 02:00:00 +02001032 memcpy(attr, iio_buffer_attrs, sizeof(iio_buffer_attrs));
1033 if (!buffer->access->set_length)
1034 attr[0] = &dev_attr_length_ro.attr;
1035
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001036 if (buffer->attrs)
Octavian Purdila6da9b382015-01-31 02:00:00 +02001037 memcpy(&attr[ARRAY_SIZE(iio_buffer_attrs)], buffer->attrs,
1038 sizeof(struct attribute *) * attrcount);
1039
1040 attr[attrcount + ARRAY_SIZE(iio_buffer_attrs)] = NULL;
1041
1042 buffer->buffer_group.name = "buffer";
1043 buffer->buffer_group.attrs = attr;
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001044
1045 indio_dev->groups[indio_dev->groupcounter++] = &buffer->buffer_group;
1046
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001047 if (buffer->scan_el_attrs != NULL) {
1048 attr = buffer->scan_el_attrs->attrs;
1049 while (*attr++ != NULL)
1050 attrcount_orig++;
1051 }
1052 attrcount = attrcount_orig;
1053 INIT_LIST_HEAD(&buffer->scan_el_dev_attr_list);
1054 channels = indio_dev->channels;
1055 if (channels) {
1056 /* new magic */
1057 for (i = 0; i < indio_dev->num_channels; i++) {
1058 if (channels[i].scan_index < 0)
1059 continue;
1060
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001061 ret = iio_buffer_add_channel_sysfs(indio_dev,
1062 &channels[i]);
1063 if (ret < 0)
1064 goto error_cleanup_dynamic;
1065 attrcount += ret;
1066 if (channels[i].type == IIO_TIMESTAMP)
1067 indio_dev->scan_index_timestamp =
1068 channels[i].scan_index;
1069 }
1070 if (indio_dev->masklength && buffer->scan_mask == NULL) {
1071 buffer->scan_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength),
1072 sizeof(*buffer->scan_mask),
1073 GFP_KERNEL);
1074 if (buffer->scan_mask == NULL) {
1075 ret = -ENOMEM;
1076 goto error_cleanup_dynamic;
1077 }
1078 }
1079 }
1080
1081 buffer->scan_el_group.name = iio_scan_elements_group_name;
1082
1083 buffer->scan_el_group.attrs = kcalloc(attrcount + 1,
1084 sizeof(buffer->scan_el_group.attrs[0]),
1085 GFP_KERNEL);
1086 if (buffer->scan_el_group.attrs == NULL) {
1087 ret = -ENOMEM;
1088 goto error_free_scan_mask;
1089 }
1090 if (buffer->scan_el_attrs)
1091 memcpy(buffer->scan_el_group.attrs, buffer->scan_el_attrs,
1092 sizeof(buffer->scan_el_group.attrs[0])*attrcount_orig);
1093 attrn = attrcount_orig;
1094
1095 list_for_each_entry(p, &buffer->scan_el_dev_attr_list, l)
1096 buffer->scan_el_group.attrs[attrn++] = &p->dev_attr.attr;
1097 indio_dev->groups[indio_dev->groupcounter++] = &buffer->scan_el_group;
1098
1099 return 0;
1100
1101error_free_scan_mask:
1102 kfree(buffer->scan_mask);
1103error_cleanup_dynamic:
1104 iio_free_chan_devattr_list(&buffer->scan_el_dev_attr_list);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001105 kfree(indio_dev->buffer->buffer_group.attrs);
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001106
1107 return ret;
1108}
1109
1110void iio_buffer_free_sysfs_and_mask(struct iio_dev *indio_dev)
1111{
1112 if (!indio_dev->buffer)
1113 return;
1114
1115 kfree(indio_dev->buffer->scan_mask);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001116 kfree(indio_dev->buffer->buffer_group.attrs);
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001117 kfree(indio_dev->buffer->scan_el_group.attrs);
1118 iio_free_chan_devattr_list(&indio_dev->buffer->scan_el_dev_attr_list);
1119}
1120
Jonathan Cameron14555b12011-09-21 11:15:57 +01001121/**
Lars-Peter Clausen81636632012-07-09 10:00:00 +01001122 * iio_validate_scan_mask_onehot() - Validates that exactly one channel is selected
1123 * @indio_dev: the iio device
1124 * @mask: scan mask to be checked
1125 *
1126 * Return true if exactly one bit is set in the scan mask, false otherwise. It
1127 * can be used for devices where only one channel can be active for sampling at
1128 * a time.
1129 */
1130bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev,
1131 const unsigned long *mask)
1132{
1133 return bitmap_weight(mask, indio_dev->masklength) == 1;
1134}
1135EXPORT_SYMBOL_GPL(iio_validate_scan_mask_onehot);
1136
Jonathan Cameronf79a9092011-12-05 22:18:29 +00001137int iio_scan_mask_query(struct iio_dev *indio_dev,
1138 struct iio_buffer *buffer, int bit)
Jonathan Cameron14555b12011-09-21 11:15:57 +01001139{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001140 if (bit > indio_dev->masklength)
Jonathan Cameron14555b12011-09-21 11:15:57 +01001141 return -EINVAL;
1142
1143 if (!buffer->scan_mask)
1144 return 0;
Jonathan Cameron14555b12011-09-21 11:15:57 +01001145
Alec Berg2076a202014-03-19 18:50:00 +00001146 /* Ensure return value is 0 or 1. */
1147 return !!test_bit(bit, buffer->scan_mask);
Jonathan Cameron14555b12011-09-21 11:15:57 +01001148};
1149EXPORT_SYMBOL_GPL(iio_scan_mask_query);
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001150
1151/**
Cristina Opriceana01236352015-07-24 16:18:09 +03001152 * struct iio_demux_table - table describing demux memcpy ops
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001153 * @from: index to copy from
Peter Meerwald99698b42012-08-26 13:43:00 +01001154 * @to: index to copy to
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001155 * @length: how many bytes to copy
1156 * @l: list head used for management
1157 */
1158struct iio_demux_table {
1159 unsigned from;
1160 unsigned to;
1161 unsigned length;
1162 struct list_head l;
1163};
1164
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +01001165static const void *iio_demux(struct iio_buffer *buffer,
1166 const void *datain)
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001167{
1168 struct iio_demux_table *t;
1169
1170 if (list_empty(&buffer->demux_list))
1171 return datain;
1172 list_for_each_entry(t, &buffer->demux_list, l)
1173 memcpy(buffer->demux_bounce + t->to,
1174 datain + t->from, t->length);
1175
1176 return buffer->demux_bounce;
1177}
1178
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +01001179static int iio_push_to_buffer(struct iio_buffer *buffer, const void *data)
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001180{
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +01001181 const void *dataout = iio_demux(buffer, data);
Josselin Costanzi37d34552015-03-22 20:33:38 +02001182 int ret;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001183
Josselin Costanzi37d34552015-03-22 20:33:38 +02001184 ret = buffer->access->store_to(buffer, dataout);
1185 if (ret)
1186 return ret;
1187
1188 /*
1189 * We can't just test for watermark to decide if we wake the poll queue
1190 * because read may request less samples than the watermark.
1191 */
1192 wake_up_interruptible_poll(&buffer->pollq, POLLIN | POLLRDNORM);
1193 return 0;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001194}
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001195
Jonathan Cameron842cd102012-04-21 10:09:45 +01001196static void iio_buffer_demux_free(struct iio_buffer *buffer)
1197{
1198 struct iio_demux_table *p, *q;
1199 list_for_each_entry_safe(p, q, &buffer->demux_list, l) {
1200 list_del(&p->l);
1201 kfree(p);
1202 }
1203}
1204
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001205
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +01001206int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data)
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001207{
1208 int ret;
1209 struct iio_buffer *buf;
1210
1211 list_for_each_entry(buf, &indio_dev->buffer_list, buffer_list) {
1212 ret = iio_push_to_buffer(buf, data);
1213 if (ret < 0)
1214 return ret;
1215 }
1216
1217 return 0;
1218}
1219EXPORT_SYMBOL_GPL(iio_push_to_buffers);
1220
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +01001221static int iio_buffer_add_demux(struct iio_buffer *buffer,
1222 struct iio_demux_table **p, unsigned int in_loc, unsigned int out_loc,
1223 unsigned int length)
1224{
1225
1226 if (*p && (*p)->from + (*p)->length == in_loc &&
1227 (*p)->to + (*p)->length == out_loc) {
1228 (*p)->length += length;
1229 } else {
Jonathan Cameron7cdca1782014-08-08 09:43:00 +01001230 *p = kmalloc(sizeof(**p), GFP_KERNEL);
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +01001231 if (*p == NULL)
1232 return -ENOMEM;
1233 (*p)->from = in_loc;
1234 (*p)->to = out_loc;
1235 (*p)->length = length;
1236 list_add_tail(&(*p)->l, &buffer->demux_list);
1237 }
1238
1239 return 0;
1240}
1241
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001242static int iio_buffer_update_demux(struct iio_dev *indio_dev,
1243 struct iio_buffer *buffer)
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001244{
1245 const struct iio_chan_spec *ch;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001246 int ret, in_ind = -1, out_ind, length;
1247 unsigned in_loc = 0, out_loc = 0;
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +01001248 struct iio_demux_table *p = NULL;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001249
1250 /* Clear out any old demux */
Jonathan Cameron842cd102012-04-21 10:09:45 +01001251 iio_buffer_demux_free(buffer);
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001252 kfree(buffer->demux_bounce);
1253 buffer->demux_bounce = NULL;
1254
1255 /* First work out which scan mode we will actually have */
1256 if (bitmap_equal(indio_dev->active_scan_mask,
1257 buffer->scan_mask,
1258 indio_dev->masklength))
1259 return 0;
1260
1261 /* Now we have the two masks, work from least sig and build up sizes */
1262 for_each_set_bit(out_ind,
Lars-Peter Clausen61bd55c2014-07-17 16:59:00 +01001263 buffer->scan_mask,
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001264 indio_dev->masklength) {
1265 in_ind = find_next_bit(indio_dev->active_scan_mask,
1266 indio_dev->masklength,
1267 in_ind + 1);
1268 while (in_ind != out_ind) {
1269 in_ind = find_next_bit(indio_dev->active_scan_mask,
1270 indio_dev->masklength,
1271 in_ind + 1);
1272 ch = iio_find_channel_from_si(indio_dev, in_ind);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +01001273 if (ch->scan_type.repeat > 1)
1274 length = ch->scan_type.storagebits / 8 *
1275 ch->scan_type.repeat;
1276 else
1277 length = ch->scan_type.storagebits / 8;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001278 /* Make sure we are aligned */
Lars-Peter Clausen61072db2014-07-17 16:59:00 +01001279 in_loc = roundup(in_loc, length) + length;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001280 }
1281 ch = iio_find_channel_from_si(indio_dev, in_ind);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +01001282 if (ch->scan_type.repeat > 1)
1283 length = ch->scan_type.storagebits / 8 *
1284 ch->scan_type.repeat;
1285 else
1286 length = ch->scan_type.storagebits / 8;
Lars-Peter Clausen61072db2014-07-17 16:59:00 +01001287 out_loc = roundup(out_loc, length);
1288 in_loc = roundup(in_loc, length);
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +01001289 ret = iio_buffer_add_demux(buffer, &p, in_loc, out_loc, length);
1290 if (ret)
1291 goto error_clear_mux_table;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001292 out_loc += length;
1293 in_loc += length;
1294 }
1295 /* Relies on scan_timestamp being last */
1296 if (buffer->scan_timestamp) {
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001297 ch = iio_find_channel_from_si(indio_dev,
Jonathan Cameronf1264802012-04-21 10:09:34 +01001298 indio_dev->scan_index_timestamp);
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +01001299 if (ch->scan_type.repeat > 1)
1300 length = ch->scan_type.storagebits / 8 *
1301 ch->scan_type.repeat;
1302 else
1303 length = ch->scan_type.storagebits / 8;
Lars-Peter Clausen61072db2014-07-17 16:59:00 +01001304 out_loc = roundup(out_loc, length);
1305 in_loc = roundup(in_loc, length);
Lars-Peter Clausencbe88bc2014-07-17 16:59:00 +01001306 ret = iio_buffer_add_demux(buffer, &p, in_loc, out_loc, length);
1307 if (ret)
1308 goto error_clear_mux_table;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001309 out_loc += length;
1310 in_loc += length;
1311 }
1312 buffer->demux_bounce = kzalloc(out_loc, GFP_KERNEL);
1313 if (buffer->demux_bounce == NULL) {
1314 ret = -ENOMEM;
1315 goto error_clear_mux_table;
1316 }
1317 return 0;
1318
1319error_clear_mux_table:
Jonathan Cameron842cd102012-04-21 10:09:45 +01001320 iio_buffer_demux_free(buffer);
1321
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001322 return ret;
1323}
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001324
1325int iio_update_demux(struct iio_dev *indio_dev)
1326{
1327 struct iio_buffer *buffer;
1328 int ret;
1329
1330 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
1331 ret = iio_buffer_update_demux(indio_dev, buffer);
1332 if (ret < 0)
1333 goto error_clear_mux_table;
1334 }
1335 return 0;
1336
1337error_clear_mux_table:
1338 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list)
1339 iio_buffer_demux_free(buffer);
1340
1341 return ret;
1342}
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001343EXPORT_SYMBOL_GPL(iio_update_demux);
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +01001344
1345/**
1346 * iio_buffer_release() - Free a buffer's resources
1347 * @ref: Pointer to the kref embedded in the iio_buffer struct
1348 *
1349 * This function is called when the last reference to the buffer has been
1350 * dropped. It will typically free all resources allocated by the buffer. Do not
1351 * call this function manually, always use iio_buffer_put() when done using a
1352 * buffer.
1353 */
1354static void iio_buffer_release(struct kref *ref)
1355{
1356 struct iio_buffer *buffer = container_of(ref, struct iio_buffer, ref);
1357
1358 buffer->access->release(buffer);
1359}
1360
1361/**
1362 * iio_buffer_get() - Grab a reference to the buffer
1363 * @buffer: The buffer to grab a reference for, may be NULL
1364 *
1365 * Returns the pointer to the buffer that was passed into the function.
1366 */
1367struct iio_buffer *iio_buffer_get(struct iio_buffer *buffer)
1368{
1369 if (buffer)
1370 kref_get(&buffer->ref);
1371
1372 return buffer;
1373}
1374EXPORT_SYMBOL_GPL(iio_buffer_get);
1375
1376/**
1377 * iio_buffer_put() - Release the reference to the buffer
1378 * @buffer: The buffer to release the reference for, may be NULL
1379 */
1380void iio_buffer_put(struct iio_buffer *buffer)
1381{
1382 if (buffer)
1383 kref_put(&buffer->ref, iio_buffer_release);
1384}
1385EXPORT_SYMBOL_GPL(iio_buffer_put);