blob: a1124bdc4cacce88872010e2873565b5889487be [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 Cameron7026ea42009-08-18 18:06:24 +010014
Jonathan Cameronf2a96242011-09-21 11:15:55 +010015#ifdef CONFIG_IIO_BUFFER
Jonathan Cameron26620512010-07-11 16:39:14 +010016
Jonathan Cameron14555b12011-09-21 11:15:57 +010017struct iio_buffer;
Jonathan Cameron7026ea42009-08-18 18:06:24 +010018
19/**
Jonathan Cameron14555b12011-09-21 11:15:57 +010020 * struct iio_buffer_access_funcs - access functions for buffers.
Jonathan Cameron14555b12011-09-21 11:15:57 +010021 * @store_to: actually store stuff to the buffer
Lars-Peter Clausen8fe64952011-12-12 09:33:14 +010022 * @read_first_n: try to get a specified number of bytes (must exist)
Jonathan Cameron7026ea42009-08-18 18:06:24 +010023 * @request_update: if a parameter change has been marked, update underlying
24 * storage.
Jonathan Cameronc3e5d412010-09-04 17:54:45 +010025 * @get_bytes_per_datum:get current bytes per datum
26 * @set_bytes_per_datum:set number of bytes per datum
Jonathan Cameron14555b12011-09-21 11:15:57 +010027 * @get_length: get number of datums in buffer
28 * @set_length: set number of datums in buffer
Jonathan Cameron7026ea42009-08-18 18:06:24 +010029 *
Jonathan Cameron14555b12011-09-21 11:15:57 +010030 * The purpose of this structure is to make the buffer element
Jonathan Cameron7026ea42009-08-18 18:06:24 +010031 * modular as event for a given driver, different usecases may require
Jonathan Cameron14555b12011-09-21 11:15:57 +010032 * different buffer designs (space efficiency vs speed for example).
Jonathan Cameron7026ea42009-08-18 18:06:24 +010033 *
Jonathan Cameron14555b12011-09-21 11:15:57 +010034 * It is worth noting that a given buffer implementation may only support a
35 * small proportion of these functions. The core code 'should' cope fine with
36 * any of them not existing.
Jonathan Cameron7026ea42009-08-18 18:06:24 +010037 **/
Jonathan Cameron14555b12011-09-21 11:15:57 +010038struct iio_buffer_access_funcs {
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +010039 int (*store_to)(struct iio_buffer *buffer, const void *data);
Jonathan Cameron14555b12011-09-21 11:15:57 +010040 int (*read_first_n)(struct iio_buffer *buffer,
Jonathan Cameronb4281732011-04-15 18:55:55 +010041 size_t n,
Jonathan Cameronb26a2182011-05-18 14:41:02 +010042 char __user *buf);
Jonathan Cameron7026ea42009-08-18 18:06:24 +010043
Jonathan Cameron14555b12011-09-21 11:15:57 +010044 int (*request_update)(struct iio_buffer *buffer);
Jonathan Cameron7026ea42009-08-18 18:06:24 +010045
Jonathan Cameron14555b12011-09-21 11:15:57 +010046 int (*get_bytes_per_datum)(struct iio_buffer *buffer);
47 int (*set_bytes_per_datum)(struct iio_buffer *buffer, size_t bpd);
48 int (*get_length)(struct iio_buffer *buffer);
49 int (*set_length)(struct iio_buffer *buffer, int length);
Jonathan Cameron7026ea42009-08-18 18:06:24 +010050};
51
Jonathan Cameron6446e9c2011-08-30 12:41:13 +010052/**
Jonathan Cameron14555b12011-09-21 11:15:57 +010053 * struct iio_buffer - general buffer structure
Jonathan Cameron14555b12011-09-21 11:15:57 +010054 * @length: [DEVICE] number of datums in buffer
Jonathan Cameronc3e5d412010-09-04 17:54:45 +010055 * @bytes_per_datum: [DEVICE] size of individual datum including timestamp
Manuel Stahlbf329632010-08-31 11:32:52 +020056 * @scan_el_attrs: [DRIVER] control of scan elements if that scan mode
57 * control method is used
Manuel Stahlbf329632010-08-31 11:32:52 +020058 * @scan_mask: [INTERN] bitmask used in masking scan mode elements
59 * @scan_timestamp: [INTERN] does the scan mode include a timestamp
Jonathan Cameron14555b12011-09-21 11:15:57 +010060 * @access: [DRIVER] buffer access functions associated with the
Jonathan Cameron7026ea42009-08-18 18:06:24 +010061 * implementation.
Jonathan Cameron5f070a32011-12-05 22:18:30 +000062 * @scan_el_dev_attr_list:[INTERN] list of scan element related attributes.
63 * @scan_el_group: [DRIVER] attribute group for those attributes not
64 * created from the iio_chan_info array.
65 * @pollq: [INTERN] wait queue to allow for polling on the buffer.
66 * @stufftoread: [INTERN] flag to indicate new data.
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +000067 * @demux_list: [INTERN] list of operations required to demux the scan.
68 * @demux_bounce: [INTERN] buffer for doing gather from incoming scan.
Jonathan Cameron84b36ce2012-06-30 20:06:00 +010069 * @buffer_list: [INTERN] entry in the devices list of current buffers.
70 */
Jonathan Cameron14555b12011-09-21 11:15:57 +010071struct iio_buffer {
Jonathan Cameron8d213f22011-05-18 14:42:34 +010072 int length;
73 int bytes_per_datum;
Jonathan Cameron8d213f22011-05-18 14:42:34 +010074 struct attribute_group *scan_el_attrs;
Jonathan Cameron32b5eec2011-09-02 17:14:38 +010075 long *scan_mask;
Jonathan Cameron8d213f22011-05-18 14:42:34 +010076 bool scan_timestamp;
Jonathan Cameron14555b12011-09-21 11:15:57 +010077 const struct iio_buffer_access_funcs *access;
Jonathan Cameron8d213f22011-05-18 14:42:34 +010078 struct list_head scan_el_dev_attr_list;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +010079 struct attribute_group scan_el_group;
Jonathan Cameron8d213f22011-05-18 14:42:34 +010080 wait_queue_head_t pollq;
81 bool stufftoread;
Jonathan Cameron1aa04272011-08-30 12:32:47 +010082 const struct attribute_group *attrs;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +000083 struct list_head demux_list;
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +010084 void *demux_bounce;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +010085 struct list_head buffer_list;
Jonathan Cameron7026ea42009-08-18 18:06:24 +010086};
Jonathan Cameronc3e5d412010-09-04 17:54:45 +010087
88/**
Jonathan Cameron84b36ce2012-06-30 20:06:00 +010089 * iio_update_buffers() - add or remove buffer from active list
90 * @indio_dev: device to add buffer to
91 * @insert_buffer: buffer to insert
92 * @remove_buffer: buffer_to_remove
93 *
94 * Note this will tear down the all buffering and build it up again
95 */
96int iio_update_buffers(struct iio_dev *indio_dev,
97 struct iio_buffer *insert_buffer,
98 struct iio_buffer *remove_buffer);
99
100/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100101 * iio_buffer_init() - Initialize the buffer structure
Peter Meerwald3bdff932012-07-01 00:47:43 +0200102 * @buffer: buffer to be initialized
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100103 **/
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000104void iio_buffer_init(struct iio_buffer *buffer);
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100105
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000106int iio_scan_mask_query(struct iio_dev *indio_dev,
107 struct iio_buffer *buffer, int bit);
Manuel Stahlbf329632010-08-31 11:32:52 +0200108
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100109/**
110 * iio_scan_mask_set() - set particular bit in the scan mask
Peter Meerwald3bdff932012-07-01 00:47:43 +0200111 * @indio_dev IIO device structure
112 * @buffer: the buffer whose scan mask we are interested in
113 * @bit: the bit to be set.
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100114 **/
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000115int iio_scan_mask_set(struct iio_dev *indio_dev,
116 struct iio_buffer *buffer, int bit);
Manuel Stahlbf329632010-08-31 11:32:52 +0200117
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100118/**
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100119 * iio_push_to_buffers() - push to a registered buffer.
120 * @indio_dev: iio_dev structure for device.
121 * @data: Full scan.
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000122 */
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +0100123int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data);
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000124
Lars-Peter Clausend2c3d072013-09-19 13:59:00 +0100125/*
126 * iio_push_to_buffers_with_timestamp() - push data and timestamp to buffers
127 * @indio_dev: iio_dev structure for device.
128 * @data: sample data
129 * @timestamp: timestamp for the sample data
130 *
131 * Pushes data to the IIO device's buffers. If timestamps are enabled for the
132 * device the function will store the supplied timestamp as the last element in
133 * the sample data buffer before pushing it to the device buffers. The sample
134 * data buffer needs to be large enough to hold the additional timestamp
135 * (usually the buffer should be indio->scan_bytes bytes large).
136 *
137 * Returns 0 on success, a negative error code otherwise.
138 */
139static inline int iio_push_to_buffers_with_timestamp(struct iio_dev *indio_dev,
140 void *data, int64_t timestamp)
141{
142 if (indio_dev->scan_timestamp) {
143 size_t ts_offset = indio_dev->scan_bytes / sizeof(int64_t) - 1;
144 ((int64_t *)data)[ts_offset] = timestamp;
145 }
146
147 return iio_push_to_buffers(indio_dev, data);
148}
149
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000150int iio_update_demux(struct iio_dev *indio_dev);
151
152/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100153 * iio_buffer_register() - register the buffer with IIO core
Peter Meerwald3bdff932012-07-01 00:47:43 +0200154 * @indio_dev: device with the buffer to be registered
155 * @channels: the channel descriptions used to construct buffer
156 * @num_channels: the number of channels
Jonathan Cameron1d892712011-05-18 14:40:51 +0100157 **/
Jonathan Cameron14555b12011-09-21 11:15:57 +0100158int iio_buffer_register(struct iio_dev *indio_dev,
159 const struct iio_chan_spec *channels,
160 int num_channels);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100161
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100162/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100163 * iio_buffer_unregister() - unregister the buffer from IIO core
Peter Meerwald3bdff932012-07-01 00:47:43 +0200164 * @indio_dev: the device with the buffer to be unregistered
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100165 **/
Jonathan Cameron14555b12011-09-21 11:15:57 +0100166void iio_buffer_unregister(struct iio_dev *indio_dev);
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100167
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100168/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100169 * iio_buffer_read_length() - attr func to get number of datums in the buffer
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100170 **/
Jonathan Cameron14555b12011-09-21 11:15:57 +0100171ssize_t iio_buffer_read_length(struct device *dev,
172 struct device_attribute *attr,
173 char *buf);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100174/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100175 * iio_buffer_write_length() - attr func to set number of datums in the buffer
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100176 **/
Jonathan Cameron14555b12011-09-21 11:15:57 +0100177ssize_t iio_buffer_write_length(struct device *dev,
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100178 struct device_attribute *attr,
179 const char *buf,
180 size_t len);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100181/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100182 * iio_buffer_store_enable() - attr to turn the buffer on
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100183 **/
Jonathan Cameron14555b12011-09-21 11:15:57 +0100184ssize_t iio_buffer_store_enable(struct device *dev,
185 struct device_attribute *attr,
186 const char *buf,
187 size_t len);
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100188/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100189 * iio_buffer_show_enable() - attr to see if the buffer is on
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100190 **/
Jonathan Cameron14555b12011-09-21 11:15:57 +0100191ssize_t iio_buffer_show_enable(struct device *dev,
192 struct device_attribute *attr,
193 char *buf);
194#define IIO_BUFFER_LENGTH_ATTR DEVICE_ATTR(length, S_IRUGO | S_IWUSR, \
195 iio_buffer_read_length, \
196 iio_buffer_write_length)
Jonathan Cameron5565a452011-05-18 14:42:24 +0100197
Jonathan Cameron14555b12011-09-21 11:15:57 +0100198#define IIO_BUFFER_ENABLE_ATTR DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, \
199 iio_buffer_show_enable, \
200 iio_buffer_store_enable)
201
202int iio_sw_buffer_preenable(struct iio_dev *indio_dev);
Jonathan Cameron5565a452011-05-18 14:42:24 +0100203
Lars-Peter Clausen81636632012-07-09 10:00:00 +0100204bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev,
205 const unsigned long *mask);
206
Jonathan Cameronf2a96242011-09-21 11:15:55 +0100207#else /* CONFIG_IIO_BUFFER */
Jonathan Cameron1d892712011-05-18 14:40:51 +0100208
Jonathan Cameron14555b12011-09-21 11:15:57 +0100209static inline int iio_buffer_register(struct iio_dev *indio_dev,
Lars-Peter Clausen50d69b52012-11-13 11:48:00 +0000210 const struct iio_chan_spec *channels,
Jonathan Cameronc009f7e2011-08-30 12:41:14 +0100211 int num_channels)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100212{
213 return 0;
214}
215
Jonathan Cameron14555b12011-09-21 11:15:57 +0100216static inline void iio_buffer_unregister(struct iio_dev *indio_dev)
Peter Meerwald19ea47522012-06-18 20:33:03 +0200217{}
Jonathan Cameron26620512010-07-11 16:39:14 +0100218
Jonathan Cameronf2a96242011-09-21 11:15:55 +0100219#endif /* CONFIG_IIO_BUFFER */
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100220
Jonathan Cameron3811cd62011-09-21 11:15:56 +0100221#endif /* _IIO_BUFFER_GENERIC_H_ */