Merge remote-tracking branch 'asoc/topic/rcar' into asoc-next
[deliverable/linux.git] / include / linux / iio / buffer.h
CommitLineData
14555b14 1/* The industrial I/O core - generic buffer interfaces.
7026ea4b
JC
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
3811cd62
JC
10#ifndef _IIO_BUFFER_GENERIC_H_
11#define _IIO_BUFFER_GENERIC_H_
26d25ae3 12#include <linux/sysfs.h>
06458e27 13#include <linux/iio/iio.h>
9e69c935 14#include <linux/kref.h>
7026ea4b 15
f2a96245 16#ifdef CONFIG_IIO_BUFFER
2662051e 17
14555b14 18struct iio_buffer;
7026ea4b 19
b440655b
LPC
20/**
21 * INDIO_BUFFER_FLAG_FIXED_WATERMARK - Watermark level of the buffer can not be
22 * configured. It has a fixed value which will be buffer specific.
23 */
24#define INDIO_BUFFER_FLAG_FIXED_WATERMARK BIT(0)
25
7026ea4b 26/**
14555b14 27 * struct iio_buffer_access_funcs - access functions for buffers.
14555b14 28 * @store_to: actually store stuff to the buffer
8fe64955 29 * @read_first_n: try to get a specified number of bytes (must exist)
37d34556
JC
30 * @data_available: indicates how much data is available for reading from
31 * the buffer.
7026ea4b
JC
32 * @request_update: if a parameter change has been marked, update underlying
33 * storage.
c3e5d410 34 * @set_bytes_per_datum:set number of bytes per datum
14555b14 35 * @set_length: set number of datums in buffer
e18a2ad4
LPC
36 * @enable: called if the buffer is attached to a device and the
37 * device starts sampling. Calls are balanced with
38 * @disable.
39 * @disable: called if the buffer is attached to a device and the
40 * device stops sampling. Calles are balanced with @enable.
9e69c935
LPC
41 * @release: called when the last reference to the buffer is dropped,
42 * should free all resources allocated by the buffer.
225d59ad 43 * @modes: Supported operating modes by this buffer type
b440655b 44 * @flags: A bitmask combination of INDIO_BUFFER_FLAG_*
7026ea4b 45 *
14555b14 46 * The purpose of this structure is to make the buffer element
7026ea4b 47 * modular as event for a given driver, different usecases may require
14555b14 48 * different buffer designs (space efficiency vs speed for example).
7026ea4b 49 *
14555b14
JC
50 * It is worth noting that a given buffer implementation may only support a
51 * small proportion of these functions. The core code 'should' cope fine with
52 * any of them not existing.
7026ea4b 53 **/
14555b14 54struct iio_buffer_access_funcs {
5d65d920 55 int (*store_to)(struct iio_buffer *buffer, const void *data);
14555b14 56 int (*read_first_n)(struct iio_buffer *buffer,
b4281733 57 size_t n,
b26a2188 58 char __user *buf);
37d34556 59 size_t (*data_available)(struct iio_buffer *buffer);
7026ea4b 60
14555b14 61 int (*request_update)(struct iio_buffer *buffer);
7026ea4b 62
14555b14 63 int (*set_bytes_per_datum)(struct iio_buffer *buffer, size_t bpd);
14555b14 64 int (*set_length)(struct iio_buffer *buffer, int length);
9e69c935 65
e18a2ad4
LPC
66 int (*enable)(struct iio_buffer *buffer, struct iio_dev *indio_dev);
67 int (*disable)(struct iio_buffer *buffer, struct iio_dev *indio_dev);
68
9e69c935 69 void (*release)(struct iio_buffer *buffer);
225d59ad
LPC
70
71 unsigned int modes;
b440655b 72 unsigned int flags;
7026ea4b
JC
73};
74
75/**
14555b14 76 * struct iio_buffer - general buffer structure
14555b14 77 * @length: [DEVICE] number of datums in buffer
c3e5d410 78 * @bytes_per_datum: [DEVICE] size of individual datum including timestamp
bf32963c
MS
79 * @scan_el_attrs: [DRIVER] control of scan elements if that scan mode
80 * control method is used
bf32963c
MS
81 * @scan_mask: [INTERN] bitmask used in masking scan mode elements
82 * @scan_timestamp: [INTERN] does the scan mode include a timestamp
14555b14 83 * @access: [DRIVER] buffer access functions associated with the
7026ea4b 84 * implementation.
5f070a36
JC
85 * @scan_el_dev_attr_list:[INTERN] list of scan element related attributes.
86 * @scan_el_group: [DRIVER] attribute group for those attributes not
87 * created from the iio_chan_info array.
88 * @pollq: [INTERN] wait queue to allow for polling on the buffer.
89 * @stufftoread: [INTERN] flag to indicate new data.
5ada4ea9
JC
90 * @demux_list: [INTERN] list of operations required to demux the scan.
91 * @demux_bounce: [INTERN] buffer for doing gather from incoming scan.
84b36ce5 92 * @buffer_list: [INTERN] entry in the devices list of current buffers.
9e69c935 93 * @ref: [INTERN] reference count of the buffer.
37d34556 94 * @watermark: [INTERN] number of datums to wait for poll/read.
84b36ce5 95 */
14555b14 96struct iio_buffer {
8d213f24
JC
97 int length;
98 int bytes_per_datum;
8d213f24 99 struct attribute_group *scan_el_attrs;
32b5eeca 100 long *scan_mask;
8d213f24 101 bool scan_timestamp;
14555b14 102 const struct iio_buffer_access_funcs *access;
8d213f24 103 struct list_head scan_el_dev_attr_list;
08e7e0ad 104 struct attribute_group buffer_group;
26d25ae3 105 struct attribute_group scan_el_group;
8d213f24
JC
106 wait_queue_head_t pollq;
107 bool stufftoread;
08e7e0ad 108 const struct attribute **attrs;
5ada4ea9 109 struct list_head demux_list;
5d65d920 110 void *demux_bounce;
84b36ce5 111 struct list_head buffer_list;
9e69c935 112 struct kref ref;
37d34556 113 unsigned int watermark;
7026ea4b 114};
c3e5d410 115
84b36ce5
JC
116/**
117 * iio_update_buffers() - add or remove buffer from active list
118 * @indio_dev: device to add buffer to
119 * @insert_buffer: buffer to insert
120 * @remove_buffer: buffer_to_remove
121 *
122 * Note this will tear down the all buffering and build it up again
123 */
124int iio_update_buffers(struct iio_dev *indio_dev,
125 struct iio_buffer *insert_buffer,
126 struct iio_buffer *remove_buffer);
127
c3e5d410 128/**
14555b14 129 * iio_buffer_init() - Initialize the buffer structure
3bdff937 130 * @buffer: buffer to be initialized
c3e5d410 131 **/
f79a9098 132void iio_buffer_init(struct iio_buffer *buffer);
7026ea4b 133
f79a9098
JC
134int iio_scan_mask_query(struct iio_dev *indio_dev,
135 struct iio_buffer *buffer, int bit);
bf32963c 136
5ada4ea9 137/**
84b36ce5
JC
138 * iio_push_to_buffers() - push to a registered buffer.
139 * @indio_dev: iio_dev structure for device.
140 * @data: Full scan.
5ada4ea9 141 */
5d65d920 142int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data);
5ada4ea9 143
d2c3d072
LPC
144/*
145 * iio_push_to_buffers_with_timestamp() - push data and timestamp to buffers
146 * @indio_dev: iio_dev structure for device.
147 * @data: sample data
148 * @timestamp: timestamp for the sample data
149 *
150 * Pushes data to the IIO device's buffers. If timestamps are enabled for the
151 * device the function will store the supplied timestamp as the last element in
152 * the sample data buffer before pushing it to the device buffers. The sample
153 * data buffer needs to be large enough to hold the additional timestamp
154 * (usually the buffer should be indio->scan_bytes bytes large).
155 *
156 * Returns 0 on success, a negative error code otherwise.
157 */
158static inline int iio_push_to_buffers_with_timestamp(struct iio_dev *indio_dev,
159 void *data, int64_t timestamp)
160{
161 if (indio_dev->scan_timestamp) {
162 size_t ts_offset = indio_dev->scan_bytes / sizeof(int64_t) - 1;
163 ((int64_t *)data)[ts_offset] = timestamp;
164 }
165
166 return iio_push_to_buffers(indio_dev, data);
167}
168
5ada4ea9
JC
169int iio_update_demux(struct iio_dev *indio_dev);
170
81636632
LPC
171bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev,
172 const unsigned long *mask);
173
9e69c935
LPC
174struct iio_buffer *iio_buffer_get(struct iio_buffer *buffer);
175void iio_buffer_put(struct iio_buffer *buffer);
176
177/**
178 * iio_device_attach_buffer - Attach a buffer to a IIO device
179 * @indio_dev: The device the buffer should be attached to
180 * @buffer: The buffer to attach to the device
181 *
182 * This function attaches a buffer to a IIO device. The buffer stays attached to
183 * the device until the device is freed. The function should only be called at
184 * most once per device.
185 */
186static inline void iio_device_attach_buffer(struct iio_dev *indio_dev,
187 struct iio_buffer *buffer)
188{
189 indio_dev->buffer = iio_buffer_get(buffer);
190}
191
f2a96245 192#else /* CONFIG_IIO_BUFFER */
1d892719 193
9e69c935
LPC
194static inline void iio_buffer_get(struct iio_buffer *buffer) {}
195static inline void iio_buffer_put(struct iio_buffer *buffer) {}
196
f2a96245 197#endif /* CONFIG_IIO_BUFFER */
7026ea4b 198
3811cd62 199#endif /* _IIO_BUFFER_GENERIC_H_ */
This page took 0.573651 seconds and 5 git commands to generate.