Jonathan Cameron | 7d43817 | 2011-08-12 17:47:53 +0100 | [diff] [blame] | 1 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 2 | /* 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 Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 10 | #ifndef _INDUSTRIAL_IO_H_ |
| 11 | #define _INDUSTRIAL_IO_H_ |
| 12 | |
| 13 | #include <linux/device.h> |
| 14 | #include <linux/cdev.h> |
Jonathan Cameron | 06458e2 | 2012-04-25 15:54:58 +0100 | [diff] [blame] | 15 | #include <linux/iio/types.h> |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 16 | /* IIO TODO LIST */ |
Jonathan Cameron | 751a370 | 2010-06-26 12:54:19 +0100 | [diff] [blame] | 17 | /* |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 18 | * Provide means of adjusting timer accuracy. |
| 19 | * Currently assumes nano seconds. |
| 20 | */ |
| 21 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 22 | enum iio_chan_info_enum { |
Jonathan Cameron | 5ccb3ad | 2012-04-15 17:41:16 +0100 | [diff] [blame] | 23 | IIO_CHAN_INFO_RAW = 0, |
| 24 | IIO_CHAN_INFO_PROCESSED, |
| 25 | IIO_CHAN_INFO_SCALE, |
Jonathan Cameron | c8a9f80 | 2011-10-26 17:41:36 +0100 | [diff] [blame] | 26 | 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 Cameron | df94aba | 2011-11-27 11:39:12 +0000 | [diff] [blame] | 33 | IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY, |
Laxman Dewangan | ce85a1c | 2012-04-13 16:03:31 +0530 | [diff] [blame] | 34 | IIO_CHAN_INFO_SAMP_FREQ, |
Michael Hennerich | a6b1285 | 2012-04-27 10:58:34 +0200 | [diff] [blame] | 35 | IIO_CHAN_INFO_FREQUENCY, |
| 36 | IIO_CHAN_INFO_PHASE, |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 37 | }; |
| 38 | |
Jonathan Cameron | c8a9f80 | 2011-10-26 17:41:36 +0100 | [diff] [blame] | 39 | #define IIO_CHAN_INFO_SHARED_BIT(type) BIT(type*2) |
| 40 | #define IIO_CHAN_INFO_SEPARATE_BIT(type) BIT(type*2 + 1) |
| 41 | |
Jonathan Cameron | 5ccb3ad | 2012-04-15 17:41:16 +0100 | [diff] [blame] | 42 | #define IIO_CHAN_INFO_RAW_SEPARATE_BIT \ |
| 43 | IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_RAW) |
| 44 | #define IIO_CHAN_INFO_PROCESSED_SEPARATE_BIT \ |
| 45 | IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_PROCESSED) |
Jonathan Cameron | c8a9f80 | 2011-10-26 17:41:36 +0100 | [diff] [blame] | 46 | #define IIO_CHAN_INFO_SCALE_SEPARATE_BIT \ |
| 47 | IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_SCALE) |
| 48 | #define IIO_CHAN_INFO_SCALE_SHARED_BIT \ |
| 49 | IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_SCALE) |
| 50 | #define IIO_CHAN_INFO_OFFSET_SEPARATE_BIT \ |
| 51 | IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_OFFSET) |
| 52 | #define IIO_CHAN_INFO_OFFSET_SHARED_BIT \ |
| 53 | IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_OFFSET) |
| 54 | #define IIO_CHAN_INFO_CALIBSCALE_SEPARATE_BIT \ |
| 55 | IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_CALIBSCALE) |
| 56 | #define IIO_CHAN_INFO_CALIBSCALE_SHARED_BIT \ |
| 57 | IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_CALIBSCALE) |
| 58 | #define IIO_CHAN_INFO_CALIBBIAS_SEPARATE_BIT \ |
| 59 | IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_CALIBBIAS) |
| 60 | #define IIO_CHAN_INFO_CALIBBIAS_SHARED_BIT \ |
| 61 | IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_CALIBBIAS) |
| 62 | #define IIO_CHAN_INFO_PEAK_SEPARATE_BIT \ |
| 63 | IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_PEAK) |
| 64 | #define IIO_CHAN_INFO_PEAK_SHARED_BIT \ |
| 65 | IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_PEAK) |
| 66 | #define IIO_CHAN_INFO_PEAKSCALE_SEPARATE_BIT \ |
| 67 | IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_PEAKSCALE) |
| 68 | #define IIO_CHAN_INFO_PEAKSCALE_SHARED_BIT \ |
| 69 | IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_PEAKSCALE) |
| 70 | #define IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW_SEPARATE_BIT \ |
| 71 | IIO_CHAN_INFO_SEPARATE_BIT( \ |
| 72 | IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW) |
| 73 | #define IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW_SHARED_BIT \ |
| 74 | IIO_CHAN_INFO_SHARED_BIT( \ |
| 75 | IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW) |
| 76 | #define IIO_CHAN_INFO_AVERAGE_RAW_SEPARATE_BIT \ |
| 77 | IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_AVERAGE_RAW) |
| 78 | #define IIO_CHAN_INFO_AVERAGE_RAW_SHARED_BIT \ |
| 79 | IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_AVERAGE_RAW) |
Jonathan Cameron | df94aba | 2011-11-27 11:39:12 +0000 | [diff] [blame] | 80 | #define IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY_SHARED_BIT \ |
| 81 | IIO_CHAN_INFO_SHARED_BIT( \ |
| 82 | IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY) |
| 83 | #define IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY_SEPARATE_BIT \ |
| 84 | IIO_CHAN_INFO_SEPARATE_BIT( \ |
| 85 | IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY) |
Laxman Dewangan | ce85a1c | 2012-04-13 16:03:31 +0530 | [diff] [blame] | 86 | #define IIO_CHAN_INFO_SAMP_FREQ_SEPARATE_BIT \ |
| 87 | IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_SAMP_FREQ) |
| 88 | #define IIO_CHAN_INFO_SAMP_FREQ_SHARED_BIT \ |
| 89 | IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_SAMP_FREQ) |
Michael Hennerich | a6b1285 | 2012-04-27 10:58:34 +0200 | [diff] [blame] | 90 | #define IIO_CHAN_INFO_FREQUENCY_SEPARATE_BIT \ |
| 91 | IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_FREQUENCY) |
| 92 | #define IIO_CHAN_INFO_FREQUENCY_SHARED_BIT \ |
| 93 | IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_FREQUENCY) |
| 94 | #define IIO_CHAN_INFO_PHASE_SEPARATE_BIT \ |
| 95 | IIO_CHAN_INFO_SEPARATE_BIT(IIO_CHAN_INFO_PHASE) |
| 96 | #define IIO_CHAN_INFO_PHASE_SHARED_BIT \ |
| 97 | IIO_CHAN_INFO_SHARED_BIT(IIO_CHAN_INFO_PHASE) |
Jonathan Cameron | c8a9f80 | 2011-10-26 17:41:36 +0100 | [diff] [blame] | 98 | |
Jonathan Cameron | 8310b86 | 2011-09-02 17:14:36 +0100 | [diff] [blame] | 99 | enum iio_endian { |
| 100 | IIO_CPU, |
| 101 | IIO_BE, |
| 102 | IIO_LE, |
| 103 | }; |
| 104 | |
Lars-Peter Clausen | 5f420b4 | 2012-02-21 18:38:12 +0100 | [diff] [blame] | 105 | struct iio_chan_spec; |
| 106 | struct iio_dev; |
| 107 | |
| 108 | /** |
| 109 | * struct iio_chan_spec_ext_info - Extended channel info attribute |
| 110 | * @name: Info attribute name |
| 111 | * @shared: Whether this attribute is shared between all channels. |
| 112 | * @read: Read callback for this info attribute, may be NULL. |
| 113 | * @write: Write callback for this info attribute, may be NULL. |
Michael Hennerich | fc6d113 | 2012-04-27 10:58:36 +0200 | [diff] [blame^] | 114 | * @private: Data private to the driver. |
Lars-Peter Clausen | 5f420b4 | 2012-02-21 18:38:12 +0100 | [diff] [blame] | 115 | */ |
| 116 | struct iio_chan_spec_ext_info { |
| 117 | const char *name; |
| 118 | bool shared; |
Michael Hennerich | fc6d113 | 2012-04-27 10:58:36 +0200 | [diff] [blame^] | 119 | ssize_t (*read)(struct iio_dev *, uintptr_t private, |
| 120 | struct iio_chan_spec const *, char *buf); |
| 121 | ssize_t (*write)(struct iio_dev *, uintptr_t private, |
| 122 | struct iio_chan_spec const *, const char *buf, |
| 123 | size_t len); |
| 124 | uintptr_t private; |
Lars-Peter Clausen | 5f420b4 | 2012-02-21 18:38:12 +0100 | [diff] [blame] | 125 | }; |
| 126 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 127 | /** |
| 128 | * struct iio_chan_spec - specification of a single channel |
| 129 | * @type: What type of measurement is the channel making. |
Justin P. Mattock | 4abf6f8 | 2012-02-29 22:00:38 -0800 | [diff] [blame] | 130 | * @channel: What number or name do we wish to assign the channel. |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 131 | * @channel2: If there is a second number for a differential |
| 132 | * channel then this is it. If modified is set then the |
| 133 | * value here specifies the modifier. |
| 134 | * @address: Driver specific identifier. |
| 135 | * @scan_index: Monotonic index to give ordering in scans when read |
| 136 | * from a buffer. |
| 137 | * @scan_type: Sign: 's' or 'u' to specify signed or unsigned |
| 138 | * realbits: Number of valid bits of data |
| 139 | * storage_bits: Realbits + padding |
| 140 | * shift: Shift right by this before masking out |
| 141 | * realbits. |
Jonathan Cameron | 8310b86 | 2011-09-02 17:14:36 +0100 | [diff] [blame] | 142 | * endianness: little or big endian |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 143 | * @info_mask: What information is to be exported about this channel. |
| 144 | * This includes calibbias, scale etc. |
| 145 | * @event_mask: What events can this channel produce. |
Lars-Peter Clausen | 5f420b4 | 2012-02-21 18:38:12 +0100 | [diff] [blame] | 146 | * @ext_info: Array of extended info attributes for this channel. |
| 147 | * The array is NULL terminated, the last element should |
| 148 | * have it's name field set to NULL. |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 149 | * @extend_name: Allows labeling of channel attributes with an |
| 150 | * informative name. Note this has no effect codes etc, |
| 151 | * unlike modifiers. |
Jonathan Cameron | 6c63dde | 2011-12-05 21:56:00 +0000 | [diff] [blame] | 152 | * @datasheet_name: A name used in in kernel mapping of channels. It should |
Justin P. Mattock | 4abf6f8 | 2012-02-29 22:00:38 -0800 | [diff] [blame] | 153 | * correspond to the first name that the channel is referred |
Jonathan Cameron | 6c63dde | 2011-12-05 21:56:00 +0000 | [diff] [blame] | 154 | * to by in the datasheet (e.g. IND), or the nearest |
| 155 | * possible compound name (e.g. IND-INC). |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 156 | * @modified: Does a modifier apply to this channel. What these are |
| 157 | * depends on the channel type. Modifier is set in |
| 158 | * channel2. Examples are IIO_MOD_X for axial sensors about |
| 159 | * the 'x' axis. |
| 160 | * @indexed: Specify the channel has a numerical index. If not, |
| 161 | * the value in channel will be suppressed for attribute |
| 162 | * but not for event codes. Typically set it to 0 when |
| 163 | * the index is false. |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 164 | * @differential: Channel is differential. |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 165 | */ |
| 166 | struct iio_chan_spec { |
| 167 | enum iio_chan_type type; |
| 168 | int channel; |
| 169 | int channel2; |
| 170 | unsigned long address; |
| 171 | int scan_index; |
| 172 | struct { |
| 173 | char sign; |
| 174 | u8 realbits; |
| 175 | u8 storagebits; |
| 176 | u8 shift; |
Jonathan Cameron | 8310b86 | 2011-09-02 17:14:36 +0100 | [diff] [blame] | 177 | enum iio_endian endianness; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 178 | } scan_type; |
Michael Hennerich | 1c5e6a3 | 2011-07-20 15:03:07 +0200 | [diff] [blame] | 179 | long info_mask; |
| 180 | long event_mask; |
Lars-Peter Clausen | 5f420b4 | 2012-02-21 18:38:12 +0100 | [diff] [blame] | 181 | const struct iio_chan_spec_ext_info *ext_info; |
Jonathan Cameron | 344692b | 2012-04-13 10:24:21 +0100 | [diff] [blame] | 182 | const char *extend_name; |
Jonathan Cameron | 6c63dde | 2011-12-05 21:56:00 +0000 | [diff] [blame] | 183 | const char *datasheet_name; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 184 | unsigned modified:1; |
| 185 | unsigned indexed:1; |
Jonathan Cameron | c6fc806 | 2011-09-02 17:14:34 +0100 | [diff] [blame] | 186 | unsigned output:1; |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 187 | unsigned differential:1; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 188 | }; |
Jonathan Cameron | df9c1c4 | 2011-08-12 17:56:03 +0100 | [diff] [blame] | 189 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 190 | #define IIO_ST(si, rb, sb, sh) \ |
| 191 | { .sign = si, .realbits = rb, .storagebits = sb, .shift = sh } |
| 192 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 193 | #define IIO_CHAN_SOFT_TIMESTAMP(_si) \ |
| 194 | { .type = IIO_TIMESTAMP, .channel = -1, \ |
| 195 | .scan_index = _si, .scan_type = IIO_ST('s', 64, 64, 0) } |
| 196 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 197 | /** |
| 198 | * iio_get_time_ns() - utility function to get a time stamp for events etc |
| 199 | **/ |
| 200 | static inline s64 iio_get_time_ns(void) |
| 201 | { |
| 202 | struct timespec ts; |
| 203 | /* |
| 204 | * calls getnstimeofday. |
| 205 | * If hrtimers then up to ns accurate, if not microsecond. |
| 206 | */ |
| 207 | ktime_get_real_ts(&ts); |
| 208 | |
| 209 | return timespec_to_ns(&ts); |
| 210 | } |
| 211 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 212 | /* Device operating modes */ |
| 213 | #define INDIO_DIRECT_MODE 0x01 |
Jonathan Cameron | ec3afa4 | 2011-09-21 11:15:54 +0100 | [diff] [blame] | 214 | #define INDIO_BUFFER_TRIGGERED 0x02 |
| 215 | #define INDIO_BUFFER_HARDWARE 0x08 |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 216 | |
Jonathan Cameron | ec3afa4 | 2011-09-21 11:15:54 +0100 | [diff] [blame] | 217 | #define INDIO_ALL_BUFFER_MODES \ |
| 218 | (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 219 | |
Michael Hennerich | 43a4360 | 2011-06-27 13:07:09 +0100 | [diff] [blame] | 220 | struct iio_trigger; /* forward declaration */ |
Jonathan Cameron | 7ae8cf6 | 2011-08-30 12:32:44 +0100 | [diff] [blame] | 221 | struct iio_dev; |
Michael Hennerich | 43a4360 | 2011-06-27 13:07:09 +0100 | [diff] [blame] | 222 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 223 | /** |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 224 | * struct iio_info - constant information about device |
| 225 | * @driver_module: module structure used to ensure correct |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 226 | * ownership of chrdevs etc |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 227 | * @event_attrs: event control attributes |
| 228 | * @attrs: general purpose device attributes |
| 229 | * @read_raw: function to request a value from the device. |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 230 | * mask specifies which value. Note 0 means a reading of |
| 231 | * the channel in question. Return value will specify the |
| 232 | * type of value returned by the device. val and val2 will |
| 233 | * contain the elements making up the returned value. |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 234 | * @write_raw: function to write a value to the device. |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 235 | * Parameters are the same as for read_raw. |
Michael Hennerich | 5c04af0 | 2011-06-27 13:07:10 +0100 | [diff] [blame] | 236 | * @write_raw_get_fmt: callback function to query the expected |
| 237 | * format/precision. If not set by the driver, write_raw |
| 238 | * returns IIO_VAL_INT_PLUS_MICRO. |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 239 | * @read_event_config: find out if the event is enabled. |
| 240 | * @write_event_config: set if the event is enabled. |
| 241 | * @read_event_value: read a value associated with the event. Meaning |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 242 | * is event dependant. event_code specifies which event. |
Justin P. Mattock | 4abf6f8 | 2012-02-29 22:00:38 -0800 | [diff] [blame] | 243 | * @write_event_value: write the value associated with the event. |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 244 | * Meaning is event dependent. |
Michael Hennerich | 43a4360 | 2011-06-27 13:07:09 +0100 | [diff] [blame] | 245 | * @validate_trigger: function to validate the trigger when the |
| 246 | * current trigger gets changed. |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 247 | **/ |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 248 | struct iio_info { |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 249 | struct module *driver_module; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 250 | struct attribute_group *event_attrs; |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 251 | const struct attribute_group *attrs; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 252 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 253 | int (*read_raw)(struct iio_dev *indio_dev, |
| 254 | struct iio_chan_spec const *chan, |
| 255 | int *val, |
| 256 | int *val2, |
| 257 | long mask); |
| 258 | |
| 259 | int (*write_raw)(struct iio_dev *indio_dev, |
| 260 | struct iio_chan_spec const *chan, |
| 261 | int val, |
| 262 | int val2, |
| 263 | long mask); |
| 264 | |
Michael Hennerich | 5c04af0 | 2011-06-27 13:07:10 +0100 | [diff] [blame] | 265 | int (*write_raw_get_fmt)(struct iio_dev *indio_dev, |
| 266 | struct iio_chan_spec const *chan, |
| 267 | long mask); |
| 268 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 269 | int (*read_event_config)(struct iio_dev *indio_dev, |
Jonathan Cameron | 330c6c5 | 2011-09-02 17:14:39 +0100 | [diff] [blame] | 270 | u64 event_code); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 271 | |
| 272 | int (*write_event_config)(struct iio_dev *indio_dev, |
Jonathan Cameron | 330c6c5 | 2011-09-02 17:14:39 +0100 | [diff] [blame] | 273 | u64 event_code, |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 274 | int state); |
| 275 | |
| 276 | int (*read_event_value)(struct iio_dev *indio_dev, |
Jonathan Cameron | 330c6c5 | 2011-09-02 17:14:39 +0100 | [diff] [blame] | 277 | u64 event_code, |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 278 | int *val); |
| 279 | int (*write_event_value)(struct iio_dev *indio_dev, |
Jonathan Cameron | 330c6c5 | 2011-09-02 17:14:39 +0100 | [diff] [blame] | 280 | u64 event_code, |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 281 | int val); |
Michael Hennerich | 43a4360 | 2011-06-27 13:07:09 +0100 | [diff] [blame] | 282 | int (*validate_trigger)(struct iio_dev *indio_dev, |
| 283 | struct iio_trigger *trig); |
Jonathan Cameron | 4d5f8d3 | 2011-12-05 21:37:12 +0000 | [diff] [blame] | 284 | int (*update_scan_mode)(struct iio_dev *indio_dev, |
| 285 | const unsigned long *scan_mask); |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 286 | int (*debugfs_reg_access)(struct iio_dev *indio_dev, |
| 287 | unsigned reg, unsigned writeval, |
| 288 | unsigned *readval); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 289 | }; |
| 290 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 291 | /** |
Jonathan Cameron | 1612244 | 2011-12-05 22:18:14 +0000 | [diff] [blame] | 292 | * struct iio_buffer_setup_ops - buffer setup related callbacks |
| 293 | * @preenable: [DRIVER] function to run prior to marking buffer enabled |
| 294 | * @postenable: [DRIVER] function to run after marking buffer enabled |
| 295 | * @predisable: [DRIVER] function to run prior to marking buffer |
| 296 | * disabled |
| 297 | * @postdisable: [DRIVER] function to run after marking buffer disabled |
| 298 | */ |
| 299 | struct iio_buffer_setup_ops { |
| 300 | int (*preenable)(struct iio_dev *); |
| 301 | int (*postenable)(struct iio_dev *); |
| 302 | int (*predisable)(struct iio_dev *); |
| 303 | int (*postdisable)(struct iio_dev *); |
| 304 | }; |
| 305 | |
| 306 | /** |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 307 | * struct iio_dev - industrial I/O device |
| 308 | * @id: [INTERN] used to identify device internally |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 309 | * @modes: [DRIVER] operating modes supported by device |
| 310 | * @currentmode: [DRIVER] current operating mode |
| 311 | * @dev: [DRIVER] device structure, should be assigned a parent |
| 312 | * and owner |
Jonathan Cameron | 5aa9618 | 2011-08-30 12:41:06 +0100 | [diff] [blame] | 313 | * @event_interface: [INTERN] event chrdevs associated with interrupt lines |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 314 | * @buffer: [DRIVER] any buffer present |
Jonathan Cameron | 420fe2e | 2012-04-21 10:09:35 +0100 | [diff] [blame] | 315 | * @scan_bytes: [INTERN] num bytes captured to be fed to buffer demux |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 316 | * @mlock: [INTERN] lock used to prevent simultaneous device state |
| 317 | * changes |
| 318 | * @available_scan_masks: [DRIVER] optional array of allowed bitmasks |
Jonathan Cameron | 32b5eec | 2011-09-02 17:14:38 +0100 | [diff] [blame] | 319 | * @masklength: [INTERN] the length of the mask established from |
| 320 | * channels |
Jonathan Cameron | 959d295 | 2011-12-05 21:37:13 +0000 | [diff] [blame] | 321 | * @active_scan_mask: [INTERN] union of all scan masks requested by buffers |
Jonathan Cameron | fd6487f | 2012-04-21 10:09:44 +0100 | [diff] [blame] | 322 | * @scan_timestamp: [INTERN] set if any buffers have requested timestamp |
Jonathan Cameron | f126480 | 2012-04-21 10:09:34 +0100 | [diff] [blame] | 323 | * @scan_index_timestamp:[INTERN] cache of the index to the timestamp |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 324 | * @trig: [INTERN] current device trigger (buffer modes) |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 325 | * @pollfunc: [DRIVER] function run on trigger being received |
| 326 | * @channels: [DRIVER] channel specification structure table |
| 327 | * @num_channels: [DRIVER] number of chanels specified in @channels. |
| 328 | * @channel_attr_list: [INTERN] keep track of automatically created channel |
Jonathan Cameron | 1a25e59 | 2011-08-30 12:41:12 +0100 | [diff] [blame] | 329 | * attributes |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 330 | * @chan_attr_group: [INTERN] group for all attrs in base directory |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 331 | * @name: [DRIVER] name of the device. |
Jonathan Cameron | 1a25e59 | 2011-08-30 12:41:12 +0100 | [diff] [blame] | 332 | * @info: [DRIVER] callbacks and constant info from driver |
Jonathan Cameron | ac917a8 | 2012-02-15 19:48:00 +0000 | [diff] [blame] | 333 | * @info_exist_lock: [INTERN] lock to prevent use during removal |
Jonathan Cameron | ecbf20c | 2012-04-10 21:11:06 +0100 | [diff] [blame] | 334 | * @setup_ops: [DRIVER] callbacks to call before and after buffer |
| 335 | * enable/disable |
Jonathan Cameron | 1a25e59 | 2011-08-30 12:41:12 +0100 | [diff] [blame] | 336 | * @chrdev: [INTERN] associated character device |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 337 | * @groups: [INTERN] attribute groups |
| 338 | * @groupcounter: [INTERN] index of next attribute group |
Lars-Peter Clausen | bb01443 | 2011-12-19 15:23:45 +0100 | [diff] [blame] | 339 | * @flags: [INTERN] file ops related flags including busy flag. |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 340 | * @debugfs_dentry: [INTERN] device specific debugfs dentry. |
| 341 | * @cached_reg_addr: [INTERN] cached register address for debugfs reads. |
| 342 | */ |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 343 | struct iio_dev { |
| 344 | int id; |
Jonathan Cameron | 4024bc7 | 2011-08-12 17:08:53 +0100 | [diff] [blame] | 345 | |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 346 | int modes; |
| 347 | int currentmode; |
| 348 | struct device dev; |
| 349 | |
Jonathan Cameron | 5aa9618 | 2011-08-30 12:41:06 +0100 | [diff] [blame] | 350 | struct iio_event_interface *event_interface; |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 351 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 352 | struct iio_buffer *buffer; |
Jonathan Cameron | 420fe2e | 2012-04-21 10:09:35 +0100 | [diff] [blame] | 353 | int scan_bytes; |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 354 | struct mutex mlock; |
| 355 | |
Michael Hennerich | cd4361c | 2012-02-22 13:16:49 +0100 | [diff] [blame] | 356 | const unsigned long *available_scan_masks; |
Jonathan Cameron | 32b5eec | 2011-09-02 17:14:38 +0100 | [diff] [blame] | 357 | unsigned masklength; |
Michael Hennerich | cd4361c | 2012-02-22 13:16:49 +0100 | [diff] [blame] | 358 | const unsigned long *active_scan_mask; |
Jonathan Cameron | fd6487f | 2012-04-21 10:09:44 +0100 | [diff] [blame] | 359 | bool scan_timestamp; |
Jonathan Cameron | f126480 | 2012-04-21 10:09:34 +0100 | [diff] [blame] | 360 | unsigned scan_index_timestamp; |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 361 | struct iio_trigger *trig; |
| 362 | struct iio_poll_func *pollfunc; |
| 363 | |
Jonathan Cameron | 1a25e59 | 2011-08-30 12:41:12 +0100 | [diff] [blame] | 364 | struct iio_chan_spec const *channels; |
| 365 | int num_channels; |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 366 | |
Jonathan Cameron | 1a25e59 | 2011-08-30 12:41:12 +0100 | [diff] [blame] | 367 | struct list_head channel_attr_list; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 368 | struct attribute_group chan_attr_group; |
Jonathan Cameron | 1a25e59 | 2011-08-30 12:41:12 +0100 | [diff] [blame] | 369 | const char *name; |
| 370 | const struct iio_info *info; |
Jonathan Cameron | ac917a8 | 2012-02-15 19:48:00 +0000 | [diff] [blame] | 371 | struct mutex info_exist_lock; |
Jonathan Cameron | 1612244 | 2011-12-05 22:18:14 +0000 | [diff] [blame] | 372 | const struct iio_buffer_setup_ops *setup_ops; |
Jonathan Cameron | 1a25e59 | 2011-08-30 12:41:12 +0100 | [diff] [blame] | 373 | struct cdev chrdev; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 374 | #define IIO_MAX_GROUPS 6 |
| 375 | const struct attribute_group *groups[IIO_MAX_GROUPS + 1]; |
| 376 | int groupcounter; |
Lars-Peter Clausen | bb01443 | 2011-12-19 15:23:45 +0100 | [diff] [blame] | 377 | |
| 378 | unsigned long flags; |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 379 | #if defined(CONFIG_DEBUG_FS) |
| 380 | struct dentry *debugfs_dentry; |
| 381 | unsigned cached_reg_addr; |
| 382 | #endif |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 383 | }; |
| 384 | |
| 385 | /** |
Jonathan Cameron | 5fb21c8 | 2011-12-05 21:37:10 +0000 | [diff] [blame] | 386 | * iio_find_channel_from_si() - get channel from its scan index |
| 387 | * @indio_dev: device |
| 388 | * @si: scan index to match |
| 389 | */ |
| 390 | const struct iio_chan_spec |
| 391 | *iio_find_channel_from_si(struct iio_dev *indio_dev, int si); |
| 392 | |
| 393 | /** |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 394 | * iio_device_register() - register a device with the IIO subsystem |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 395 | * @indio_dev: Device structure filled by the device driver |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 396 | **/ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 397 | int iio_device_register(struct iio_dev *indio_dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 398 | |
| 399 | /** |
| 400 | * iio_device_unregister() - unregister a device from the IIO subsystem |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 401 | * @indio_dev: Device structure representing the device. |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 402 | **/ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 403 | void iio_device_unregister(struct iio_dev *indio_dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 404 | |
| 405 | /** |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 406 | * iio_push_event() - try to add event to the list for userspace reading |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 407 | * @indio_dev: IIO device structure |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 408 | * @ev_code: What event |
Randy Dunlap | 4c57260 | 2009-10-04 19:34:02 -0700 | [diff] [blame] | 409 | * @timestamp: When the event occurred |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 410 | **/ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 411 | int iio_push_event(struct iio_dev *indio_dev, u64 ev_code, s64 timestamp); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 412 | |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 413 | extern struct bus_type iio_bus_type; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 414 | |
| 415 | /** |
Lars-Peter Clausen | 7cbb753 | 2012-04-26 13:35:01 +0200 | [diff] [blame] | 416 | * iio_device_put() - reference counted deallocation of struct device |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 417 | * @dev: the iio_device containing the device |
| 418 | **/ |
Lars-Peter Clausen | 7cbb753 | 2012-04-26 13:35:01 +0200 | [diff] [blame] | 419 | static inline void iio_device_put(struct iio_dev *indio_dev) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 420 | { |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 421 | if (indio_dev) |
| 422 | put_device(&indio_dev->dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 423 | }; |
| 424 | |
Jonathan Cameron | 6f7c8ee | 2011-04-15 18:55:56 +0100 | [diff] [blame] | 425 | /* Can we make this smaller? */ |
| 426 | #define IIO_ALIGN L1_CACHE_BYTES |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 427 | /** |
Lars-Peter Clausen | 7cbb753 | 2012-04-26 13:35:01 +0200 | [diff] [blame] | 428 | * iio_device_alloc() - allocate an iio_dev from a driver |
Jonathan Cameron | 6f7c8ee | 2011-04-15 18:55:56 +0100 | [diff] [blame] | 429 | * @sizeof_priv: Space to allocate for private structure. |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 430 | **/ |
Lars-Peter Clausen | 7cbb753 | 2012-04-26 13:35:01 +0200 | [diff] [blame] | 431 | struct iio_dev *iio_device_alloc(int sizeof_priv); |
Jonathan Cameron | 6f7c8ee | 2011-04-15 18:55:56 +0100 | [diff] [blame] | 432 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 433 | static inline void *iio_priv(const struct iio_dev *indio_dev) |
Jonathan Cameron | 6f7c8ee | 2011-04-15 18:55:56 +0100 | [diff] [blame] | 434 | { |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 435 | return (char *)indio_dev + ALIGN(sizeof(struct iio_dev), IIO_ALIGN); |
Jonathan Cameron | 6f7c8ee | 2011-04-15 18:55:56 +0100 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | static inline struct iio_dev *iio_priv_to_dev(void *priv) |
| 439 | { |
| 440 | return (struct iio_dev *)((char *)priv - |
| 441 | ALIGN(sizeof(struct iio_dev), IIO_ALIGN)); |
| 442 | } |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 443 | |
| 444 | /** |
Lars-Peter Clausen | 7cbb753 | 2012-04-26 13:35:01 +0200 | [diff] [blame] | 445 | * iio_device_free() - free an iio_dev from a driver |
Randy Dunlap | 4c57260 | 2009-10-04 19:34:02 -0700 | [diff] [blame] | 446 | * @dev: the iio_dev associated with the device |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 447 | **/ |
Lars-Peter Clausen | 7cbb753 | 2012-04-26 13:35:01 +0200 | [diff] [blame] | 448 | void iio_device_free(struct iio_dev *indio_dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 449 | |
| 450 | /** |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 451 | * iio_buffer_enabled() - helper function to test if the buffer is enabled |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 452 | * @indio_dev: IIO device info structure for device |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 453 | **/ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 454 | static inline bool iio_buffer_enabled(struct iio_dev *indio_dev) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 455 | { |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 456 | return indio_dev->currentmode |
Jonathan Cameron | ec3afa4 | 2011-09-21 11:15:54 +0100 | [diff] [blame] | 457 | & (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 458 | }; |
| 459 | |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 460 | /** |
| 461 | * iio_get_debugfs_dentry() - helper function to get the debugfs_dentry |
| 462 | * @indio_dev: IIO device info structure for device |
| 463 | **/ |
| 464 | #if defined(CONFIG_DEBUG_FS) |
| 465 | static inline struct dentry *iio_get_debugfs_dentry(struct iio_dev *indio_dev) |
| 466 | { |
| 467 | return indio_dev->debugfs_dentry; |
| 468 | }; |
| 469 | #else |
| 470 | static inline struct dentry *iio_get_debugfs_dentry(struct iio_dev *indio_dev) |
| 471 | { |
| 472 | return NULL; |
| 473 | }; |
| 474 | #endif |
| 475 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 476 | #endif /* _INDUSTRIAL_IO_H_ */ |