Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 1 | /* The industrial I/O core - generic buffer interfaces. |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 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 | |
Jonathan Cameron | 3811cd6 | 2011-09-21 11:15:56 +0100 | [diff] [blame] | 10 | #ifndef _IIO_BUFFER_GENERIC_H_ |
| 11 | #define _IIO_BUFFER_GENERIC_H_ |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 12 | #include <linux/sysfs.h> |
Jonathan Cameron | 06458e2 | 2012-04-25 15:54:58 +0100 | [diff] [blame] | 13 | #include <linux/iio/iio.h> |
Lars-Peter Clausen | 9e69c93 | 2013-10-04 12:06:00 +0100 | [diff] [blame] | 14 | #include <linux/kref.h> |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 15 | |
Jonathan Cameron | f2a9624 | 2011-09-21 11:15:55 +0100 | [diff] [blame] | 16 | #ifdef CONFIG_IIO_BUFFER |
Jonathan Cameron | 2662051 | 2010-07-11 16:39:14 +0100 | [diff] [blame] | 17 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 18 | struct iio_buffer; |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 19 | |
| 20 | /** |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 21 | * struct iio_buffer_access_funcs - access functions for buffers. |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 22 | * @store_to: actually store stuff to the buffer |
Lars-Peter Clausen | 8fe6495 | 2011-12-12 09:33:14 +0100 | [diff] [blame] | 23 | * @read_first_n: try to get a specified number of bytes (must exist) |
Lars-Peter Clausen | 647cc7b | 2013-11-25 14:56:00 +0000 | [diff] [blame] | 24 | * @data_available: indicates whether data for reading from the buffer is |
| 25 | * available. |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 26 | * @request_update: if a parameter change has been marked, update underlying |
| 27 | * storage. |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 28 | * @get_bytes_per_datum:get current bytes per datum |
| 29 | * @set_bytes_per_datum:set number of bytes per datum |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 30 | * @get_length: get number of datums in buffer |
| 31 | * @set_length: set number of datums in buffer |
Lars-Peter Clausen | 9e69c93 | 2013-10-04 12:06:00 +0100 | [diff] [blame] | 32 | * @release: called when the last reference to the buffer is dropped, |
| 33 | * should free all resources allocated by the buffer. |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 34 | * |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 35 | * The purpose of this structure is to make the buffer element |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 36 | * modular as event for a given driver, different usecases may require |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 37 | * different buffer designs (space efficiency vs speed for example). |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 38 | * |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 39 | * 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 Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 42 | **/ |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 43 | struct iio_buffer_access_funcs { |
Lars-Peter Clausen | 5d65d92 | 2013-09-15 17:50:00 +0100 | [diff] [blame] | 44 | int (*store_to)(struct iio_buffer *buffer, const void *data); |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 45 | int (*read_first_n)(struct iio_buffer *buffer, |
Jonathan Cameron | b428173 | 2011-04-15 18:55:55 +0100 | [diff] [blame] | 46 | size_t n, |
Jonathan Cameron | b26a218 | 2011-05-18 14:41:02 +0100 | [diff] [blame] | 47 | char __user *buf); |
Lars-Peter Clausen | 647cc7b | 2013-11-25 14:56:00 +0000 | [diff] [blame] | 48 | bool (*data_available)(struct iio_buffer *buffer); |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 49 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 50 | int (*request_update)(struct iio_buffer *buffer); |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 51 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 52 | 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 Clausen | 9e69c93 | 2013-10-04 12:06:00 +0100 | [diff] [blame] | 56 | |
| 57 | void (*release)(struct iio_buffer *buffer); |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 58 | }; |
| 59 | |
Jonathan Cameron | 6446e9c | 2011-08-30 12:41:13 +0100 | [diff] [blame] | 60 | /** |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 61 | * struct iio_buffer - general buffer structure |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 62 | * @length: [DEVICE] number of datums in buffer |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 63 | * @bytes_per_datum: [DEVICE] size of individual datum including timestamp |
Manuel Stahl | bf32963 | 2010-08-31 11:32:52 +0200 | [diff] [blame] | 64 | * @scan_el_attrs: [DRIVER] control of scan elements if that scan mode |
| 65 | * control method is used |
Manuel Stahl | bf32963 | 2010-08-31 11:32:52 +0200 | [diff] [blame] | 66 | * @scan_mask: [INTERN] bitmask used in masking scan mode elements |
| 67 | * @scan_timestamp: [INTERN] does the scan mode include a timestamp |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 68 | * @access: [DRIVER] buffer access functions associated with the |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 69 | * implementation. |
Jonathan Cameron | 5f070a3 | 2011-12-05 22:18:30 +0000 | [diff] [blame] | 70 | * @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 Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 75 | * @demux_list: [INTERN] list of operations required to demux the scan. |
| 76 | * @demux_bounce: [INTERN] buffer for doing gather from incoming scan. |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 77 | * @buffer_list: [INTERN] entry in the devices list of current buffers. |
Lars-Peter Clausen | 9e69c93 | 2013-10-04 12:06:00 +0100 | [diff] [blame] | 78 | * @ref: [INTERN] reference count of the buffer. |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 79 | */ |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 80 | struct iio_buffer { |
Jonathan Cameron | 8d213f2 | 2011-05-18 14:42:34 +0100 | [diff] [blame] | 81 | int length; |
| 82 | int bytes_per_datum; |
Jonathan Cameron | 8d213f2 | 2011-05-18 14:42:34 +0100 | [diff] [blame] | 83 | struct attribute_group *scan_el_attrs; |
Jonathan Cameron | 32b5eec | 2011-09-02 17:14:38 +0100 | [diff] [blame] | 84 | long *scan_mask; |
Jonathan Cameron | 8d213f2 | 2011-05-18 14:42:34 +0100 | [diff] [blame] | 85 | bool scan_timestamp; |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 86 | const struct iio_buffer_access_funcs *access; |
Jonathan Cameron | 8d213f2 | 2011-05-18 14:42:34 +0100 | [diff] [blame] | 87 | struct list_head scan_el_dev_attr_list; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 88 | struct attribute_group scan_el_group; |
Jonathan Cameron | 8d213f2 | 2011-05-18 14:42:34 +0100 | [diff] [blame] | 89 | wait_queue_head_t pollq; |
| 90 | bool stufftoread; |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 91 | const struct attribute_group *attrs; |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 92 | struct list_head demux_list; |
Lars-Peter Clausen | 5d65d92 | 2013-09-15 17:50:00 +0100 | [diff] [blame] | 93 | void *demux_bounce; |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 94 | struct list_head buffer_list; |
Lars-Peter Clausen | 9e69c93 | 2013-10-04 12:06:00 +0100 | [diff] [blame] | 95 | struct kref ref; |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 96 | }; |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 97 | |
| 98 | /** |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 99 | * 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 | */ |
| 106 | int iio_update_buffers(struct iio_dev *indio_dev, |
| 107 | struct iio_buffer *insert_buffer, |
| 108 | struct iio_buffer *remove_buffer); |
| 109 | |
| 110 | /** |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 111 | * iio_buffer_init() - Initialize the buffer structure |
Peter Meerwald | 3bdff93 | 2012-07-01 00:47:43 +0200 | [diff] [blame] | 112 | * @buffer: buffer to be initialized |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 113 | **/ |
Jonathan Cameron | f79a909 | 2011-12-05 22:18:29 +0000 | [diff] [blame] | 114 | void iio_buffer_init(struct iio_buffer *buffer); |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 115 | |
Jonathan Cameron | f79a909 | 2011-12-05 22:18:29 +0000 | [diff] [blame] | 116 | int iio_scan_mask_query(struct iio_dev *indio_dev, |
| 117 | struct iio_buffer *buffer, int bit); |
Manuel Stahl | bf32963 | 2010-08-31 11:32:52 +0200 | [diff] [blame] | 118 | |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 119 | /** |
| 120 | * iio_scan_mask_set() - set particular bit in the scan mask |
Peter Meerwald | 3bdff93 | 2012-07-01 00:47:43 +0200 | [diff] [blame] | 121 | * @indio_dev IIO device structure |
| 122 | * @buffer: the buffer whose scan mask we are interested in |
| 123 | * @bit: the bit to be set. |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 124 | **/ |
Jonathan Cameron | f79a909 | 2011-12-05 22:18:29 +0000 | [diff] [blame] | 125 | int iio_scan_mask_set(struct iio_dev *indio_dev, |
| 126 | struct iio_buffer *buffer, int bit); |
Manuel Stahl | bf32963 | 2010-08-31 11:32:52 +0200 | [diff] [blame] | 127 | |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 128 | /** |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 129 | * iio_push_to_buffers() - push to a registered buffer. |
| 130 | * @indio_dev: iio_dev structure for device. |
| 131 | * @data: Full scan. |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 132 | */ |
Lars-Peter Clausen | 5d65d92 | 2013-09-15 17:50:00 +0100 | [diff] [blame] | 133 | int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data); |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 134 | |
Lars-Peter Clausen | d2c3d07 | 2013-09-19 13:59:00 +0100 | [diff] [blame] | 135 | /* |
| 136 | * iio_push_to_buffers_with_timestamp() - push data and timestamp to buffers |
| 137 | * @indio_dev: iio_dev structure for device. |
| 138 | * @data: sample data |
| 139 | * @timestamp: timestamp for the sample data |
| 140 | * |
| 141 | * Pushes data to the IIO device's buffers. If timestamps are enabled for the |
| 142 | * device the function will store the supplied timestamp as the last element in |
| 143 | * the sample data buffer before pushing it to the device buffers. The sample |
| 144 | * data buffer needs to be large enough to hold the additional timestamp |
| 145 | * (usually the buffer should be indio->scan_bytes bytes large). |
| 146 | * |
| 147 | * Returns 0 on success, a negative error code otherwise. |
| 148 | */ |
| 149 | static inline int iio_push_to_buffers_with_timestamp(struct iio_dev *indio_dev, |
| 150 | void *data, int64_t timestamp) |
| 151 | { |
| 152 | if (indio_dev->scan_timestamp) { |
| 153 | size_t ts_offset = indio_dev->scan_bytes / sizeof(int64_t) - 1; |
| 154 | ((int64_t *)data)[ts_offset] = timestamp; |
| 155 | } |
| 156 | |
| 157 | return iio_push_to_buffers(indio_dev, data); |
| 158 | } |
| 159 | |
Jonathan Cameron | 5ada4ea | 2011-12-05 21:37:14 +0000 | [diff] [blame] | 160 | int iio_update_demux(struct iio_dev *indio_dev); |
| 161 | |
| 162 | /** |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 163 | * iio_buffer_register() - register the buffer with IIO core |
Peter Meerwald | 3bdff93 | 2012-07-01 00:47:43 +0200 | [diff] [blame] | 164 | * @indio_dev: device with the buffer to be registered |
| 165 | * @channels: the channel descriptions used to construct buffer |
| 166 | * @num_channels: the number of channels |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 167 | **/ |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 168 | int iio_buffer_register(struct iio_dev *indio_dev, |
| 169 | const struct iio_chan_spec *channels, |
| 170 | int num_channels); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 171 | |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 172 | /** |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 173 | * iio_buffer_unregister() - unregister the buffer from IIO core |
Peter Meerwald | 3bdff93 | 2012-07-01 00:47:43 +0200 | [diff] [blame] | 174 | * @indio_dev: the device with the buffer to be unregistered |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 175 | **/ |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 176 | void iio_buffer_unregister(struct iio_dev *indio_dev); |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 177 | |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 178 | /** |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 179 | * iio_buffer_read_length() - attr func to get number of datums in the buffer |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 180 | **/ |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 181 | ssize_t iio_buffer_read_length(struct device *dev, |
| 182 | struct device_attribute *attr, |
| 183 | char *buf); |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 184 | /** |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 185 | * iio_buffer_write_length() - attr func to set number of datums in the buffer |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 186 | **/ |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 187 | ssize_t iio_buffer_write_length(struct device *dev, |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 188 | struct device_attribute *attr, |
| 189 | const char *buf, |
| 190 | size_t len); |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 191 | /** |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 192 | * iio_buffer_store_enable() - attr to turn the buffer on |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 193 | **/ |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 194 | ssize_t iio_buffer_store_enable(struct device *dev, |
| 195 | struct device_attribute *attr, |
| 196 | const char *buf, |
| 197 | size_t len); |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 198 | /** |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 199 | * iio_buffer_show_enable() - attr to see if the buffer is on |
Jonathan Cameron | c3e5d41 | 2010-09-04 17:54:45 +0100 | [diff] [blame] | 200 | **/ |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 201 | ssize_t iio_buffer_show_enable(struct device *dev, |
| 202 | struct device_attribute *attr, |
| 203 | char *buf); |
| 204 | #define IIO_BUFFER_LENGTH_ATTR DEVICE_ATTR(length, S_IRUGO | S_IWUSR, \ |
| 205 | iio_buffer_read_length, \ |
| 206 | iio_buffer_write_length) |
Jonathan Cameron | 5565a45 | 2011-05-18 14:42:24 +0100 | [diff] [blame] | 207 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 208 | #define IIO_BUFFER_ENABLE_ATTR DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, \ |
| 209 | iio_buffer_show_enable, \ |
| 210 | iio_buffer_store_enable) |
| 211 | |
Lars-Peter Clausen | 8163663 | 2012-07-09 10:00:00 +0100 | [diff] [blame] | 212 | bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev, |
| 213 | const unsigned long *mask); |
| 214 | |
Lars-Peter Clausen | 9e69c93 | 2013-10-04 12:06:00 +0100 | [diff] [blame] | 215 | struct iio_buffer *iio_buffer_get(struct iio_buffer *buffer); |
| 216 | void iio_buffer_put(struct iio_buffer *buffer); |
| 217 | |
| 218 | /** |
| 219 | * iio_device_attach_buffer - Attach a buffer to a IIO device |
| 220 | * @indio_dev: The device the buffer should be attached to |
| 221 | * @buffer: The buffer to attach to the device |
| 222 | * |
| 223 | * This function attaches a buffer to a IIO device. The buffer stays attached to |
| 224 | * the device until the device is freed. The function should only be called at |
| 225 | * most once per device. |
| 226 | */ |
| 227 | static inline void iio_device_attach_buffer(struct iio_dev *indio_dev, |
| 228 | struct iio_buffer *buffer) |
| 229 | { |
| 230 | indio_dev->buffer = iio_buffer_get(buffer); |
| 231 | } |
| 232 | |
Jonathan Cameron | f2a9624 | 2011-09-21 11:15:55 +0100 | [diff] [blame] | 233 | #else /* CONFIG_IIO_BUFFER */ |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 234 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 235 | static inline int iio_buffer_register(struct iio_dev *indio_dev, |
Lars-Peter Clausen | 50d69b5 | 2012-11-13 11:48:00 +0000 | [diff] [blame] | 236 | const struct iio_chan_spec *channels, |
Jonathan Cameron | c009f7e | 2011-08-30 12:41:14 +0100 | [diff] [blame] | 237 | int num_channels) |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 238 | { |
| 239 | return 0; |
| 240 | } |
| 241 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 242 | static inline void iio_buffer_unregister(struct iio_dev *indio_dev) |
Peter Meerwald | 19ea4752 | 2012-06-18 20:33:03 +0200 | [diff] [blame] | 243 | {} |
Jonathan Cameron | 2662051 | 2010-07-11 16:39:14 +0100 | [diff] [blame] | 244 | |
Lars-Peter Clausen | 9e69c93 | 2013-10-04 12:06:00 +0100 | [diff] [blame] | 245 | static inline void iio_buffer_get(struct iio_buffer *buffer) {} |
| 246 | static inline void iio_buffer_put(struct iio_buffer *buffer) {} |
| 247 | |
Jonathan Cameron | f2a9624 | 2011-09-21 11:15:55 +0100 | [diff] [blame] | 248 | #endif /* CONFIG_IIO_BUFFER */ |
Jonathan Cameron | 7026ea4 | 2009-08-18 18:06:24 +0100 | [diff] [blame] | 249 | |
Jonathan Cameron | 3811cd6 | 2011-09-21 11:15:56 +0100 | [diff] [blame] | 250 | #endif /* _IIO_BUFFER_GENERIC_H_ */ |