blob: 48767c77611960a071b7c10b93a663b0a77f365f [file] [log] [blame]
Jonathan Cameron14555b12011-09-21 11:15:57 +01001/* The industrial I/O core - generic buffer interfaces.
Jonathan Cameron7026ea42009-08-18 18:06:24 +01002 *
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
Jonathan Cameron3811cd62011-09-21 11:15:56 +010010#ifndef _IIO_BUFFER_GENERIC_H_
11#define _IIO_BUFFER_GENERIC_H_
Jonathan Cameron26d25ae2011-09-02 17:14:40 +010012#include <linux/sysfs.h>
Jonathan Cameron06458e22012-04-25 15:54:58 +010013#include <linux/iio/iio.h>
Jonathan Cameron26620512010-07-11 16:39:14 +010014
Jonathan Cameron14555b12011-09-21 11:15:57 +010015struct iio_buffer;
Jonathan Cameron7026ea42009-08-18 18:06:24 +010016
Jonathan Cameron9f466772017-01-02 19:28:26 +000017void iio_buffer_set_attrs(struct iio_buffer *buffer,
18 const struct attribute **attrs);
Jonathan Cameron7026ea42009-08-18 18:06:24 +010019
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +010020int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data);
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +000021
Jonathan Camerond4ad4f42017-01-02 19:28:29 +000022/**
Lars-Peter Clausend2c3d072013-09-19 13:59:00 +010023 * iio_push_to_buffers_with_timestamp() - push data and timestamp to buffers
24 * @indio_dev: iio_dev structure for device.
25 * @data: sample data
26 * @timestamp: timestamp for the sample data
27 *
28 * Pushes data to the IIO device's buffers. If timestamps are enabled for the
29 * device the function will store the supplied timestamp as the last element in
30 * the sample data buffer before pushing it to the device buffers. The sample
31 * data buffer needs to be large enough to hold the additional timestamp
32 * (usually the buffer should be indio->scan_bytes bytes large).
33 *
34 * Returns 0 on success, a negative error code otherwise.
35 */
36static inline int iio_push_to_buffers_with_timestamp(struct iio_dev *indio_dev,
37 void *data, int64_t timestamp)
38{
39 if (indio_dev->scan_timestamp) {
40 size_t ts_offset = indio_dev->scan_bytes / sizeof(int64_t) - 1;
41 ((int64_t *)data)[ts_offset] = timestamp;
42 }
43
44 return iio_push_to_buffers(indio_dev, data);
45}
46
Lars-Peter Clausen81636632012-07-09 10:00:00 +010047bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev,
Jonathan Cameron33dd94c2017-01-02 19:28:34 +000048 const unsigned long *mask);
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +010049
Jonathan Cameron2b827ad2017-01-02 19:28:32 +000050void iio_device_attach_buffer(struct iio_dev *indio_dev,
51 struct iio_buffer *buffer);
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +010052
Jonathan Cameron3811cd62011-09-21 11:15:56 +010053#endif /* _IIO_BUFFER_GENERIC_H_ */