blob: 4aed915e90608f21666b03651590660d1f13d436 [file] [log] [blame]
Jonathan Cameron7d438172011-08-12 17:47:53 +01001
Jonathan Cameron847ec802009-08-18 18:06:19 +01002/* The industrial I/O core
3 *
4 * Copyright (c) 2008 Jonathan Cameron
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 */
Jonathan Cameron847ec802009-08-18 18:06:19 +010010#ifndef _INDUSTRIAL_IO_H_
11#define _INDUSTRIAL_IO_H_
12
13#include <linux/device.h>
14#include <linux/cdev.h>
Jonathan Cameronaf5046a2011-10-26 17:41:32 +010015#include "types.h"
Jonathan Cameron847ec802009-08-18 18:06:19 +010016/* IIO TODO LIST */
Jonathan Cameron751a3702010-06-26 12:54:19 +010017/*
Jonathan Cameron847ec802009-08-18 18:06:19 +010018 * Provide means of adjusting timer accuracy.
19 * Currently assumes nano seconds.
20 */
21
Jonathan Cameron1e8dfcc2011-08-30 12:41:11 +010022enum iio_data_type {
23 IIO_RAW,
24 IIO_PROCESSED,
25};
26
Jonathan Cameron1d892712011-05-18 14:40:51 +010027/* Could add the raw attributes as well - allowing buffer only devices */
28enum iio_chan_info_enum {
Lars-Peter Clausen924f8a22011-10-26 17:41:35 +010029 /* 0 is reserverd for raw attributes */
Jonathan Cameronc8a9f802011-10-26 17:41:36 +010030 IIO_CHAN_INFO_SCALE = 1,
31 IIO_CHAN_INFO_OFFSET,
32 IIO_CHAN_INFO_CALIBSCALE,
33 IIO_CHAN_INFO_CALIBBIAS,
34 IIO_CHAN_INFO_PEAK,
35 IIO_CHAN_INFO_PEAK_SCALE,
36 IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW,
37 IIO_CHAN_INFO_AVERAGE_RAW,
Jonathan Camerondf94aba2011-11-27 11:39:12 +000038 IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY,
Jonathan Cameron1d892712011-05-18 14:40:51 +010039};
40
Jonathan Cameronc8a9f802011-10-26 17:41:36 +010041#define IIO_CHAN_INFO_SHARED_BIT(type) BIT(type*2)
42#define IIO_CHAN_INFO_SEPARATE_BIT(type) BIT(type*2 + 1)
43
44#define IIO_CHAN_INFO_SCALE_SEPARATE_BIT \
45 IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_SCALE)
46#define IIO_CHAN_INFO_SCALE_SHARED_BIT \
47 IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_SCALE)
48#define IIO_CHAN_INFO_OFFSET_SEPARATE_BIT \
49 IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_OFFSET)
50#define IIO_CHAN_INFO_OFFSET_SHARED_BIT \
51 IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_OFFSET)
52#define IIO_CHAN_INFO_CALIBSCALE_SEPARATE_BIT \
53 IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_CALIBSCALE)
54#define IIO_CHAN_INFO_CALIBSCALE_SHARED_BIT \
55 IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_CALIBSCALE)
56#define IIO_CHAN_INFO_CALIBBIAS_SEPARATE_BIT \
57 IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_CALIBBIAS)
58#define IIO_CHAN_INFO_CALIBBIAS_SHARED_BIT \
59 IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_CALIBBIAS)
60#define IIO_CHAN_INFO_PEAK_SEPARATE_BIT \
61 IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_PEAK)
62#define IIO_CHAN_INFO_PEAK_SHARED_BIT \
63 IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_PEAK)
64#define IIO_CHAN_INFO_PEAKSCALE_SEPARATE_BIT \
65 IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_PEAKSCALE)
66#define IIO_CHAN_INFO_PEAKSCALE_SHARED_BIT \
67 IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_PEAKSCALE)
68#define IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW_SEPARATE_BIT \
69 IIO_CHAN_INFO_SEPARATE_BIT( \
70 IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW)
71#define IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW_SHARED_BIT \
72 IIO_CHAN_INFO_SHARED_BIT( \
73 IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW)
74#define IIO_CHAN_INFO_AVERAGE_RAW_SEPARATE_BIT \
75 IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_AVERAGE_RAW)
76#define IIO_CHAN_INFO_AVERAGE_RAW_SHARED_BIT \
77 IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_AVERAGE_RAW)
Jonathan Camerondf94aba2011-11-27 11:39:12 +000078#define IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY_SHARED_BIT \
79 IIO_CHAN_INFO_SHARED_BIT( \
80 IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY)
81#define IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY_SEPARATE_BIT \
82 IIO_CHAN_INFO_SEPARATE_BIT( \
83 IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY)
Jonathan Cameronc8a9f802011-10-26 17:41:36 +010084
Jonathan Cameron8310b862011-09-02 17:14:36 +010085enum iio_endian {
86 IIO_CPU,
87 IIO_BE,
88 IIO_LE,
89};
90
Jonathan Cameron1d892712011-05-18 14:40:51 +010091/**
92 * struct iio_chan_spec - specification of a single channel
93 * @type: What type of measurement is the channel making.
94 * @channel: What number or name do we wish to asign the channel.
95 * @channel2: If there is a second number for a differential
96 * channel then this is it. If modified is set then the
97 * value here specifies the modifier.
98 * @address: Driver specific identifier.
99 * @scan_index: Monotonic index to give ordering in scans when read
100 * from a buffer.
101 * @scan_type: Sign: 's' or 'u' to specify signed or unsigned
102 * realbits: Number of valid bits of data
103 * storage_bits: Realbits + padding
104 * shift: Shift right by this before masking out
105 * realbits.
Jonathan Cameron8310b862011-09-02 17:14:36 +0100106 * endianness: little or big endian
Jonathan Cameron1d892712011-05-18 14:40:51 +0100107 * @info_mask: What information is to be exported about this channel.
108 * This includes calibbias, scale etc.
109 * @event_mask: What events can this channel produce.
110 * @extend_name: Allows labeling of channel attributes with an
111 * informative name. Note this has no effect codes etc,
112 * unlike modifiers.
113 * @processed_val: Flag to specify the data access attribute should be
114 * *_input rather than *_raw.
115 * @modified: Does a modifier apply to this channel. What these are
116 * depends on the channel type. Modifier is set in
117 * channel2. Examples are IIO_MOD_X for axial sensors about
118 * the 'x' axis.
119 * @indexed: Specify the channel has a numerical index. If not,
120 * the value in channel will be suppressed for attribute
121 * but not for event codes. Typically set it to 0 when
122 * the index is false.
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100123 * @differential: Channel is differential.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100124 */
125struct iio_chan_spec {
126 enum iio_chan_type type;
127 int channel;
128 int channel2;
129 unsigned long address;
130 int scan_index;
131 struct {
132 char sign;
133 u8 realbits;
134 u8 storagebits;
135 u8 shift;
Jonathan Cameron8310b862011-09-02 17:14:36 +0100136 enum iio_endian endianness;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100137 } scan_type;
Michael Hennerich1c5e6a32011-07-20 15:03:07 +0200138 long info_mask;
139 long event_mask;
140 char *extend_name;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100141 unsigned processed_val:1;
142 unsigned modified:1;
143 unsigned indexed:1;
Jonathan Cameronc6fc8062011-09-02 17:14:34 +0100144 unsigned output:1;
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100145 unsigned differential:1;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100146};
Jonathan Camerondf9c1c42011-08-12 17:56:03 +0100147
Jonathan Cameron1d892712011-05-18 14:40:51 +0100148#define IIO_ST(si, rb, sb, sh) \
149 { .sign = si, .realbits = rb, .storagebits = sb, .shift = sh }
150
Jonathan Cameronc6fc8062011-09-02 17:14:34 +0100151/* Macro assumes input channels */
152#define IIO_CHAN(_type, _mod, _indexed, _proc, _name, _chan, _chan2, \
Jonathan Cameronaaf370d2011-05-18 14:41:16 +0100153 _inf_mask, _address, _si, _stype, _event_mask) \
Jonathan Cameron1d892712011-05-18 14:40:51 +0100154 { .type = _type, \
Jonathan Cameronc6fc8062011-09-02 17:14:34 +0100155 .output = 0, \
Jonathan Cameron1d892712011-05-18 14:40:51 +0100156 .modified = _mod, \
157 .indexed = _indexed, \
158 .processed_val = _proc, \
159 .extend_name = _name, \
160 .channel = _chan, \
161 .channel2 = _chan2, \
162 .info_mask = _inf_mask, \
163 .address = _address, \
164 .scan_index = _si, \
165 .scan_type = _stype, \
Jonathan Cameronaaf370d2011-05-18 14:41:16 +0100166 .event_mask = _event_mask }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100167
168#define IIO_CHAN_SOFT_TIMESTAMP(_si) \
169 { .type = IIO_TIMESTAMP, .channel = -1, \
170 .scan_index = _si, .scan_type = IIO_ST('s', 64, 64, 0) }
171
Jonathan Cameron847ec802009-08-18 18:06:19 +0100172/**
173 * iio_get_time_ns() - utility function to get a time stamp for events etc
174 **/
175static inline s64 iio_get_time_ns(void)
176{
177 struct timespec ts;
178 /*
179 * calls getnstimeofday.
180 * If hrtimers then up to ns accurate, if not microsecond.
181 */
182 ktime_get_real_ts(&ts);
183
184 return timespec_to_ns(&ts);
185}
186
Jonathan Cameron847ec802009-08-18 18:06:19 +0100187/* Device operating modes */
188#define INDIO_DIRECT_MODE 0x01
Jonathan Cameronec3afa42011-09-21 11:15:54 +0100189#define INDIO_BUFFER_TRIGGERED 0x02
190#define INDIO_BUFFER_HARDWARE 0x08
Jonathan Cameron847ec802009-08-18 18:06:19 +0100191
Jonathan Cameronec3afa42011-09-21 11:15:54 +0100192#define INDIO_ALL_BUFFER_MODES \
193 (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100194
195/* Vast majority of this is set by the industrialio subsystem on a
196 * call to iio_device_register. */
Jonathan Cameron1d892712011-05-18 14:40:51 +0100197#define IIO_VAL_INT 1
198#define IIO_VAL_INT_PLUS_MICRO 2
Michael Hennerich71646e22011-06-27 13:07:07 +0100199#define IIO_VAL_INT_PLUS_NANO 3
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100200
Michael Hennerich43a43602011-06-27 13:07:09 +0100201struct iio_trigger; /* forward declaration */
Jonathan Cameron7ae8cf62011-08-30 12:32:44 +0100202struct iio_dev;
Michael Hennerich43a43602011-06-27 13:07:09 +0100203
Jonathan Cameron847ec802009-08-18 18:06:19 +0100204/**
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100205 * struct iio_info - constant information about device
206 * @driver_module: module structure used to ensure correct
Jonathan Cameron847ec802009-08-18 18:06:19 +0100207 * ownership of chrdevs etc
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100208 * @event_attrs: event control attributes
209 * @attrs: general purpose device attributes
210 * @read_raw: function to request a value from the device.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100211 * mask specifies which value. Note 0 means a reading of
212 * the channel in question. Return value will specify the
213 * type of value returned by the device. val and val2 will
214 * contain the elements making up the returned value.
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100215 * @write_raw: function to write a value to the device.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100216 * Parameters are the same as for read_raw.
Michael Hennerich5c04af02011-06-27 13:07:10 +0100217 * @write_raw_get_fmt: callback function to query the expected
218 * format/precision. If not set by the driver, write_raw
219 * returns IIO_VAL_INT_PLUS_MICRO.
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100220 * @read_event_config: find out if the event is enabled.
221 * @write_event_config: set if the event is enabled.
222 * @read_event_value: read a value associated with the event. Meaning
Jonathan Cameron1d892712011-05-18 14:40:51 +0100223 * is event dependant. event_code specifies which event.
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100224 * @write_event_value: write the value associate with the event.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100225 * Meaning is event dependent.
Michael Hennerich43a43602011-06-27 13:07:09 +0100226 * @validate_trigger: function to validate the trigger when the
227 * current trigger gets changed.
Jonathan Cameron847ec802009-08-18 18:06:19 +0100228 **/
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100229struct iio_info {
Jonathan Cameron847ec802009-08-18 18:06:19 +0100230 struct module *driver_module;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100231 struct attribute_group *event_attrs;
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100232 const struct attribute_group *attrs;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100233
Jonathan Cameron1d892712011-05-18 14:40:51 +0100234 int (*read_raw)(struct iio_dev *indio_dev,
235 struct iio_chan_spec const *chan,
236 int *val,
237 int *val2,
238 long mask);
239
240 int (*write_raw)(struct iio_dev *indio_dev,
241 struct iio_chan_spec const *chan,
242 int val,
243 int val2,
244 long mask);
245
Michael Hennerich5c04af02011-06-27 13:07:10 +0100246 int (*write_raw_get_fmt)(struct iio_dev *indio_dev,
247 struct iio_chan_spec const *chan,
248 long mask);
249
Jonathan Cameron1d892712011-05-18 14:40:51 +0100250 int (*read_event_config)(struct iio_dev *indio_dev,
Jonathan Cameron330c6c52011-09-02 17:14:39 +0100251 u64 event_code);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100252
253 int (*write_event_config)(struct iio_dev *indio_dev,
Jonathan Cameron330c6c52011-09-02 17:14:39 +0100254 u64 event_code,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100255 int state);
256
257 int (*read_event_value)(struct iio_dev *indio_dev,
Jonathan Cameron330c6c52011-09-02 17:14:39 +0100258 u64 event_code,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100259 int *val);
260 int (*write_event_value)(struct iio_dev *indio_dev,
Jonathan Cameron330c6c52011-09-02 17:14:39 +0100261 u64 event_code,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100262 int val);
Michael Hennerich43a43602011-06-27 13:07:09 +0100263 int (*validate_trigger)(struct iio_dev *indio_dev,
264 struct iio_trigger *trig);
265
Jonathan Cameron847ec802009-08-18 18:06:19 +0100266};
267
Jonathan Cameron847ec802009-08-18 18:06:19 +0100268/**
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100269 * struct iio_dev - industrial I/O device
270 * @id: [INTERN] used to identify device internally
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100271 * @modes: [DRIVER] operating modes supported by device
272 * @currentmode: [DRIVER] current operating mode
273 * @dev: [DRIVER] device structure, should be assigned a parent
274 * and owner
Jonathan Cameron5aa96182011-08-30 12:41:06 +0100275 * @event_interface: [INTERN] event chrdevs associated with interrupt lines
Jonathan Cameron14555b12011-09-21 11:15:57 +0100276 * @buffer: [DRIVER] any buffer present
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100277 * @mlock: [INTERN] lock used to prevent simultaneous device state
278 * changes
279 * @available_scan_masks: [DRIVER] optional array of allowed bitmasks
Jonathan Cameron32b5eec2011-09-02 17:14:38 +0100280 * @masklength: [INTERN] the length of the mask established from
281 * channels
Jonathan Cameron14555b12011-09-21 11:15:57 +0100282 * @trig: [INTERN] current device trigger (buffer modes)
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100283 * @pollfunc: [DRIVER] function run on trigger being received
284 * @channels: [DRIVER] channel specification structure table
285 * @num_channels: [DRIVER] number of chanels specified in @channels.
286 * @channel_attr_list: [INTERN] keep track of automatically created channel
Jonathan Cameron1a25e592011-08-30 12:41:12 +0100287 * attributes
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100288 * @chan_attr_group: [INTERN] group for all attrs in base directory
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100289 * @name: [DRIVER] name of the device.
Jonathan Cameron1a25e592011-08-30 12:41:12 +0100290 * @info: [DRIVER] callbacks and constant info from driver
291 * @chrdev: [INTERN] associated character device
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100292 * @groups: [INTERN] attribute groups
293 * @groupcounter: [INTERN] index of next attribute group
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100294 **/
295struct iio_dev {
296 int id;
Jonathan Cameron4024bc72011-08-12 17:08:53 +0100297
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100298 int modes;
299 int currentmode;
300 struct device dev;
301
Jonathan Cameron5aa96182011-08-30 12:41:06 +0100302 struct iio_event_interface *event_interface;
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100303
Jonathan Cameron14555b12011-09-21 11:15:57 +0100304 struct iio_buffer *buffer;
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100305 struct mutex mlock;
306
Jonathan Cameron32b5eec2011-09-02 17:14:38 +0100307 unsigned long *available_scan_masks;
308 unsigned masklength;
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100309 struct iio_trigger *trig;
310 struct iio_poll_func *pollfunc;
311
Jonathan Cameron1a25e592011-08-30 12:41:12 +0100312 struct iio_chan_spec const *channels;
313 int num_channels;
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100314
Jonathan Cameron1a25e592011-08-30 12:41:12 +0100315 struct list_head channel_attr_list;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100316 struct attribute_group chan_attr_group;
Jonathan Cameron1a25e592011-08-30 12:41:12 +0100317 const char *name;
318 const struct iio_info *info;
319 struct cdev chrdev;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100320#define IIO_MAX_GROUPS 6
321 const struct attribute_group *groups[IIO_MAX_GROUPS + 1];
322 int groupcounter;
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100323};
324
325/**
Jonathan Cameron847ec802009-08-18 18:06:19 +0100326 * iio_device_register() - register a device with the IIO subsystem
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100327 * @indio_dev: Device structure filled by the device driver
Jonathan Cameron847ec802009-08-18 18:06:19 +0100328 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100329int iio_device_register(struct iio_dev *indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100330
331/**
332 * iio_device_unregister() - unregister a device from the IIO subsystem
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100333 * @indio_dev: Device structure representing the device.
Jonathan Cameron847ec802009-08-18 18:06:19 +0100334 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100335void iio_device_unregister(struct iio_dev *indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100336
337/**
Jonathan Cameron847ec802009-08-18 18:06:19 +0100338 * iio_push_event() - try to add event to the list for userspace reading
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100339 * @indio_dev: IIO device structure
Jonathan Cameron847ec802009-08-18 18:06:19 +0100340 * @ev_code: What event
Randy Dunlap4c572602009-10-04 19:34:02 -0700341 * @timestamp: When the event occurred
Jonathan Cameron847ec802009-08-18 18:06:19 +0100342 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100343int iio_push_event(struct iio_dev *indio_dev, u64 ev_code, s64 timestamp);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100344
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100345extern struct bus_type iio_bus_type;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100346
347/**
Randy Dunlap4c572602009-10-04 19:34:02 -0700348 * iio_put_device() - reference counted deallocation of struct device
Jonathan Cameron847ec802009-08-18 18:06:19 +0100349 * @dev: the iio_device containing the device
350 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100351static inline void iio_put_device(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100352{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100353 if (indio_dev)
354 put_device(&indio_dev->dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100355};
356
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100357/* Can we make this smaller? */
358#define IIO_ALIGN L1_CACHE_BYTES
Jonathan Cameron847ec802009-08-18 18:06:19 +0100359/**
360 * iio_allocate_device() - allocate an iio_dev from a driver
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100361 * @sizeof_priv: Space to allocate for private structure.
Jonathan Cameron847ec802009-08-18 18:06:19 +0100362 **/
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100363struct iio_dev *iio_allocate_device(int sizeof_priv);
364
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100365static inline void *iio_priv(const struct iio_dev *indio_dev)
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100366{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100367 return (char *)indio_dev + ALIGN(sizeof(struct iio_dev), IIO_ALIGN);
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100368}
369
370static inline struct iio_dev *iio_priv_to_dev(void *priv)
371{
372 return (struct iio_dev *)((char *)priv -
373 ALIGN(sizeof(struct iio_dev), IIO_ALIGN));
374}
Jonathan Cameron847ec802009-08-18 18:06:19 +0100375
376/**
377 * iio_free_device() - free an iio_dev from a driver
Randy Dunlap4c572602009-10-04 19:34:02 -0700378 * @dev: the iio_dev associated with the device
Jonathan Cameron847ec802009-08-18 18:06:19 +0100379 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100380void iio_free_device(struct iio_dev *indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100381
382/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100383 * iio_buffer_enabled() - helper function to test if the buffer is enabled
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100384 * @indio_dev: IIO device info structure for device
Jonathan Cameron847ec802009-08-18 18:06:19 +0100385 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100386static inline bool iio_buffer_enabled(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100387{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100388 return indio_dev->currentmode
Jonathan Cameronec3afa42011-09-21 11:15:54 +0100389 & (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100390};
391
Jonathan Cameron847ec802009-08-18 18:06:19 +0100392#endif /* _INDUSTRIAL_IO_H_ */