Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
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 | * |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 6 | * Based on elements of hwmon and input subsystems. |
| 7 | */ |
| 8 | |
Sachin Kamat | 3176dd5 | 2013-10-24 12:53:00 +0100 | [diff] [blame] | 9 | #define pr_fmt(fmt) "iio-core: " fmt |
| 10 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 11 | #include <linux/kernel.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/idr.h> |
| 14 | #include <linux/kdev_t.h> |
| 15 | #include <linux/err.h> |
| 16 | #include <linux/device.h> |
| 17 | #include <linux/fs.h> |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 18 | #include <linux/poll.h> |
Andy Shevchenko | fb15897 | 2019-02-21 18:02:46 +0100 | [diff] [blame] | 19 | #include <linux/property.h> |
Jonathan Cameron | ffc18af | 2009-10-12 19:18:09 +0100 | [diff] [blame] | 20 | #include <linux/sched.h> |
Jeff Mahoney | 4439c93 | 2009-10-12 17:10:34 -0400 | [diff] [blame] | 21 | #include <linux/wait.h> |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 22 | #include <linux/cdev.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 23 | #include <linux/slab.h> |
Jonathan Cameron | 8e7d967 | 2011-08-30 12:32:45 +0100 | [diff] [blame] | 24 | #include <linux/anon_inodes.h> |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 25 | #include <linux/debugfs.h> |
Alison Schofield | 08a3380 | 2016-03-09 11:30:12 -0800 | [diff] [blame] | 26 | #include <linux/mutex.h> |
Jonathan Cameron | 06458e2 | 2012-04-25 15:54:58 +0100 | [diff] [blame] | 27 | #include <linux/iio/iio.h> |
Jonathan Cameron | df9c1c4 | 2011-08-12 17:56:03 +0100 | [diff] [blame] | 28 | #include "iio_core.h" |
Jonathan Cameron | 6aea1c3 | 2011-08-24 17:28:38 +0100 | [diff] [blame] | 29 | #include "iio_core_trigger.h" |
Jonathan Cameron | 06458e2 | 2012-04-25 15:54:58 +0100 | [diff] [blame] | 30 | #include <linux/iio/sysfs.h> |
| 31 | #include <linux/iio/events.h> |
Lars-Peter Clausen | 9e69c93 | 2013-10-04 12:06:00 +0100 | [diff] [blame] | 32 | #include <linux/iio/buffer.h> |
Jonathan Cameron | 33dd94c | 2017-01-02 19:28:34 +0000 | [diff] [blame] | 33 | #include <linux/iio/buffer_impl.h> |
Jonathan Cameron | 9dd1cb3 | 2011-08-30 12:41:15 +0100 | [diff] [blame] | 34 | |
Peter Meerwald | 99698b4 | 2012-08-26 13:43:00 +0100 | [diff] [blame] | 35 | /* IDA to assign each registered device a unique id */ |
Jonathan Cameron | b156cf7 | 2010-09-04 17:54:43 +0100 | [diff] [blame] | 36 | static DEFINE_IDA(iio_ida); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 37 | |
Jonathan Cameron | f625cb9 | 2011-08-30 12:32:48 +0100 | [diff] [blame] | 38 | static dev_t iio_devt; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 39 | |
| 40 | #define IIO_DEV_MAX 256 |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 41 | struct bus_type iio_bus_type = { |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 42 | .name = "iio", |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 43 | }; |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 44 | EXPORT_SYMBOL(iio_bus_type); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 45 | |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 46 | static struct dentry *iio_debugfs_dentry; |
| 47 | |
Jonathan Cameron | c6fc806 | 2011-09-02 17:14:34 +0100 | [diff] [blame] | 48 | static const char * const iio_direction[] = { |
| 49 | [0] = "in", |
| 50 | [1] = "out", |
| 51 | }; |
| 52 | |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 53 | static const char * const iio_chan_type_name_spec[] = { |
Jonathan Cameron | c6fc806 | 2011-09-02 17:14:34 +0100 | [diff] [blame] | 54 | [IIO_VOLTAGE] = "voltage", |
Michael Hennerich | faf290e | 2011-05-18 14:42:02 +0100 | [diff] [blame] | 55 | [IIO_CURRENT] = "current", |
| 56 | [IIO_POWER] = "power", |
Bryan Freed | 9bff02f | 2011-07-07 12:01:54 -0700 | [diff] [blame] | 57 | [IIO_ACCEL] = "accel", |
Jonathan Cameron | 41ea040 | 2011-10-05 15:27:59 +0100 | [diff] [blame] | 58 | [IIO_ANGL_VEL] = "anglvel", |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 59 | [IIO_MAGN] = "magn", |
Bryan Freed | 9bff02f | 2011-07-07 12:01:54 -0700 | [diff] [blame] | 60 | [IIO_LIGHT] = "illuminance", |
| 61 | [IIO_INTENSITY] = "intensity", |
Bryan Freed | f09f2c8 | 2011-07-07 12:01:55 -0700 | [diff] [blame] | 62 | [IIO_PROXIMITY] = "proximity", |
Bryan Freed | 9bff02f | 2011-07-07 12:01:54 -0700 | [diff] [blame] | 63 | [IIO_TEMP] = "temp", |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 64 | [IIO_INCLI] = "incli", |
| 65 | [IIO_ROT] = "rot", |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 66 | [IIO_ANGL] = "angl", |
Bryan Freed | 9bff02f | 2011-07-07 12:01:54 -0700 | [diff] [blame] | 67 | [IIO_TIMESTAMP] = "timestamp", |
Jonathan Cameron | 66dbe70 | 2011-09-02 17:14:43 +0100 | [diff] [blame] | 68 | [IIO_CAPACITANCE] = "capacitance", |
Michael Hennerich | a6b1285 | 2012-04-27 10:58:34 +0200 | [diff] [blame] | 69 | [IIO_ALTVOLTAGE] = "altvoltage", |
Jon Brenner | 21cd1fa | 2012-05-16 10:46:42 -0500 | [diff] [blame] | 70 | [IIO_CCT] = "cct", |
Lars-Peter Clausen | c4f0c69 | 2012-11-20 13:36:00 +0000 | [diff] [blame] | 71 | [IIO_PRESSURE] = "pressure", |
Harald Geyer | ac216aa | 2013-12-01 15:08:00 +0000 | [diff] [blame] | 72 | [IIO_HUMIDITYRELATIVE] = "humidityrelative", |
Daniel Baluta | 55aebeb | 2014-11-10 14:45:30 +0200 | [diff] [blame] | 73 | [IIO_ACTIVITY] = "activity", |
Irina Tirdea | a88bfe7 | 2014-11-10 14:45:32 +0200 | [diff] [blame] | 74 | [IIO_STEPS] = "steps", |
Irina Tirdea | 72c6664 | 2015-01-11 21:10:07 +0200 | [diff] [blame] | 75 | [IIO_ENERGY] = "energy", |
Irina Tirdea | cc3c9ee | 2015-01-11 21:10:08 +0200 | [diff] [blame] | 76 | [IIO_DISTANCE] = "distance", |
Irina Tirdea | 5a1a932 | 2015-01-11 21:10:09 +0200 | [diff] [blame] | 77 | [IIO_VELOCITY] = "velocity", |
Matt Ranostay | 8ff6b3b | 2015-09-13 20:26:11 -0700 | [diff] [blame] | 78 | [IIO_CONCENTRATION] = "concentration", |
Matt Ranostay | d38d546 | 2015-09-13 20:26:12 -0700 | [diff] [blame] | 79 | [IIO_RESISTANCE] = "resistance", |
Matt Ranostay | ecb3a7c | 2016-01-26 18:34:30 -0800 | [diff] [blame] | 80 | [IIO_PH] = "ph", |
Peter Meerwald-Stadler | d409404 | 2016-03-20 16:20:23 +0100 | [diff] [blame] | 81 | [IIO_UVINDEX] = "uvindex", |
Matt Ranostay | 4b9d209 | 2016-05-24 21:29:19 -0700 | [diff] [blame] | 82 | [IIO_ELECTRICALCONDUCTIVITY] = "electricalconductivity", |
William Breathitt Gray | 1a8f324 | 2016-09-28 13:59:49 -0400 | [diff] [blame] | 83 | [IIO_COUNT] = "count", |
| 84 | [IIO_INDEX] = "index", |
Song Hongyan | 571299d | 2017-01-05 18:24:03 +0800 | [diff] [blame] | 85 | [IIO_GRAVITY] = "gravity", |
Eugen Hristev | 3055a6c | 2018-05-22 10:52:32 +0300 | [diff] [blame] | 86 | [IIO_POSITIONRELATIVE] = "positionrelative", |
Mathieu Othacehe | c73314e | 2018-07-20 19:34:25 +0200 | [diff] [blame] | 87 | [IIO_PHASE] = "phase", |
Tomasz Duszynski | 17abc9e | 2018-12-14 19:28:01 +0100 | [diff] [blame] | 88 | [IIO_MASSCONCENTRATION] = "massconcentration", |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 89 | }; |
| 90 | |
Jonathan Cameron | 330c6c5 | 2011-09-02 17:14:39 +0100 | [diff] [blame] | 91 | static const char * const iio_modifier_names[] = { |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 92 | [IIO_MOD_X] = "x", |
| 93 | [IIO_MOD_Y] = "y", |
| 94 | [IIO_MOD_Z] = "z", |
Peter Meerwald | 4b8d801 | 2015-06-20 23:52:30 +0200 | [diff] [blame] | 95 | [IIO_MOD_X_AND_Y] = "x&y", |
| 96 | [IIO_MOD_X_AND_Z] = "x&z", |
| 97 | [IIO_MOD_Y_AND_Z] = "y&z", |
| 98 | [IIO_MOD_X_AND_Y_AND_Z] = "x&y&z", |
| 99 | [IIO_MOD_X_OR_Y] = "x|y", |
| 100 | [IIO_MOD_X_OR_Z] = "x|z", |
| 101 | [IIO_MOD_Y_OR_Z] = "y|z", |
| 102 | [IIO_MOD_X_OR_Y_OR_Z] = "x|y|z", |
Jonathan Cameron | 8f5879b | 2012-05-05 10:39:22 +0100 | [diff] [blame] | 103 | [IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)", |
Jonathan Cameron | cf82cb8 | 2012-05-05 10:56:41 +0100 | [diff] [blame] | 104 | [IIO_MOD_SUM_SQUARED_X_Y_Z] = "x^2+y^2+z^2", |
Jonathan Cameron | 330c6c5 | 2011-09-02 17:14:39 +0100 | [diff] [blame] | 105 | [IIO_MOD_LIGHT_BOTH] = "both", |
| 106 | [IIO_MOD_LIGHT_IR] = "ir", |
Jon Brenner | 21cd1fa | 2012-05-16 10:46:42 -0500 | [diff] [blame] | 107 | [IIO_MOD_LIGHT_CLEAR] = "clear", |
| 108 | [IIO_MOD_LIGHT_RED] = "red", |
| 109 | [IIO_MOD_LIGHT_GREEN] = "green", |
| 110 | [IIO_MOD_LIGHT_BLUE] = "blue", |
Peter Meerwald-Stadler | 2c5ff1f | 2016-03-20 16:20:22 +0100 | [diff] [blame] | 111 | [IIO_MOD_LIGHT_UV] = "uv", |
Maxime Roussin-Bélanger | c0e4e0f | 2018-07-19 16:26:24 -0400 | [diff] [blame] | 112 | [IIO_MOD_LIGHT_DUV] = "duv", |
Srinivas Pandruvada | 5082f40 | 2014-04-29 00:51:00 +0100 | [diff] [blame] | 113 | [IIO_MOD_QUATERNION] = "quaternion", |
Peter Meerwald | 638b43b | 2014-02-05 16:57:00 +0000 | [diff] [blame] | 114 | [IIO_MOD_TEMP_AMBIENT] = "ambient", |
| 115 | [IIO_MOD_TEMP_OBJECT] = "object", |
Reyad Attiyat | 11b8dda | 2014-07-17 19:18:00 +0100 | [diff] [blame] | 116 | [IIO_MOD_NORTH_MAGN] = "from_north_magnetic", |
| 117 | [IIO_MOD_NORTH_TRUE] = "from_north_true", |
| 118 | [IIO_MOD_NORTH_MAGN_TILT_COMP] = "from_north_magnetic_tilt_comp", |
| 119 | [IIO_MOD_NORTH_TRUE_TILT_COMP] = "from_north_true_tilt_comp", |
Daniel Baluta | 55aebeb | 2014-11-10 14:45:30 +0200 | [diff] [blame] | 120 | [IIO_MOD_RUNNING] = "running", |
| 121 | [IIO_MOD_JOGGING] = "jogging", |
| 122 | [IIO_MOD_WALKING] = "walking", |
| 123 | [IIO_MOD_STILL] = "still", |
Irina Tirdea | 5a1a932 | 2015-01-11 21:10:09 +0200 | [diff] [blame] | 124 | [IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z] = "sqrt(x^2+y^2+z^2)", |
Lars-Peter Clausen | 1ce87f2 | 2015-05-22 18:17:38 +0200 | [diff] [blame] | 125 | [IIO_MOD_I] = "i", |
| 126 | [IIO_MOD_Q] = "q", |
Matt Ranostay | 8ff6b3b | 2015-09-13 20:26:11 -0700 | [diff] [blame] | 127 | [IIO_MOD_CO2] = "co2", |
| 128 | [IIO_MOD_VOC] = "voc", |
Tomasz Duszynski | 17abc9e | 2018-12-14 19:28:01 +0100 | [diff] [blame] | 129 | [IIO_MOD_PM1] = "pm1", |
| 130 | [IIO_MOD_PM2P5] = "pm2p5", |
| 131 | [IIO_MOD_PM4] = "pm4", |
| 132 | [IIO_MOD_PM10] = "pm10", |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 133 | }; |
| 134 | |
| 135 | /* relies on pairs of these shared then separate */ |
| 136 | static const char * const iio_chan_info_postfix[] = { |
Jonathan Cameron | 75a973c | 2012-04-15 17:41:30 +0100 | [diff] [blame] | 137 | [IIO_CHAN_INFO_RAW] = "raw", |
| 138 | [IIO_CHAN_INFO_PROCESSED] = "input", |
Jonathan Cameron | c8a9f80 | 2011-10-26 17:41:36 +0100 | [diff] [blame] | 139 | [IIO_CHAN_INFO_SCALE] = "scale", |
| 140 | [IIO_CHAN_INFO_OFFSET] = "offset", |
| 141 | [IIO_CHAN_INFO_CALIBSCALE] = "calibscale", |
| 142 | [IIO_CHAN_INFO_CALIBBIAS] = "calibbias", |
| 143 | [IIO_CHAN_INFO_PEAK] = "peak_raw", |
| 144 | [IIO_CHAN_INFO_PEAK_SCALE] = "peak_scale", |
| 145 | [IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW] = "quadrature_correction_raw", |
| 146 | [IIO_CHAN_INFO_AVERAGE_RAW] = "mean_raw", |
Jonathan Cameron | df94aba | 2011-11-27 11:39:12 +0000 | [diff] [blame] | 147 | [IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY] |
| 148 | = "filter_low_pass_3db_frequency", |
Martin Fuzzey | 3f7f642 | 2015-05-13 12:26:42 +0200 | [diff] [blame] | 149 | [IIO_CHAN_INFO_HIGH_PASS_FILTER_3DB_FREQUENCY] |
| 150 | = "filter_high_pass_3db_frequency", |
Laxman Dewangan | ce85a1c | 2012-04-13 16:03:31 +0530 | [diff] [blame] | 151 | [IIO_CHAN_INFO_SAMP_FREQ] = "sampling_frequency", |
Michael Hennerich | a6b1285 | 2012-04-27 10:58:34 +0200 | [diff] [blame] | 152 | [IIO_CHAN_INFO_FREQUENCY] = "frequency", |
| 153 | [IIO_CHAN_INFO_PHASE] = "phase", |
Michael Hennerich | b65d621 | 2012-05-11 11:36:53 +0200 | [diff] [blame] | 154 | [IIO_CHAN_INFO_HARDWAREGAIN] = "hardwaregain", |
srinivas pandruvada | 7c9ab03 | 2012-09-05 13:56:00 +0100 | [diff] [blame] | 155 | [IIO_CHAN_INFO_HYSTERESIS] = "hysteresis", |
Peter Meerwald | 899d90b | 2013-09-08 16:20:00 +0100 | [diff] [blame] | 156 | [IIO_CHAN_INFO_INT_TIME] = "integration_time", |
Irina Tirdea | a88bfe7 | 2014-11-10 14:45:32 +0200 | [diff] [blame] | 157 | [IIO_CHAN_INFO_ENABLE] = "en", |
Irina Tirdea | bcdf28f | 2014-11-10 14:45:33 +0200 | [diff] [blame] | 158 | [IIO_CHAN_INFO_CALIBHEIGHT] = "calibheight", |
Irina Tirdea | d37f683 | 2015-01-11 21:10:10 +0200 | [diff] [blame] | 159 | [IIO_CHAN_INFO_CALIBWEIGHT] = "calibweight", |
Irina Tirdea | 2f0ecb7 | 2015-01-27 20:41:52 +0200 | [diff] [blame] | 160 | [IIO_CHAN_INFO_DEBOUNCE_COUNT] = "debounce_count", |
| 161 | [IIO_CHAN_INFO_DEBOUNCE_TIME] = "debounce_time", |
Vianney le Clément de Saint-Marcq | c8a8585 | 2015-03-30 10:34:58 +0200 | [diff] [blame] | 162 | [IIO_CHAN_INFO_CALIBEMISSIVITY] = "calibemissivity", |
Irina Tirdea | faaa449 | 2015-04-29 21:16:39 +0300 | [diff] [blame] | 163 | [IIO_CHAN_INFO_OVERSAMPLING_RATIO] = "oversampling_ratio", |
Andrea Merello | ddfb97d | 2019-11-20 15:47:52 +0100 | [diff] [blame] | 164 | [IIO_CHAN_INFO_THERMOCOUPLE_TYPE] = "thermocouple_type", |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 165 | }; |
| 166 | |
Sachin Kamat | a7e57dc | 2013-10-29 11:39:00 +0000 | [diff] [blame] | 167 | /** |
| 168 | * iio_find_channel_from_si() - get channel from its scan index |
| 169 | * @indio_dev: device |
| 170 | * @si: scan index to match |
| 171 | */ |
Jonathan Cameron | 5fb21c8 | 2011-12-05 21:37:10 +0000 | [diff] [blame] | 172 | const struct iio_chan_spec |
| 173 | *iio_find_channel_from_si(struct iio_dev *indio_dev, int si) |
| 174 | { |
| 175 | int i; |
| 176 | |
| 177 | for (i = 0; i < indio_dev->num_channels; i++) |
| 178 | if (indio_dev->channels[i].scan_index == si) |
| 179 | return &indio_dev->channels[i]; |
| 180 | return NULL; |
| 181 | } |
| 182 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 183 | /* This turns up an awful lot */ |
| 184 | ssize_t iio_read_const_attr(struct device *dev, |
| 185 | struct device_attribute *attr, |
| 186 | char *buf) |
| 187 | { |
| 188 | return sprintf(buf, "%s\n", to_iio_const_attr(attr)->string); |
| 189 | } |
| 190 | EXPORT_SYMBOL(iio_read_const_attr); |
| 191 | |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 192 | static int iio_device_set_clock(struct iio_dev *indio_dev, clockid_t clock_id) |
| 193 | { |
| 194 | int ret; |
| 195 | const struct iio_event_interface *ev_int = indio_dev->event_interface; |
| 196 | |
| 197 | ret = mutex_lock_interruptible(&indio_dev->mlock); |
| 198 | if (ret) |
| 199 | return ret; |
| 200 | if ((ev_int && iio_event_enabled(ev_int)) || |
| 201 | iio_buffer_enabled(indio_dev)) { |
| 202 | mutex_unlock(&indio_dev->mlock); |
| 203 | return -EBUSY; |
| 204 | } |
| 205 | indio_dev->clock_id = clock_id; |
| 206 | mutex_unlock(&indio_dev->mlock); |
| 207 | |
| 208 | return 0; |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * iio_get_time_ns() - utility function to get a time stamp for events etc |
| 213 | * @indio_dev: device |
| 214 | */ |
| 215 | s64 iio_get_time_ns(const struct iio_dev *indio_dev) |
| 216 | { |
Arnd Bergmann | 45e7f5d | 2018-06-18 17:31:36 +0200 | [diff] [blame] | 217 | struct timespec64 tp; |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 218 | |
| 219 | switch (iio_device_get_clock(indio_dev)) { |
| 220 | case CLOCK_REALTIME: |
Arnd Bergmann | 45e7f5d | 2018-06-18 17:31:36 +0200 | [diff] [blame] | 221 | return ktime_get_real_ns(); |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 222 | case CLOCK_MONOTONIC: |
Arnd Bergmann | 45e7f5d | 2018-06-18 17:31:36 +0200 | [diff] [blame] | 223 | return ktime_get_ns(); |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 224 | case CLOCK_MONOTONIC_RAW: |
Arnd Bergmann | 45e7f5d | 2018-06-18 17:31:36 +0200 | [diff] [blame] | 225 | return ktime_get_raw_ns(); |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 226 | case CLOCK_REALTIME_COARSE: |
Arnd Bergmann | 45e7f5d | 2018-06-18 17:31:36 +0200 | [diff] [blame] | 227 | return ktime_to_ns(ktime_get_coarse_real()); |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 228 | case CLOCK_MONOTONIC_COARSE: |
Arnd Bergmann | 45e7f5d | 2018-06-18 17:31:36 +0200 | [diff] [blame] | 229 | ktime_get_coarse_ts64(&tp); |
| 230 | return timespec64_to_ns(&tp); |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 231 | case CLOCK_BOOTTIME: |
Jason A. Donenfeld | 9285ec4 | 2019-06-21 22:32:48 +0200 | [diff] [blame] | 232 | return ktime_get_boottime_ns(); |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 233 | case CLOCK_TAI: |
Jason A. Donenfeld | 9285ec4 | 2019-06-21 22:32:48 +0200 | [diff] [blame] | 234 | return ktime_get_clocktai_ns(); |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 235 | default: |
| 236 | BUG(); |
| 237 | } |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 238 | } |
| 239 | EXPORT_SYMBOL(iio_get_time_ns); |
| 240 | |
| 241 | /** |
| 242 | * iio_get_time_res() - utility function to get time stamp clock resolution in |
| 243 | * nano seconds. |
| 244 | * @indio_dev: device |
| 245 | */ |
| 246 | unsigned int iio_get_time_res(const struct iio_dev *indio_dev) |
| 247 | { |
| 248 | switch (iio_device_get_clock(indio_dev)) { |
| 249 | case CLOCK_REALTIME: |
| 250 | case CLOCK_MONOTONIC: |
| 251 | case CLOCK_MONOTONIC_RAW: |
| 252 | case CLOCK_BOOTTIME: |
| 253 | case CLOCK_TAI: |
| 254 | return hrtimer_resolution; |
| 255 | case CLOCK_REALTIME_COARSE: |
| 256 | case CLOCK_MONOTONIC_COARSE: |
| 257 | return LOW_RES_NSEC; |
| 258 | default: |
| 259 | BUG(); |
| 260 | } |
| 261 | } |
| 262 | EXPORT_SYMBOL(iio_get_time_res); |
| 263 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 264 | static int __init iio_init(void) |
| 265 | { |
| 266 | int ret; |
| 267 | |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 268 | /* Register sysfs bus */ |
| 269 | ret = bus_register(&iio_bus_type); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 270 | if (ret < 0) { |
Sachin Kamat | 3176dd5 | 2013-10-24 12:53:00 +0100 | [diff] [blame] | 271 | pr_err("could not register bus type\n"); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 272 | goto error_nothing; |
| 273 | } |
| 274 | |
Jonathan Cameron | 9aa1a16 | 2011-08-12 17:08:50 +0100 | [diff] [blame] | 275 | ret = alloc_chrdev_region(&iio_devt, 0, IIO_DEV_MAX, "iio"); |
| 276 | if (ret < 0) { |
Sachin Kamat | 3176dd5 | 2013-10-24 12:53:00 +0100 | [diff] [blame] | 277 | pr_err("failed to allocate char dev region\n"); |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 278 | goto error_unregister_bus_type; |
Jonathan Cameron | 9aa1a16 | 2011-08-12 17:08:50 +0100 | [diff] [blame] | 279 | } |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 280 | |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 281 | iio_debugfs_dentry = debugfs_create_dir("iio", NULL); |
| 282 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 283 | return 0; |
| 284 | |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 285 | error_unregister_bus_type: |
| 286 | bus_unregister(&iio_bus_type); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 287 | error_nothing: |
| 288 | return ret; |
| 289 | } |
| 290 | |
| 291 | static void __exit iio_exit(void) |
| 292 | { |
Jonathan Cameron | 9aa1a16 | 2011-08-12 17:08:50 +0100 | [diff] [blame] | 293 | if (iio_devt) |
| 294 | unregister_chrdev_region(iio_devt, IIO_DEV_MAX); |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 295 | bus_unregister(&iio_bus_type); |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 296 | debugfs_remove(iio_debugfs_dentry); |
| 297 | } |
| 298 | |
| 299 | #if defined(CONFIG_DEBUG_FS) |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 300 | static ssize_t iio_debugfs_read_reg(struct file *file, char __user *userbuf, |
| 301 | size_t count, loff_t *ppos) |
| 302 | { |
| 303 | struct iio_dev *indio_dev = file->private_data; |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 304 | unsigned val = 0; |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 305 | int ret; |
| 306 | |
Alexandru Tachici | 2ddc982 | 2020-02-21 14:06:55 +0200 | [diff] [blame] | 307 | if (*ppos > 0) |
| 308 | return simple_read_from_buffer(userbuf, count, ppos, |
| 309 | indio_dev->read_buf, |
| 310 | indio_dev->read_buf_len); |
| 311 | |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 312 | ret = indio_dev->info->debugfs_reg_access(indio_dev, |
| 313 | indio_dev->cached_reg_addr, |
| 314 | 0, &val); |
Matt Fornero | 3d62c78 | 2017-09-05 16:34:10 +0200 | [diff] [blame] | 315 | if (ret) { |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 316 | dev_err(indio_dev->dev.parent, "%s: read failed\n", __func__); |
Matt Fornero | 3d62c78 | 2017-09-05 16:34:10 +0200 | [diff] [blame] | 317 | return ret; |
| 318 | } |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 319 | |
Alexandru Tachici | 2ddc982 | 2020-02-21 14:06:55 +0200 | [diff] [blame] | 320 | indio_dev->read_buf_len = snprintf(indio_dev->read_buf, |
| 321 | sizeof(indio_dev->read_buf), |
| 322 | "0x%X\n", val); |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 323 | |
Alexandru Tachici | 2ddc982 | 2020-02-21 14:06:55 +0200 | [diff] [blame] | 324 | return simple_read_from_buffer(userbuf, count, ppos, |
| 325 | indio_dev->read_buf, |
| 326 | indio_dev->read_buf_len); |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | static ssize_t iio_debugfs_write_reg(struct file *file, |
| 330 | const char __user *userbuf, size_t count, loff_t *ppos) |
| 331 | { |
| 332 | struct iio_dev *indio_dev = file->private_data; |
| 333 | unsigned reg, val; |
| 334 | char buf[80]; |
| 335 | int ret; |
| 336 | |
| 337 | count = min_t(size_t, count, (sizeof(buf)-1)); |
| 338 | if (copy_from_user(buf, userbuf, count)) |
| 339 | return -EFAULT; |
| 340 | |
| 341 | buf[count] = 0; |
| 342 | |
| 343 | ret = sscanf(buf, "%i %i", ®, &val); |
| 344 | |
| 345 | switch (ret) { |
| 346 | case 1: |
| 347 | indio_dev->cached_reg_addr = reg; |
| 348 | break; |
| 349 | case 2: |
| 350 | indio_dev->cached_reg_addr = reg; |
| 351 | ret = indio_dev->info->debugfs_reg_access(indio_dev, reg, |
| 352 | val, NULL); |
| 353 | if (ret) { |
| 354 | dev_err(indio_dev->dev.parent, "%s: write failed\n", |
| 355 | __func__); |
| 356 | return ret; |
| 357 | } |
| 358 | break; |
| 359 | default: |
| 360 | return -EINVAL; |
| 361 | } |
| 362 | |
| 363 | return count; |
| 364 | } |
| 365 | |
| 366 | static const struct file_operations iio_debugfs_reg_fops = { |
Axel Lin | 5a28c87 | 2012-05-03 09:50:51 +0800 | [diff] [blame] | 367 | .open = simple_open, |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 368 | .read = iio_debugfs_read_reg, |
| 369 | .write = iio_debugfs_write_reg, |
| 370 | }; |
| 371 | |
| 372 | static void iio_device_unregister_debugfs(struct iio_dev *indio_dev) |
| 373 | { |
| 374 | debugfs_remove_recursive(indio_dev->debugfs_dentry); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 375 | } |
| 376 | |
Greg Kroah-Hartman | 8915aac | 2019-06-18 17:54:40 +0200 | [diff] [blame] | 377 | static void iio_device_register_debugfs(struct iio_dev *indio_dev) |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 378 | { |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 379 | if (indio_dev->info->debugfs_reg_access == NULL) |
Greg Kroah-Hartman | 8915aac | 2019-06-18 17:54:40 +0200 | [diff] [blame] | 380 | return; |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 381 | |
Axel Lin | abd5a2f | 2012-05-03 22:56:58 +0800 | [diff] [blame] | 382 | if (!iio_debugfs_dentry) |
Greg Kroah-Hartman | 8915aac | 2019-06-18 17:54:40 +0200 | [diff] [blame] | 383 | return; |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 384 | |
| 385 | indio_dev->debugfs_dentry = |
| 386 | debugfs_create_dir(dev_name(&indio_dev->dev), |
| 387 | iio_debugfs_dentry); |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 388 | |
Greg Kroah-Hartman | 8915aac | 2019-06-18 17:54:40 +0200 | [diff] [blame] | 389 | debugfs_create_file("direct_reg_access", 0644, |
| 390 | indio_dev->debugfs_dentry, indio_dev, |
| 391 | &iio_debugfs_reg_fops); |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 392 | } |
| 393 | #else |
Greg Kroah-Hartman | 8915aac | 2019-06-18 17:54:40 +0200 | [diff] [blame] | 394 | static void iio_device_register_debugfs(struct iio_dev *indio_dev) |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 395 | { |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | static void iio_device_unregister_debugfs(struct iio_dev *indio_dev) |
| 399 | { |
| 400 | } |
| 401 | #endif /* CONFIG_DEBUG_FS */ |
| 402 | |
Lars-Peter Clausen | 4fee7e16 | 2012-03-06 20:43:45 +0100 | [diff] [blame] | 403 | static ssize_t iio_read_channel_ext_info(struct device *dev, |
| 404 | struct device_attribute *attr, |
| 405 | char *buf) |
| 406 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 407 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Lars-Peter Clausen | 4fee7e16 | 2012-03-06 20:43:45 +0100 | [diff] [blame] | 408 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
| 409 | const struct iio_chan_spec_ext_info *ext_info; |
| 410 | |
| 411 | ext_info = &this_attr->c->ext_info[this_attr->address]; |
| 412 | |
Michael Hennerich | fc6d113 | 2012-04-27 10:58:36 +0200 | [diff] [blame] | 413 | return ext_info->read(indio_dev, ext_info->private, this_attr->c, buf); |
Lars-Peter Clausen | 4fee7e16 | 2012-03-06 20:43:45 +0100 | [diff] [blame] | 414 | } |
| 415 | |
| 416 | static ssize_t iio_write_channel_ext_info(struct device *dev, |
| 417 | struct device_attribute *attr, |
| 418 | const char *buf, |
| 419 | size_t len) |
| 420 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 421 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Lars-Peter Clausen | 4fee7e16 | 2012-03-06 20:43:45 +0100 | [diff] [blame] | 422 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
| 423 | const struct iio_chan_spec_ext_info *ext_info; |
| 424 | |
| 425 | ext_info = &this_attr->c->ext_info[this_attr->address]; |
| 426 | |
Michael Hennerich | fc6d113 | 2012-04-27 10:58:36 +0200 | [diff] [blame] | 427 | return ext_info->write(indio_dev, ext_info->private, |
| 428 | this_attr->c, buf, len); |
Lars-Peter Clausen | 4fee7e16 | 2012-03-06 20:43:45 +0100 | [diff] [blame] | 429 | } |
| 430 | |
Lars-Peter Clausen | 5212cc8 | 2012-06-04 11:36:11 +0200 | [diff] [blame] | 431 | ssize_t iio_enum_available_read(struct iio_dev *indio_dev, |
| 432 | uintptr_t priv, const struct iio_chan_spec *chan, char *buf) |
| 433 | { |
| 434 | const struct iio_enum *e = (const struct iio_enum *)priv; |
| 435 | unsigned int i; |
| 436 | size_t len = 0; |
| 437 | |
| 438 | if (!e->num_items) |
| 439 | return 0; |
| 440 | |
| 441 | for (i = 0; i < e->num_items; ++i) |
Lars-Peter Clausen | 74dcd43 | 2012-06-05 18:24:12 +0200 | [diff] [blame] | 442 | len += scnprintf(buf + len, PAGE_SIZE - len, "%s ", e->items[i]); |
Lars-Peter Clausen | 5212cc8 | 2012-06-04 11:36:11 +0200 | [diff] [blame] | 443 | |
| 444 | /* replace last space with a newline */ |
| 445 | buf[len - 1] = '\n'; |
| 446 | |
| 447 | return len; |
| 448 | } |
| 449 | EXPORT_SYMBOL_GPL(iio_enum_available_read); |
| 450 | |
| 451 | ssize_t iio_enum_read(struct iio_dev *indio_dev, |
| 452 | uintptr_t priv, const struct iio_chan_spec *chan, char *buf) |
| 453 | { |
| 454 | const struct iio_enum *e = (const struct iio_enum *)priv; |
| 455 | int i; |
| 456 | |
| 457 | if (!e->get) |
| 458 | return -EINVAL; |
| 459 | |
| 460 | i = e->get(indio_dev, chan); |
| 461 | if (i < 0) |
| 462 | return i; |
| 463 | else if (i >= e->num_items) |
| 464 | return -EINVAL; |
| 465 | |
Kees Cook | 598db58 | 2014-03-13 16:46:00 +0000 | [diff] [blame] | 466 | return snprintf(buf, PAGE_SIZE, "%s\n", e->items[i]); |
Lars-Peter Clausen | 5212cc8 | 2012-06-04 11:36:11 +0200 | [diff] [blame] | 467 | } |
| 468 | EXPORT_SYMBOL_GPL(iio_enum_read); |
| 469 | |
| 470 | ssize_t iio_enum_write(struct iio_dev *indio_dev, |
| 471 | uintptr_t priv, const struct iio_chan_spec *chan, const char *buf, |
| 472 | size_t len) |
| 473 | { |
| 474 | const struct iio_enum *e = (const struct iio_enum *)priv; |
Lars-Peter Clausen | 5212cc8 | 2012-06-04 11:36:11 +0200 | [diff] [blame] | 475 | int ret; |
| 476 | |
| 477 | if (!e->set) |
| 478 | return -EINVAL; |
| 479 | |
Andy Shevchenko | 02e9a0ff | 2017-06-09 15:08:16 +0300 | [diff] [blame] | 480 | ret = __sysfs_match_string(e->items, e->num_items, buf); |
| 481 | if (ret < 0) |
| 482 | return ret; |
Lars-Peter Clausen | 5212cc8 | 2012-06-04 11:36:11 +0200 | [diff] [blame] | 483 | |
Andy Shevchenko | 02e9a0ff | 2017-06-09 15:08:16 +0300 | [diff] [blame] | 484 | ret = e->set(indio_dev, chan, ret); |
Lars-Peter Clausen | 5212cc8 | 2012-06-04 11:36:11 +0200 | [diff] [blame] | 485 | return ret ? ret : len; |
| 486 | } |
| 487 | EXPORT_SYMBOL_GPL(iio_enum_write); |
| 488 | |
Gregor Boirie | dfc5773 | 2016-04-20 19:23:43 +0200 | [diff] [blame] | 489 | static const struct iio_mount_matrix iio_mount_idmatrix = { |
| 490 | .rotation = { |
| 491 | "1", "0", "0", |
| 492 | "0", "1", "0", |
| 493 | "0", "0", "1" |
| 494 | } |
| 495 | }; |
| 496 | |
| 497 | static int iio_setup_mount_idmatrix(const struct device *dev, |
| 498 | struct iio_mount_matrix *matrix) |
| 499 | { |
| 500 | *matrix = iio_mount_idmatrix; |
| 501 | dev_info(dev, "mounting matrix not found: using identity...\n"); |
| 502 | return 0; |
| 503 | } |
| 504 | |
| 505 | ssize_t iio_show_mount_matrix(struct iio_dev *indio_dev, uintptr_t priv, |
| 506 | const struct iio_chan_spec *chan, char *buf) |
| 507 | { |
| 508 | const struct iio_mount_matrix *mtx = ((iio_get_mount_matrix_t *) |
| 509 | priv)(indio_dev, chan); |
| 510 | |
| 511 | if (IS_ERR(mtx)) |
| 512 | return PTR_ERR(mtx); |
| 513 | |
| 514 | if (!mtx) |
| 515 | mtx = &iio_mount_idmatrix; |
| 516 | |
| 517 | return snprintf(buf, PAGE_SIZE, "%s, %s, %s; %s, %s, %s; %s, %s, %s\n", |
| 518 | mtx->rotation[0], mtx->rotation[1], mtx->rotation[2], |
| 519 | mtx->rotation[3], mtx->rotation[4], mtx->rotation[5], |
| 520 | mtx->rotation[6], mtx->rotation[7], mtx->rotation[8]); |
| 521 | } |
| 522 | EXPORT_SYMBOL_GPL(iio_show_mount_matrix); |
| 523 | |
| 524 | /** |
Andy Shevchenko | fb15897 | 2019-02-21 18:02:46 +0100 | [diff] [blame] | 525 | * iio_read_mount_matrix() - retrieve iio device mounting matrix from |
| 526 | * device "mount-matrix" property |
Gregor Boirie | dfc5773 | 2016-04-20 19:23:43 +0200 | [diff] [blame] | 527 | * @dev: device the mounting matrix property is assigned to |
| 528 | * @propname: device specific mounting matrix property name |
| 529 | * @matrix: where to store retrieved matrix |
| 530 | * |
| 531 | * If device is assigned no mounting matrix property, a default 3x3 identity |
| 532 | * matrix will be filled in. |
| 533 | * |
| 534 | * Return: 0 if success, or a negative error code on failure. |
| 535 | */ |
Andy Shevchenko | fb15897 | 2019-02-21 18:02:46 +0100 | [diff] [blame] | 536 | int iio_read_mount_matrix(struct device *dev, const char *propname, |
| 537 | struct iio_mount_matrix *matrix) |
Gregor Boirie | dfc5773 | 2016-04-20 19:23:43 +0200 | [diff] [blame] | 538 | { |
Andy Shevchenko | fb15897 | 2019-02-21 18:02:46 +0100 | [diff] [blame] | 539 | size_t len = ARRAY_SIZE(iio_mount_idmatrix.rotation); |
| 540 | int err; |
Gregor Boirie | dfc5773 | 2016-04-20 19:23:43 +0200 | [diff] [blame] | 541 | |
Andy Shevchenko | fb15897 | 2019-02-21 18:02:46 +0100 | [diff] [blame] | 542 | err = device_property_read_string_array(dev, propname, |
| 543 | matrix->rotation, len); |
| 544 | if (err == len) |
| 545 | return 0; |
Gregor Boirie | dfc5773 | 2016-04-20 19:23:43 +0200 | [diff] [blame] | 546 | |
Andy Shevchenko | fb15897 | 2019-02-21 18:02:46 +0100 | [diff] [blame] | 547 | if (err >= 0) |
| 548 | /* Invalid number of matrix entries. */ |
| 549 | return -EINVAL; |
Gregor Boirie | dfc5773 | 2016-04-20 19:23:43 +0200 | [diff] [blame] | 550 | |
Andy Shevchenko | fb15897 | 2019-02-21 18:02:46 +0100 | [diff] [blame] | 551 | if (err != -EINVAL) |
| 552 | /* Invalid matrix declaration format. */ |
| 553 | return err; |
Gregor Boirie | dfc5773 | 2016-04-20 19:23:43 +0200 | [diff] [blame] | 554 | |
| 555 | /* Matrix was not declared at all: fallback to identity. */ |
| 556 | return iio_setup_mount_idmatrix(dev, matrix); |
| 557 | } |
Andy Shevchenko | fb15897 | 2019-02-21 18:02:46 +0100 | [diff] [blame] | 558 | EXPORT_SYMBOL(iio_read_mount_matrix); |
Gregor Boirie | dfc5773 | 2016-04-20 19:23:43 +0200 | [diff] [blame] | 559 | |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 560 | static ssize_t __iio_format_value(char *buf, size_t len, unsigned int type, |
| 561 | int size, const int *vals) |
| 562 | { |
| 563 | unsigned long long tmp; |
| 564 | int tmp0, tmp1; |
| 565 | bool scale_db = false; |
| 566 | |
| 567 | switch (type) { |
| 568 | case IIO_VAL_INT: |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 569 | return scnprintf(buf, len, "%d", vals[0]); |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 570 | case IIO_VAL_INT_PLUS_MICRO_DB: |
| 571 | scale_db = true; |
Gustavo A. R. Silva | 9d793c1 | 2017-11-08 12:08:26 -0600 | [diff] [blame] | 572 | /* fall through */ |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 573 | case IIO_VAL_INT_PLUS_MICRO: |
| 574 | if (vals[1] < 0) |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 575 | return scnprintf(buf, len, "-%d.%06u%s", abs(vals[0]), |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 576 | -vals[1], scale_db ? " dB" : ""); |
| 577 | else |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 578 | return scnprintf(buf, len, "%d.%06u%s", vals[0], vals[1], |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 579 | scale_db ? " dB" : ""); |
| 580 | case IIO_VAL_INT_PLUS_NANO: |
| 581 | if (vals[1] < 0) |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 582 | return scnprintf(buf, len, "-%d.%09u", abs(vals[0]), |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 583 | -vals[1]); |
| 584 | else |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 585 | return scnprintf(buf, len, "%d.%09u", vals[0], vals[1]); |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 586 | case IIO_VAL_FRACTIONAL: |
| 587 | tmp = div_s64((s64)vals[0] * 1000000000LL, vals[1]); |
| 588 | tmp1 = vals[1]; |
| 589 | tmp0 = (int)div_s64_rem(tmp, 1000000000, &tmp1); |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 590 | return scnprintf(buf, len, "%d.%09u", tmp0, abs(tmp1)); |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 591 | case IIO_VAL_FRACTIONAL_LOG2: |
Nikolaus Schulz | 7fd6592 | 2017-03-24 13:41:51 +0100 | [diff] [blame] | 592 | tmp = shift_right((s64)vals[0] * 1000000000LL, vals[1]); |
| 593 | tmp0 = (int)div_s64_rem(tmp, 1000000000LL, &tmp1); |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 594 | return scnprintf(buf, len, "%d.%09u", tmp0, abs(tmp1)); |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 595 | case IIO_VAL_INT_MULTIPLE: |
| 596 | { |
| 597 | int i; |
| 598 | int l = 0; |
| 599 | |
| 600 | for (i = 0; i < size; ++i) { |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 601 | l += scnprintf(&buf[l], len - l, "%d ", vals[i]); |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 602 | if (l >= len) |
| 603 | break; |
| 604 | } |
| 605 | return l; |
| 606 | } |
Andrea Merello | 8cb3403 | 2019-11-20 15:47:51 +0100 | [diff] [blame] | 607 | case IIO_VAL_CHAR: |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 608 | return scnprintf(buf, len, "%c", (char)vals[0]); |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 609 | default: |
| 610 | return 0; |
| 611 | } |
| 612 | } |
| 613 | |
Lars-Peter Clausen | 3661f3f | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 614 | /** |
| 615 | * iio_format_value() - Formats a IIO value into its string representation |
Cristina Opriceana | 2498dcf | 2015-07-24 16:16:19 +0300 | [diff] [blame] | 616 | * @buf: The buffer to which the formatted value gets written |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 617 | * which is assumed to be big enough (i.e. PAGE_SIZE). |
Randy Dunlap | c175cb7 | 2017-10-29 17:06:01 -0700 | [diff] [blame] | 618 | * @type: One of the IIO_VAL_* constants. This decides how the val |
Cristina Opriceana | 2498dcf | 2015-07-24 16:16:19 +0300 | [diff] [blame] | 619 | * and val2 parameters are formatted. |
| 620 | * @size: Number of IIO value entries contained in vals |
| 621 | * @vals: Pointer to the values, exact meaning depends on the |
| 622 | * type parameter. |
| 623 | * |
| 624 | * Return: 0 by default, a negative number on failure or the |
| 625 | * total number of characters written for a type that belongs |
Randy Dunlap | c175cb7 | 2017-10-29 17:06:01 -0700 | [diff] [blame] | 626 | * to the IIO_VAL_* constant. |
Lars-Peter Clausen | 3661f3f | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 627 | */ |
Srinivas Pandruvada | 9fbfb4b | 2014-04-29 00:51:00 +0100 | [diff] [blame] | 628 | ssize_t iio_format_value(char *buf, unsigned int type, int size, int *vals) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 629 | { |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 630 | ssize_t len; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 631 | |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 632 | len = __iio_format_value(buf, PAGE_SIZE, type, size, vals); |
| 633 | if (len >= PAGE_SIZE - 1) |
| 634 | return -EFBIG; |
Srinivas Pandruvada | 9fbfb4b | 2014-04-29 00:51:00 +0100 | [diff] [blame] | 635 | |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 636 | return len + sprintf(buf + len, "\n"); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 637 | } |
Andrew F. Davis | 7d2c2aca | 2015-12-14 16:35:57 -0600 | [diff] [blame] | 638 | EXPORT_SYMBOL_GPL(iio_format_value); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 639 | |
Lars-Peter Clausen | 3661f3f | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 640 | static ssize_t iio_read_channel_info(struct device *dev, |
| 641 | struct device_attribute *attr, |
| 642 | char *buf) |
| 643 | { |
| 644 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
| 645 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
Srinivas Pandruvada | 9fbfb4b | 2014-04-29 00:51:00 +0100 | [diff] [blame] | 646 | int vals[INDIO_MAX_RAW_ELEMENTS]; |
| 647 | int ret; |
| 648 | int val_len = 2; |
| 649 | |
| 650 | if (indio_dev->info->read_raw_multi) |
| 651 | ret = indio_dev->info->read_raw_multi(indio_dev, this_attr->c, |
| 652 | INDIO_MAX_RAW_ELEMENTS, |
| 653 | vals, &val_len, |
| 654 | this_attr->address); |
| 655 | else |
| 656 | ret = indio_dev->info->read_raw(indio_dev, this_attr->c, |
| 657 | &vals[0], &vals[1], this_attr->address); |
Lars-Peter Clausen | 3661f3f | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 658 | |
| 659 | if (ret < 0) |
| 660 | return ret; |
| 661 | |
Srinivas Pandruvada | 9fbfb4b | 2014-04-29 00:51:00 +0100 | [diff] [blame] | 662 | return iio_format_value(buf, ret, val_len, vals); |
Lars-Peter Clausen | 3661f3f | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 663 | } |
| 664 | |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 665 | static ssize_t iio_format_avail_list(char *buf, const int *vals, |
| 666 | int type, int length) |
| 667 | { |
| 668 | int i; |
| 669 | ssize_t len = 0; |
| 670 | |
| 671 | switch (type) { |
| 672 | case IIO_VAL_INT: |
| 673 | for (i = 0; i < length; i++) { |
| 674 | len += __iio_format_value(buf + len, PAGE_SIZE - len, |
| 675 | type, 1, &vals[i]); |
| 676 | if (len >= PAGE_SIZE) |
| 677 | return -EFBIG; |
| 678 | if (i < length - 1) |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 679 | len += scnprintf(buf + len, PAGE_SIZE - len, |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 680 | " "); |
| 681 | else |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 682 | len += scnprintf(buf + len, PAGE_SIZE - len, |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 683 | "\n"); |
| 684 | if (len >= PAGE_SIZE) |
| 685 | return -EFBIG; |
| 686 | } |
| 687 | break; |
| 688 | default: |
| 689 | for (i = 0; i < length / 2; i++) { |
| 690 | len += __iio_format_value(buf + len, PAGE_SIZE - len, |
| 691 | type, 2, &vals[i * 2]); |
| 692 | if (len >= PAGE_SIZE) |
| 693 | return -EFBIG; |
| 694 | if (i < length / 2 - 1) |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 695 | len += scnprintf(buf + len, PAGE_SIZE - len, |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 696 | " "); |
| 697 | else |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 698 | len += scnprintf(buf + len, PAGE_SIZE - len, |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 699 | "\n"); |
| 700 | if (len >= PAGE_SIZE) |
| 701 | return -EFBIG; |
| 702 | } |
| 703 | } |
| 704 | |
| 705 | return len; |
| 706 | } |
| 707 | |
| 708 | static ssize_t iio_format_avail_range(char *buf, const int *vals, int type) |
| 709 | { |
| 710 | int i; |
| 711 | ssize_t len; |
| 712 | |
| 713 | len = snprintf(buf, PAGE_SIZE, "["); |
| 714 | switch (type) { |
| 715 | case IIO_VAL_INT: |
| 716 | for (i = 0; i < 3; i++) { |
| 717 | len += __iio_format_value(buf + len, PAGE_SIZE - len, |
| 718 | type, 1, &vals[i]); |
| 719 | if (len >= PAGE_SIZE) |
| 720 | return -EFBIG; |
| 721 | if (i < 2) |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 722 | len += scnprintf(buf + len, PAGE_SIZE - len, |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 723 | " "); |
| 724 | else |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 725 | len += scnprintf(buf + len, PAGE_SIZE - len, |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 726 | "]\n"); |
| 727 | if (len >= PAGE_SIZE) |
| 728 | return -EFBIG; |
| 729 | } |
| 730 | break; |
| 731 | default: |
| 732 | for (i = 0; i < 3; i++) { |
| 733 | len += __iio_format_value(buf + len, PAGE_SIZE - len, |
| 734 | type, 2, &vals[i * 2]); |
| 735 | if (len >= PAGE_SIZE) |
| 736 | return -EFBIG; |
| 737 | if (i < 2) |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 738 | len += scnprintf(buf + len, PAGE_SIZE - len, |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 739 | " "); |
| 740 | else |
Takashi Iwai | 35a4eeb | 2020-03-11 08:43:24 +0100 | [diff] [blame] | 741 | len += scnprintf(buf + len, PAGE_SIZE - len, |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 742 | "]\n"); |
| 743 | if (len >= PAGE_SIZE) |
| 744 | return -EFBIG; |
| 745 | } |
| 746 | } |
| 747 | |
| 748 | return len; |
| 749 | } |
| 750 | |
| 751 | static ssize_t iio_read_channel_info_avail(struct device *dev, |
| 752 | struct device_attribute *attr, |
| 753 | char *buf) |
| 754 | { |
| 755 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
| 756 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
| 757 | const int *vals; |
| 758 | int ret; |
| 759 | int length; |
| 760 | int type; |
| 761 | |
| 762 | ret = indio_dev->info->read_avail(indio_dev, this_attr->c, |
| 763 | &vals, &type, &length, |
| 764 | this_attr->address); |
| 765 | |
| 766 | if (ret < 0) |
| 767 | return ret; |
| 768 | switch (ret) { |
| 769 | case IIO_AVAIL_LIST: |
| 770 | return iio_format_avail_list(buf, vals, type, length); |
| 771 | case IIO_AVAIL_RANGE: |
| 772 | return iio_format_avail_range(buf, vals, type); |
| 773 | default: |
| 774 | return -EINVAL; |
| 775 | } |
| 776 | } |
| 777 | |
Lars-Peter Clausen | 6807d72 | 2012-11-20 13:36:00 +0000 | [diff] [blame] | 778 | /** |
Beniamin Bia | b852822 | 2020-02-06 17:11:45 +0200 | [diff] [blame] | 779 | * __iio_str_to_fixpoint() - Parse a fixed-point number from a string |
Lars-Peter Clausen | 6807d72 | 2012-11-20 13:36:00 +0000 | [diff] [blame] | 780 | * @str: The string to parse |
| 781 | * @fract_mult: Multiplier for the first decimal place, should be a power of 10 |
| 782 | * @integer: The integer part of the number |
| 783 | * @fract: The fractional part of the number |
Beniamin Bia | b852822 | 2020-02-06 17:11:45 +0200 | [diff] [blame] | 784 | * @scale_db: True if this should parse as dB |
Lars-Peter Clausen | 6807d72 | 2012-11-20 13:36:00 +0000 | [diff] [blame] | 785 | * |
| 786 | * Returns 0 on success, or a negative error code if the string could not be |
| 787 | * parsed. |
| 788 | */ |
Beniamin Bia | b852822 | 2020-02-06 17:11:45 +0200 | [diff] [blame] | 789 | static int __iio_str_to_fixpoint(const char *str, int fract_mult, |
| 790 | int *integer, int *fract, bool scale_db) |
Lars-Peter Clausen | 6807d72 | 2012-11-20 13:36:00 +0000 | [diff] [blame] | 791 | { |
| 792 | int i = 0, f = 0; |
| 793 | bool integer_part = true, negative = false; |
| 794 | |
Sean Nyekjaer | f47dff3 | 2015-11-09 13:55:34 +0100 | [diff] [blame] | 795 | if (fract_mult == 0) { |
| 796 | *fract = 0; |
| 797 | |
| 798 | return kstrtoint(str, 0, integer); |
| 799 | } |
| 800 | |
Lars-Peter Clausen | 6807d72 | 2012-11-20 13:36:00 +0000 | [diff] [blame] | 801 | if (str[0] == '-') { |
| 802 | negative = true; |
| 803 | str++; |
| 804 | } else if (str[0] == '+') { |
| 805 | str++; |
| 806 | } |
| 807 | |
| 808 | while (*str) { |
| 809 | if ('0' <= *str && *str <= '9') { |
| 810 | if (integer_part) { |
| 811 | i = i * 10 + *str - '0'; |
| 812 | } else { |
| 813 | f += fract_mult * (*str - '0'); |
| 814 | fract_mult /= 10; |
| 815 | } |
| 816 | } else if (*str == '\n') { |
| 817 | if (*(str + 1) == '\0') |
| 818 | break; |
| 819 | else |
| 820 | return -EINVAL; |
Beniamin Bia | b852822 | 2020-02-06 17:11:45 +0200 | [diff] [blame] | 821 | } else if (!strncmp(str, " dB", sizeof(" dB") - 1) && scale_db) { |
| 822 | /* Ignore the dB suffix */ |
| 823 | str += sizeof(" dB") - 1; |
| 824 | continue; |
| 825 | } else if (!strncmp(str, "dB", sizeof("dB") - 1) && scale_db) { |
| 826 | /* Ignore the dB suffix */ |
| 827 | str += sizeof("dB") - 1; |
| 828 | continue; |
Lars-Peter Clausen | 6807d72 | 2012-11-20 13:36:00 +0000 | [diff] [blame] | 829 | } else if (*str == '.' && integer_part) { |
| 830 | integer_part = false; |
| 831 | } else { |
| 832 | return -EINVAL; |
| 833 | } |
| 834 | str++; |
| 835 | } |
| 836 | |
| 837 | if (negative) { |
| 838 | if (i) |
| 839 | i = -i; |
| 840 | else |
| 841 | f = -f; |
| 842 | } |
| 843 | |
| 844 | *integer = i; |
| 845 | *fract = f; |
| 846 | |
| 847 | return 0; |
| 848 | } |
Beniamin Bia | b852822 | 2020-02-06 17:11:45 +0200 | [diff] [blame] | 849 | |
| 850 | /** |
| 851 | * iio_str_to_fixpoint() - Parse a fixed-point number from a string |
| 852 | * @str: The string to parse |
| 853 | * @fract_mult: Multiplier for the first decimal place, should be a power of 10 |
| 854 | * @integer: The integer part of the number |
| 855 | * @fract: The fractional part of the number |
| 856 | * |
| 857 | * Returns 0 on success, or a negative error code if the string could not be |
| 858 | * parsed. |
| 859 | */ |
| 860 | int iio_str_to_fixpoint(const char *str, int fract_mult, |
| 861 | int *integer, int *fract) |
| 862 | { |
| 863 | return __iio_str_to_fixpoint(str, fract_mult, integer, fract, false); |
| 864 | } |
Lars-Peter Clausen | 6807d72 | 2012-11-20 13:36:00 +0000 | [diff] [blame] | 865 | EXPORT_SYMBOL_GPL(iio_str_to_fixpoint); |
| 866 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 867 | static ssize_t iio_write_channel_info(struct device *dev, |
| 868 | struct device_attribute *attr, |
| 869 | const char *buf, |
| 870 | size_t len) |
| 871 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 872 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 873 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
Lars-Peter Clausen | 6807d72 | 2012-11-20 13:36:00 +0000 | [diff] [blame] | 874 | int ret, fract_mult = 100000; |
Andrea Merello | 8cb3403 | 2019-11-20 15:47:51 +0100 | [diff] [blame] | 875 | int integer, fract = 0; |
| 876 | bool is_char = false; |
Beniamin Bia | b852822 | 2020-02-06 17:11:45 +0200 | [diff] [blame] | 877 | bool scale_db = false; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 878 | |
| 879 | /* Assumes decimal - precision based on number of digits */ |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 880 | if (!indio_dev->info->write_raw) |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 881 | return -EINVAL; |
Michael Hennerich | 5c04af0 | 2011-06-27 13:07:10 +0100 | [diff] [blame] | 882 | |
| 883 | if (indio_dev->info->write_raw_get_fmt) |
| 884 | switch (indio_dev->info->write_raw_get_fmt(indio_dev, |
| 885 | this_attr->c, this_attr->address)) { |
Sean Nyekjaer | f47dff3 | 2015-11-09 13:55:34 +0100 | [diff] [blame] | 886 | case IIO_VAL_INT: |
| 887 | fract_mult = 0; |
| 888 | break; |
Beniamin Bia | b852822 | 2020-02-06 17:11:45 +0200 | [diff] [blame] | 889 | case IIO_VAL_INT_PLUS_MICRO_DB: |
| 890 | scale_db = true; |
| 891 | /* fall through */ |
Michael Hennerich | 5c04af0 | 2011-06-27 13:07:10 +0100 | [diff] [blame] | 892 | case IIO_VAL_INT_PLUS_MICRO: |
| 893 | fract_mult = 100000; |
| 894 | break; |
| 895 | case IIO_VAL_INT_PLUS_NANO: |
| 896 | fract_mult = 100000000; |
| 897 | break; |
Andrea Merello | 8cb3403 | 2019-11-20 15:47:51 +0100 | [diff] [blame] | 898 | case IIO_VAL_CHAR: |
| 899 | is_char = true; |
| 900 | break; |
Michael Hennerich | 5c04af0 | 2011-06-27 13:07:10 +0100 | [diff] [blame] | 901 | default: |
| 902 | return -EINVAL; |
| 903 | } |
| 904 | |
Andrea Merello | 8cb3403 | 2019-11-20 15:47:51 +0100 | [diff] [blame] | 905 | if (is_char) { |
| 906 | char ch; |
| 907 | |
| 908 | if (sscanf(buf, "%c", &ch) != 1) |
| 909 | return -EINVAL; |
| 910 | integer = ch; |
| 911 | } else { |
| 912 | ret = iio_str_to_fixpoint(buf, fract_mult, &integer, &fract); |
| 913 | if (ret) |
| 914 | return ret; |
| 915 | } |
Beniamin Bia | b852822 | 2020-02-06 17:11:45 +0200 | [diff] [blame] | 916 | ret = __iio_str_to_fixpoint(buf, fract_mult, &integer, &fract, |
| 917 | scale_db); |
| 918 | if (ret) |
| 919 | return ret; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 920 | |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 921 | ret = indio_dev->info->write_raw(indio_dev, this_attr->c, |
Michael Hennerich | 5c04af0 | 2011-06-27 13:07:10 +0100 | [diff] [blame] | 922 | integer, fract, this_attr->address); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 923 | if (ret) |
| 924 | return ret; |
| 925 | |
| 926 | return len; |
| 927 | } |
| 928 | |
Jonathan Cameron | df9c1c4 | 2011-08-12 17:56:03 +0100 | [diff] [blame] | 929 | static |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 930 | int __iio_device_attr_init(struct device_attribute *dev_attr, |
| 931 | const char *postfix, |
| 932 | struct iio_chan_spec const *chan, |
| 933 | ssize_t (*readfunc)(struct device *dev, |
| 934 | struct device_attribute *attr, |
| 935 | char *buf), |
| 936 | ssize_t (*writefunc)(struct device *dev, |
| 937 | struct device_attribute *attr, |
| 938 | const char *buf, |
| 939 | size_t len), |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 940 | enum iio_shared_by shared_by) |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 941 | { |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 942 | int ret = 0; |
Lars-Peter Clausen | 7bbcf7e | 2014-02-14 14:19:00 +0000 | [diff] [blame] | 943 | char *name = NULL; |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 944 | char *full_postfix; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 945 | sysfs_attr_init(&dev_attr->attr); |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 946 | |
| 947 | /* Build up postfix of <extend_name>_<modifier>_postfix */ |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 948 | if (chan->modified && (shared_by == IIO_SEPARATE)) { |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 949 | if (chan->extend_name) |
| 950 | full_postfix = kasprintf(GFP_KERNEL, "%s_%s_%s", |
| 951 | iio_modifier_names[chan |
| 952 | ->channel2], |
| 953 | chan->extend_name, |
| 954 | postfix); |
| 955 | else |
| 956 | full_postfix = kasprintf(GFP_KERNEL, "%s_%s", |
| 957 | iio_modifier_names[chan |
| 958 | ->channel2], |
| 959 | postfix); |
| 960 | } else { |
Lars-Peter Clausen | 77bfa8b | 2014-02-14 14:19:00 +0000 | [diff] [blame] | 961 | if (chan->extend_name == NULL || shared_by != IIO_SEPARATE) |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 962 | full_postfix = kstrdup(postfix, GFP_KERNEL); |
| 963 | else |
| 964 | full_postfix = kasprintf(GFP_KERNEL, |
| 965 | "%s_%s", |
| 966 | chan->extend_name, |
| 967 | postfix); |
| 968 | } |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 969 | if (full_postfix == NULL) |
| 970 | return -ENOMEM; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 971 | |
Justin P. Mattock | 4abf6f8 | 2012-02-29 22:00:38 -0800 | [diff] [blame] | 972 | if (chan->differential) { /* Differential can not have modifier */ |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 973 | switch (shared_by) { |
Jonathan Cameron | c006ec8 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 974 | case IIO_SHARED_BY_ALL: |
Lars-Peter Clausen | 7bbcf7e | 2014-02-14 14:19:00 +0000 | [diff] [blame] | 975 | name = kasprintf(GFP_KERNEL, "%s", full_postfix); |
Jonathan Cameron | c006ec8 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 976 | break; |
| 977 | case IIO_SHARED_BY_DIR: |
Lars-Peter Clausen | 7bbcf7e | 2014-02-14 14:19:00 +0000 | [diff] [blame] | 978 | name = kasprintf(GFP_KERNEL, "%s_%s", |
Jonathan Cameron | c006ec8 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 979 | iio_direction[chan->output], |
| 980 | full_postfix); |
| 981 | break; |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 982 | case IIO_SHARED_BY_TYPE: |
Lars-Peter Clausen | 7bbcf7e | 2014-02-14 14:19:00 +0000 | [diff] [blame] | 983 | name = kasprintf(GFP_KERNEL, "%s_%s-%s_%s", |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 984 | iio_direction[chan->output], |
| 985 | iio_chan_type_name_spec[chan->type], |
| 986 | iio_chan_type_name_spec[chan->type], |
| 987 | full_postfix); |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 988 | break; |
| 989 | case IIO_SEPARATE: |
| 990 | if (!chan->indexed) { |
Dan Carpenter | 231bfe5 | 2015-11-21 13:33:00 +0300 | [diff] [blame] | 991 | WARN(1, "Differential channels must be indexed\n"); |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 992 | ret = -EINVAL; |
| 993 | goto error_free_full_postfix; |
| 994 | } |
Lars-Peter Clausen | 7bbcf7e | 2014-02-14 14:19:00 +0000 | [diff] [blame] | 995 | name = kasprintf(GFP_KERNEL, |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 996 | "%s_%s%d-%s%d_%s", |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 997 | iio_direction[chan->output], |
| 998 | iio_chan_type_name_spec[chan->type], |
| 999 | chan->channel, |
| 1000 | iio_chan_type_name_spec[chan->type], |
| 1001 | chan->channel2, |
| 1002 | full_postfix); |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1003 | break; |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 1004 | } |
| 1005 | } else { /* Single ended */ |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1006 | switch (shared_by) { |
Jonathan Cameron | c006ec8 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1007 | case IIO_SHARED_BY_ALL: |
Lars-Peter Clausen | 7bbcf7e | 2014-02-14 14:19:00 +0000 | [diff] [blame] | 1008 | name = kasprintf(GFP_KERNEL, "%s", full_postfix); |
Jonathan Cameron | c006ec8 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1009 | break; |
| 1010 | case IIO_SHARED_BY_DIR: |
Lars-Peter Clausen | 7bbcf7e | 2014-02-14 14:19:00 +0000 | [diff] [blame] | 1011 | name = kasprintf(GFP_KERNEL, "%s_%s", |
Jonathan Cameron | c006ec8 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1012 | iio_direction[chan->output], |
| 1013 | full_postfix); |
| 1014 | break; |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1015 | case IIO_SHARED_BY_TYPE: |
Lars-Peter Clausen | 7bbcf7e | 2014-02-14 14:19:00 +0000 | [diff] [blame] | 1016 | name = kasprintf(GFP_KERNEL, "%s_%s_%s", |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 1017 | iio_direction[chan->output], |
| 1018 | iio_chan_type_name_spec[chan->type], |
| 1019 | full_postfix); |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1020 | break; |
| 1021 | |
| 1022 | case IIO_SEPARATE: |
| 1023 | if (chan->indexed) |
Lars-Peter Clausen | 7bbcf7e | 2014-02-14 14:19:00 +0000 | [diff] [blame] | 1024 | name = kasprintf(GFP_KERNEL, "%s_%s%d_%s", |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1025 | iio_direction[chan->output], |
| 1026 | iio_chan_type_name_spec[chan->type], |
| 1027 | chan->channel, |
| 1028 | full_postfix); |
| 1029 | else |
Lars-Peter Clausen | 7bbcf7e | 2014-02-14 14:19:00 +0000 | [diff] [blame] | 1030 | name = kasprintf(GFP_KERNEL, "%s_%s_%s", |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1031 | iio_direction[chan->output], |
| 1032 | iio_chan_type_name_spec[chan->type], |
| 1033 | full_postfix); |
| 1034 | break; |
| 1035 | } |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 1036 | } |
Lars-Peter Clausen | 7bbcf7e | 2014-02-14 14:19:00 +0000 | [diff] [blame] | 1037 | if (name == NULL) { |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1038 | ret = -ENOMEM; |
| 1039 | goto error_free_full_postfix; |
| 1040 | } |
Lars-Peter Clausen | 7bbcf7e | 2014-02-14 14:19:00 +0000 | [diff] [blame] | 1041 | dev_attr->attr.name = name; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1042 | |
| 1043 | if (readfunc) { |
| 1044 | dev_attr->attr.mode |= S_IRUGO; |
| 1045 | dev_attr->show = readfunc; |
| 1046 | } |
| 1047 | |
| 1048 | if (writefunc) { |
| 1049 | dev_attr->attr.mode |= S_IWUSR; |
| 1050 | dev_attr->store = writefunc; |
| 1051 | } |
Lars-Peter Clausen | 7bbcf7e | 2014-02-14 14:19:00 +0000 | [diff] [blame] | 1052 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1053 | error_free_full_postfix: |
| 1054 | kfree(full_postfix); |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1055 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1056 | return ret; |
| 1057 | } |
| 1058 | |
Jonathan Cameron | df9c1c4 | 2011-08-12 17:56:03 +0100 | [diff] [blame] | 1059 | static void __iio_device_attr_deinit(struct device_attribute *dev_attr) |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1060 | { |
| 1061 | kfree(dev_attr->attr.name); |
| 1062 | } |
| 1063 | |
| 1064 | int __iio_add_chan_devattr(const char *postfix, |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1065 | struct iio_chan_spec const *chan, |
| 1066 | ssize_t (*readfunc)(struct device *dev, |
| 1067 | struct device_attribute *attr, |
| 1068 | char *buf), |
| 1069 | ssize_t (*writefunc)(struct device *dev, |
| 1070 | struct device_attribute *attr, |
| 1071 | const char *buf, |
| 1072 | size_t len), |
Jonathan Cameron | e614a54 | 2011-09-02 17:14:41 +0100 | [diff] [blame] | 1073 | u64 mask, |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1074 | enum iio_shared_by shared_by, |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1075 | struct device *dev, |
| 1076 | struct list_head *attr_list) |
| 1077 | { |
| 1078 | int ret; |
| 1079 | struct iio_dev_attr *iio_attr, *t; |
| 1080 | |
Sachin Kamat | 670c110 | 2013-10-24 12:53:00 +0100 | [diff] [blame] | 1081 | iio_attr = kzalloc(sizeof(*iio_attr), GFP_KERNEL); |
Hartmut Knaack | 92825ff | 2014-02-16 11:53:00 +0000 | [diff] [blame] | 1082 | if (iio_attr == NULL) |
| 1083 | return -ENOMEM; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1084 | ret = __iio_device_attr_init(&iio_attr->dev_attr, |
| 1085 | postfix, chan, |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1086 | readfunc, writefunc, shared_by); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1087 | if (ret) |
| 1088 | goto error_iio_dev_attr_free; |
| 1089 | iio_attr->c = chan; |
| 1090 | iio_attr->address = mask; |
| 1091 | list_for_each_entry(t, attr_list, l) |
| 1092 | if (strcmp(t->dev_attr.attr.name, |
| 1093 | iio_attr->dev_attr.attr.name) == 0) { |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1094 | if (shared_by == IIO_SEPARATE) |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1095 | dev_err(dev, "tried to double register : %s\n", |
| 1096 | t->dev_attr.attr.name); |
| 1097 | ret = -EBUSY; |
| 1098 | goto error_device_attr_deinit; |
| 1099 | } |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1100 | list_add(&iio_attr->l, attr_list); |
| 1101 | |
| 1102 | return 0; |
| 1103 | |
| 1104 | error_device_attr_deinit: |
| 1105 | __iio_device_attr_deinit(&iio_attr->dev_attr); |
| 1106 | error_iio_dev_attr_free: |
| 1107 | kfree(iio_attr); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1108 | return ret; |
| 1109 | } |
| 1110 | |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1111 | static int iio_device_add_info_mask_type(struct iio_dev *indio_dev, |
| 1112 | struct iio_chan_spec const *chan, |
| 1113 | enum iio_shared_by shared_by, |
| 1114 | const long *infomask) |
| 1115 | { |
| 1116 | int i, ret, attrcount = 0; |
| 1117 | |
Orson Zhai | 1016d56 | 2017-04-25 09:16:56 +0800 | [diff] [blame] | 1118 | for_each_set_bit(i, infomask, sizeof(*infomask)*8) { |
Jonathan Cameron | ef4b485 | 2014-01-03 22:24:00 +0000 | [diff] [blame] | 1119 | if (i >= ARRAY_SIZE(iio_chan_info_postfix)) |
| 1120 | return -EINVAL; |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1121 | ret = __iio_add_chan_devattr(iio_chan_info_postfix[i], |
| 1122 | chan, |
| 1123 | &iio_read_channel_info, |
| 1124 | &iio_write_channel_info, |
| 1125 | i, |
| 1126 | shared_by, |
| 1127 | &indio_dev->dev, |
| 1128 | &indio_dev->channel_attr_list); |
| 1129 | if ((ret == -EBUSY) && (shared_by != IIO_SEPARATE)) |
| 1130 | continue; |
| 1131 | else if (ret < 0) |
| 1132 | return ret; |
| 1133 | attrcount++; |
| 1134 | } |
| 1135 | |
| 1136 | return attrcount; |
| 1137 | } |
| 1138 | |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 1139 | static int iio_device_add_info_mask_type_avail(struct iio_dev *indio_dev, |
| 1140 | struct iio_chan_spec const *chan, |
| 1141 | enum iio_shared_by shared_by, |
| 1142 | const long *infomask) |
| 1143 | { |
| 1144 | int i, ret, attrcount = 0; |
| 1145 | char *avail_postfix; |
| 1146 | |
Orson Zhai | 1016d56 | 2017-04-25 09:16:56 +0800 | [diff] [blame] | 1147 | for_each_set_bit(i, infomask, sizeof(*infomask) * 8) { |
Young Xiao | 936d3e5 | 2019-06-04 20:40:00 +0800 | [diff] [blame] | 1148 | if (i >= ARRAY_SIZE(iio_chan_info_postfix)) |
| 1149 | return -EINVAL; |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 1150 | avail_postfix = kasprintf(GFP_KERNEL, |
| 1151 | "%s_available", |
| 1152 | iio_chan_info_postfix[i]); |
| 1153 | if (!avail_postfix) |
| 1154 | return -ENOMEM; |
| 1155 | |
| 1156 | ret = __iio_add_chan_devattr(avail_postfix, |
| 1157 | chan, |
| 1158 | &iio_read_channel_info_avail, |
| 1159 | NULL, |
| 1160 | i, |
| 1161 | shared_by, |
| 1162 | &indio_dev->dev, |
| 1163 | &indio_dev->channel_attr_list); |
| 1164 | kfree(avail_postfix); |
| 1165 | if ((ret == -EBUSY) && (shared_by != IIO_SEPARATE)) |
| 1166 | continue; |
| 1167 | else if (ret < 0) |
| 1168 | return ret; |
| 1169 | attrcount++; |
| 1170 | } |
| 1171 | |
| 1172 | return attrcount; |
| 1173 | } |
| 1174 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1175 | static int iio_device_add_channel_sysfs(struct iio_dev *indio_dev, |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1176 | struct iio_chan_spec const *chan) |
| 1177 | { |
Jonathan Cameron | 5ccb3ad | 2012-04-15 17:41:16 +0100 | [diff] [blame] | 1178 | int ret, attrcount = 0; |
Lars-Peter Clausen | 5f420b4 | 2012-02-21 18:38:12 +0100 | [diff] [blame] | 1179 | const struct iio_chan_spec_ext_info *ext_info; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1180 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1181 | if (chan->channel < 0) |
| 1182 | return 0; |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1183 | ret = iio_device_add_info_mask_type(indio_dev, chan, |
| 1184 | IIO_SEPARATE, |
| 1185 | &chan->info_mask_separate); |
| 1186 | if (ret < 0) |
| 1187 | return ret; |
| 1188 | attrcount += ret; |
| 1189 | |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 1190 | ret = iio_device_add_info_mask_type_avail(indio_dev, chan, |
| 1191 | IIO_SEPARATE, |
| 1192 | &chan-> |
| 1193 | info_mask_separate_available); |
| 1194 | if (ret < 0) |
| 1195 | return ret; |
| 1196 | attrcount += ret; |
| 1197 | |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1198 | ret = iio_device_add_info_mask_type(indio_dev, chan, |
| 1199 | IIO_SHARED_BY_TYPE, |
| 1200 | &chan->info_mask_shared_by_type); |
| 1201 | if (ret < 0) |
| 1202 | return ret; |
| 1203 | attrcount += ret; |
Lars-Peter Clausen | 5f420b4 | 2012-02-21 18:38:12 +0100 | [diff] [blame] | 1204 | |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 1205 | ret = iio_device_add_info_mask_type_avail(indio_dev, chan, |
| 1206 | IIO_SHARED_BY_TYPE, |
| 1207 | &chan-> |
| 1208 | info_mask_shared_by_type_available); |
| 1209 | if (ret < 0) |
| 1210 | return ret; |
| 1211 | attrcount += ret; |
| 1212 | |
Jonathan Cameron | c006ec8 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1213 | ret = iio_device_add_info_mask_type(indio_dev, chan, |
| 1214 | IIO_SHARED_BY_DIR, |
| 1215 | &chan->info_mask_shared_by_dir); |
| 1216 | if (ret < 0) |
| 1217 | return ret; |
| 1218 | attrcount += ret; |
| 1219 | |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 1220 | ret = iio_device_add_info_mask_type_avail(indio_dev, chan, |
| 1221 | IIO_SHARED_BY_DIR, |
| 1222 | &chan->info_mask_shared_by_dir_available); |
| 1223 | if (ret < 0) |
| 1224 | return ret; |
| 1225 | attrcount += ret; |
| 1226 | |
Jonathan Cameron | c006ec8 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1227 | ret = iio_device_add_info_mask_type(indio_dev, chan, |
| 1228 | IIO_SHARED_BY_ALL, |
| 1229 | &chan->info_mask_shared_by_all); |
| 1230 | if (ret < 0) |
| 1231 | return ret; |
| 1232 | attrcount += ret; |
| 1233 | |
Jonathan Cameron | 5123960 | 2016-11-08 12:58:51 +0100 | [diff] [blame] | 1234 | ret = iio_device_add_info_mask_type_avail(indio_dev, chan, |
| 1235 | IIO_SHARED_BY_ALL, |
| 1236 | &chan->info_mask_shared_by_all_available); |
| 1237 | if (ret < 0) |
| 1238 | return ret; |
| 1239 | attrcount += ret; |
| 1240 | |
Lars-Peter Clausen | 5f420b4 | 2012-02-21 18:38:12 +0100 | [diff] [blame] | 1241 | if (chan->ext_info) { |
| 1242 | unsigned int i = 0; |
| 1243 | for (ext_info = chan->ext_info; ext_info->name; ext_info++) { |
| 1244 | ret = __iio_add_chan_devattr(ext_info->name, |
| 1245 | chan, |
| 1246 | ext_info->read ? |
| 1247 | &iio_read_channel_ext_info : NULL, |
| 1248 | ext_info->write ? |
| 1249 | &iio_write_channel_ext_info : NULL, |
| 1250 | i, |
| 1251 | ext_info->shared, |
| 1252 | &indio_dev->dev, |
| 1253 | &indio_dev->channel_attr_list); |
| 1254 | i++; |
| 1255 | if (ret == -EBUSY && ext_info->shared) |
| 1256 | continue; |
| 1257 | |
| 1258 | if (ret) |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1259 | return ret; |
Lars-Peter Clausen | 5f420b4 | 2012-02-21 18:38:12 +0100 | [diff] [blame] | 1260 | |
| 1261 | attrcount++; |
| 1262 | } |
| 1263 | } |
| 1264 | |
Jonathan Cameron | 3704432 | 2013-09-08 14:57:00 +0100 | [diff] [blame] | 1265 | return attrcount; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1266 | } |
| 1267 | |
Lars-Peter Clausen | 84088eb | 2013-10-07 12:50:00 +0100 | [diff] [blame] | 1268 | /** |
| 1269 | * iio_free_chan_devattr_list() - Free a list of IIO device attributes |
| 1270 | * @attr_list: List of IIO device attributes |
| 1271 | * |
| 1272 | * This function frees the memory allocated for each of the IIO device |
Martin Fuzzey | c1b03ab | 2015-02-19 15:17:44 +0100 | [diff] [blame] | 1273 | * attributes in the list. |
Lars-Peter Clausen | 84088eb | 2013-10-07 12:50:00 +0100 | [diff] [blame] | 1274 | */ |
| 1275 | void iio_free_chan_devattr_list(struct list_head *attr_list) |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1276 | { |
Lars-Peter Clausen | 84088eb | 2013-10-07 12:50:00 +0100 | [diff] [blame] | 1277 | struct iio_dev_attr *p, *n; |
| 1278 | |
| 1279 | list_for_each_entry_safe(p, n, attr_list, l) { |
| 1280 | kfree(p->dev_attr.attr.name); |
Martin Fuzzey | c1b03ab | 2015-02-19 15:17:44 +0100 | [diff] [blame] | 1281 | list_del(&p->l); |
Lars-Peter Clausen | 84088eb | 2013-10-07 12:50:00 +0100 | [diff] [blame] | 1282 | kfree(p); |
| 1283 | } |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1284 | } |
| 1285 | |
Jonathan Cameron | 1b73288 | 2011-05-18 14:41:43 +0100 | [diff] [blame] | 1286 | static ssize_t iio_show_dev_name(struct device *dev, |
| 1287 | struct device_attribute *attr, |
| 1288 | char *buf) |
| 1289 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 1290 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Kees Cook | 598db58 | 2014-03-13 16:46:00 +0000 | [diff] [blame] | 1291 | return snprintf(buf, PAGE_SIZE, "%s\n", indio_dev->name); |
Jonathan Cameron | 1b73288 | 2011-05-18 14:41:43 +0100 | [diff] [blame] | 1292 | } |
| 1293 | |
| 1294 | static DEVICE_ATTR(name, S_IRUGO, iio_show_dev_name, NULL); |
| 1295 | |
Phil Reid | 2c3d0c9 | 2019-09-19 22:36:08 +0800 | [diff] [blame] | 1296 | static ssize_t iio_show_dev_label(struct device *dev, |
| 1297 | struct device_attribute *attr, |
| 1298 | char *buf) |
| 1299 | { |
| 1300 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
| 1301 | return snprintf(buf, PAGE_SIZE, "%s\n", indio_dev->label); |
| 1302 | } |
| 1303 | |
| 1304 | static DEVICE_ATTR(label, S_IRUGO, iio_show_dev_label, NULL); |
| 1305 | |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 1306 | static ssize_t iio_show_timestamp_clock(struct device *dev, |
| 1307 | struct device_attribute *attr, |
| 1308 | char *buf) |
| 1309 | { |
| 1310 | const struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
| 1311 | const clockid_t clk = iio_device_get_clock(indio_dev); |
| 1312 | const char *name; |
| 1313 | ssize_t sz; |
| 1314 | |
| 1315 | switch (clk) { |
| 1316 | case CLOCK_REALTIME: |
| 1317 | name = "realtime\n"; |
| 1318 | sz = sizeof("realtime\n"); |
| 1319 | break; |
| 1320 | case CLOCK_MONOTONIC: |
| 1321 | name = "monotonic\n"; |
| 1322 | sz = sizeof("monotonic\n"); |
| 1323 | break; |
| 1324 | case CLOCK_MONOTONIC_RAW: |
| 1325 | name = "monotonic_raw\n"; |
| 1326 | sz = sizeof("monotonic_raw\n"); |
| 1327 | break; |
| 1328 | case CLOCK_REALTIME_COARSE: |
| 1329 | name = "realtime_coarse\n"; |
| 1330 | sz = sizeof("realtime_coarse\n"); |
| 1331 | break; |
| 1332 | case CLOCK_MONOTONIC_COARSE: |
| 1333 | name = "monotonic_coarse\n"; |
| 1334 | sz = sizeof("monotonic_coarse\n"); |
| 1335 | break; |
| 1336 | case CLOCK_BOOTTIME: |
| 1337 | name = "boottime\n"; |
| 1338 | sz = sizeof("boottime\n"); |
| 1339 | break; |
| 1340 | case CLOCK_TAI: |
| 1341 | name = "tai\n"; |
| 1342 | sz = sizeof("tai\n"); |
| 1343 | break; |
| 1344 | default: |
| 1345 | BUG(); |
| 1346 | } |
| 1347 | |
| 1348 | memcpy(buf, name, sz); |
| 1349 | return sz; |
| 1350 | } |
| 1351 | |
| 1352 | static ssize_t iio_store_timestamp_clock(struct device *dev, |
| 1353 | struct device_attribute *attr, |
| 1354 | const char *buf, size_t len) |
| 1355 | { |
| 1356 | clockid_t clk; |
| 1357 | int ret; |
| 1358 | |
| 1359 | if (sysfs_streq(buf, "realtime")) |
| 1360 | clk = CLOCK_REALTIME; |
| 1361 | else if (sysfs_streq(buf, "monotonic")) |
| 1362 | clk = CLOCK_MONOTONIC; |
| 1363 | else if (sysfs_streq(buf, "monotonic_raw")) |
| 1364 | clk = CLOCK_MONOTONIC_RAW; |
| 1365 | else if (sysfs_streq(buf, "realtime_coarse")) |
| 1366 | clk = CLOCK_REALTIME_COARSE; |
| 1367 | else if (sysfs_streq(buf, "monotonic_coarse")) |
| 1368 | clk = CLOCK_MONOTONIC_COARSE; |
| 1369 | else if (sysfs_streq(buf, "boottime")) |
| 1370 | clk = CLOCK_BOOTTIME; |
| 1371 | else if (sysfs_streq(buf, "tai")) |
| 1372 | clk = CLOCK_TAI; |
| 1373 | else |
| 1374 | return -EINVAL; |
| 1375 | |
| 1376 | ret = iio_device_set_clock(dev_to_iio_dev(dev), clk); |
| 1377 | if (ret) |
| 1378 | return ret; |
| 1379 | |
| 1380 | return len; |
| 1381 | } |
| 1382 | |
| 1383 | static DEVICE_ATTR(current_timestamp_clock, S_IRUGO | S_IWUSR, |
| 1384 | iio_show_timestamp_clock, iio_store_timestamp_clock); |
| 1385 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1386 | static int iio_device_register_sysfs(struct iio_dev *indio_dev) |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1387 | { |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1388 | int i, ret = 0, attrcount, attrn, attrcount_orig = 0; |
Lars-Peter Clausen | 84088eb | 2013-10-07 12:50:00 +0100 | [diff] [blame] | 1389 | struct iio_dev_attr *p; |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 1390 | struct attribute **attr, *clk = NULL; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1391 | |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1392 | /* First count elements in any existing group */ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1393 | if (indio_dev->info->attrs) { |
| 1394 | attr = indio_dev->info->attrs->attrs; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1395 | while (*attr++ != NULL) |
| 1396 | attrcount_orig++; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1397 | } |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1398 | attrcount = attrcount_orig; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1399 | /* |
| 1400 | * New channel registration method - relies on the fact a group does |
Peter Meerwald | d25b380 | 2012-08-26 13:43:00 +0100 | [diff] [blame] | 1401 | * not need to be initialized if its name is NULL. |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1402 | */ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1403 | if (indio_dev->channels) |
| 1404 | for (i = 0; i < indio_dev->num_channels; i++) { |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 1405 | const struct iio_chan_spec *chan = |
| 1406 | &indio_dev->channels[i]; |
| 1407 | |
| 1408 | if (chan->type == IIO_TIMESTAMP) |
| 1409 | clk = &dev_attr_current_timestamp_clock.attr; |
| 1410 | |
| 1411 | ret = iio_device_add_channel_sysfs(indio_dev, chan); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1412 | if (ret < 0) |
| 1413 | goto error_clear_attrs; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1414 | attrcount += ret; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1415 | } |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1416 | |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 1417 | if (indio_dev->event_interface) |
| 1418 | clk = &dev_attr_current_timestamp_clock.attr; |
| 1419 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1420 | if (indio_dev->name) |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1421 | attrcount++; |
Phil Reid | 2c3d0c9 | 2019-09-19 22:36:08 +0800 | [diff] [blame] | 1422 | if (indio_dev->label) |
| 1423 | attrcount++; |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 1424 | if (clk) |
| 1425 | attrcount++; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1426 | |
Thomas Meyer | d83fb18 | 2011-11-29 22:08:00 +0100 | [diff] [blame] | 1427 | indio_dev->chan_attr_group.attrs = kcalloc(attrcount + 1, |
| 1428 | sizeof(indio_dev->chan_attr_group.attrs[0]), |
| 1429 | GFP_KERNEL); |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1430 | if (indio_dev->chan_attr_group.attrs == NULL) { |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1431 | ret = -ENOMEM; |
| 1432 | goto error_clear_attrs; |
Jonathan Cameron | 1b73288 | 2011-05-18 14:41:43 +0100 | [diff] [blame] | 1433 | } |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1434 | /* Copy across original attributes */ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1435 | if (indio_dev->info->attrs) |
| 1436 | memcpy(indio_dev->chan_attr_group.attrs, |
| 1437 | indio_dev->info->attrs->attrs, |
| 1438 | sizeof(indio_dev->chan_attr_group.attrs[0]) |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1439 | *attrcount_orig); |
| 1440 | attrn = attrcount_orig; |
| 1441 | /* Add all elements from the list. */ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1442 | list_for_each_entry(p, &indio_dev->channel_attr_list, l) |
| 1443 | indio_dev->chan_attr_group.attrs[attrn++] = &p->dev_attr.attr; |
| 1444 | if (indio_dev->name) |
| 1445 | indio_dev->chan_attr_group.attrs[attrn++] = &dev_attr_name.attr; |
Phil Reid | 2c3d0c9 | 2019-09-19 22:36:08 +0800 | [diff] [blame] | 1446 | if (indio_dev->label) |
| 1447 | indio_dev->chan_attr_group.attrs[attrn++] = &dev_attr_label.attr; |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 1448 | if (clk) |
| 1449 | indio_dev->chan_attr_group.attrs[attrn++] = clk; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1450 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1451 | indio_dev->groups[indio_dev->groupcounter++] = |
| 1452 | &indio_dev->chan_attr_group; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1453 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1454 | return 0; |
Jonathan Cameron | 1b73288 | 2011-05-18 14:41:43 +0100 | [diff] [blame] | 1455 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1456 | error_clear_attrs: |
Lars-Peter Clausen | 84088eb | 2013-10-07 12:50:00 +0100 | [diff] [blame] | 1457 | iio_free_chan_devattr_list(&indio_dev->channel_attr_list); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1458 | |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1459 | return ret; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1460 | } |
| 1461 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1462 | static void iio_device_unregister_sysfs(struct iio_dev *indio_dev) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1463 | { |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 1464 | |
Lars-Peter Clausen | 84088eb | 2013-10-07 12:50:00 +0100 | [diff] [blame] | 1465 | iio_free_chan_devattr_list(&indio_dev->channel_attr_list); |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1466 | kfree(indio_dev->chan_attr_group.attrs); |
Martin Fuzzey | c1b03ab | 2015-02-19 15:17:44 +0100 | [diff] [blame] | 1467 | indio_dev->chan_attr_group.attrs = NULL; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1468 | } |
| 1469 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1470 | static void iio_dev_release(struct device *device) |
| 1471 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 1472 | struct iio_dev *indio_dev = dev_to_iio_dev(device); |
Benjamin Gaignard | d89e119 | 2017-04-27 15:29:15 +0200 | [diff] [blame] | 1473 | if (indio_dev->modes & INDIO_ALL_TRIGGERED_MODES) |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1474 | iio_device_unregister_trigger_consumer(indio_dev); |
| 1475 | iio_device_unregister_eventset(indio_dev); |
| 1476 | iio_device_unregister_sysfs(indio_dev); |
Lars-Peter Clausen | e407fd6 | 2012-06-04 10:41:42 +0200 | [diff] [blame] | 1477 | |
Lars-Peter Clausen | 9e69c93 | 2013-10-04 12:06:00 +0100 | [diff] [blame] | 1478 | iio_buffer_put(indio_dev->buffer); |
| 1479 | |
Lars-Peter Clausen | e407fd6 | 2012-06-04 10:41:42 +0200 | [diff] [blame] | 1480 | ida_simple_remove(&iio_ida, indio_dev->id); |
| 1481 | kfree(indio_dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1482 | } |
| 1483 | |
Guenter Roeck | 17d82b4 | 2013-02-07 17:09:00 +0000 | [diff] [blame] | 1484 | struct device_type iio_device_type = { |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1485 | .name = "iio_device", |
| 1486 | .release = iio_dev_release, |
| 1487 | }; |
| 1488 | |
Sachin Kamat | a7e57dc | 2013-10-29 11:39:00 +0000 | [diff] [blame] | 1489 | /** |
| 1490 | * iio_device_alloc() - allocate an iio_dev from a driver |
| 1491 | * @sizeof_priv: Space to allocate for private structure. |
| 1492 | **/ |
Lars-Peter Clausen | 7cbb753 | 2012-04-26 13:35:01 +0200 | [diff] [blame] | 1493 | struct iio_dev *iio_device_alloc(int sizeof_priv) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1494 | { |
Jonathan Cameron | 6f7c8ee | 2011-04-15 18:55:56 +0100 | [diff] [blame] | 1495 | struct iio_dev *dev; |
| 1496 | size_t alloc_size; |
| 1497 | |
| 1498 | alloc_size = sizeof(struct iio_dev); |
| 1499 | if (sizeof_priv) { |
| 1500 | alloc_size = ALIGN(alloc_size, IIO_ALIGN); |
| 1501 | alloc_size += sizeof_priv; |
| 1502 | } |
| 1503 | /* ensure 32-byte alignment of whole construct ? */ |
| 1504 | alloc_size += IIO_ALIGN - 1; |
| 1505 | |
| 1506 | dev = kzalloc(alloc_size, GFP_KERNEL); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1507 | |
| 1508 | if (dev) { |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1509 | dev->dev.groups = dev->groups; |
Guenter Roeck | 17d82b4 | 2013-02-07 17:09:00 +0000 | [diff] [blame] | 1510 | dev->dev.type = &iio_device_type; |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 1511 | dev->dev.bus = &iio_bus_type; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1512 | device_initialize(&dev->dev); |
| 1513 | dev_set_drvdata(&dev->dev, (void *)dev); |
| 1514 | mutex_init(&dev->mlock); |
Jonathan Cameron | ac917a8 | 2012-02-15 19:48:00 +0000 | [diff] [blame] | 1515 | mutex_init(&dev->info_exist_lock); |
Lars-Peter Clausen | e407fd6 | 2012-06-04 10:41:42 +0200 | [diff] [blame] | 1516 | INIT_LIST_HEAD(&dev->channel_attr_list); |
Jonathan Cameron | a9e39f9 | 2011-09-14 13:01:25 +0100 | [diff] [blame] | 1517 | |
| 1518 | dev->id = ida_simple_get(&iio_ida, 0, 0, GFP_KERNEL); |
| 1519 | if (dev->id < 0) { |
| 1520 | /* cannot use a dev_err as the name isn't available */ |
Sachin Kamat | 3176dd5 | 2013-10-24 12:53:00 +0100 | [diff] [blame] | 1521 | pr_err("failed to get device id\n"); |
Jonathan Cameron | a9e39f9 | 2011-09-14 13:01:25 +0100 | [diff] [blame] | 1522 | kfree(dev); |
| 1523 | return NULL; |
| 1524 | } |
| 1525 | dev_set_name(&dev->dev, "iio:device%d", dev->id); |
Jonathan Cameron | 84b36ce | 2012-06-30 20:06:00 +0100 | [diff] [blame] | 1526 | INIT_LIST_HEAD(&dev->buffer_list); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1527 | } |
| 1528 | |
| 1529 | return dev; |
| 1530 | } |
Lars-Peter Clausen | 7cbb753 | 2012-04-26 13:35:01 +0200 | [diff] [blame] | 1531 | EXPORT_SYMBOL(iio_device_alloc); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1532 | |
Sachin Kamat | a7e57dc | 2013-10-29 11:39:00 +0000 | [diff] [blame] | 1533 | /** |
| 1534 | * iio_device_free() - free an iio_dev from a driver |
| 1535 | * @dev: the iio_dev associated with the device |
| 1536 | **/ |
Lars-Peter Clausen | 7cbb753 | 2012-04-26 13:35:01 +0200 | [diff] [blame] | 1537 | void iio_device_free(struct iio_dev *dev) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1538 | { |
Lars-Peter Clausen | e407fd6 | 2012-06-04 10:41:42 +0200 | [diff] [blame] | 1539 | if (dev) |
| 1540 | put_device(&dev->dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1541 | } |
Lars-Peter Clausen | 7cbb753 | 2012-04-26 13:35:01 +0200 | [diff] [blame] | 1542 | EXPORT_SYMBOL(iio_device_free); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1543 | |
Grygorii Strashko | 9dabaf5 | 2013-07-18 11:19:00 +0100 | [diff] [blame] | 1544 | static void devm_iio_device_release(struct device *dev, void *res) |
| 1545 | { |
| 1546 | iio_device_free(*(struct iio_dev **)res); |
| 1547 | } |
| 1548 | |
Gregor Boirie | 70e4834 | 2016-09-02 20:47:55 +0200 | [diff] [blame] | 1549 | int devm_iio_device_match(struct device *dev, void *res, void *data) |
Grygorii Strashko | 9dabaf5 | 2013-07-18 11:19:00 +0100 | [diff] [blame] | 1550 | { |
| 1551 | struct iio_dev **r = res; |
| 1552 | if (!r || !*r) { |
| 1553 | WARN_ON(!r || !*r); |
| 1554 | return 0; |
| 1555 | } |
| 1556 | return *r == data; |
| 1557 | } |
Gregor Boirie | 70e4834 | 2016-09-02 20:47:55 +0200 | [diff] [blame] | 1558 | EXPORT_SYMBOL_GPL(devm_iio_device_match); |
Grygorii Strashko | 9dabaf5 | 2013-07-18 11:19:00 +0100 | [diff] [blame] | 1559 | |
Sachin Kamat | a7e57dc | 2013-10-29 11:39:00 +0000 | [diff] [blame] | 1560 | /** |
| 1561 | * devm_iio_device_alloc - Resource-managed iio_device_alloc() |
| 1562 | * @dev: Device to allocate iio_dev for |
| 1563 | * @sizeof_priv: Space to allocate for private structure. |
| 1564 | * |
| 1565 | * Managed iio_device_alloc. iio_dev allocated with this function is |
| 1566 | * automatically freed on driver detach. |
| 1567 | * |
| 1568 | * If an iio_dev allocated with this function needs to be freed separately, |
| 1569 | * devm_iio_device_free() must be used. |
| 1570 | * |
| 1571 | * RETURNS: |
| 1572 | * Pointer to allocated iio_dev on success, NULL on failure. |
| 1573 | */ |
Grygorii Strashko | 9dabaf5 | 2013-07-18 11:19:00 +0100 | [diff] [blame] | 1574 | struct iio_dev *devm_iio_device_alloc(struct device *dev, int sizeof_priv) |
| 1575 | { |
| 1576 | struct iio_dev **ptr, *iio_dev; |
| 1577 | |
| 1578 | ptr = devres_alloc(devm_iio_device_release, sizeof(*ptr), |
| 1579 | GFP_KERNEL); |
| 1580 | if (!ptr) |
| 1581 | return NULL; |
| 1582 | |
Grygorii Strashko | 9dabaf5 | 2013-07-18 11:19:00 +0100 | [diff] [blame] | 1583 | iio_dev = iio_device_alloc(sizeof_priv); |
| 1584 | if (iio_dev) { |
| 1585 | *ptr = iio_dev; |
| 1586 | devres_add(dev, ptr); |
| 1587 | } else { |
| 1588 | devres_free(ptr); |
| 1589 | } |
| 1590 | |
| 1591 | return iio_dev; |
| 1592 | } |
| 1593 | EXPORT_SYMBOL_GPL(devm_iio_device_alloc); |
| 1594 | |
Sachin Kamat | a7e57dc | 2013-10-29 11:39:00 +0000 | [diff] [blame] | 1595 | /** |
| 1596 | * devm_iio_device_free - Resource-managed iio_device_free() |
| 1597 | * @dev: Device this iio_dev belongs to |
| 1598 | * @iio_dev: the iio_dev associated with the device |
| 1599 | * |
| 1600 | * Free iio_dev allocated with devm_iio_device_alloc(). |
| 1601 | */ |
Grygorii Strashko | 9dabaf5 | 2013-07-18 11:19:00 +0100 | [diff] [blame] | 1602 | void devm_iio_device_free(struct device *dev, struct iio_dev *iio_dev) |
| 1603 | { |
| 1604 | int rc; |
| 1605 | |
| 1606 | rc = devres_release(dev, devm_iio_device_release, |
| 1607 | devm_iio_device_match, iio_dev); |
| 1608 | WARN_ON(rc); |
| 1609 | } |
| 1610 | EXPORT_SYMBOL_GPL(devm_iio_device_free); |
| 1611 | |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 1612 | /** |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 1613 | * iio_chrdev_open() - chrdev file open for buffer access and ioctls |
Cristina Opriceana | 2498dcf | 2015-07-24 16:16:19 +0300 | [diff] [blame] | 1614 | * @inode: Inode structure for identifying the device in the file system |
| 1615 | * @filp: File structure for iio device used to keep and later access |
| 1616 | * private data |
| 1617 | * |
| 1618 | * Return: 0 on success or -EBUSY if the device is already opened |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 1619 | **/ |
| 1620 | static int iio_chrdev_open(struct inode *inode, struct file *filp) |
| 1621 | { |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1622 | struct iio_dev *indio_dev = container_of(inode->i_cdev, |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 1623 | struct iio_dev, chrdev); |
Lars-Peter Clausen | bb01443 | 2011-12-19 15:23:45 +0100 | [diff] [blame] | 1624 | |
| 1625 | if (test_and_set_bit(IIO_BUSY_BIT_POS, &indio_dev->flags)) |
| 1626 | return -EBUSY; |
| 1627 | |
Lars-Peter Clausen | cadc212 | 2013-09-18 21:02:00 +0100 | [diff] [blame] | 1628 | iio_device_get(indio_dev); |
| 1629 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1630 | filp->private_data = indio_dev; |
Jonathan Cameron | 30eb82f | 2011-09-21 11:16:02 +0100 | [diff] [blame] | 1631 | |
Lars-Peter Clausen | 7933514 | 2011-12-19 15:23:49 +0100 | [diff] [blame] | 1632 | return 0; |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 1633 | } |
| 1634 | |
| 1635 | /** |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 1636 | * iio_chrdev_release() - chrdev file close buffer access and ioctls |
Cristina Opriceana | 2498dcf | 2015-07-24 16:16:19 +0300 | [diff] [blame] | 1637 | * @inode: Inode structure pointer for the char device |
| 1638 | * @filp: File structure pointer for the char device |
| 1639 | * |
| 1640 | * Return: 0 for successful release |
| 1641 | */ |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 1642 | static int iio_chrdev_release(struct inode *inode, struct file *filp) |
| 1643 | { |
Lars-Peter Clausen | bb01443 | 2011-12-19 15:23:45 +0100 | [diff] [blame] | 1644 | struct iio_dev *indio_dev = container_of(inode->i_cdev, |
| 1645 | struct iio_dev, chrdev); |
Lars-Peter Clausen | bb01443 | 2011-12-19 15:23:45 +0100 | [diff] [blame] | 1646 | clear_bit(IIO_BUSY_BIT_POS, &indio_dev->flags); |
Lars-Peter Clausen | cadc212 | 2013-09-18 21:02:00 +0100 | [diff] [blame] | 1647 | iio_device_put(indio_dev); |
| 1648 | |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 1649 | return 0; |
| 1650 | } |
| 1651 | |
| 1652 | /* Somewhat of a cross file organization violation - ioctls here are actually |
| 1653 | * event related */ |
| 1654 | static long iio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
| 1655 | { |
| 1656 | struct iio_dev *indio_dev = filp->private_data; |
| 1657 | int __user *ip = (int __user *)arg; |
| 1658 | int fd; |
| 1659 | |
Lars-Peter Clausen | f18e7a0 | 2013-10-04 12:06:00 +0100 | [diff] [blame] | 1660 | if (!indio_dev->info) |
| 1661 | return -ENODEV; |
| 1662 | |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 1663 | if (cmd == IIO_GET_EVENT_FD_IOCTL) { |
| 1664 | fd = iio_event_getfd(indio_dev); |
Linus Walleij | 3f9059b | 2015-08-11 11:56:40 +0200 | [diff] [blame] | 1665 | if (fd < 0) |
| 1666 | return fd; |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 1667 | if (copy_to_user(ip, &fd, sizeof(fd))) |
| 1668 | return -EFAULT; |
| 1669 | return 0; |
| 1670 | } |
| 1671 | return -EINVAL; |
| 1672 | } |
| 1673 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 1674 | static const struct file_operations iio_buffer_fileops = { |
Lars-Peter Clausen | f6d4033 | 2019-12-11 12:43:00 +0200 | [diff] [blame] | 1675 | .read = iio_buffer_read_outer_addr, |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 1676 | .release = iio_chrdev_release, |
| 1677 | .open = iio_chrdev_open, |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 1678 | .poll = iio_buffer_poll_addr, |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 1679 | .owner = THIS_MODULE, |
| 1680 | .llseek = noop_llseek, |
| 1681 | .unlocked_ioctl = iio_ioctl, |
Arnd Bergmann | 1832f2d | 2018-09-11 21:59:08 +0200 | [diff] [blame] | 1682 | .compat_ioctl = compat_ptr_ioctl, |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 1683 | }; |
| 1684 | |
Vlad Dogaru | 8f5d872 | 2014-12-29 11:37:48 +0200 | [diff] [blame] | 1685 | static int iio_check_unique_scan_index(struct iio_dev *indio_dev) |
| 1686 | { |
| 1687 | int i, j; |
| 1688 | const struct iio_chan_spec *channels = indio_dev->channels; |
| 1689 | |
| 1690 | if (!(indio_dev->modes & INDIO_ALL_BUFFER_MODES)) |
| 1691 | return 0; |
| 1692 | |
| 1693 | for (i = 0; i < indio_dev->num_channels - 1; i++) { |
| 1694 | if (channels[i].scan_index < 0) |
| 1695 | continue; |
| 1696 | for (j = i + 1; j < indio_dev->num_channels; j++) |
| 1697 | if (channels[i].scan_index == channels[j].scan_index) { |
| 1698 | dev_err(&indio_dev->dev, |
| 1699 | "Duplicate scan index %d\n", |
| 1700 | channels[i].scan_index); |
| 1701 | return -EINVAL; |
| 1702 | } |
| 1703 | } |
| 1704 | |
| 1705 | return 0; |
| 1706 | } |
| 1707 | |
Michael Hennerich | 0f1acee | 2012-03-01 10:51:04 +0100 | [diff] [blame] | 1708 | static const struct iio_buffer_setup_ops noop_ring_setup_ops; |
| 1709 | |
Jonathan Cameron | 63b1954 | 2017-07-23 17:25:43 +0100 | [diff] [blame] | 1710 | int __iio_device_register(struct iio_dev *indio_dev, struct module *this_mod) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1711 | { |
| 1712 | int ret; |
| 1713 | |
Alexandru Ardelean | a17cb78 | 2020-04-07 18:07:43 +0300 | [diff] [blame^] | 1714 | if (!indio_dev->info) |
| 1715 | return -EINVAL; |
| 1716 | |
Jonathan Cameron | 63b1954 | 2017-07-23 17:25:43 +0100 | [diff] [blame] | 1717 | indio_dev->driver_module = this_mod; |
Guenter Roeck | 17d82b4 | 2013-02-07 17:09:00 +0000 | [diff] [blame] | 1718 | /* If the calling driver did not initialize of_node, do it here */ |
| 1719 | if (!indio_dev->dev.of_node && indio_dev->dev.parent) |
| 1720 | indio_dev->dev.of_node = indio_dev->dev.parent->of_node; |
| 1721 | |
Phil Reid | 2c3d0c9 | 2019-09-19 22:36:08 +0800 | [diff] [blame] | 1722 | indio_dev->label = of_get_property(indio_dev->dev.of_node, "label", |
| 1723 | NULL); |
| 1724 | |
Vlad Dogaru | 8f5d872 | 2014-12-29 11:37:48 +0200 | [diff] [blame] | 1725 | ret = iio_check_unique_scan_index(indio_dev); |
| 1726 | if (ret < 0) |
| 1727 | return ret; |
| 1728 | |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 1729 | /* configure elements for the chrdev */ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1730 | indio_dev->dev.devt = MKDEV(MAJOR(iio_devt), indio_dev->id); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1731 | |
Greg Kroah-Hartman | 8915aac | 2019-06-18 17:54:40 +0200 | [diff] [blame] | 1732 | iio_device_register_debugfs(indio_dev); |
Lars-Peter Clausen | 3e1b6c9 | 2014-11-26 18:55:12 +0100 | [diff] [blame] | 1733 | |
| 1734 | ret = iio_buffer_alloc_sysfs_and_mask(indio_dev); |
| 1735 | if (ret) { |
| 1736 | dev_err(indio_dev->dev.parent, |
| 1737 | "Failed to create buffer sysfs interfaces\n"); |
| 1738 | goto error_unreg_debugfs; |
| 1739 | } |
| 1740 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1741 | ret = iio_device_register_sysfs(indio_dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1742 | if (ret) { |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1743 | dev_err(indio_dev->dev.parent, |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1744 | "Failed to register sysfs interfaces\n"); |
Lars-Peter Clausen | 3e1b6c9 | 2014-11-26 18:55:12 +0100 | [diff] [blame] | 1745 | goto error_buffer_free_sysfs; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1746 | } |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1747 | ret = iio_device_register_eventset(indio_dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1748 | if (ret) { |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1749 | dev_err(indio_dev->dev.parent, |
Roel Van Nyen | c849d25 | 2010-04-29 19:27:31 +0200 | [diff] [blame] | 1750 | "Failed to register event set\n"); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1751 | goto error_free_sysfs; |
| 1752 | } |
Benjamin Gaignard | d89e119 | 2017-04-27 15:29:15 +0200 | [diff] [blame] | 1753 | if (indio_dev->modes & INDIO_ALL_TRIGGERED_MODES) |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1754 | iio_device_register_trigger_consumer(indio_dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1755 | |
Michael Hennerich | 0f1acee | 2012-03-01 10:51:04 +0100 | [diff] [blame] | 1756 | if ((indio_dev->modes & INDIO_ALL_BUFFER_MODES) && |
| 1757 | indio_dev->setup_ops == NULL) |
| 1758 | indio_dev->setup_ops = &noop_ring_setup_ops; |
| 1759 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1760 | cdev_init(&indio_dev->chrdev, &iio_buffer_fileops); |
Jonathan Cameron | 63b1954 | 2017-07-23 17:25:43 +0100 | [diff] [blame] | 1761 | |
| 1762 | indio_dev->chrdev.owner = this_mod; |
Logan Gunthorpe | 38923911 | 2017-03-17 12:48:17 -0600 | [diff] [blame] | 1763 | |
| 1764 | ret = cdev_device_add(&indio_dev->chrdev, &indio_dev->dev); |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1765 | if (ret < 0) |
Lars-Peter Clausen | 0d5b7da | 2013-09-18 21:02:00 +0100 | [diff] [blame] | 1766 | goto error_unreg_eventset; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1767 | |
Lars-Peter Clausen | 0d5b7da | 2013-09-18 21:02:00 +0100 | [diff] [blame] | 1768 | return 0; |
Logan Gunthorpe | 38923911 | 2017-03-17 12:48:17 -0600 | [diff] [blame] | 1769 | |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1770 | error_unreg_eventset: |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1771 | iio_device_unregister_eventset(indio_dev); |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 1772 | error_free_sysfs: |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1773 | iio_device_unregister_sysfs(indio_dev); |
Lars-Peter Clausen | 3e1b6c9 | 2014-11-26 18:55:12 +0100 | [diff] [blame] | 1774 | error_buffer_free_sysfs: |
| 1775 | iio_buffer_free_sysfs_and_mask(indio_dev); |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 1776 | error_unreg_debugfs: |
| 1777 | iio_device_unregister_debugfs(indio_dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1778 | return ret; |
| 1779 | } |
Jonathan Cameron | 63b1954 | 2017-07-23 17:25:43 +0100 | [diff] [blame] | 1780 | EXPORT_SYMBOL(__iio_device_register); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1781 | |
Sachin Kamat | a7e57dc | 2013-10-29 11:39:00 +0000 | [diff] [blame] | 1782 | /** |
| 1783 | * iio_device_unregister() - unregister a device from the IIO subsystem |
| 1784 | * @indio_dev: Device structure representing the device. |
| 1785 | **/ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 1786 | void iio_device_unregister(struct iio_dev *indio_dev) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1787 | { |
Logan Gunthorpe | 38923911 | 2017-03-17 12:48:17 -0600 | [diff] [blame] | 1788 | cdev_device_del(&indio_dev->chrdev, &indio_dev->dev); |
Lars-Peter Clausen | a87c82e | 2013-09-18 21:02:00 +0100 | [diff] [blame] | 1789 | |
Fabrice Gasnier | 7f75591fc | 2019-03-25 14:01:23 +0100 | [diff] [blame] | 1790 | mutex_lock(&indio_dev->info_exist_lock); |
| 1791 | |
Lars-Peter Clausen | bc4c961 | 2013-09-21 16:21:00 +0100 | [diff] [blame] | 1792 | iio_device_unregister_debugfs(indio_dev); |
Lars-Peter Clausen | 0d5b7da | 2013-09-18 21:02:00 +0100 | [diff] [blame] | 1793 | |
Lars-Peter Clausen | a87c82e | 2013-09-18 21:02:00 +0100 | [diff] [blame] | 1794 | iio_disable_all_buffers(indio_dev); |
| 1795 | |
Jonathan Cameron | ac917a8 | 2012-02-15 19:48:00 +0000 | [diff] [blame] | 1796 | indio_dev->info = NULL; |
Lars-Peter Clausen | d2f0a48 | 2013-10-04 12:07:00 +0100 | [diff] [blame] | 1797 | |
| 1798 | iio_device_wakeup_eventset(indio_dev); |
| 1799 | iio_buffer_wakeup_poll(indio_dev); |
| 1800 | |
Jonathan Cameron | ac917a8 | 2012-02-15 19:48:00 +0000 | [diff] [blame] | 1801 | mutex_unlock(&indio_dev->info_exist_lock); |
Lars-Peter Clausen | 3e1b6c9 | 2014-11-26 18:55:12 +0100 | [diff] [blame] | 1802 | |
| 1803 | iio_buffer_free_sysfs_and_mask(indio_dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1804 | } |
| 1805 | EXPORT_SYMBOL(iio_device_unregister); |
Sachin Kamat | 8caa07c | 2013-10-29 11:39:00 +0000 | [diff] [blame] | 1806 | |
| 1807 | static void devm_iio_device_unreg(struct device *dev, void *res) |
| 1808 | { |
| 1809 | iio_device_unregister(*(struct iio_dev **)res); |
| 1810 | } |
| 1811 | |
Jonathan Cameron | 63b1954 | 2017-07-23 17:25:43 +0100 | [diff] [blame] | 1812 | int __devm_iio_device_register(struct device *dev, struct iio_dev *indio_dev, |
| 1813 | struct module *this_mod) |
Sachin Kamat | 8caa07c | 2013-10-29 11:39:00 +0000 | [diff] [blame] | 1814 | { |
| 1815 | struct iio_dev **ptr; |
| 1816 | int ret; |
| 1817 | |
| 1818 | ptr = devres_alloc(devm_iio_device_unreg, sizeof(*ptr), GFP_KERNEL); |
| 1819 | if (!ptr) |
| 1820 | return -ENOMEM; |
| 1821 | |
| 1822 | *ptr = indio_dev; |
Jonathan Cameron | 63b1954 | 2017-07-23 17:25:43 +0100 | [diff] [blame] | 1823 | ret = __iio_device_register(indio_dev, this_mod); |
Sachin Kamat | 8caa07c | 2013-10-29 11:39:00 +0000 | [diff] [blame] | 1824 | if (!ret) |
| 1825 | devres_add(dev, ptr); |
| 1826 | else |
| 1827 | devres_free(ptr); |
| 1828 | |
| 1829 | return ret; |
| 1830 | } |
Jonathan Cameron | 63b1954 | 2017-07-23 17:25:43 +0100 | [diff] [blame] | 1831 | EXPORT_SYMBOL_GPL(__devm_iio_device_register); |
Sachin Kamat | 8caa07c | 2013-10-29 11:39:00 +0000 | [diff] [blame] | 1832 | |
| 1833 | /** |
| 1834 | * devm_iio_device_unregister - Resource-managed iio_device_unregister() |
| 1835 | * @dev: Device this iio_dev belongs to |
| 1836 | * @indio_dev: the iio_dev associated with the device |
| 1837 | * |
| 1838 | * Unregister iio_dev registered with devm_iio_device_register(). |
| 1839 | */ |
| 1840 | void devm_iio_device_unregister(struct device *dev, struct iio_dev *indio_dev) |
| 1841 | { |
| 1842 | int rc; |
| 1843 | |
| 1844 | rc = devres_release(dev, devm_iio_device_unreg, |
| 1845 | devm_iio_device_match, indio_dev); |
| 1846 | WARN_ON(rc); |
| 1847 | } |
| 1848 | EXPORT_SYMBOL_GPL(devm_iio_device_unregister); |
| 1849 | |
Alison Schofield | 08a3380 | 2016-03-09 11:30:12 -0800 | [diff] [blame] | 1850 | /** |
| 1851 | * iio_device_claim_direct_mode - Keep device in direct mode |
| 1852 | * @indio_dev: the iio_dev associated with the device |
| 1853 | * |
| 1854 | * If the device is in direct mode it is guaranteed to stay |
| 1855 | * that way until iio_device_release_direct_mode() is called. |
| 1856 | * |
| 1857 | * Use with iio_device_release_direct_mode() |
| 1858 | * |
| 1859 | * Returns: 0 on success, -EBUSY on failure |
| 1860 | */ |
| 1861 | int iio_device_claim_direct_mode(struct iio_dev *indio_dev) |
| 1862 | { |
| 1863 | mutex_lock(&indio_dev->mlock); |
| 1864 | |
| 1865 | if (iio_buffer_enabled(indio_dev)) { |
| 1866 | mutex_unlock(&indio_dev->mlock); |
| 1867 | return -EBUSY; |
| 1868 | } |
| 1869 | return 0; |
| 1870 | } |
| 1871 | EXPORT_SYMBOL_GPL(iio_device_claim_direct_mode); |
| 1872 | |
| 1873 | /** |
| 1874 | * iio_device_release_direct_mode - releases claim on direct mode |
| 1875 | * @indio_dev: the iio_dev associated with the device |
| 1876 | * |
| 1877 | * Release the claim. Device is no longer guaranteed to stay |
| 1878 | * in direct mode. |
| 1879 | * |
| 1880 | * Use with iio_device_claim_direct_mode() |
| 1881 | */ |
| 1882 | void iio_device_release_direct_mode(struct iio_dev *indio_dev) |
| 1883 | { |
| 1884 | mutex_unlock(&indio_dev->mlock); |
| 1885 | } |
| 1886 | EXPORT_SYMBOL_GPL(iio_device_release_direct_mode); |
| 1887 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1888 | subsys_initcall(iio_init); |
| 1889 | module_exit(iio_exit); |
| 1890 | |
Jonathan Cameron | c8b9595 | 2012-09-02 21:27:56 +0100 | [diff] [blame] | 1891 | MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>"); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1892 | MODULE_DESCRIPTION("Industrial I/O core"); |
| 1893 | MODULE_LICENSE("GPL"); |