blob: 9f496eb84e0b5c5a9640016fd6c2459b1f9900f0 [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;
Brian Norrisfcf68f32016-08-08 17:19:38 -0700110 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Josselin Costanzi37d34552015-03-22 20:33:38 +0200111 size_t datum_size;
Octavian Purdilac6f67a12015-06-05 15:56:47 +0300112 size_t to_wait;
Colin Ian King5dba4b12016-09-05 15:39:06 +0100113 int ret = 0;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100114
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +0100115 if (!indio_dev->info)
116 return -ENODEV;
117
Jonathan Cameron96e00f12011-10-26 17:27:45 +0100118 if (!rb || !rb->access->read_first_n)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100119 return -EINVAL;
Lars-Peter Clausenee551a12013-11-25 14:56:00 +0000120
Josselin Costanzi37d34552015-03-22 20:33:38 +0200121 datum_size = rb->bytes_per_datum;
Lars-Peter Clausenee551a12013-11-25 14:56:00 +0000122
Josselin Costanzi37d34552015-03-22 20:33:38 +0200123 /*
124 * If datum_size is 0 there will never be anything to read from the
125 * buffer, so signal end of file now.
126 */
127 if (!datum_size)
128 return 0;
129
Octavian Purdilac6f67a12015-06-05 15:56:47 +0300130 if (filp->f_flags & O_NONBLOCK)
131 to_wait = 0;
132 else
133 to_wait = min_t(size_t, n / datum_size, rb->watermark);
Josselin Costanzi37d34552015-03-22 20:33:38 +0200134
Brian Norrisfcf68f32016-08-08 17:19:38 -0700135 add_wait_queue(&rb->pollq, &wait);
Josselin Costanzi37d34552015-03-22 20:33:38 +0200136 do {
Brian Norrisfcf68f32016-08-08 17:19:38 -0700137 if (!indio_dev->info) {
138 ret = -ENODEV;
139 break;
140 }
Josselin Costanzi37d34552015-03-22 20:33:38 +0200141
Brian Norrisfcf68f32016-08-08 17:19:38 -0700142 if (!iio_buffer_ready(indio_dev, rb, to_wait, n / datum_size)) {
143 if (signal_pending(current)) {
144 ret = -ERESTARTSYS;
145 break;
146 }
147
148 wait_woken(&wait, TASK_INTERRUPTIBLE,
149 MAX_SCHEDULE_TIMEOUT);
150 continue;
151 }
Lars-Peter Clausenee551a12013-11-25 14:56:00 +0000152
153 ret = rb->access->read_first_n(rb, n, buf);
154 if (ret == 0 && (filp->f_flags & O_NONBLOCK))
155 ret = -EAGAIN;
Colin Ian King5dba4b12016-09-05 15:39:06 +0100156 } while (ret == 0);
Brian Norrisfcf68f32016-08-08 17:19:38 -0700157 remove_wait_queue(&rb->pollq, &wait);
Lars-Peter Clausenee551a12013-11-25 14:56:00 +0000158
159 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100160}
161
162/**
163 * iio_buffer_poll() - poll the buffer to find out if it has data
Cristina Opriceana01236352015-07-24 16:18:09 +0300164 * @filp: File structure pointer for device access
165 * @wait: Poll table structure pointer for which the driver adds
166 * a wait queue
167 *
168 * Return: (POLLIN | POLLRDNORM) if data is available for reading
169 * or 0 for other cases
Jonathan Cameron14555b12011-09-21 11:15:57 +0100170 */
171unsigned int iio_buffer_poll(struct file *filp,
172 struct poll_table_struct *wait)
173{
174 struct iio_dev *indio_dev = filp->private_data;
175 struct iio_buffer *rb = indio_dev->buffer;
176
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +0100177 if (!indio_dev->info)
Cristina Opriceana1bdc0292015-08-03 13:37:40 +0300178 return 0;
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +0100179
Jonathan Cameron14555b12011-09-21 11:15:57 +0100180 poll_wait(filp, &rb->pollq, wait);
Octavian Purdilaf4f46732015-03-22 20:33:39 +0200181 if (iio_buffer_ready(indio_dev, rb, rb->watermark, 0))
Jonathan Cameron14555b12011-09-21 11:15:57 +0100182 return POLLIN | POLLRDNORM;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100183 return 0;
184}
185
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +0100186/**
187 * iio_buffer_wakeup_poll - Wakes up the buffer waitqueue
188 * @indio_dev: The IIO device
189 *
190 * Wakes up the event waitqueue used for poll(). Should usually
191 * be called when the device is unregistered.
192 */
193void iio_buffer_wakeup_poll(struct iio_dev *indio_dev)
194{
195 if (!indio_dev->buffer)
196 return;
197
198 wake_up(&indio_dev->buffer->pollq);
199}
200
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000201void iio_buffer_init(struct iio_buffer *buffer)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100202{
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000203 INIT_LIST_HEAD(&buffer->demux_list);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100204 INIT_LIST_HEAD(&buffer->buffer_list);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100205 init_waitqueue_head(&buffer->pollq);
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100206 kref_init(&buffer->ref);
Lars-Peter Clausen4a605352015-10-13 18:10:25 +0200207 if (!buffer->watermark)
208 buffer->watermark = 1;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100209}
210EXPORT_SYMBOL(iio_buffer_init);
211
212static ssize_t iio_show_scan_index(struct device *dev,
213 struct device_attribute *attr,
214 char *buf)
215{
216 return sprintf(buf, "%u\n", to_iio_dev_attr(attr)->c->scan_index);
217}
218
219static ssize_t iio_show_fixed_type(struct device *dev,
220 struct device_attribute *attr,
221 char *buf)
222{
223 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
224 u8 type = this_attr->c->scan_type.endianness;
225
226 if (type == IIO_CPU) {
Jonathan Cameron9d5d1152011-10-04 16:02:08 +0100227#ifdef __LITTLE_ENDIAN
228 type = IIO_LE;
229#else
230 type = IIO_BE;
231#endif
Jonathan Cameron14555b12011-09-21 11:15:57 +0100232 }
Srinivas Pandruvada0ee85462014-04-29 00:51:00 +0100233 if (this_attr->c->scan_type.repeat > 1)
234 return sprintf(buf, "%s:%c%d/%dX%d>>%u\n",
235 iio_endian_prefix[type],
236 this_attr->c->scan_type.sign,
237 this_attr->c->scan_type.realbits,
238 this_attr->c->scan_type.storagebits,
239 this_attr->c->scan_type.repeat,
240 this_attr->c->scan_type.shift);
241 else
242 return sprintf(buf, "%s:%c%d/%d>>%u\n",
Jonathan Cameron14555b12011-09-21 11:15:57 +0100243 iio_endian_prefix[type],
244 this_attr->c->scan_type.sign,
245 this_attr->c->scan_type.realbits,
246 this_attr->c->scan_type.storagebits,
247 this_attr->c->scan_type.shift);
248}
249
250static ssize_t iio_scan_el_show(struct device *dev,
251 struct device_attribute *attr,
252 char *buf)
253{
254 int ret;
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200255 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100256
Alec Berg2076a202014-03-19 18:50:00 +0000257 /* Ensure ret is 0 or 1. */
258 ret = !!test_bit(to_iio_dev_attr(attr)->address,
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000259 indio_dev->buffer->scan_mask);
260
Jonathan Cameron14555b12011-09-21 11:15:57 +0100261 return sprintf(buf, "%d\n", ret);
262}
263
Lars-Peter Clausen217a5cf2014-11-26 18:55:09 +0100264/* Note NULL used as error indicator as it doesn't make sense. */
265static const unsigned long *iio_scan_mask_match(const unsigned long *av_masks,
266 unsigned int masklength,
Lars-Peter Clausen1e1ec282015-05-29 18:14:22 +0200267 const unsigned long *mask,
268 bool strict)
Lars-Peter Clausen217a5cf2014-11-26 18:55:09 +0100269{
270 if (bitmap_empty(mask, masklength))
271 return NULL;
272 while (*av_masks) {
Lars-Peter Clausen1e1ec282015-05-29 18:14:22 +0200273 if (strict) {
274 if (bitmap_equal(mask, av_masks, masklength))
275 return av_masks;
276 } else {
277 if (bitmap_subset(mask, av_masks, masklength))
278 return av_masks;
279 }
Lars-Peter Clausen217a5cf2014-11-26 18:55:09 +0100280 av_masks += BITS_TO_LONGS(masklength);
281 }
282 return NULL;
283}
284
285static bool iio_validate_scan_mask(struct iio_dev *indio_dev,
286 const unsigned long *mask)
287{
288 if (!indio_dev->setup_ops->validate_scan_mask)
289 return true;
290
291 return indio_dev->setup_ops->validate_scan_mask(indio_dev, mask);
292}
293
294/**
295 * iio_scan_mask_set() - set particular bit in the scan mask
296 * @indio_dev: the iio device
297 * @buffer: the buffer whose scan mask we are interested in
298 * @bit: the bit to be set.
299 *
300 * Note that at this point we have no way of knowing what other
301 * buffers might request, hence this code only verifies that the
302 * individual buffers request is plausible.
303 */
304static int iio_scan_mask_set(struct iio_dev *indio_dev,
305 struct iio_buffer *buffer, int bit)
306{
307 const unsigned long *mask;
308 unsigned long *trialmask;
309
Markus Elfring057ac1a2016-09-23 22:30:32 +0200310 trialmask = kmalloc_array(BITS_TO_LONGS(indio_dev->masklength),
311 sizeof(*trialmask),
312 GFP_KERNEL);
Lars-Peter Clausen217a5cf2014-11-26 18:55:09 +0100313 if (trialmask == NULL)
314 return -ENOMEM;
315 if (!indio_dev->masklength) {
Dan Carpenter231bfe52015-11-21 13:33:00 +0300316 WARN(1, "Trying to set scanmask prior to registering buffer\n");
Lars-Peter Clausen217a5cf2014-11-26 18:55:09 +0100317 goto err_invalid_mask;
318 }
319 bitmap_copy(trialmask, buffer->scan_mask, indio_dev->masklength);
320 set_bit(bit, trialmask);
321
322 if (!iio_validate_scan_mask(indio_dev, trialmask))
323 goto err_invalid_mask;
324
325 if (indio_dev->available_scan_masks) {
326 mask = iio_scan_mask_match(indio_dev->available_scan_masks,
327 indio_dev->masklength,
Lars-Peter Clausen1e1ec282015-05-29 18:14:22 +0200328 trialmask, false);
Lars-Peter Clausen217a5cf2014-11-26 18:55:09 +0100329 if (!mask)
330 goto err_invalid_mask;
331 }
332 bitmap_copy(buffer->scan_mask, trialmask, indio_dev->masklength);
333
334 kfree(trialmask);
335
336 return 0;
337
338err_invalid_mask:
339 kfree(trialmask);
340 return -EINVAL;
341}
342
Jonathan Cameron14555b12011-09-21 11:15:57 +0100343static int iio_scan_mask_clear(struct iio_buffer *buffer, int bit)
344{
345 clear_bit(bit, buffer->scan_mask);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100346 return 0;
347}
348
349static ssize_t iio_scan_el_store(struct device *dev,
350 struct device_attribute *attr,
351 const char *buf,
352 size_t len)
353{
Jonathan Camerona714af22012-04-21 10:09:32 +0100354 int ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100355 bool state;
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200356 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100357 struct iio_buffer *buffer = indio_dev->buffer;
358 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
359
Jonathan Camerona714af22012-04-21 10:09:32 +0100360 ret = strtobool(buf, &state);
361 if (ret < 0)
362 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100363 mutex_lock(&indio_dev->mlock);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100364 if (iio_buffer_is_active(indio_dev->buffer)) {
Jonathan Cameron14555b12011-09-21 11:15:57 +0100365 ret = -EBUSY;
366 goto error_ret;
367 }
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000368 ret = iio_scan_mask_query(indio_dev, buffer, this_attr->address);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100369 if (ret < 0)
370 goto error_ret;
371 if (!state && ret) {
372 ret = iio_scan_mask_clear(buffer, this_attr->address);
373 if (ret)
374 goto error_ret;
375 } else if (state && !ret) {
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000376 ret = iio_scan_mask_set(indio_dev, buffer, this_attr->address);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100377 if (ret)
378 goto error_ret;
379 }
380
381error_ret:
382 mutex_unlock(&indio_dev->mlock);
383
Lars-Peter Clausen5a2a6e12011-12-08 18:35:53 +0100384 return ret < 0 ? ret : len;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100385
386}
387
388static ssize_t iio_scan_el_ts_show(struct device *dev,
389 struct device_attribute *attr,
390 char *buf)
391{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200392 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100393 return sprintf(buf, "%d\n", indio_dev->buffer->scan_timestamp);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100394}
395
396static ssize_t iio_scan_el_ts_store(struct device *dev,
397 struct device_attribute *attr,
398 const char *buf,
399 size_t len)
400{
Jonathan Camerona714af22012-04-21 10:09:32 +0100401 int ret;
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200402 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100403 bool state;
404
Jonathan Camerona714af22012-04-21 10:09:32 +0100405 ret = strtobool(buf, &state);
406 if (ret < 0)
407 return ret;
408
Jonathan Cameron14555b12011-09-21 11:15:57 +0100409 mutex_lock(&indio_dev->mlock);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100410 if (iio_buffer_is_active(indio_dev->buffer)) {
Jonathan Cameron14555b12011-09-21 11:15:57 +0100411 ret = -EBUSY;
412 goto error_ret;
413 }
414 indio_dev->buffer->scan_timestamp = state;
415error_ret:
416 mutex_unlock(&indio_dev->mlock);
417
418 return ret ? ret : len;
419}
420
421static int iio_buffer_add_channel_sysfs(struct iio_dev *indio_dev,
422 const struct iio_chan_spec *chan)
423{
424 int ret, attrcount = 0;
425 struct iio_buffer *buffer = indio_dev->buffer;
426
427 ret = __iio_add_chan_devattr("index",
428 chan,
429 &iio_show_scan_index,
430 NULL,
431 0,
Jonathan Cameron37044322013-09-08 14:57:00 +0100432 IIO_SEPARATE,
Jonathan Cameron14555b12011-09-21 11:15:57 +0100433 &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 ret = __iio_add_chan_devattr("type",
439 chan,
440 &iio_show_fixed_type,
441 NULL,
442 0,
443 0,
444 &indio_dev->dev,
445 &buffer->scan_el_dev_attr_list);
446 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000447 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100448 attrcount++;
449 if (chan->type != IIO_TIMESTAMP)
450 ret = __iio_add_chan_devattr("en",
451 chan,
452 &iio_scan_el_show,
453 &iio_scan_el_store,
454 chan->scan_index,
455 0,
456 &indio_dev->dev,
457 &buffer->scan_el_dev_attr_list);
458 else
459 ret = __iio_add_chan_devattr("en",
460 chan,
461 &iio_scan_el_ts_show,
462 &iio_scan_el_ts_store,
463 chan->scan_index,
464 0,
465 &indio_dev->dev,
466 &buffer->scan_el_dev_attr_list);
Peter Meerwald95725882013-09-17 23:42:00 +0100467 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000468 return ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100469 attrcount++;
470 ret = attrcount;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100471 return ret;
472}
473
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100474static ssize_t iio_buffer_read_length(struct device *dev,
475 struct device_attribute *attr,
476 char *buf)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100477{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200478 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100479 struct iio_buffer *buffer = indio_dev->buffer;
480
Lars-Peter Clausen37495662014-11-26 18:55:17 +0100481 return sprintf(buf, "%d\n", buffer->length);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100482}
Jonathan Cameron14555b12011-09-21 11:15:57 +0100483
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100484static ssize_t iio_buffer_write_length(struct device *dev,
485 struct device_attribute *attr,
486 const char *buf, size_t len)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100487{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200488 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100489 struct iio_buffer *buffer = indio_dev->buffer;
Lars-Peter Clausen948ad202012-10-18 14:47:00 +0100490 unsigned int val;
491 int ret;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100492
Lars-Peter Clausen948ad202012-10-18 14:47:00 +0100493 ret = kstrtouint(buf, 10, &val);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100494 if (ret)
495 return ret;
496
Lars-Peter Clausen37495662014-11-26 18:55:17 +0100497 if (val == buffer->length)
498 return len;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100499
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100500 mutex_lock(&indio_dev->mlock);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100501 if (iio_buffer_is_active(indio_dev->buffer)) {
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100502 ret = -EBUSY;
503 } else {
Lars-Peter Clausen8d92db22014-11-26 18:55:16 +0100504 buffer->access->set_length(buffer, val);
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100505 ret = 0;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100506 }
Josselin Costanzi37d34552015-03-22 20:33:38 +0200507 if (ret)
508 goto out;
509 if (buffer->length && buffer->length < buffer->watermark)
510 buffer->watermark = buffer->length;
511out:
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100512 mutex_unlock(&indio_dev->mlock);
Jonathan Cameron14555b12011-09-21 11:15:57 +0100513
Lars-Peter Clausene38c79e2011-12-19 15:23:44 +0100514 return ret ? ret : len;
Jonathan Cameron14555b12011-09-21 11:15:57 +0100515}
Jonathan Cameron14555b12011-09-21 11:15:57 +0100516
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100517static ssize_t iio_buffer_show_enable(struct device *dev,
518 struct device_attribute *attr,
519 char *buf)
Jonathan Cameron14555b12011-09-21 11:15:57 +0100520{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200521 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +0100522 return sprintf(buf, "%d\n", iio_buffer_is_active(indio_dev->buffer));
Jonathan Cameron14555b12011-09-21 11:15:57 +0100523}
Jonathan Cameron14555b12011-09-21 11:15:57 +0100524
Lars-Peter Clausen182b4902016-02-02 16:27:24 +0100525static unsigned int iio_storage_bytes_for_si(struct iio_dev *indio_dev,
526 unsigned int scan_index)
527{
528 const struct iio_chan_spec *ch;
529 unsigned int bytes;
530
531 ch = iio_find_channel_from_si(indio_dev, scan_index);
532 bytes = ch->scan_type.storagebits / 8;
533 if (ch->scan_type.repeat > 1)
534 bytes *= ch->scan_type.repeat;
535 return bytes;
536}
537
538static unsigned int iio_storage_bytes_for_timestamp(struct iio_dev *indio_dev)
539{
540 return iio_storage_bytes_for_si(indio_dev,
541 indio_dev->scan_index_timestamp);
542}
543
Peter Meerwald183f4172013-09-18 22:10:00 +0100544static int iio_compute_scan_bytes(struct iio_dev *indio_dev,
545 const unsigned long *mask, bool timestamp)
Jonathan Cameron959d2952011-12-05 21:37:13 +0000546{
Jonathan Cameron959d2952011-12-05 21:37:13 +0000547 unsigned bytes = 0;
548 int length, i;
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100549
550 /* How much space will the demuxed element take? */
551 for_each_set_bit(i, mask,
552 indio_dev->masklength) {
Lars-Peter Clausen182b4902016-02-02 16:27:24 +0100553 length = iio_storage_bytes_for_si(indio_dev, i);
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100554 bytes = ALIGN(bytes, length);
555 bytes += length;
556 }
Lars-Peter Clausen182b4902016-02-02 16:27:24 +0100557
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100558 if (timestamp) {
Lars-Peter Clausen182b4902016-02-02 16:27:24 +0100559 length = iio_storage_bytes_for_timestamp(indio_dev);
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +0100560 bytes = ALIGN(bytes, length);
561 bytes += length;
562 }
563 return bytes;
564}
565
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100566static void iio_buffer_activate(struct iio_dev *indio_dev,
567 struct iio_buffer *buffer)
568{
569 iio_buffer_get(buffer);
570 list_add(&buffer->buffer_list, &indio_dev->buffer_list);
571}
572
573static void iio_buffer_deactivate(struct iio_buffer *buffer)
574{
575 list_del_init(&buffer->buffer_list);
Josselin Costanzi37d34552015-03-22 20:33:38 +0200576 wake_up_interruptible(&buffer->pollq);
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100577 iio_buffer_put(buffer);
578}
579
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200580static void iio_buffer_deactivate_all(struct iio_dev *indio_dev)
581{
582 struct iio_buffer *buffer, *_buffer;
583
584 list_for_each_entry_safe(buffer, _buffer,
585 &indio_dev->buffer_list, buffer_list)
586 iio_buffer_deactivate(buffer);
587}
588
Lars-Peter Clausene18a2ad2015-10-13 18:10:27 +0200589static int iio_buffer_enable(struct iio_buffer *buffer,
590 struct iio_dev *indio_dev)
591{
592 if (!buffer->access->enable)
593 return 0;
594 return buffer->access->enable(buffer, indio_dev);
595}
596
597static int iio_buffer_disable(struct iio_buffer *buffer,
598 struct iio_dev *indio_dev)
599{
600 if (!buffer->access->disable)
601 return 0;
602 return buffer->access->disable(buffer, indio_dev);
603}
604
Lars-Peter Clausen8e050992013-10-14 17:49:00 +0100605static void iio_buffer_update_bytes_per_datum(struct iio_dev *indio_dev,
606 struct iio_buffer *buffer)
607{
608 unsigned int bytes;
609
610 if (!buffer->access->set_bytes_per_datum)
611 return;
612
613 bytes = iio_compute_scan_bytes(indio_dev, buffer->scan_mask,
614 buffer->scan_timestamp);
615
616 buffer->access->set_bytes_per_datum(buffer, bytes);
617}
618
Lars-Peter Clausenfcc1b2f2015-05-13 16:04:46 +0200619static int iio_buffer_request_update(struct iio_dev *indio_dev,
620 struct iio_buffer *buffer)
621{
622 int ret;
623
624 iio_buffer_update_bytes_per_datum(indio_dev, buffer);
625 if (buffer->access->request_update) {
626 ret = buffer->access->request_update(buffer);
627 if (ret) {
628 dev_dbg(&indio_dev->dev,
629 "Buffer not started: buffer parameter update failed (%d)\n",
630 ret);
631 return ret;
632 }
633 }
634
635 return 0;
636}
637
Lars-Peter Clausen248be5a2015-05-13 16:04:45 +0200638static void iio_free_scan_mask(struct iio_dev *indio_dev,
639 const unsigned long *mask)
640{
641 /* If the mask is dynamically allocated free it, otherwise do nothing */
642 if (!indio_dev->available_scan_masks)
643 kfree(mask);
644}
645
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +0200646struct iio_device_config {
647 unsigned int mode;
Lars-Peter Clausenf0566c02015-10-13 18:10:24 +0200648 unsigned int watermark;
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +0200649 const unsigned long *scan_mask;
650 unsigned int scan_bytes;
651 bool scan_timestamp;
652};
653
654static int iio_verify_update(struct iio_dev *indio_dev,
655 struct iio_buffer *insert_buffer, struct iio_buffer *remove_buffer,
656 struct iio_device_config *config)
657{
658 unsigned long *compound_mask;
659 const unsigned long *scan_mask;
Lars-Peter Clausen1e1ec282015-05-29 18:14:22 +0200660 bool strict_scanmask = false;
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +0200661 struct iio_buffer *buffer;
662 bool scan_timestamp;
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200663 unsigned int modes;
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +0200664
665 memset(config, 0, sizeof(*config));
Irina Tirdea1bef2c12016-03-24 11:09:45 +0200666 config->watermark = ~0;
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +0200667
668 /*
669 * If there is just one buffer and we are removing it there is nothing
670 * to verify.
671 */
672 if (remove_buffer && !insert_buffer &&
673 list_is_singular(&indio_dev->buffer_list))
674 return 0;
675
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200676 modes = indio_dev->modes;
677
678 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
679 if (buffer == remove_buffer)
680 continue;
681 modes &= buffer->access->modes;
Lars-Peter Clausenf0566c02015-10-13 18:10:24 +0200682 config->watermark = min(config->watermark, buffer->watermark);
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200683 }
684
Lars-Peter Clausenf0566c02015-10-13 18:10:24 +0200685 if (insert_buffer) {
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200686 modes &= insert_buffer->access->modes;
Lars-Peter Clausenf0566c02015-10-13 18:10:24 +0200687 config->watermark = min(config->watermark,
688 insert_buffer->watermark);
689 }
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200690
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +0200691 /* Definitely possible for devices to support both of these. */
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200692 if ((modes & INDIO_BUFFER_TRIGGERED) && indio_dev->trig) {
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +0200693 config->mode = INDIO_BUFFER_TRIGGERED;
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200694 } else if (modes & INDIO_BUFFER_HARDWARE) {
Lars-Peter Clausen1e1ec282015-05-29 18:14:22 +0200695 /*
696 * Keep things simple for now and only allow a single buffer to
697 * be connected in hardware mode.
698 */
699 if (insert_buffer && !list_empty(&indio_dev->buffer_list))
700 return -EINVAL;
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +0200701 config->mode = INDIO_BUFFER_HARDWARE;
Lars-Peter Clausen1e1ec282015-05-29 18:14:22 +0200702 strict_scanmask = true;
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +0200703 } else if (modes & INDIO_BUFFER_SOFTWARE) {
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +0200704 config->mode = INDIO_BUFFER_SOFTWARE;
705 } else {
706 /* Can only occur on first buffer */
707 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
708 dev_dbg(&indio_dev->dev, "Buffer not started: no trigger\n");
709 return -EINVAL;
710 }
711
712 /* What scan mask do we actually have? */
713 compound_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength),
714 sizeof(long), GFP_KERNEL);
715 if (compound_mask == NULL)
716 return -ENOMEM;
717
718 scan_timestamp = false;
719
720 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
721 if (buffer == remove_buffer)
722 continue;
723 bitmap_or(compound_mask, compound_mask, buffer->scan_mask,
724 indio_dev->masklength);
725 scan_timestamp |= buffer->scan_timestamp;
726 }
727
728 if (insert_buffer) {
729 bitmap_or(compound_mask, compound_mask,
730 insert_buffer->scan_mask, indio_dev->masklength);
731 scan_timestamp |= insert_buffer->scan_timestamp;
732 }
733
734 if (indio_dev->available_scan_masks) {
735 scan_mask = iio_scan_mask_match(indio_dev->available_scan_masks,
736 indio_dev->masklength,
Lars-Peter Clausen1e1ec282015-05-29 18:14:22 +0200737 compound_mask,
738 strict_scanmask);
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +0200739 kfree(compound_mask);
740 if (scan_mask == NULL)
741 return -EINVAL;
742 } else {
743 scan_mask = compound_mask;
744 }
745
746 config->scan_bytes = iio_compute_scan_bytes(indio_dev,
747 scan_mask, scan_timestamp);
748 config->scan_mask = scan_mask;
749 config->scan_timestamp = scan_timestamp;
750
751 return 0;
752}
753
Jonathan Cameron78c99812017-01-02 19:28:24 +0000754/**
755 * struct iio_demux_table - table describing demux memcpy ops
756 * @from: index to copy from
757 * @to: index to copy to
758 * @length: how many bytes to copy
759 * @l: list head used for management
760 */
761struct iio_demux_table {
762 unsigned from;
763 unsigned to;
764 unsigned length;
765 struct list_head l;
766};
767
768static void iio_buffer_demux_free(struct iio_buffer *buffer)
769{
770 struct iio_demux_table *p, *q;
771 list_for_each_entry_safe(p, q, &buffer->demux_list, l) {
772 list_del(&p->l);
773 kfree(p);
774 }
775}
776
777static int iio_buffer_add_demux(struct iio_buffer *buffer,
778 struct iio_demux_table **p, unsigned int in_loc, unsigned int out_loc,
779 unsigned int length)
780{
781
782 if (*p && (*p)->from + (*p)->length == in_loc &&
783 (*p)->to + (*p)->length == out_loc) {
784 (*p)->length += length;
785 } else {
786 *p = kmalloc(sizeof(**p), GFP_KERNEL);
787 if (*p == NULL)
788 return -ENOMEM;
789 (*p)->from = in_loc;
790 (*p)->to = out_loc;
791 (*p)->length = length;
792 list_add_tail(&(*p)->l, &buffer->demux_list);
793 }
794
795 return 0;
796}
797
798static int iio_buffer_update_demux(struct iio_dev *indio_dev,
799 struct iio_buffer *buffer)
800{
801 int ret, in_ind = -1, out_ind, length;
802 unsigned in_loc = 0, out_loc = 0;
803 struct iio_demux_table *p = NULL;
804
805 /* Clear out any old demux */
806 iio_buffer_demux_free(buffer);
807 kfree(buffer->demux_bounce);
808 buffer->demux_bounce = NULL;
809
810 /* First work out which scan mode we will actually have */
811 if (bitmap_equal(indio_dev->active_scan_mask,
812 buffer->scan_mask,
813 indio_dev->masklength))
814 return 0;
815
816 /* Now we have the two masks, work from least sig and build up sizes */
817 for_each_set_bit(out_ind,
818 buffer->scan_mask,
819 indio_dev->masklength) {
820 in_ind = find_next_bit(indio_dev->active_scan_mask,
821 indio_dev->masklength,
822 in_ind + 1);
823 while (in_ind != out_ind) {
824 in_ind = find_next_bit(indio_dev->active_scan_mask,
825 indio_dev->masklength,
826 in_ind + 1);
827 length = iio_storage_bytes_for_si(indio_dev, in_ind);
828 /* Make sure we are aligned */
829 in_loc = roundup(in_loc, length) + length;
830 }
831 length = iio_storage_bytes_for_si(indio_dev, in_ind);
832 out_loc = roundup(out_loc, length);
833 in_loc = roundup(in_loc, length);
834 ret = iio_buffer_add_demux(buffer, &p, in_loc, out_loc, length);
835 if (ret)
836 goto error_clear_mux_table;
837 out_loc += length;
838 in_loc += length;
839 }
840 /* Relies on scan_timestamp being last */
841 if (buffer->scan_timestamp) {
842 length = iio_storage_bytes_for_timestamp(indio_dev);
843 out_loc = roundup(out_loc, length);
844 in_loc = roundup(in_loc, length);
845 ret = iio_buffer_add_demux(buffer, &p, in_loc, out_loc, length);
846 if (ret)
847 goto error_clear_mux_table;
848 out_loc += length;
849 in_loc += length;
850 }
851 buffer->demux_bounce = kzalloc(out_loc, GFP_KERNEL);
852 if (buffer->demux_bounce == NULL) {
853 ret = -ENOMEM;
854 goto error_clear_mux_table;
855 }
856 return 0;
857
858error_clear_mux_table:
859 iio_buffer_demux_free(buffer);
860
861 return ret;
862}
863
864static int iio_update_demux(struct iio_dev *indio_dev)
865{
866 struct iio_buffer *buffer;
867 int ret;
868
869 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
870 ret = iio_buffer_update_demux(indio_dev, buffer);
871 if (ret < 0)
872 goto error_clear_mux_table;
873 }
874 return 0;
875
876error_clear_mux_table:
877 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list)
878 iio_buffer_demux_free(buffer);
879
880 return ret;
881}
882
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200883static int iio_enable_buffers(struct iio_dev *indio_dev,
884 struct iio_device_config *config)
885{
Lars-Peter Clausene18a2ad2015-10-13 18:10:27 +0200886 struct iio_buffer *buffer;
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200887 int ret;
888
889 indio_dev->active_scan_mask = config->scan_mask;
890 indio_dev->scan_timestamp = config->scan_timestamp;
891 indio_dev->scan_bytes = config->scan_bytes;
892
893 iio_update_demux(indio_dev);
894
895 /* Wind up again */
896 if (indio_dev->setup_ops->preenable) {
897 ret = indio_dev->setup_ops->preenable(indio_dev);
898 if (ret) {
899 dev_dbg(&indio_dev->dev,
900 "Buffer not started: buffer preenable failed (%d)\n", ret);
901 goto err_undo_config;
902 }
903 }
904
905 if (indio_dev->info->update_scan_mode) {
906 ret = indio_dev->info
907 ->update_scan_mode(indio_dev,
908 indio_dev->active_scan_mask);
909 if (ret < 0) {
910 dev_dbg(&indio_dev->dev,
911 "Buffer not started: update scan mode failed (%d)\n",
912 ret);
913 goto err_run_postdisable;
914 }
915 }
916
Lars-Peter Clausenf0566c02015-10-13 18:10:24 +0200917 if (indio_dev->info->hwfifo_set_watermark)
918 indio_dev->info->hwfifo_set_watermark(indio_dev,
919 config->watermark);
920
Lars-Peter Clausene18a2ad2015-10-13 18:10:27 +0200921 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
922 ret = iio_buffer_enable(buffer, indio_dev);
923 if (ret)
924 goto err_disable_buffers;
925 }
926
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200927 indio_dev->currentmode = config->mode;
928
929 if (indio_dev->setup_ops->postenable) {
930 ret = indio_dev->setup_ops->postenable(indio_dev);
931 if (ret) {
932 dev_dbg(&indio_dev->dev,
933 "Buffer not started: postenable failed (%d)\n", ret);
Lars-Peter Clausene18a2ad2015-10-13 18:10:27 +0200934 goto err_disable_buffers;
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200935 }
936 }
937
938 return 0;
939
Lars-Peter Clausene18a2ad2015-10-13 18:10:27 +0200940err_disable_buffers:
941 list_for_each_entry_continue_reverse(buffer, &indio_dev->buffer_list,
942 buffer_list)
943 iio_buffer_disable(buffer, indio_dev);
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200944err_run_postdisable:
945 indio_dev->currentmode = INDIO_DIRECT_MODE;
946 if (indio_dev->setup_ops->postdisable)
947 indio_dev->setup_ops->postdisable(indio_dev);
948err_undo_config:
949 indio_dev->active_scan_mask = NULL;
950
951 return ret;
952}
953
954static int iio_disable_buffers(struct iio_dev *indio_dev)
955{
Lars-Peter Clausene18a2ad2015-10-13 18:10:27 +0200956 struct iio_buffer *buffer;
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200957 int ret = 0;
958 int ret2;
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200959
960 /* Wind down existing buffers - iff there are any */
961 if (list_empty(&indio_dev->buffer_list))
962 return 0;
963
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200964 /*
965 * If things go wrong at some step in disable we still need to continue
966 * to perform the other steps, otherwise we leave the device in a
967 * inconsistent state. We return the error code for the first error we
968 * encountered.
969 */
970
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200971 if (indio_dev->setup_ops->predisable) {
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200972 ret2 = indio_dev->setup_ops->predisable(indio_dev);
973 if (ret2 && !ret)
974 ret = ret2;
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200975 }
976
Lars-Peter Clausene18a2ad2015-10-13 18:10:27 +0200977 list_for_each_entry(buffer, &indio_dev->buffer_list, buffer_list) {
978 ret2 = iio_buffer_disable(buffer, indio_dev);
979 if (ret2 && !ret)
980 ret = ret2;
981 }
982
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200983 indio_dev->currentmode = INDIO_DIRECT_MODE;
984
985 if (indio_dev->setup_ops->postdisable) {
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200986 ret2 = indio_dev->setup_ops->postdisable(indio_dev);
987 if (ret2 && !ret)
988 ret = ret2;
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200989 }
990
Lars-Peter Clausen12501862015-05-18 13:34:49 +0200991 iio_free_scan_mask(indio_dev, indio_dev->active_scan_mask);
992 indio_dev->active_scan_mask = NULL;
993
994 return ret;
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +0200995}
996
Lars-Peter Clausena9519452013-10-04 12:07:00 +0100997static int __iio_update_buffers(struct iio_dev *indio_dev,
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100998 struct iio_buffer *insert_buffer,
999 struct iio_buffer *remove_buffer)
Jonathan Cameron6b3b58e2012-04-21 10:09:33 +01001000{
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +02001001 struct iio_device_config new_config;
Lars-Peter Clausen12501862015-05-18 13:34:49 +02001002 int ret;
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +02001003
1004 ret = iio_verify_update(indio_dev, insert_buffer, remove_buffer,
1005 &new_config);
1006 if (ret)
1007 return ret;
Jonathan Cameron959d2952011-12-05 21:37:13 +00001008
Lars-Peter Clausenfcc1b2f2015-05-13 16:04:46 +02001009 if (insert_buffer) {
1010 ret = iio_buffer_request_update(indio_dev, insert_buffer);
1011 if (ret)
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +02001012 goto err_free_config;
Lars-Peter Clausenfcc1b2f2015-05-13 16:04:46 +02001013 }
1014
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +02001015 ret = iio_disable_buffers(indio_dev);
Lars-Peter Clausen12501862015-05-18 13:34:49 +02001016 if (ret)
1017 goto err_deactivate_all;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001018
1019 if (remove_buffer)
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +01001020 iio_buffer_deactivate(remove_buffer);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001021 if (insert_buffer)
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +01001022 iio_buffer_activate(indio_dev, insert_buffer);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001023
1024 /* If no buffers in list, we are done */
Lars-Peter Clausen12501862015-05-18 13:34:49 +02001025 if (list_empty(&indio_dev->buffer_list))
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001026 return 0;
Jonathan Cameron959d2952011-12-05 21:37:13 +00001027
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +02001028 ret = iio_enable_buffers(indio_dev, &new_config);
Lars-Peter Clausen12501862015-05-18 13:34:49 +02001029 if (ret)
1030 goto err_deactivate_all;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001031
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +02001032 return 0;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001033
Lars-Peter Clausen12501862015-05-18 13:34:49 +02001034err_deactivate_all:
1035 /*
1036 * We've already verified that the config is valid earlier. If things go
1037 * wrong in either enable or disable the most likely reason is an IO
1038 * error from the device. In this case there is no good recovery
1039 * strategy. Just make sure to disable everything and leave the device
1040 * in a sane state. With a bit of luck the device might come back to
1041 * life again later and userspace can try again.
1042 */
1043 iio_buffer_deactivate_all(indio_dev);
1044
Lars-Peter Clausen6e509c42015-05-18 13:34:47 +02001045err_free_config:
1046 iio_free_scan_mask(indio_dev, new_config.scan_mask);
1047 return ret;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001048}
Lars-Peter Clausena9519452013-10-04 12:07:00 +01001049
1050int iio_update_buffers(struct iio_dev *indio_dev,
1051 struct iio_buffer *insert_buffer,
1052 struct iio_buffer *remove_buffer)
1053{
1054 int ret;
1055
Lars-Peter Clausen3909fab2013-10-04 12:07:00 +01001056 if (insert_buffer == remove_buffer)
1057 return 0;
1058
Lars-Peter Clausena9519452013-10-04 12:07:00 +01001059 mutex_lock(&indio_dev->info_exist_lock);
1060 mutex_lock(&indio_dev->mlock);
1061
Lars-Peter Clausen3909fab2013-10-04 12:07:00 +01001062 if (insert_buffer && iio_buffer_is_active(insert_buffer))
1063 insert_buffer = NULL;
1064
1065 if (remove_buffer && !iio_buffer_is_active(remove_buffer))
1066 remove_buffer = NULL;
1067
1068 if (!insert_buffer && !remove_buffer) {
1069 ret = 0;
1070 goto out_unlock;
1071 }
1072
Lars-Peter Clausena9519452013-10-04 12:07:00 +01001073 if (indio_dev->info == NULL) {
1074 ret = -ENODEV;
1075 goto out_unlock;
1076 }
1077
1078 ret = __iio_update_buffers(indio_dev, insert_buffer, remove_buffer);
1079
1080out_unlock:
1081 mutex_unlock(&indio_dev->mlock);
1082 mutex_unlock(&indio_dev->info_exist_lock);
1083
1084 return ret;
1085}
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001086EXPORT_SYMBOL_GPL(iio_update_buffers);
1087
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +02001088void iio_disable_all_buffers(struct iio_dev *indio_dev)
1089{
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +02001090 iio_disable_buffers(indio_dev);
Lars-Peter Clausen12501862015-05-18 13:34:49 +02001091 iio_buffer_deactivate_all(indio_dev);
Lars-Peter Clausen623d74e2015-05-18 13:34:48 +02001092}
1093
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001094static ssize_t iio_buffer_store_enable(struct device *dev,
1095 struct device_attribute *attr,
1096 const char *buf,
1097 size_t len)
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001098{
1099 int ret;
1100 bool requested_state;
1101 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001102 bool inlist;
1103
1104 ret = strtobool(buf, &requested_state);
1105 if (ret < 0)
1106 return ret;
1107
1108 mutex_lock(&indio_dev->mlock);
1109
1110 /* Find out if it is in the list */
Lars-Peter Clausen705ee2c2013-09-15 16:31:00 +01001111 inlist = iio_buffer_is_active(indio_dev->buffer);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001112 /* Already in desired state */
1113 if (inlist == requested_state)
1114 goto done;
1115
1116 if (requested_state)
Lars-Peter Clausena9519452013-10-04 12:07:00 +01001117 ret = __iio_update_buffers(indio_dev,
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001118 indio_dev->buffer, NULL);
1119 else
Lars-Peter Clausena9519452013-10-04 12:07:00 +01001120 ret = __iio_update_buffers(indio_dev,
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001121 NULL, indio_dev->buffer);
1122
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001123done:
1124 mutex_unlock(&indio_dev->mlock);
1125 return (ret < 0) ? ret : len;
1126}
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001127
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001128static const char * const iio_scan_elements_group_name = "scan_elements";
1129
Josselin Costanzi37d34552015-03-22 20:33:38 +02001130static ssize_t iio_buffer_show_watermark(struct device *dev,
1131 struct device_attribute *attr,
1132 char *buf)
1133{
1134 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
1135 struct iio_buffer *buffer = indio_dev->buffer;
1136
1137 return sprintf(buf, "%u\n", buffer->watermark);
1138}
1139
1140static ssize_t iio_buffer_store_watermark(struct device *dev,
1141 struct device_attribute *attr,
1142 const char *buf,
1143 size_t len)
1144{
1145 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
1146 struct iio_buffer *buffer = indio_dev->buffer;
1147 unsigned int val;
1148 int ret;
1149
1150 ret = kstrtouint(buf, 10, &val);
1151 if (ret)
1152 return ret;
1153 if (!val)
1154 return -EINVAL;
1155
1156 mutex_lock(&indio_dev->mlock);
1157
1158 if (val > buffer->length) {
1159 ret = -EINVAL;
1160 goto out;
1161 }
1162
1163 if (iio_buffer_is_active(indio_dev->buffer)) {
1164 ret = -EBUSY;
1165 goto out;
1166 }
1167
1168 buffer->watermark = val;
1169out:
1170 mutex_unlock(&indio_dev->mlock);
1171
1172 return ret ? ret : len;
1173}
1174
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001175static DEVICE_ATTR(length, S_IRUGO | S_IWUSR, iio_buffer_read_length,
1176 iio_buffer_write_length);
Lars-Peter Clausen8d92db22014-11-26 18:55:16 +01001177static struct device_attribute dev_attr_length_ro = __ATTR(length,
1178 S_IRUGO, iio_buffer_read_length, NULL);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001179static DEVICE_ATTR(enable, S_IRUGO | S_IWUSR,
1180 iio_buffer_show_enable, iio_buffer_store_enable);
Josselin Costanzi37d34552015-03-22 20:33:38 +02001181static DEVICE_ATTR(watermark, S_IRUGO | S_IWUSR,
1182 iio_buffer_show_watermark, iio_buffer_store_watermark);
Lars-Peter Clausenb4406552015-10-13 18:10:26 +02001183static struct device_attribute dev_attr_watermark_ro = __ATTR(watermark,
1184 S_IRUGO, iio_buffer_show_watermark, NULL);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001185
Octavian Purdila6da9b382015-01-31 02:00:00 +02001186static struct attribute *iio_buffer_attrs[] = {
1187 &dev_attr_length.attr,
1188 &dev_attr_enable.attr,
Josselin Costanzi37d34552015-03-22 20:33:38 +02001189 &dev_attr_watermark.attr,
Octavian Purdila6da9b382015-01-31 02:00:00 +02001190};
1191
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001192int iio_buffer_alloc_sysfs_and_mask(struct iio_dev *indio_dev)
1193{
1194 struct iio_dev_attr *p;
1195 struct attribute **attr;
1196 struct iio_buffer *buffer = indio_dev->buffer;
1197 int ret, i, attrn, attrcount, attrcount_orig = 0;
1198 const struct iio_chan_spec *channels;
1199
Lars-Peter Clausen629bc022015-05-29 18:14:20 +02001200 channels = indio_dev->channels;
1201 if (channels) {
1202 int ml = indio_dev->masklength;
1203
1204 for (i = 0; i < indio_dev->num_channels; i++)
1205 ml = max(ml, channels[i].scan_index + 1);
1206 indio_dev->masklength = ml;
1207 }
1208
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001209 if (!buffer)
1210 return 0;
1211
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001212 attrcount = 0;
1213 if (buffer->attrs) {
1214 while (buffer->attrs[attrcount] != NULL)
1215 attrcount++;
1216 }
1217
Octavian Purdila6da9b382015-01-31 02:00:00 +02001218 attr = kcalloc(attrcount + ARRAY_SIZE(iio_buffer_attrs) + 1,
1219 sizeof(struct attribute *), GFP_KERNEL);
1220 if (!attr)
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001221 return -ENOMEM;
1222
Octavian Purdila6da9b382015-01-31 02:00:00 +02001223 memcpy(attr, iio_buffer_attrs, sizeof(iio_buffer_attrs));
1224 if (!buffer->access->set_length)
1225 attr[0] = &dev_attr_length_ro.attr;
1226
Lars-Peter Clausenb4406552015-10-13 18:10:26 +02001227 if (buffer->access->flags & INDIO_BUFFER_FLAG_FIXED_WATERMARK)
1228 attr[2] = &dev_attr_watermark_ro.attr;
1229
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001230 if (buffer->attrs)
Octavian Purdila6da9b382015-01-31 02:00:00 +02001231 memcpy(&attr[ARRAY_SIZE(iio_buffer_attrs)], buffer->attrs,
1232 sizeof(struct attribute *) * attrcount);
1233
1234 attr[attrcount + ARRAY_SIZE(iio_buffer_attrs)] = NULL;
1235
1236 buffer->buffer_group.name = "buffer";
1237 buffer->buffer_group.attrs = attr;
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001238
1239 indio_dev->groups[indio_dev->groupcounter++] = &buffer->buffer_group;
1240
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001241 if (buffer->scan_el_attrs != NULL) {
1242 attr = buffer->scan_el_attrs->attrs;
1243 while (*attr++ != NULL)
1244 attrcount_orig++;
1245 }
1246 attrcount = attrcount_orig;
1247 INIT_LIST_HEAD(&buffer->scan_el_dev_attr_list);
1248 channels = indio_dev->channels;
1249 if (channels) {
1250 /* new magic */
1251 for (i = 0; i < indio_dev->num_channels; i++) {
1252 if (channels[i].scan_index < 0)
1253 continue;
1254
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001255 ret = iio_buffer_add_channel_sysfs(indio_dev,
1256 &channels[i]);
1257 if (ret < 0)
1258 goto error_cleanup_dynamic;
1259 attrcount += ret;
1260 if (channels[i].type == IIO_TIMESTAMP)
1261 indio_dev->scan_index_timestamp =
1262 channels[i].scan_index;
1263 }
1264 if (indio_dev->masklength && buffer->scan_mask == NULL) {
1265 buffer->scan_mask = kcalloc(BITS_TO_LONGS(indio_dev->masklength),
1266 sizeof(*buffer->scan_mask),
1267 GFP_KERNEL);
1268 if (buffer->scan_mask == NULL) {
1269 ret = -ENOMEM;
1270 goto error_cleanup_dynamic;
1271 }
1272 }
1273 }
1274
1275 buffer->scan_el_group.name = iio_scan_elements_group_name;
1276
1277 buffer->scan_el_group.attrs = kcalloc(attrcount + 1,
1278 sizeof(buffer->scan_el_group.attrs[0]),
1279 GFP_KERNEL);
1280 if (buffer->scan_el_group.attrs == NULL) {
1281 ret = -ENOMEM;
1282 goto error_free_scan_mask;
1283 }
1284 if (buffer->scan_el_attrs)
1285 memcpy(buffer->scan_el_group.attrs, buffer->scan_el_attrs,
1286 sizeof(buffer->scan_el_group.attrs[0])*attrcount_orig);
1287 attrn = attrcount_orig;
1288
1289 list_for_each_entry(p, &buffer->scan_el_dev_attr_list, l)
1290 buffer->scan_el_group.attrs[attrn++] = &p->dev_attr.attr;
1291 indio_dev->groups[indio_dev->groupcounter++] = &buffer->scan_el_group;
1292
1293 return 0;
1294
1295error_free_scan_mask:
1296 kfree(buffer->scan_mask);
1297error_cleanup_dynamic:
1298 iio_free_chan_devattr_list(&buffer->scan_el_dev_attr_list);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001299 kfree(indio_dev->buffer->buffer_group.attrs);
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001300
1301 return ret;
1302}
1303
1304void iio_buffer_free_sysfs_and_mask(struct iio_dev *indio_dev)
1305{
1306 if (!indio_dev->buffer)
1307 return;
1308
1309 kfree(indio_dev->buffer->scan_mask);
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +01001310 kfree(indio_dev->buffer->buffer_group.attrs);
Lars-Peter Clausend967cb62014-11-26 18:55:14 +01001311 kfree(indio_dev->buffer->scan_el_group.attrs);
1312 iio_free_chan_devattr_list(&indio_dev->buffer->scan_el_dev_attr_list);
1313}
1314
Jonathan Cameron14555b12011-09-21 11:15:57 +01001315/**
Lars-Peter Clausen81636632012-07-09 10:00:00 +01001316 * iio_validate_scan_mask_onehot() - Validates that exactly one channel is selected
1317 * @indio_dev: the iio device
1318 * @mask: scan mask to be checked
1319 *
1320 * Return true if exactly one bit is set in the scan mask, false otherwise. It
1321 * can be used for devices where only one channel can be active for sampling at
1322 * a time.
1323 */
1324bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev,
1325 const unsigned long *mask)
1326{
1327 return bitmap_weight(mask, indio_dev->masklength) == 1;
1328}
1329EXPORT_SYMBOL_GPL(iio_validate_scan_mask_onehot);
1330
Jonathan Cameronf79a9092011-12-05 22:18:29 +00001331int iio_scan_mask_query(struct iio_dev *indio_dev,
1332 struct iio_buffer *buffer, int bit)
Jonathan Cameron14555b12011-09-21 11:15:57 +01001333{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001334 if (bit > indio_dev->masklength)
Jonathan Cameron14555b12011-09-21 11:15:57 +01001335 return -EINVAL;
1336
1337 if (!buffer->scan_mask)
1338 return 0;
Jonathan Cameron14555b12011-09-21 11:15:57 +01001339
Alec Berg2076a202014-03-19 18:50:00 +00001340 /* Ensure return value is 0 or 1. */
1341 return !!test_bit(bit, buffer->scan_mask);
Jonathan Cameron14555b12011-09-21 11:15:57 +01001342};
1343EXPORT_SYMBOL_GPL(iio_scan_mask_query);
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001344
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +01001345static const void *iio_demux(struct iio_buffer *buffer,
1346 const void *datain)
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001347{
1348 struct iio_demux_table *t;
1349
1350 if (list_empty(&buffer->demux_list))
1351 return datain;
1352 list_for_each_entry(t, &buffer->demux_list, l)
1353 memcpy(buffer->demux_bounce + t->to,
1354 datain + t->from, t->length);
1355
1356 return buffer->demux_bounce;
1357}
1358
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +01001359static int iio_push_to_buffer(struct iio_buffer *buffer, const void *data)
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001360{
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +01001361 const void *dataout = iio_demux(buffer, data);
Josselin Costanzi37d34552015-03-22 20:33:38 +02001362 int ret;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001363
Josselin Costanzi37d34552015-03-22 20:33:38 +02001364 ret = buffer->access->store_to(buffer, dataout);
1365 if (ret)
1366 return ret;
1367
1368 /*
1369 * We can't just test for watermark to decide if we wake the poll queue
1370 * because read may request less samples than the watermark.
1371 */
1372 wake_up_interruptible_poll(&buffer->pollq, POLLIN | POLLRDNORM);
1373 return 0;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001374}
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +00001375
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +01001376int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data)
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001377{
1378 int ret;
1379 struct iio_buffer *buf;
1380
1381 list_for_each_entry(buf, &indio_dev->buffer_list, buffer_list) {
1382 ret = iio_push_to_buffer(buf, data);
1383 if (ret < 0)
1384 return ret;
1385 }
1386
1387 return 0;
1388}
1389EXPORT_SYMBOL_GPL(iio_push_to_buffers);
1390
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +01001391/**
1392 * iio_buffer_release() - Free a buffer's resources
1393 * @ref: Pointer to the kref embedded in the iio_buffer struct
1394 *
1395 * This function is called when the last reference to the buffer has been
1396 * dropped. It will typically free all resources allocated by the buffer. Do not
1397 * call this function manually, always use iio_buffer_put() when done using a
1398 * buffer.
1399 */
1400static void iio_buffer_release(struct kref *ref)
1401{
1402 struct iio_buffer *buffer = container_of(ref, struct iio_buffer, ref);
1403
1404 buffer->access->release(buffer);
1405}
1406
1407/**
1408 * iio_buffer_get() - Grab a reference to the buffer
1409 * @buffer: The buffer to grab a reference for, may be NULL
1410 *
1411 * Returns the pointer to the buffer that was passed into the function.
1412 */
1413struct iio_buffer *iio_buffer_get(struct iio_buffer *buffer)
1414{
1415 if (buffer)
1416 kref_get(&buffer->ref);
1417
1418 return buffer;
1419}
1420EXPORT_SYMBOL_GPL(iio_buffer_get);
1421
1422/**
1423 * iio_buffer_put() - Release the reference to the buffer
1424 * @buffer: The buffer to release the reference for, may be NULL
1425 */
1426void iio_buffer_put(struct iio_buffer *buffer)
1427{
1428 if (buffer)
1429 kref_put(&buffer->ref, iio_buffer_release);
1430}
1431EXPORT_SYMBOL_GPL(iio_buffer_put);