blob: 4d99a53d1fe7ed1f817c52822ce7923b31040759 [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/**
Lars-Peter Clausenb4406552015-10-13 18:10:26 +020021 * 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
26/**
Jonathan Cameron14555b12011-09-21 11:15:57 +010027 * struct iio_buffer_access_funcs - access functions for buffers.
Jonathan Cameron14555b12011-09-21 11:15:57 +010028 * @store_to: actually store stuff to the buffer
Lars-Peter Clausen8fe64952011-12-12 09:33:14 +010029 * @read_first_n: try to get a specified number of bytes (must exist)
Josselin Costanzi37d34552015-03-22 20:33:38 +020030 * @data_available: indicates how much data is available for reading from
31 * the buffer.
Jonathan Cameron7026ea42009-08-18 18:06:24 +010032 * @request_update: if a parameter change has been marked, update underlying
33 * storage.
Jonathan Cameronc3e5d412010-09-04 17:54:45 +010034 * @set_bytes_per_datum:set number of bytes per datum
Jonathan Cameron14555b12011-09-21 11:15:57 +010035 * @set_length: set number of datums in buffer
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +010036 * @release: called when the last reference to the buffer is dropped,
37 * should free all resources allocated by the buffer.
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +020038 * @modes: Supported operating modes by this buffer type
Lars-Peter Clausenb4406552015-10-13 18:10:26 +020039 * @flags: A bitmask combination of INDIO_BUFFER_FLAG_*
Jonathan Cameron7026ea42009-08-18 18:06:24 +010040 *
Jonathan Cameron14555b12011-09-21 11:15:57 +010041 * The purpose of this structure is to make the buffer element
Jonathan Cameron7026ea42009-08-18 18:06:24 +010042 * modular as event for a given driver, different usecases may require
Jonathan Cameron14555b12011-09-21 11:15:57 +010043 * different buffer designs (space efficiency vs speed for example).
Jonathan Cameron7026ea42009-08-18 18:06:24 +010044 *
Jonathan Cameron14555b12011-09-21 11:15:57 +010045 * It is worth noting that a given buffer implementation may only support a
46 * small proportion of these functions. The core code 'should' cope fine with
47 * any of them not existing.
Jonathan Cameron7026ea42009-08-18 18:06:24 +010048 **/
Jonathan Cameron14555b12011-09-21 11:15:57 +010049struct iio_buffer_access_funcs {
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +010050 int (*store_to)(struct iio_buffer *buffer, const void *data);
Jonathan Cameron14555b12011-09-21 11:15:57 +010051 int (*read_first_n)(struct iio_buffer *buffer,
Jonathan Cameronb4281732011-04-15 18:55:55 +010052 size_t n,
Jonathan Cameronb26a2182011-05-18 14:41:02 +010053 char __user *buf);
Josselin Costanzi37d34552015-03-22 20:33:38 +020054 size_t (*data_available)(struct iio_buffer *buffer);
Jonathan Cameron7026ea42009-08-18 18:06:24 +010055
Jonathan Cameron14555b12011-09-21 11:15:57 +010056 int (*request_update)(struct iio_buffer *buffer);
Jonathan Cameron7026ea42009-08-18 18:06:24 +010057
Jonathan Cameron14555b12011-09-21 11:15:57 +010058 int (*set_bytes_per_datum)(struct iio_buffer *buffer, size_t bpd);
Jonathan Cameron14555b12011-09-21 11:15:57 +010059 int (*set_length)(struct iio_buffer *buffer, int length);
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +010060
61 void (*release)(struct iio_buffer *buffer);
Lars-Peter Clausen225d59a2015-05-29 18:14:21 +020062
63 unsigned int modes;
Lars-Peter Clausenb4406552015-10-13 18:10:26 +020064 unsigned int flags;
Jonathan Cameron7026ea42009-08-18 18:06:24 +010065};
66
Jonathan Cameron6446e9c2011-08-30 12:41:13 +010067/**
Jonathan Cameron14555b12011-09-21 11:15:57 +010068 * struct iio_buffer - general buffer structure
Jonathan Cameron14555b12011-09-21 11:15:57 +010069 * @length: [DEVICE] number of datums in buffer
Jonathan Cameronc3e5d412010-09-04 17:54:45 +010070 * @bytes_per_datum: [DEVICE] size of individual datum including timestamp
Manuel Stahlbf329632010-08-31 11:32:52 +020071 * @scan_el_attrs: [DRIVER] control of scan elements if that scan mode
72 * control method is used
Manuel Stahlbf329632010-08-31 11:32:52 +020073 * @scan_mask: [INTERN] bitmask used in masking scan mode elements
74 * @scan_timestamp: [INTERN] does the scan mode include a timestamp
Jonathan Cameron14555b12011-09-21 11:15:57 +010075 * @access: [DRIVER] buffer access functions associated with the
Jonathan Cameron7026ea42009-08-18 18:06:24 +010076 * implementation.
Jonathan Cameron5f070a32011-12-05 22:18:30 +000077 * @scan_el_dev_attr_list:[INTERN] list of scan element related attributes.
78 * @scan_el_group: [DRIVER] attribute group for those attributes not
79 * created from the iio_chan_info array.
80 * @pollq: [INTERN] wait queue to allow for polling on the buffer.
81 * @stufftoread: [INTERN] flag to indicate new data.
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +000082 * @demux_list: [INTERN] list of operations required to demux the scan.
83 * @demux_bounce: [INTERN] buffer for doing gather from incoming scan.
Jonathan Cameron84b36ce2012-06-30 20:06:00 +010084 * @buffer_list: [INTERN] entry in the devices list of current buffers.
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +010085 * @ref: [INTERN] reference count of the buffer.
Josselin Costanzi37d34552015-03-22 20:33:38 +020086 * @watermark: [INTERN] number of datums to wait for poll/read.
Jonathan Cameron84b36ce2012-06-30 20:06:00 +010087 */
Jonathan Cameron14555b12011-09-21 11:15:57 +010088struct iio_buffer {
Jonathan Cameron8d213f22011-05-18 14:42:34 +010089 int length;
90 int bytes_per_datum;
Jonathan Cameron8d213f22011-05-18 14:42:34 +010091 struct attribute_group *scan_el_attrs;
Jonathan Cameron32b5eec2011-09-02 17:14:38 +010092 long *scan_mask;
Jonathan Cameron8d213f22011-05-18 14:42:34 +010093 bool scan_timestamp;
Jonathan Cameron14555b12011-09-21 11:15:57 +010094 const struct iio_buffer_access_funcs *access;
Jonathan Cameron8d213f22011-05-18 14:42:34 +010095 struct list_head scan_el_dev_attr_list;
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +010096 struct attribute_group buffer_group;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +010097 struct attribute_group scan_el_group;
Jonathan Cameron8d213f22011-05-18 14:42:34 +010098 wait_queue_head_t pollq;
99 bool stufftoread;
Lars-Peter Clausen08e7e0a2014-11-26 18:55:15 +0100100 const struct attribute **attrs;
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000101 struct list_head demux_list;
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +0100102 void *demux_bounce;
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100103 struct list_head buffer_list;
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100104 struct kref ref;
Josselin Costanzi37d34552015-03-22 20:33:38 +0200105 unsigned int watermark;
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100106};
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100107
108/**
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100109 * iio_update_buffers() - add or remove buffer from active list
110 * @indio_dev: device to add buffer to
111 * @insert_buffer: buffer to insert
112 * @remove_buffer: buffer_to_remove
113 *
114 * Note this will tear down the all buffering and build it up again
115 */
116int iio_update_buffers(struct iio_dev *indio_dev,
117 struct iio_buffer *insert_buffer,
118 struct iio_buffer *remove_buffer);
119
120/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100121 * iio_buffer_init() - Initialize the buffer structure
Peter Meerwald3bdff932012-07-01 00:47:43 +0200122 * @buffer: buffer to be initialized
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100123 **/
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000124void iio_buffer_init(struct iio_buffer *buffer);
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100125
Jonathan Cameronf79a9092011-12-05 22:18:29 +0000126int iio_scan_mask_query(struct iio_dev *indio_dev,
127 struct iio_buffer *buffer, int bit);
Manuel Stahlbf329632010-08-31 11:32:52 +0200128
Jonathan Cameronc3e5d412010-09-04 17:54:45 +0100129/**
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100130 * iio_push_to_buffers() - push to a registered buffer.
131 * @indio_dev: iio_dev structure for device.
132 * @data: Full scan.
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000133 */
Lars-Peter Clausen5d65d922013-09-15 17:50:00 +0100134int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data);
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000135
Lars-Peter Clausend2c3d072013-09-19 13:59:00 +0100136/*
137 * iio_push_to_buffers_with_timestamp() - push data and timestamp to buffers
138 * @indio_dev: iio_dev structure for device.
139 * @data: sample data
140 * @timestamp: timestamp for the sample data
141 *
142 * Pushes data to the IIO device's buffers. If timestamps are enabled for the
143 * device the function will store the supplied timestamp as the last element in
144 * the sample data buffer before pushing it to the device buffers. The sample
145 * data buffer needs to be large enough to hold the additional timestamp
146 * (usually the buffer should be indio->scan_bytes bytes large).
147 *
148 * Returns 0 on success, a negative error code otherwise.
149 */
150static inline int iio_push_to_buffers_with_timestamp(struct iio_dev *indio_dev,
151 void *data, int64_t timestamp)
152{
153 if (indio_dev->scan_timestamp) {
154 size_t ts_offset = indio_dev->scan_bytes / sizeof(int64_t) - 1;
155 ((int64_t *)data)[ts_offset] = timestamp;
156 }
157
158 return iio_push_to_buffers(indio_dev, data);
159}
160
Jonathan Cameron5ada4ea2011-12-05 21:37:14 +0000161int iio_update_demux(struct iio_dev *indio_dev);
162
Lars-Peter Clausen81636632012-07-09 10:00:00 +0100163bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev,
164 const unsigned long *mask);
165
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100166struct iio_buffer *iio_buffer_get(struct iio_buffer *buffer);
167void iio_buffer_put(struct iio_buffer *buffer);
168
169/**
170 * iio_device_attach_buffer - Attach a buffer to a IIO device
171 * @indio_dev: The device the buffer should be attached to
172 * @buffer: The buffer to attach to the device
173 *
174 * This function attaches a buffer to a IIO device. The buffer stays attached to
175 * the device until the device is freed. The function should only be called at
176 * most once per device.
177 */
178static inline void iio_device_attach_buffer(struct iio_dev *indio_dev,
179 struct iio_buffer *buffer)
180{
181 indio_dev->buffer = iio_buffer_get(buffer);
182}
183
Jonathan Cameronf2a96242011-09-21 11:15:55 +0100184#else /* CONFIG_IIO_BUFFER */
Jonathan Cameron1d892712011-05-18 14:40:51 +0100185
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100186static inline void iio_buffer_get(struct iio_buffer *buffer) {}
187static inline void iio_buffer_put(struct iio_buffer *buffer) {}
188
Jonathan Cameronf2a96242011-09-21 11:15:55 +0100189#endif /* CONFIG_IIO_BUFFER */
Jonathan Cameron7026ea42009-08-18 18:06:24 +0100190
Jonathan Cameron3811cd62011-09-21 11:15:56 +0100191#endif /* _IIO_BUFFER_GENERIC_H_ */