blob: 9c0908a7046692ddf727c8ebadf343beaff2e94e [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 Cameron06458e22012-04-25 15:54:58 +010015#include <linux/iio/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 Cameron1d892712011-05-18 14:40:51 +010022enum iio_chan_info_enum {
Jonathan Cameron5ccb3ad2012-04-15 17:41:16 +010023 IIO_CHAN_INFO_RAW = 0,
24 IIO_CHAN_INFO_PROCESSED,
25 IIO_CHAN_INFO_SCALE,
Jonathan Cameronc8a9f802011-10-26 17:41:36 +010026 IIO_CHAN_INFO_OFFSET,
27 IIO_CHAN_INFO_CALIBSCALE,
28 IIO_CHAN_INFO_CALIBBIAS,
29 IIO_CHAN_INFO_PEAK,
30 IIO_CHAN_INFO_PEAK_SCALE,
31 IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW,
32 IIO_CHAN_INFO_AVERAGE_RAW,
Jonathan Camerondf94aba2011-11-27 11:39:12 +000033 IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY,
Laxman Dewangance85a1c2012-04-13 16:03:31 +053034 IIO_CHAN_INFO_SAMP_FREQ,
Jonathan Cameron1d892712011-05-18 14:40:51 +010035};
36
Jonathan Cameronc8a9f802011-10-26 17:41:36 +010037#define IIO_CHAN_INFO_SHARED_BIT(type) BIT(type*2)
38#define IIO_CHAN_INFO_SEPARATE_BIT(type) BIT(type*2 + 1)
39
Jonathan Cameron5ccb3ad2012-04-15 17:41:16 +010040#define IIO_CHAN_INFO_RAW_SEPARATE_BIT \
41 IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_RAW)
42#define IIO_CHAN_INFO_PROCESSED_SEPARATE_BIT \
43 IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_PROCESSED)
Jonathan Cameronc8a9f802011-10-26 17:41:36 +010044#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)
Laxman Dewangance85a1c2012-04-13 16:03:31 +053084#define IIO_CHAN_INFO_SAMP_FREQ_SEPARATE_BIT \
85 IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_SAMP_FREQ)
86#define IIO_CHAN_INFO_SAMP_FREQ_SHARED_BIT \
87 IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_SAMP_FREQ)
Jonathan Cameronc8a9f802011-10-26 17:41:36 +010088
Jonathan Cameron8310b862011-09-02 17:14:36 +010089enum iio_endian {
90 IIO_CPU,
91 IIO_BE,
92 IIO_LE,
93};
94
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +010095struct iio_chan_spec;
96struct iio_dev;
97
98/**
99 * struct iio_chan_spec_ext_info - Extended channel info attribute
100 * @name: Info attribute name
101 * @shared: Whether this attribute is shared between all channels.
102 * @read: Read callback for this info attribute, may be NULL.
103 * @write: Write callback for this info attribute, may be NULL.
104 */
105struct iio_chan_spec_ext_info {
106 const char *name;
107 bool shared;
108 ssize_t (*read)(struct iio_dev *, struct iio_chan_spec const *,
109 char *buf);
110 ssize_t (*write)(struct iio_dev *, struct iio_chan_spec const *,
111 const char *buf, size_t len);
112};
113
Jonathan Cameron1d892712011-05-18 14:40:51 +0100114/**
115 * struct iio_chan_spec - specification of a single channel
116 * @type: What type of measurement is the channel making.
Justin P. Mattock4abf6f82012-02-29 22:00:38 -0800117 * @channel: What number or name do we wish to assign the channel.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100118 * @channel2: If there is a second number for a differential
119 * channel then this is it. If modified is set then the
120 * value here specifies the modifier.
121 * @address: Driver specific identifier.
122 * @scan_index: Monotonic index to give ordering in scans when read
123 * from a buffer.
124 * @scan_type: Sign: 's' or 'u' to specify signed or unsigned
125 * realbits: Number of valid bits of data
126 * storage_bits: Realbits + padding
127 * shift: Shift right by this before masking out
128 * realbits.
Jonathan Cameron8310b862011-09-02 17:14:36 +0100129 * endianness: little or big endian
Jonathan Cameron1d892712011-05-18 14:40:51 +0100130 * @info_mask: What information is to be exported about this channel.
131 * This includes calibbias, scale etc.
132 * @event_mask: What events can this channel produce.
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100133 * @ext_info: Array of extended info attributes for this channel.
134 * The array is NULL terminated, the last element should
135 * have it's name field set to NULL.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100136 * @extend_name: Allows labeling of channel attributes with an
137 * informative name. Note this has no effect codes etc,
138 * unlike modifiers.
Jonathan Cameron6c63dde2011-12-05 21:56:00 +0000139 * @datasheet_name: A name used in in kernel mapping of channels. It should
Justin P. Mattock4abf6f82012-02-29 22:00:38 -0800140 * correspond to the first name that the channel is referred
Jonathan Cameron6c63dde2011-12-05 21:56:00 +0000141 * to by in the datasheet (e.g. IND), or the nearest
142 * possible compound name (e.g. IND-INC).
Jonathan Cameron1d892712011-05-18 14:40:51 +0100143 * @modified: Does a modifier apply to this channel. What these are
144 * depends on the channel type. Modifier is set in
145 * channel2. Examples are IIO_MOD_X for axial sensors about
146 * the 'x' axis.
147 * @indexed: Specify the channel has a numerical index. If not,
148 * the value in channel will be suppressed for attribute
149 * but not for event codes. Typically set it to 0 when
150 * the index is false.
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100151 * @differential: Channel is differential.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100152 */
153struct iio_chan_spec {
154 enum iio_chan_type type;
155 int channel;
156 int channel2;
157 unsigned long address;
158 int scan_index;
159 struct {
160 char sign;
161 u8 realbits;
162 u8 storagebits;
163 u8 shift;
Jonathan Cameron8310b862011-09-02 17:14:36 +0100164 enum iio_endian endianness;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100165 } scan_type;
Michael Hennerich1c5e6a32011-07-20 15:03:07 +0200166 long info_mask;
167 long event_mask;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100168 const struct iio_chan_spec_ext_info *ext_info;
Jonathan Cameron344692b2012-04-13 10:24:21 +0100169 const char *extend_name;
Jonathan Cameron6c63dde2011-12-05 21:56:00 +0000170 const char *datasheet_name;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100171 unsigned modified:1;
172 unsigned indexed:1;
Jonathan Cameronc6fc8062011-09-02 17:14:34 +0100173 unsigned output:1;
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100174 unsigned differential:1;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100175};
Jonathan Camerondf9c1c42011-08-12 17:56:03 +0100176
Jonathan Cameron1d892712011-05-18 14:40:51 +0100177#define IIO_ST(si, rb, sb, sh) \
178 { .sign = si, .realbits = rb, .storagebits = sb, .shift = sh }
179
Jonathan Cameron1d892712011-05-18 14:40:51 +0100180#define IIO_CHAN_SOFT_TIMESTAMP(_si) \
181 { .type = IIO_TIMESTAMP, .channel = -1, \
182 .scan_index = _si, .scan_type = IIO_ST('s', 64, 64, 0) }
183
Jonathan Cameron847ec802009-08-18 18:06:19 +0100184/**
185 * iio_get_time_ns() - utility function to get a time stamp for events etc
186 **/
187static inline s64 iio_get_time_ns(void)
188{
189 struct timespec ts;
190 /*
191 * calls getnstimeofday.
192 * If hrtimers then up to ns accurate, if not microsecond.
193 */
194 ktime_get_real_ts(&ts);
195
196 return timespec_to_ns(&ts);
197}
198
Jonathan Cameron847ec802009-08-18 18:06:19 +0100199/* Device operating modes */
200#define INDIO_DIRECT_MODE 0x01
Jonathan Cameronec3afa42011-09-21 11:15:54 +0100201#define INDIO_BUFFER_TRIGGERED 0x02
202#define INDIO_BUFFER_HARDWARE 0x08
Jonathan Cameron847ec802009-08-18 18:06:19 +0100203
Jonathan Cameronec3afa42011-09-21 11:15:54 +0100204#define INDIO_ALL_BUFFER_MODES \
205 (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100206
Michael Hennerich43a43602011-06-27 13:07:09 +0100207struct iio_trigger; /* forward declaration */
Jonathan Cameron7ae8cf62011-08-30 12:32:44 +0100208struct iio_dev;
Michael Hennerich43a43602011-06-27 13:07:09 +0100209
Jonathan Cameron847ec802009-08-18 18:06:19 +0100210/**
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100211 * struct iio_info - constant information about device
212 * @driver_module: module structure used to ensure correct
Jonathan Cameron847ec802009-08-18 18:06:19 +0100213 * ownership of chrdevs etc
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100214 * @event_attrs: event control attributes
215 * @attrs: general purpose device attributes
216 * @read_raw: function to request a value from the device.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100217 * mask specifies which value. Note 0 means a reading of
218 * the channel in question. Return value will specify the
219 * type of value returned by the device. val and val2 will
220 * contain the elements making up the returned value.
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100221 * @write_raw: function to write a value to the device.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100222 * Parameters are the same as for read_raw.
Michael Hennerich5c04af02011-06-27 13:07:10 +0100223 * @write_raw_get_fmt: callback function to query the expected
224 * format/precision. If not set by the driver, write_raw
225 * returns IIO_VAL_INT_PLUS_MICRO.
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100226 * @read_event_config: find out if the event is enabled.
227 * @write_event_config: set if the event is enabled.
228 * @read_event_value: read a value associated with the event. Meaning
Jonathan Cameron1d892712011-05-18 14:40:51 +0100229 * is event dependant. event_code specifies which event.
Justin P. Mattock4abf6f82012-02-29 22:00:38 -0800230 * @write_event_value: write the value associated with the event.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100231 * Meaning is event dependent.
Michael Hennerich43a43602011-06-27 13:07:09 +0100232 * @validate_trigger: function to validate the trigger when the
233 * current trigger gets changed.
Jonathan Cameron847ec802009-08-18 18:06:19 +0100234 **/
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100235struct iio_info {
Jonathan Cameron847ec802009-08-18 18:06:19 +0100236 struct module *driver_module;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100237 struct attribute_group *event_attrs;
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100238 const struct attribute_group *attrs;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100239
Jonathan Cameron1d892712011-05-18 14:40:51 +0100240 int (*read_raw)(struct iio_dev *indio_dev,
241 struct iio_chan_spec const *chan,
242 int *val,
243 int *val2,
244 long mask);
245
246 int (*write_raw)(struct iio_dev *indio_dev,
247 struct iio_chan_spec const *chan,
248 int val,
249 int val2,
250 long mask);
251
Michael Hennerich5c04af02011-06-27 13:07:10 +0100252 int (*write_raw_get_fmt)(struct iio_dev *indio_dev,
253 struct iio_chan_spec const *chan,
254 long mask);
255
Jonathan Cameron1d892712011-05-18 14:40:51 +0100256 int (*read_event_config)(struct iio_dev *indio_dev,
Jonathan Cameron330c6c52011-09-02 17:14:39 +0100257 u64 event_code);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100258
259 int (*write_event_config)(struct iio_dev *indio_dev,
Jonathan Cameron330c6c52011-09-02 17:14:39 +0100260 u64 event_code,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100261 int state);
262
263 int (*read_event_value)(struct iio_dev *indio_dev,
Jonathan Cameron330c6c52011-09-02 17:14:39 +0100264 u64 event_code,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100265 int *val);
266 int (*write_event_value)(struct iio_dev *indio_dev,
Jonathan Cameron330c6c52011-09-02 17:14:39 +0100267 u64 event_code,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100268 int val);
Michael Hennerich43a43602011-06-27 13:07:09 +0100269 int (*validate_trigger)(struct iio_dev *indio_dev,
270 struct iio_trigger *trig);
Jonathan Cameron4d5f8d32011-12-05 21:37:12 +0000271 int (*update_scan_mode)(struct iio_dev *indio_dev,
272 const unsigned long *scan_mask);
Michael Henneriche553f182012-03-01 10:51:03 +0100273 int (*debugfs_reg_access)(struct iio_dev *indio_dev,
274 unsigned reg, unsigned writeval,
275 unsigned *readval);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100276};
277
Jonathan Cameron847ec802009-08-18 18:06:19 +0100278/**
Jonathan Cameron16122442011-12-05 22:18:14 +0000279 * struct iio_buffer_setup_ops - buffer setup related callbacks
280 * @preenable: [DRIVER] function to run prior to marking buffer enabled
281 * @postenable: [DRIVER] function to run after marking buffer enabled
282 * @predisable: [DRIVER] function to run prior to marking buffer
283 * disabled
284 * @postdisable: [DRIVER] function to run after marking buffer disabled
285 */
286struct iio_buffer_setup_ops {
287 int (*preenable)(struct iio_dev *);
288 int (*postenable)(struct iio_dev *);
289 int (*predisable)(struct iio_dev *);
290 int (*postdisable)(struct iio_dev *);
291};
292
293/**
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100294 * struct iio_dev - industrial I/O device
295 * @id: [INTERN] used to identify device internally
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100296 * @modes: [DRIVER] operating modes supported by device
297 * @currentmode: [DRIVER] current operating mode
298 * @dev: [DRIVER] device structure, should be assigned a parent
299 * and owner
Jonathan Cameron5aa96182011-08-30 12:41:06 +0100300 * @event_interface: [INTERN] event chrdevs associated with interrupt lines
Jonathan Cameron14555b12011-09-21 11:15:57 +0100301 * @buffer: [DRIVER] any buffer present
Jonathan Cameron420fe2e2012-04-21 10:09:35 +0100302 * @scan_bytes: [INTERN] num bytes captured to be fed to buffer demux
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100303 * @mlock: [INTERN] lock used to prevent simultaneous device state
304 * changes
305 * @available_scan_masks: [DRIVER] optional array of allowed bitmasks
Jonathan Cameron32b5eec2011-09-02 17:14:38 +0100306 * @masklength: [INTERN] the length of the mask established from
307 * channels
Jonathan Cameron959d2952011-12-05 21:37:13 +0000308 * @active_scan_mask: [INTERN] union of all scan masks requested by buffers
Jonathan Cameronfd6487f2012-04-21 10:09:44 +0100309 * @scan_timestamp: [INTERN] set if any buffers have requested timestamp
Jonathan Cameronf1264802012-04-21 10:09:34 +0100310 * @scan_index_timestamp:[INTERN] cache of the index to the timestamp
Jonathan Cameron14555b12011-09-21 11:15:57 +0100311 * @trig: [INTERN] current device trigger (buffer modes)
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100312 * @pollfunc: [DRIVER] function run on trigger being received
313 * @channels: [DRIVER] channel specification structure table
314 * @num_channels: [DRIVER] number of chanels specified in @channels.
315 * @channel_attr_list: [INTERN] keep track of automatically created channel
Jonathan Cameron1a25e592011-08-30 12:41:12 +0100316 * attributes
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100317 * @chan_attr_group: [INTERN] group for all attrs in base directory
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100318 * @name: [DRIVER] name of the device.
Jonathan Cameron1a25e592011-08-30 12:41:12 +0100319 * @info: [DRIVER] callbacks and constant info from driver
Jonathan Cameronac917a82012-02-15 19:48:00 +0000320 * @info_exist_lock: [INTERN] lock to prevent use during removal
Jonathan Cameronecbf20c2012-04-10 21:11:06 +0100321 * @setup_ops: [DRIVER] callbacks to call before and after buffer
322 * enable/disable
Jonathan Cameron1a25e592011-08-30 12:41:12 +0100323 * @chrdev: [INTERN] associated character device
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100324 * @groups: [INTERN] attribute groups
325 * @groupcounter: [INTERN] index of next attribute group
Lars-Peter Clausenbb014432011-12-19 15:23:45 +0100326 * @flags: [INTERN] file ops related flags including busy flag.
Michael Henneriche553f182012-03-01 10:51:03 +0100327 * @debugfs_dentry: [INTERN] device specific debugfs dentry.
328 * @cached_reg_addr: [INTERN] cached register address for debugfs reads.
329 */
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100330struct iio_dev {
331 int id;
Jonathan Cameron4024bc72011-08-12 17:08:53 +0100332
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100333 int modes;
334 int currentmode;
335 struct device dev;
336
Jonathan Cameron5aa96182011-08-30 12:41:06 +0100337 struct iio_event_interface *event_interface;
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100338
Jonathan Cameron14555b12011-09-21 11:15:57 +0100339 struct iio_buffer *buffer;
Jonathan Cameron420fe2e2012-04-21 10:09:35 +0100340 int scan_bytes;
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100341 struct mutex mlock;
342
Michael Hennerichcd4361c2012-02-22 13:16:49 +0100343 const unsigned long *available_scan_masks;
Jonathan Cameron32b5eec2011-09-02 17:14:38 +0100344 unsigned masklength;
Michael Hennerichcd4361c2012-02-22 13:16:49 +0100345 const unsigned long *active_scan_mask;
Jonathan Cameronfd6487f2012-04-21 10:09:44 +0100346 bool scan_timestamp;
Jonathan Cameronf1264802012-04-21 10:09:34 +0100347 unsigned scan_index_timestamp;
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100348 struct iio_trigger *trig;
349 struct iio_poll_func *pollfunc;
350
Jonathan Cameron1a25e592011-08-30 12:41:12 +0100351 struct iio_chan_spec const *channels;
352 int num_channels;
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100353
Jonathan Cameron1a25e592011-08-30 12:41:12 +0100354 struct list_head channel_attr_list;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100355 struct attribute_group chan_attr_group;
Jonathan Cameron1a25e592011-08-30 12:41:12 +0100356 const char *name;
357 const struct iio_info *info;
Jonathan Cameronac917a82012-02-15 19:48:00 +0000358 struct mutex info_exist_lock;
Jonathan Cameron16122442011-12-05 22:18:14 +0000359 const struct iio_buffer_setup_ops *setup_ops;
Jonathan Cameron1a25e592011-08-30 12:41:12 +0100360 struct cdev chrdev;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100361#define IIO_MAX_GROUPS 6
362 const struct attribute_group *groups[IIO_MAX_GROUPS + 1];
363 int groupcounter;
Lars-Peter Clausenbb014432011-12-19 15:23:45 +0100364
365 unsigned long flags;
Michael Henneriche553f182012-03-01 10:51:03 +0100366#if defined(CONFIG_DEBUG_FS)
367 struct dentry *debugfs_dentry;
368 unsigned cached_reg_addr;
369#endif
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100370};
371
372/**
Jonathan Cameron5fb21c82011-12-05 21:37:10 +0000373 * iio_find_channel_from_si() - get channel from its scan index
374 * @indio_dev: device
375 * @si: scan index to match
376 */
377const struct iio_chan_spec
378*iio_find_channel_from_si(struct iio_dev *indio_dev, int si);
379
380/**
Jonathan Cameron847ec802009-08-18 18:06:19 +0100381 * iio_device_register() - register a device with the IIO subsystem
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100382 * @indio_dev: Device structure filled by the device driver
Jonathan Cameron847ec802009-08-18 18:06:19 +0100383 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100384int iio_device_register(struct iio_dev *indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100385
386/**
387 * iio_device_unregister() - unregister a device from the IIO subsystem
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100388 * @indio_dev: Device structure representing the device.
Jonathan Cameron847ec802009-08-18 18:06:19 +0100389 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100390void iio_device_unregister(struct iio_dev *indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100391
392/**
Jonathan Cameron847ec802009-08-18 18:06:19 +0100393 * iio_push_event() - try to add event to the list for userspace reading
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100394 * @indio_dev: IIO device structure
Jonathan Cameron847ec802009-08-18 18:06:19 +0100395 * @ev_code: What event
Randy Dunlap4c572602009-10-04 19:34:02 -0700396 * @timestamp: When the event occurred
Jonathan Cameron847ec802009-08-18 18:06:19 +0100397 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100398int iio_push_event(struct iio_dev *indio_dev, u64 ev_code, s64 timestamp);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100399
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100400extern struct bus_type iio_bus_type;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100401
402/**
Randy Dunlap4c572602009-10-04 19:34:02 -0700403 * iio_put_device() - reference counted deallocation of struct device
Jonathan Cameron847ec802009-08-18 18:06:19 +0100404 * @dev: the iio_device containing the device
405 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100406static inline void iio_put_device(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100407{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100408 if (indio_dev)
409 put_device(&indio_dev->dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100410};
411
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100412/* Can we make this smaller? */
413#define IIO_ALIGN L1_CACHE_BYTES
Jonathan Cameron847ec802009-08-18 18:06:19 +0100414/**
415 * iio_allocate_device() - allocate an iio_dev from a driver
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100416 * @sizeof_priv: Space to allocate for private structure.
Jonathan Cameron847ec802009-08-18 18:06:19 +0100417 **/
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100418struct iio_dev *iio_allocate_device(int sizeof_priv);
419
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100420static inline void *iio_priv(const struct iio_dev *indio_dev)
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100421{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100422 return (char *)indio_dev + ALIGN(sizeof(struct iio_dev), IIO_ALIGN);
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100423}
424
425static inline struct iio_dev *iio_priv_to_dev(void *priv)
426{
427 return (struct iio_dev *)((char *)priv -
428 ALIGN(sizeof(struct iio_dev), IIO_ALIGN));
429}
Jonathan Cameron847ec802009-08-18 18:06:19 +0100430
431/**
432 * iio_free_device() - free an iio_dev from a driver
Randy Dunlap4c572602009-10-04 19:34:02 -0700433 * @dev: the iio_dev associated with the device
Jonathan Cameron847ec802009-08-18 18:06:19 +0100434 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100435void iio_free_device(struct iio_dev *indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100436
437/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100438 * iio_buffer_enabled() - helper function to test if the buffer is enabled
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100439 * @indio_dev: IIO device info structure for device
Jonathan Cameron847ec802009-08-18 18:06:19 +0100440 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100441static inline bool iio_buffer_enabled(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100442{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100443 return indio_dev->currentmode
Jonathan Cameronec3afa42011-09-21 11:15:54 +0100444 & (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100445};
446
Michael Henneriche553f182012-03-01 10:51:03 +0100447/**
448 * iio_get_debugfs_dentry() - helper function to get the debugfs_dentry
449 * @indio_dev: IIO device info structure for device
450 **/
451#if defined(CONFIG_DEBUG_FS)
452static inline struct dentry *iio_get_debugfs_dentry(struct iio_dev *indio_dev)
453{
454 return indio_dev->debugfs_dentry;
455};
456#else
457static inline struct dentry *iio_get_debugfs_dentry(struct iio_dev *indio_dev)
458{
459 return NULL;
460};
461#endif
462
Jonathan Cameron847ec802009-08-18 18:06:19 +0100463#endif /* _INDUSTRIAL_IO_H_ */