blob: 33496766863acad0624d0226ec27ad4e973f76d1 [file] [log] [blame]
Jonathan Cameron7026ea42009-08-18 18:06:24 +01001/* The industrial I/O core - generic ring buffer interfaces.
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
10#ifndef _IIO_RING_GENERIC_H_
11#define _IIO_RING_GENERIC_H_
12#include "iio.h"
13
Jonathan Cameron26620512010-07-11 16:39:14 +010014#ifdef CONFIG_IIO_RING_BUFFER
15
Jonathan Cameron7026ea42009-08-18 18:06:24 +010016struct iio_ring_buffer;
Jonathan Cameron7026ea42009-08-18 18:06:24 +010017
18/**
Jonathan Cameron7026ea42009-08-18 18:06:24 +010019 * struct iio_ring_access_funcs - access functions for ring buffers.
Jonathan Cameron7026ea42009-08-18 18:06:24 +010020 * @mark_in_use: reference counting, typically to prevent module removal
21 * @unmark_in_use: reduce reference count when no longer using ring buffer
22 * @store_to: actually store stuff to the ring buffer
23 * @read_last: get the last element stored
Jonathan Cameronb4281732011-04-15 18:55:55 +010024 * @read_first_n: try to get a specified number of elements (must exist)
Jonathan Cameron7026ea42009-08-18 18:06:24 +010025 * @mark_param_change: notify ring that some relevant parameter has changed
26 * Often this means the underlying storage may need to
27 * change.
28 * @request_update: if a parameter change has been marked, update underlying
29 * storage.
Jonathan Cameronc3e5d412010-09-04 17:54:45 +010030 * @get_bytes_per_datum:get current bytes per datum
31 * @set_bytes_per_datum:set number of bytes per datum
Jonathan Cameron7026ea42009-08-18 18:06:24 +010032 * @get_length: get number of datums in ring
33 * @set_length: set number of datums in ring
34 * @is_enabled: query if ring is currently being used
35 * @enable: enable the ring
36 *
37 * The purpose of this structure is to make the ring buffer element
38 * modular as event for a given driver, different usecases may require
Randy Dunlap4c572602009-10-04 19:34:02 -070039 * different ring designs (space efficiency vs speed for example).
Jonathan Cameron7026ea42009-08-18 18:06:24 +010040 *
41 * It is worth noting that a given ring implementation may only support a small
42 * proportion of these functions. The core code 'should' cope fine with any of
43 * them not existing.
44 **/
45struct iio_ring_access_funcs {
46 void (*mark_in_use)(struct iio_ring_buffer *ring);
47 void (*unmark_in_use)(struct iio_ring_buffer *ring);
48
49 int (*store_to)(struct iio_ring_buffer *ring, u8 *data, s64 timestamp);
50 int (*read_last)(struct iio_ring_buffer *ring, u8 *data);
Jonathan Cameronb4281732011-04-15 18:55:55 +010051 int (*read_first_n)(struct iio_ring_buffer *ring,
52 size_t n,
Jonathan Cameronb26a2182011-05-18 14:41:02 +010053 char __user *buf);
Jonathan Cameron7026ea42009-08-18 18:06:24 +010054
55 int (*mark_param_change)(struct iio_ring_buffer *ring);
56 int (*request_update)(struct iio_ring_buffer *ring);
57
Manuel Stahlffcab072010-08-31 11:32:50 +020058 int (*get_bytes_per_datum)(struct iio_ring_buffer *ring);
59 int (*set_bytes_per_datum)(struct iio_ring_buffer *ring, size_t bpd);
Jonathan Cameron7026ea42009-08-18 18:06:24 +010060 int (*get_length)(struct iio_ring_buffer *ring);
61 int (*set_length)(struct iio_ring_buffer *ring, int length);
62
63 int (*is_enabled)(struct iio_ring_buffer *ring);
64 int (*enable)(struct iio_ring_buffer *ring);
65};
66
Jonathan Cameron5565a452011-05-18 14:42:24 +010067struct iio_ring_setup_ops {
68 int (*preenable)(struct iio_dev *);
69 int (*postenable)(struct iio_dev *);
70 int (*predisable)(struct iio_dev *);
71 int (*postdisable)(struct iio_dev *);
72};
73
Jonathan Cameron7026ea42009-08-18 18:06:24 +010074/**
75 * struct iio_ring_buffer - general ring buffer structure
Randy Dunlap4c572602009-10-04 19:34:02 -070076 * @dev: ring buffer device struct
Randy Dunlap4c572602009-10-04 19:34:02 -070077 * @indio_dev: industrial I/O device structure
78 * @owner: module that owns the ring buffer (for ref counting)
79 * @id: unique id number
Randy Dunlap4c572602009-10-04 19:34:02 -070080 * @length: [DEVICE] number of datums in ring
Jonathan Cameronc3e5d412010-09-04 17:54:45 +010081 * @bytes_per_datum: [DEVICE] size of individual datum including timestamp
Barry Songad577f82010-07-11 16:39:16 +010082 * @bpe: [DEVICE] size of individual channel value
Randy Dunlap4c572602009-10-04 19:34:02 -070083 * @loopcount: [INTERN] number of times the ring has looped
Manuel Stahlbf329632010-08-31 11:32:52 +020084 * @scan_el_attrs: [DRIVER] control of scan elements if that scan mode
85 * control method is used
86 * @scan_count: [INTERN] the number of elements in the current scan mode
87 * @scan_mask: [INTERN] bitmask used in masking scan mode elements
88 * @scan_timestamp: [INTERN] does the scan mode include a timestamp
Randy Dunlap4c572602009-10-04 19:34:02 -070089 * @access_handler: [INTERN] chrdev access handling
Randy Dunlap4c572602009-10-04 19:34:02 -070090 * @access: [DRIVER] ring access functions associated with the
Jonathan Cameron7026ea42009-08-18 18:06:24 +010091 * implementation.
Randy Dunlap4c572602009-10-04 19:34:02 -070092 * @preenable: [DRIVER] function to run prior to marking ring enabled
93 * @postenable: [DRIVER] function to run after marking ring enabled
94 * @predisable: [DRIVER] function to run prior to marking ring disabled
95 * @postdisable: [DRIVER] function to run after marking ring disabled
Jonathan Cameron7026ea42009-08-18 18:06:24 +010096 **/
97struct iio_ring_buffer {
98 struct device dev;
Jonathan Cameron7026ea42009-08-18 18:06:24 +010099 struct iio_dev *indio_dev;
100 struct module *owner;
101 int id;
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100102 int length;
Manuel Stahlffcab072010-08-31 11:32:50 +0200103 int bytes_per_datum;
Barry Songad577f82010-07-11 16:39:16 +0100104 int bpe;
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100105 int loopcount;
Manuel Stahlbf329632010-08-31 11:32:52 +0200106 struct attribute_group *scan_el_attrs;
107 int scan_count;
108 u32 scan_mask;
109 bool scan_timestamp;
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100110 struct iio_handler access_handler;
Jonathan Cameron5565a452011-05-18 14:42:24 +0100111 const struct iio_ring_access_funcs *access;
112 const struct iio_ring_setup_ops *setup_ops;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100113 struct list_head scan_el_dev_attr_list;
Jonathan Camerona7348342011-05-18 14:40:55 +0100114
115 wait_queue_head_t pollq;
116 bool stufftoread;
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100117};
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100118
119/**
120 * iio_ring_buffer_init() - Initialize the buffer structure
121 * @ring: buffer to be initialized
122 * @dev_info: the iio device the buffer is assocated with
123 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100124void iio_ring_buffer_init(struct iio_ring_buffer *ring,
125 struct iio_dev *dev_info);
126
127/**
Jonathan Cameron6f2dfb32010-03-02 13:35:35 +0000128 * __iio_update_ring_buffer() - update common elements of ring buffers
Randy Dunlap4c572602009-10-04 19:34:02 -0700129 * @ring: ring buffer that is the event source
130 * @bytes_per_datum: size of individual datum including timestamp
131 * @length: number of datums in ring
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100132 **/
Jonathan Cameron6f2dfb32010-03-02 13:35:35 +0000133static inline void __iio_update_ring_buffer(struct iio_ring_buffer *ring,
134 int bytes_per_datum, int length)
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100135{
Manuel Stahlffcab072010-08-31 11:32:50 +0200136 ring->bytes_per_datum = bytes_per_datum;
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100137 ring->length = length;
138 ring->loopcount = 0;
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100139}
140
141/**
Randy Dunlap4c572602009-10-04 19:34:02 -0700142 * iio_scan_el_store() - sysfs scan element selection interface
143 * @dev: the target device
144 * @attr: the device attribute that is being processed
145 * @buf: input from userspace
146 * @len: length of input
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100147 *
148 * A generic function used to enable various scan elements. In some
149 * devices explicit read commands for each channel mean this is merely
150 * a software switch. In others this must actively disable the channel.
151 * Complexities occur when this interacts with data ready type triggers
152 * which may not reset unless every channel that is enabled is explicitly
153 * read.
154 **/
155ssize_t iio_scan_el_store(struct device *dev, struct device_attribute *attr,
156 const char *buf, size_t len);
157/**
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100158 * iio_scan_el_show() - sysfs interface to query whether a scan element
Randy Dunlap4c572602009-10-04 19:34:02 -0700159 * is enabled or not
160 * @dev: the target device
161 * @attr: the device attribute that is being processed
162 * @buf: output buffer
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100163 **/
164ssize_t iio_scan_el_show(struct device *dev, struct device_attribute *attr,
165 char *buf);
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100166
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100167/**
168 * iio_scan_el_ts_store() - sysfs interface to set whether a timestamp is included
169 * in the scan.
170 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100171ssize_t iio_scan_el_ts_store(struct device *dev, struct device_attribute *attr,
172 const char *buf, size_t len);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100173/**
174 * iio_scan_el_ts_show() - sysfs interface to query if a timestamp is included
175 * in the scan.
176 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100177ssize_t iio_scan_el_ts_show(struct device *dev, struct device_attribute *attr,
178 char *buf);
Michael Henneriche968d092010-10-07 14:24:33 +0200179
Manuel Stahlbf329632010-08-31 11:32:52 +0200180/*
181 * These are mainly provided to allow for a change of implementation if a device
182 * has a large number of scan elements
183 */
184#define IIO_MAX_SCAN_LENGTH 31
185
186/* note 0 used as error indicator as it doesn't make sense. */
187static inline u32 iio_scan_mask_match(u32 *av_masks, u32 mask)
188{
189 while (*av_masks) {
190 if (!(~*av_masks & mask))
191 return *av_masks;
192 av_masks++;
193 }
194 return 0;
195}
196
197static inline int iio_scan_mask_query(struct iio_ring_buffer *ring, int bit)
198{
199 struct iio_dev *dev_info = ring->indio_dev;
200 u32 mask;
201
202 if (bit > IIO_MAX_SCAN_LENGTH)
203 return -EINVAL;
204
205 if (!ring->scan_mask)
206 return 0;
207
208 if (dev_info->available_scan_masks)
209 mask = iio_scan_mask_match(dev_info->available_scan_masks,
210 ring->scan_mask);
211 else
212 mask = ring->scan_mask;
213
214 if (!mask)
215 return -EINVAL;
216
217 return !!(mask & (1 << bit));
218};
219
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100220/**
221 * iio_scan_mask_set() - set particular bit in the scan mask
222 * @ring: the ring buffer whose scan mask we are interested in
223 * @bit: the bit to be set.
224 **/
Manuel Stahlbf329632010-08-31 11:32:52 +0200225static inline int iio_scan_mask_set(struct iio_ring_buffer *ring, int bit)
226{
227 struct iio_dev *dev_info = ring->indio_dev;
228 u32 mask;
229 u32 trialmask = ring->scan_mask | (1 << bit);
230
231 if (bit > IIO_MAX_SCAN_LENGTH)
232 return -EINVAL;
233 if (dev_info->available_scan_masks) {
234 mask = iio_scan_mask_match(dev_info->available_scan_masks,
235 trialmask);
236 if (!mask)
237 return -EINVAL;
238 }
239 ring->scan_mask = trialmask;
240 ring->scan_count++;
241
242 return 0;
243};
244
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100245/**
246 * iio_scan_mask_clear() - clear a particular element from the scan mask
247 * @ring: the ring buffer whose scan mask we are interested in
248 * @bit: the bit to clear
249 **/
Manuel Stahlbf329632010-08-31 11:32:52 +0200250static inline int iio_scan_mask_clear(struct iio_ring_buffer *ring, int bit)
251{
252 if (bit > IIO_MAX_SCAN_LENGTH)
253 return -EINVAL;
254 ring->scan_mask &= ~(1 << bit);
255 ring->scan_count--;
256 return 0;
257};
258
259/**
260 * iio_scan_mask_count_to_right() - how many scan elements occur before here
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100261 * @ring: the ring buffer whose scan mask we interested in
Manuel Stahlbf329632010-08-31 11:32:52 +0200262 * @bit: which number scan element is this
263 **/
264static inline int iio_scan_mask_count_to_right(struct iio_ring_buffer *ring,
265 int bit)
266{
267 int count = 0;
268 int mask = (1 << bit);
269 if (bit > IIO_MAX_SCAN_LENGTH)
270 return -EINVAL;
271 while (mask) {
272 mask >>= 1;
273 if (mask & ring->scan_mask)
274 count++;
275 }
276
277 return count;
278}
279
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100280/**
281 * iio_put_ring_buffer() - notify done with buffer
282 * @ring: the buffer we are done with.
283 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100284static inline void iio_put_ring_buffer(struct iio_ring_buffer *ring)
285{
286 put_device(&ring->dev);
287};
288
289#define to_iio_ring_buffer(d) \
290 container_of(d, struct iio_ring_buffer, dev)
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100291
292/**
293 * iio_ring_buffer_register() - register the buffer with IIO core
294 * @ring: the buffer to be registered
295 * @id: the id of the buffer (typically 0)
296 **/
Jonathan Cameron758d9882010-05-04 14:43:08 +0100297int iio_ring_buffer_register(struct iio_ring_buffer *ring, int id);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100298
Jonathan Cameron1d892712011-05-18 14:40:51 +0100299/** iio_ring_buffer_register_ex() - register the buffer with IIO core
300 * @ring: the buffer to be registered
301 * @id: the id of the buffer (typically 0)
302 **/
303int iio_ring_buffer_register_ex(struct iio_ring_buffer *ring, int id,
304 const struct iio_chan_spec *channels,
305 int num_channels);
306
Jonathan Cameron3feb0792011-05-18 14:40:57 +0100307void iio_ring_access_release(struct device *dev);
308
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100309/**
310 * iio_ring_buffer_unregister() - unregister the buffer from IIO core
311 * @ring: the buffer to be unregistered
312 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100313void iio_ring_buffer_unregister(struct iio_ring_buffer *ring);
314
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100315/**
316 * iio_read_ring_length() - attr func to get number of datums in the buffer
317 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100318ssize_t iio_read_ring_length(struct device *dev,
319 struct device_attribute *attr,
320 char *buf);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100321/**
322 * iio_write_ring_length() - attr func to set number of datums in the buffer
323 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100324ssize_t iio_write_ring_length(struct device *dev,
325 struct device_attribute *attr,
326 const char *buf,
327 size_t len);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100328/**
329 * iio_read_ring_bytes_per_datum() - attr for number of bytes in whole datum
330 **/
Manuel Stahlffcab072010-08-31 11:32:50 +0200331ssize_t iio_read_ring_bytes_per_datum(struct device *dev,
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100332 struct device_attribute *attr,
333 char *buf);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100334/**
335 * iio_store_ring_enable() - attr to turn the buffer on
336 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100337ssize_t iio_store_ring_enable(struct device *dev,
338 struct device_attribute *attr,
339 const char *buf,
340 size_t len);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100341/**
342 * iio_show_ring_enable() - attr to see if the buffer is on
343 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100344ssize_t iio_show_ring_enable(struct device *dev,
345 struct device_attribute *attr,
346 char *buf);
347#define IIO_RING_LENGTH_ATTR DEVICE_ATTR(length, S_IRUGO | S_IWUSR, \
348 iio_read_ring_length, \
349 iio_write_ring_length)
Manuel Stahlffcab072010-08-31 11:32:50 +0200350#define IIO_RING_BYTES_PER_DATUM_ATTR DEVICE_ATTR(bytes_per_datum, S_IRUGO | S_IWUSR, \
351 iio_read_ring_bytes_per_datum, NULL)
352#define IIO_RING_ENABLE_ATTR DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, \
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100353 iio_show_ring_enable, \
354 iio_store_ring_enable)
Jonathan Cameron5565a452011-05-18 14:42:24 +0100355
356int iio_sw_ring_preenable(struct iio_dev *indio_dev);
357
Jonathan Cameron26620512010-07-11 16:39:14 +0100358#else /* CONFIG_IIO_RING_BUFFER */
359static inline int iio_ring_buffer_register(struct iio_ring_buffer *ring, int id)
360{
361 return 0;
362};
Jonathan Cameron1d892712011-05-18 14:40:51 +0100363
364static inline int iio_ring_buffer_register_ex(struct iio_ring_buffer *ring,
365 int id,
366 struct iio_chan_spec *channels,
367 int num_channels)
368{
369 return 0;
370}
371
Jonathan Cameron26620512010-07-11 16:39:14 +0100372static inline void iio_ring_buffer_unregister(struct iio_ring_buffer *ring)
373{};
374
375#endif /* CONFIG_IIO_RING_BUFFER */
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100376
377#endif /* _IIO_RING_GENERIC_H_ */