blob: b0e006c3db43a53b16533ba02fbc433df305f318 [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>
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +010014#include <linux/kref.h>
Jonathan Cameron7026ea42009-08-18 18:06:24 +010015
Jonathan Cameronf2a96242011-09-21 11:15:55 +010016#ifdef CONFIG_IIO_BUFFER
Jonathan Cameron26620512010-07-11 16:39:14 +010017
Jonathan Cameron14555b12011-09-21 11:15:57 +010018struct iio_buffer;
Jonathan Cameron7026ea42009-08-18 18:06:24 +010019
20/**
Jonathan Cameron14555b12011-09-21 11:15:57 +010021 * struct iio_buffer_access_funcs - access functions for buffers.
Jonathan Cameron14555b12011-09-21 11:15:57 +010022 * @store_to: actually store stuff to the buffer
Lars-Peter Clausen8fe64952011-12-12 09:33:14 +010023 * @read_first_n: try to get a specified number of bytes (must exist)
Lars-Peter Clausen647cc7b2013-11-25 14:56:00 +000024 * @data_available: indicates whether data for reading from the buffer is
25 * available.
Jonathan Cameron7026ea42009-08-18 18:06:24 +010026 * @request_update: if a parameter change has been marked, update underlying
27 * storage.
Jonathan Cameronc3e5d412010-09-04 17:54:45 +010028 * @get_bytes_per_datum:get current bytes per datum
29 * @set_bytes_per_datum:set number of bytes per datum
Jonathan Cameron14555b12011-09-21 11:15:57 +010030 * @get_length: get number of datums in buffer
31 * @set_length: set number of datums in buffer
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +010032 * @release: called when the last reference to the buffer is dropped,
33 * should free all resources allocated by the buffer.
Jonathan Cameron7026ea42009-08-18 18:06:24 +010034 *
Jonathan Cameron14555b12011-09-21 11:15:57 +010035 * The purpose of this structure is to make the buffer element
Jonathan Cameron7026ea42009-08-18 18:06:24 +010036 * modular as event for a given driver, different usecases may require
Jonathan Cameron14555b12011-09-21 11:15:57 +010037 * different buffer designs (space efficiency vs speed for example).
Jonathan Cameron7026ea42009-08-18 18:06:24 +010038 *
Jonathan Cameron14555b12011-09-21 11:15:57 +010039 * It is worth noting that a given buffer implementation may only support a
40 * small proportion of these functions. The core code 'should' cope fine with
41 * any of them not existing.
Jonathan Cameron7026ea42009-08-18 18:06:24 +010042 **/
Jonathan Cameron14555b12011-09-21 11:15:57 +010043struct iio_buffer_access_funcs {
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +010044 int (*store_to)(struct iio_buffer *buffer, const void *data);
Jonathan Cameron14555b12011-09-21 11:15:57 +010045 int (*read_first_n)(struct iio_buffer *buffer,
Jonathan Cameronb4281732011-04-15 18:55:55 +010046 size_t n,
Jonathan Cameronb26a2182011-05-18 14:41:02 +010047 char __user *buf);
Lars-Peter Clausen647cc7b2013-11-25 14:56:00 +000048 bool (*data_available)(struct iio_buffer *buffer);
Jonathan Cameron7026ea42009-08-18 18:06:24 +010049
Jonathan Cameron14555b12011-09-21 11:15:57 +010050 int (*request_update)(struct iio_buffer *buffer);
Jonathan Cameron7026ea42009-08-18 18:06:24 +010051
Jonathan Cameron14555b12011-09-21 11:15:57 +010052 int (*get_bytes_per_datum)(struct iio_buffer *buffer);
53 int (*set_bytes_per_datum)(struct iio_buffer *buffer, size_t bpd);
54 int (*get_length)(struct iio_buffer *buffer);
55 int (*set_length)(struct iio_buffer *buffer, int length);
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +010056
57 void (*release)(struct iio_buffer *buffer);
Jonathan Cameron7026ea42009-08-18 18:06:24 +010058};
59
Jonathan Cameron6446e9c2011-08-30 12:41:13 +010060/**
Jonathan Cameron14555b12011-09-21 11:15:57 +010061 * struct iio_buffer - general buffer structure
Jonathan Cameron14555b12011-09-21 11:15:57 +010062 * @length: [DEVICE] number of datums in buffer
Jonathan Cameronc3e5d412010-09-04 17:54:45 +010063 * @bytes_per_datum: [DEVICE] size of individual datum including timestamp
Manuel Stahlbf329632010-08-31 11:32:52 +020064 * @scan_el_attrs: [DRIVER] control of scan elements if that scan mode
65 * control method is used
Manuel Stahlbf329632010-08-31 11:32:52 +020066 * @scan_mask: [INTERN] bitmask used in masking scan mode elements
67 * @scan_timestamp: [INTERN] does the scan mode include a timestamp
Jonathan Cameron14555b12011-09-21 11:15:57 +010068 * @access: [DRIVER] buffer access functions associated with the
Jonathan Cameron7026ea42009-08-18 18:06:24 +010069 * implementation.
Jonathan Cameron5f070a32011-12-05 22:18:30 +000070 * @scan_el_dev_attr_list:[INTERN] list of scan element related attributes.
71 * @scan_el_group: [DRIVER] attribute group for those attributes not
72 * created from the iio_chan_info array.
73 * @pollq: [INTERN] wait queue to allow for polling on the buffer.
74 * @stufftoread: [INTERN] flag to indicate new data.
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +000075 * @demux_list: [INTERN] list of operations required to demux the scan.
76 * @demux_bounce: [INTERN] buffer for doing gather from incoming scan.
Jonathan Cameron84b36ce2012-06-30 20:06:00 +010077 * @buffer_list: [INTERN] entry in the devices list of current buffers.
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +010078 * @ref: [INTERN] reference count of the buffer.
Jonathan Cameron84b36ce2012-06-30 20:06:00 +010079 */
Jonathan Cameron14555b12011-09-21 11:15:57 +010080struct iio_buffer {
Jonathan Cameron8d213f22011-05-18 14:42:34 +010081 int length;
82 int bytes_per_datum;
Jonathan Cameron8d213f22011-05-18 14:42:34 +010083 struct attribute_group *scan_el_attrs;
Jonathan Cameron32b5eec2011-09-02 17:14:38 +010084 long *scan_mask;
Jonathan Cameron8d213f22011-05-18 14:42:34 +010085 bool scan_timestamp;
Jonathan Cameron14555b12011-09-21 11:15:57 +010086 const struct iio_buffer_access_funcs *access;
Jonathan Cameron8d213f22011-05-18 14:42:34 +010087 struct list_head scan_el_dev_attr_list;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +010088 struct attribute_group scan_el_group;
Jonathan Cameron8d213f22011-05-18 14:42:34 +010089 wait_queue_head_t pollq;
90 bool stufftoread;
Jonathan Cameron1aa04272011-08-30 12:32:47 +010091 const struct attribute_group *attrs;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +000092 struct list_head demux_list;
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +010093 void *demux_bounce;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +010094 struct list_head buffer_list;
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +010095 struct kref ref;
Jonathan Cameron7026ea42009-08-18 18:06:24 +010096};
Jonathan Cameronc3e5d412010-09-04 17:54:45 +010097
98/**
Jonathan Cameron84b36ce2012-06-30 20:06:00 +010099 * iio_update_buffers() - add or remove buffer from active list
100 * @indio_dev: device to add buffer to
101 * @insert_buffer: buffer to insert
102 * @remove_buffer: buffer_to_remove
103 *
104 * Note this will tear down the all buffering and build it up again
105 */
106int iio_update_buffers(struct iio_dev *indio_dev,
107 struct iio_buffer *insert_buffer,
108 struct iio_buffer *remove_buffer);
109
110/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100111 * iio_buffer_init() - Initialize the buffer structure
Peter Meerwald3bdff932012-07-01 00:47:43 +0200112 * @buffer: buffer to be initialized
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100113 **/
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000114void iio_buffer_init(struct iio_buffer *buffer);
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100115
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000116int iio_scan_mask_query(struct iio_dev *indio_dev,
117 struct iio_buffer *buffer, int bit);
Manuel Stahlbf329632010-08-31 11:32:52 +0200118
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100119/**
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100120 * iio_push_to_buffers() - push to a registered buffer.
121 * @indio_dev: iio_dev structure for device.
122 * @data: Full scan.
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000123 */
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +0100124int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data);
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000125
Lars-Peter Clausend2c3d072013-09-19 13:59:00 +0100126/*
127 * iio_push_to_buffers_with_timestamp() - push data and timestamp to buffers
128 * @indio_dev: iio_dev structure for device.
129 * @data: sample data
130 * @timestamp: timestamp for the sample data
131 *
132 * Pushes data to the IIO device's buffers. If timestamps are enabled for the
133 * device the function will store the supplied timestamp as the last element in
134 * the sample data buffer before pushing it to the device buffers. The sample
135 * data buffer needs to be large enough to hold the additional timestamp
136 * (usually the buffer should be indio->scan_bytes bytes large).
137 *
138 * Returns 0 on success, a negative error code otherwise.
139 */
140static inline int iio_push_to_buffers_with_timestamp(struct iio_dev *indio_dev,
141 void *data, int64_t timestamp)
142{
143 if (indio_dev->scan_timestamp) {
144 size_t ts_offset = indio_dev->scan_bytes / sizeof(int64_t) - 1;
145 ((int64_t *)data)[ts_offset] = timestamp;
146 }
147
148 return iio_push_to_buffers(indio_dev, data);
149}
150
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000151int iio_update_demux(struct iio_dev *indio_dev);
152
153/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100154 * iio_buffer_read_length() - attr func to get number of datums in the buffer
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100155 **/
Jonathan Cameron14555b12011-09-21 11:15:57 +0100156ssize_t iio_buffer_read_length(struct device *dev,
157 struct device_attribute *attr,
158 char *buf);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100159/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100160 * iio_buffer_write_length() - attr func to set number of datums in the buffer
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100161 **/
Jonathan Cameron14555b12011-09-21 11:15:57 +0100162ssize_t iio_buffer_write_length(struct device *dev,
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100163 struct device_attribute *attr,
164 const char *buf,
165 size_t len);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100166/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100167 * iio_buffer_store_enable() - attr to turn the buffer on
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100168 **/
Jonathan Cameron14555b12011-09-21 11:15:57 +0100169ssize_t iio_buffer_store_enable(struct device *dev,
170 struct device_attribute *attr,
171 const char *buf,
172 size_t len);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100173/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100174 * iio_buffer_show_enable() - attr to see if the buffer is on
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100175 **/
Jonathan Cameron14555b12011-09-21 11:15:57 +0100176ssize_t iio_buffer_show_enable(struct device *dev,
177 struct device_attribute *attr,
178 char *buf);
179#define IIO_BUFFER_LENGTH_ATTR DEVICE_ATTR(length, S_IRUGO | S_IWUSR, \
180 iio_buffer_read_length, \
181 iio_buffer_write_length)
Jonathan Cameron5565a452011-05-18 14:42:24 +0100182
Jonathan Cameron14555b12011-09-21 11:15:57 +0100183#define IIO_BUFFER_ENABLE_ATTR DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, \
184 iio_buffer_show_enable, \
185 iio_buffer_store_enable)
186
Lars-Peter Clausen81636632012-07-09 10:00:00 +0100187bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev,
188 const unsigned long *mask);
189
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100190struct iio_buffer *iio_buffer_get(struct iio_buffer *buffer);
191void iio_buffer_put(struct iio_buffer *buffer);
192
193/**
194 * iio_device_attach_buffer - Attach a buffer to a IIO device
195 * @indio_dev: The device the buffer should be attached to
196 * @buffer: The buffer to attach to the device
197 *
198 * This function attaches a buffer to a IIO device. The buffer stays attached to
199 * the device until the device is freed. The function should only be called at
200 * most once per device.
201 */
202static inline void iio_device_attach_buffer(struct iio_dev *indio_dev,
203 struct iio_buffer *buffer)
204{
205 indio_dev->buffer = iio_buffer_get(buffer);
206}
207
Jonathan Cameronf2a96242011-09-21 11:15:55 +0100208#else /* CONFIG_IIO_BUFFER */
Jonathan Cameron1d892712011-05-18 14:40:51 +0100209
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100210static inline void iio_buffer_get(struct iio_buffer *buffer) {}
211static inline void iio_buffer_put(struct iio_buffer *buffer) {}
212
Jonathan Cameronf2a96242011-09-21 11:15:55 +0100213#endif /* CONFIG_IIO_BUFFER */
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100214
Jonathan Cameron3811cd62011-09-21 11:15:56 +0100215#endif /* _IIO_BUFFER_GENERIC_H_ */