blob: 3f26f7175b6a30d09608c66f18c93930225c3c8c [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)
Randy Dunlap4c572602009-10-04 19:34:02 -070079 * @length: [DEVICE] number of datums in ring
Jonathan Cameronc3e5d412010-09-04 17:54:45 +010080 * @bytes_per_datum: [DEVICE] size of individual datum including timestamp
Barry Songad577f82010-07-11 16:39:16 +010081 * @bpe: [DEVICE] size of individual channel value
Manuel Stahlbf329632010-08-31 11:32:52 +020082 * @scan_el_attrs: [DRIVER] control of scan elements if that scan mode
83 * control method is used
84 * @scan_count: [INTERN] the number of elements in the current scan mode
85 * @scan_mask: [INTERN] bitmask used in masking scan mode elements
86 * @scan_timestamp: [INTERN] does the scan mode include a timestamp
Randy Dunlap4c572602009-10-04 19:34:02 -070087 * @access_handler: [INTERN] chrdev access handling
Randy Dunlap4c572602009-10-04 19:34:02 -070088 * @access: [DRIVER] ring access functions associated with the
Jonathan Cameron7026ea42009-08-18 18:06:24 +010089 * implementation.
Randy Dunlap4c572602009-10-04 19:34:02 -070090 * @preenable: [DRIVER] function to run prior to marking ring enabled
91 * @postenable: [DRIVER] function to run after marking ring enabled
92 * @predisable: [DRIVER] function to run prior to marking ring disabled
93 * @postdisable: [DRIVER] function to run after marking ring disabled
Jonathan Cameron8d213f22011-05-18 14:42:34 +010094 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +010095struct iio_ring_buffer {
Jonathan Cameron8d213f22011-05-18 14:42:34 +010096 struct device dev;
97 struct iio_dev *indio_dev;
98 struct module *owner;
99 int length;
100 int bytes_per_datum;
101 int bpe;
102 struct attribute_group *scan_el_attrs;
103 int scan_count;
104 unsigned long scan_mask;
105 bool scan_timestamp;
106 struct iio_handler access_handler;
Jonathan Cameron5565a452011-05-18 14:42:24 +0100107 const struct iio_ring_access_funcs *access;
Jonathan Cameron8d213f22011-05-18 14:42:34 +0100108 const struct iio_ring_setup_ops *setup_ops;
109 struct list_head scan_el_dev_attr_list;
Jonathan Camerona7348342011-05-18 14:40:55 +0100110
Jonathan Cameron8d213f22011-05-18 14:42:34 +0100111 wait_queue_head_t pollq;
112 bool stufftoread;
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100113};
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100114
115/**
116 * iio_ring_buffer_init() - Initialize the buffer structure
117 * @ring: buffer to be initialized
118 * @dev_info: the iio device the buffer is assocated with
119 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100120void iio_ring_buffer_init(struct iio_ring_buffer *ring,
121 struct iio_dev *dev_info);
122
123/**
Jonathan Cameron6f2dfb32010-03-02 13:35:35 +0000124 * __iio_update_ring_buffer() - update common elements of ring buffers
Randy Dunlap4c572602009-10-04 19:34:02 -0700125 * @ring: ring buffer that is the event source
126 * @bytes_per_datum: size of individual datum including timestamp
127 * @length: number of datums in ring
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100128 **/
Jonathan Cameron6f2dfb32010-03-02 13:35:35 +0000129static inline void __iio_update_ring_buffer(struct iio_ring_buffer *ring,
130 int bytes_per_datum, int length)
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100131{
Manuel Stahlffcab072010-08-31 11:32:50 +0200132 ring->bytes_per_datum = bytes_per_datum;
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100133 ring->length = length;
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100134}
135
Manuel Stahlbf329632010-08-31 11:32:52 +0200136/*
137 * These are mainly provided to allow for a change of implementation if a device
138 * has a large number of scan elements
139 */
140#define IIO_MAX_SCAN_LENGTH 31
141
142/* note 0 used as error indicator as it doesn't make sense. */
143static inline u32 iio_scan_mask_match(u32 *av_masks, u32 mask)
144{
145 while (*av_masks) {
146 if (!(~*av_masks & mask))
147 return *av_masks;
148 av_masks++;
149 }
150 return 0;
151}
152
153static inline int iio_scan_mask_query(struct iio_ring_buffer *ring, int bit)
154{
155 struct iio_dev *dev_info = ring->indio_dev;
156 u32 mask;
157
158 if (bit > IIO_MAX_SCAN_LENGTH)
159 return -EINVAL;
160
161 if (!ring->scan_mask)
162 return 0;
163
164 if (dev_info->available_scan_masks)
165 mask = iio_scan_mask_match(dev_info->available_scan_masks,
166 ring->scan_mask);
167 else
168 mask = ring->scan_mask;
169
170 if (!mask)
171 return -EINVAL;
172
173 return !!(mask & (1 << bit));
174};
175
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100176/**
177 * iio_scan_mask_set() - set particular bit in the scan mask
178 * @ring: the ring buffer whose scan mask we are interested in
179 * @bit: the bit to be set.
180 **/
Manuel Stahlbf329632010-08-31 11:32:52 +0200181static inline int iio_scan_mask_set(struct iio_ring_buffer *ring, int bit)
182{
183 struct iio_dev *dev_info = ring->indio_dev;
184 u32 mask;
185 u32 trialmask = ring->scan_mask | (1 << bit);
186
187 if (bit > IIO_MAX_SCAN_LENGTH)
188 return -EINVAL;
189 if (dev_info->available_scan_masks) {
190 mask = iio_scan_mask_match(dev_info->available_scan_masks,
191 trialmask);
192 if (!mask)
193 return -EINVAL;
194 }
195 ring->scan_mask = trialmask;
196 ring->scan_count++;
197
198 return 0;
199};
200
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100201/**
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100202 * iio_put_ring_buffer() - notify done with buffer
203 * @ring: the buffer we are done with.
204 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100205static inline void iio_put_ring_buffer(struct iio_ring_buffer *ring)
206{
207 put_device(&ring->dev);
208};
209
Jonathan Cameron8d213f22011-05-18 14:42:34 +0100210#define to_iio_ring_buffer(d) \
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100211 container_of(d, struct iio_ring_buffer, dev)
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100212
213/**
Jonathan Cameron8d213f22011-05-18 14:42:34 +0100214 * iio_ring_buffer_register_ex() - register the buffer with IIO core
Jonathan Cameron1d892712011-05-18 14:40:51 +0100215 * @ring: the buffer to be registered
216 * @id: the id of the buffer (typically 0)
217 **/
218int iio_ring_buffer_register_ex(struct iio_ring_buffer *ring, int id,
219 const struct iio_chan_spec *channels,
220 int num_channels);
221
Jonathan Cameron3feb0792011-05-18 14:40:57 +0100222void iio_ring_access_release(struct device *dev);
223
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100224/**
225 * iio_ring_buffer_unregister() - unregister the buffer from IIO core
226 * @ring: the buffer to be unregistered
227 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100228void iio_ring_buffer_unregister(struct iio_ring_buffer *ring);
229
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100230/**
231 * iio_read_ring_length() - attr func to get number of datums in the buffer
232 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100233ssize_t iio_read_ring_length(struct device *dev,
234 struct device_attribute *attr,
235 char *buf);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100236/**
237 * iio_write_ring_length() - attr func to set number of datums in the buffer
238 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100239ssize_t iio_write_ring_length(struct device *dev,
240 struct device_attribute *attr,
241 const char *buf,
242 size_t len);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100243/**
244 * iio_read_ring_bytes_per_datum() - attr for number of bytes in whole datum
245 **/
Manuel Stahlffcab072010-08-31 11:32:50 +0200246ssize_t iio_read_ring_bytes_per_datum(struct device *dev,
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100247 struct device_attribute *attr,
248 char *buf);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100249/**
250 * iio_store_ring_enable() - attr to turn the buffer on
251 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100252ssize_t iio_store_ring_enable(struct device *dev,
253 struct device_attribute *attr,
254 const char *buf,
255 size_t len);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100256/**
257 * iio_show_ring_enable() - attr to see if the buffer is on
258 **/
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100259ssize_t iio_show_ring_enable(struct device *dev,
260 struct device_attribute *attr,
261 char *buf);
262#define IIO_RING_LENGTH_ATTR DEVICE_ATTR(length, S_IRUGO | S_IWUSR, \
263 iio_read_ring_length, \
264 iio_write_ring_length)
Manuel Stahlffcab072010-08-31 11:32:50 +0200265#define IIO_RING_BYTES_PER_DATUM_ATTR DEVICE_ATTR(bytes_per_datum, S_IRUGO | S_IWUSR, \
266 iio_read_ring_bytes_per_datum, NULL)
267#define IIO_RING_ENABLE_ATTR DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, \
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100268 iio_show_ring_enable, \
269 iio_store_ring_enable)
Jonathan Cameron5565a452011-05-18 14:42:24 +0100270
271int iio_sw_ring_preenable(struct iio_dev *indio_dev);
272
Jonathan Cameron26620512010-07-11 16:39:14 +0100273#else /* CONFIG_IIO_RING_BUFFER */
Jonathan Cameron1d892712011-05-18 14:40:51 +0100274
275static inline int iio_ring_buffer_register_ex(struct iio_ring_buffer *ring,
276 int id,
277 struct iio_chan_spec *channels,
278 int num_channels)
279{
280 return 0;
281}
282
Jonathan Cameron26620512010-07-11 16:39:14 +0100283static inline void iio_ring_buffer_unregister(struct iio_ring_buffer *ring)
284{};
285
286#endif /* CONFIG_IIO_RING_BUFFER */
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100287
288#endif /* _IIO_RING_GENERIC_H_ */