blob: a16ad5a4ab0cbe4637955bc19267fbafd35c1950 [file] [log] [blame]
Jonathan Cameron847ec802009-08-18 18:06:19 +01001/* The industrial I/O core
2 *
3 * Copyright (c) 2008 Jonathan Cameron
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 *
9 * Based on elements of hwmon and input subsystems.
10 */
11
Sachin Kamat3176dd52013-10-24 12:53:00 +010012#define pr_fmt(fmt) "iio-core: " fmt
13
Jonathan Cameron847ec802009-08-18 18:06:19 +010014#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/idr.h>
17#include <linux/kdev_t.h>
18#include <linux/err.h>
19#include <linux/device.h>
20#include <linux/fs.h>
Jonathan Cameron847ec802009-08-18 18:06:19 +010021#include <linux/poll.h>
Jonathan Cameronffc18af2009-10-12 19:18:09 +010022#include <linux/sched.h>
Jeff Mahoney4439c932009-10-12 17:10:34 -040023#include <linux/wait.h>
Jonathan Cameron847ec802009-08-18 18:06:19 +010024#include <linux/cdev.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Jonathan Cameron8e7d9672011-08-30 12:32:45 +010026#include <linux/anon_inodes.h>
Michael Henneriche553f182012-03-01 10:51:03 +010027#include <linux/debugfs.h>
Alison Schofield08a33802016-03-09 11:30:12 -080028#include <linux/mutex.h>
Jonathan Cameron06458e22012-04-25 15:54:58 +010029#include <linux/iio/iio.h>
Jonathan Camerondf9c1c42011-08-12 17:56:03 +010030#include "iio_core.h"
Jonathan Cameron6aea1c32011-08-24 17:28:38 +010031#include "iio_core_trigger.h"
Jonathan Cameron06458e22012-04-25 15:54:58 +010032#include <linux/iio/sysfs.h>
33#include <linux/iio/events.h>
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +010034#include <linux/iio/buffer.h>
Jonathan Cameron33dd94c2017-01-02 19:28:34 +000035#include <linux/iio/buffer_impl.h>
Jonathan Cameron9dd1cb32011-08-30 12:41:15 +010036
Peter Meerwald99698b42012-08-26 13:43:00 +010037/* IDA to assign each registered device a unique id */
Jonathan Cameronb156cf72010-09-04 17:54:43 +010038static DEFINE_IDA(iio_ida);
Jonathan Cameron847ec802009-08-18 18:06:19 +010039
Jonathan Cameronf625cb92011-08-30 12:32:48 +010040static dev_t iio_devt;
Jonathan Cameron847ec802009-08-18 18:06:19 +010041
42#define IIO_DEV_MAX 256
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +010043struct bus_type iio_bus_type = {
Jonathan Cameron847ec802009-08-18 18:06:19 +010044 .name = "iio",
Jonathan Cameron847ec802009-08-18 18:06:19 +010045};
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +010046EXPORT_SYMBOL(iio_bus_type);
Jonathan Cameron847ec802009-08-18 18:06:19 +010047
Michael Henneriche553f182012-03-01 10:51:03 +010048static struct dentry *iio_debugfs_dentry;
49
Jonathan Cameronc6fc8062011-09-02 17:14:34 +010050static const char * const iio_direction[] = {
51 [0] = "in",
52 [1] = "out",
53};
54
Jonathan Cameronade7ef72011-09-02 17:14:45 +010055static const char * const iio_chan_type_name_spec[] = {
Jonathan Cameronc6fc8062011-09-02 17:14:34 +010056 [IIO_VOLTAGE] = "voltage",
Michael Hennerichfaf290e2011-05-18 14:42:02 +010057 [IIO_CURRENT] = "current",
58 [IIO_POWER] = "power",
Bryan Freed9bff02f2011-07-07 12:01:54 -070059 [IIO_ACCEL] = "accel",
Jonathan Cameron41ea0402011-10-05 15:27:59 +010060 [IIO_ANGL_VEL] = "anglvel",
Jonathan Cameron1d892712011-05-18 14:40:51 +010061 [IIO_MAGN] = "magn",
Bryan Freed9bff02f2011-07-07 12:01:54 -070062 [IIO_LIGHT] = "illuminance",
63 [IIO_INTENSITY] = "intensity",
Bryan Freedf09f2c82011-07-07 12:01:55 -070064 [IIO_PROXIMITY] = "proximity",
Bryan Freed9bff02f2011-07-07 12:01:54 -070065 [IIO_TEMP] = "temp",
Jonathan Cameron1d892712011-05-18 14:40:51 +010066 [IIO_INCLI] = "incli",
67 [IIO_ROT] = "rot",
Jonathan Cameron1d892712011-05-18 14:40:51 +010068 [IIO_ANGL] = "angl",
Bryan Freed9bff02f2011-07-07 12:01:54 -070069 [IIO_TIMESTAMP] = "timestamp",
Jonathan Cameron66dbe702011-09-02 17:14:43 +010070 [IIO_CAPACITANCE] = "capacitance",
Michael Hennericha6b12852012-04-27 10:58:34 +020071 [IIO_ALTVOLTAGE] = "altvoltage",
Jon Brenner21cd1fa2012-05-16 10:46:42 -050072 [IIO_CCT] = "cct",
Lars-Peter Clausenc4f0c692012-11-20 13:36:00 +000073 [IIO_PRESSURE] = "pressure",
Harald Geyerac216aa2013-12-01 15:08:00 +000074 [IIO_HUMIDITYRELATIVE] = "humidityrelative",
Daniel Baluta55aebeb2014-11-10 14:45:30 +020075 [IIO_ACTIVITY] = "activity",
Irina Tirdeaa88bfe72014-11-10 14:45:32 +020076 [IIO_STEPS] = "steps",
Irina Tirdea72c66642015-01-11 21:10:07 +020077 [IIO_ENERGY] = "energy",
Irina Tirdeacc3c9ee2015-01-11 21:10:08 +020078 [IIO_DISTANCE] = "distance",
Irina Tirdea5a1a9322015-01-11 21:10:09 +020079 [IIO_VELOCITY] = "velocity",
Matt Ranostay8ff6b3b2015-09-13 20:26:11 -070080 [IIO_CONCENTRATION] = "concentration",
Matt Ranostayd38d5462015-09-13 20:26:12 -070081 [IIO_RESISTANCE] = "resistance",
Matt Ranostayecb3a7c2016-01-26 18:34:30 -080082 [IIO_PH] = "ph",
Peter Meerwald-Stadlerd4094042016-03-20 16:20:23 +010083 [IIO_UVINDEX] = "uvindex",
Matt Ranostay4b9d2092016-05-24 21:29:19 -070084 [IIO_ELECTRICALCONDUCTIVITY] = "electricalconductivity",
William Breathitt Gray1a8f3242016-09-28 13:59:49 -040085 [IIO_COUNT] = "count",
86 [IIO_INDEX] = "index",
Song Hongyan571299d2017-01-05 18:24:03 +080087 [IIO_GRAVITY] = "gravity",
Eugen Hristev3055a6c2018-05-22 10:52:32 +030088 [IIO_POSITIONRELATIVE] = "positionrelative",
Mathieu Othacehec73314e2018-07-20 19:34:25 +020089 [IIO_PHASE] = "phase",
Jonathan Cameron1d892712011-05-18 14:40:51 +010090};
91
Jonathan Cameron330c6c52011-09-02 17:14:39 +010092static const char * const iio_modifier_names[] = {
Jonathan Cameron1d892712011-05-18 14:40:51 +010093 [IIO_MOD_X] = "x",
94 [IIO_MOD_Y] = "y",
95 [IIO_MOD_Z] = "z",
Peter Meerwald4b8d8012015-06-20 23:52:30 +020096 [IIO_MOD_X_AND_Y] = "x&y",
97 [IIO_MOD_X_AND_Z] = "x&z",
98 [IIO_MOD_Y_AND_Z] = "y&z",
99 [IIO_MOD_X_AND_Y_AND_Z] = "x&y&z",
100 [IIO_MOD_X_OR_Y] = "x|y",
101 [IIO_MOD_X_OR_Z] = "x|z",
102 [IIO_MOD_Y_OR_Z] = "y|z",
103 [IIO_MOD_X_OR_Y_OR_Z] = "x|y|z",
Jonathan Cameron8f5879b2012-05-05 10:39:22 +0100104 [IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)",
Jonathan Cameroncf82cb82012-05-05 10:56:41 +0100105 [IIO_MOD_SUM_SQUARED_X_Y_Z] = "x^2+y^2+z^2",
Jonathan Cameron330c6c52011-09-02 17:14:39 +0100106 [IIO_MOD_LIGHT_BOTH] = "both",
107 [IIO_MOD_LIGHT_IR] = "ir",
Jon Brenner21cd1fa2012-05-16 10:46:42 -0500108 [IIO_MOD_LIGHT_CLEAR] = "clear",
109 [IIO_MOD_LIGHT_RED] = "red",
110 [IIO_MOD_LIGHT_GREEN] = "green",
111 [IIO_MOD_LIGHT_BLUE] = "blue",
Peter Meerwald-Stadler2c5ff1f2016-03-20 16:20:22 +0100112 [IIO_MOD_LIGHT_UV] = "uv",
Srinivas Pandruvada5082f402014-04-29 00:51:00 +0100113 [IIO_MOD_QUATERNION] = "quaternion",
Peter Meerwald638b43b2014-02-05 16:57:00 +0000114 [IIO_MOD_TEMP_AMBIENT] = "ambient",
115 [IIO_MOD_TEMP_OBJECT] = "object",
Reyad Attiyat11b8dda2014-07-17 19:18:00 +0100116 [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 Baluta55aebeb2014-11-10 14:45:30 +0200120 [IIO_MOD_RUNNING] = "running",
121 [IIO_MOD_JOGGING] = "jogging",
122 [IIO_MOD_WALKING] = "walking",
123 [IIO_MOD_STILL] = "still",
Irina Tirdea5a1a9322015-01-11 21:10:09 +0200124 [IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z] = "sqrt(x^2+y^2+z^2)",
Lars-Peter Clausen1ce87f22015-05-22 18:17:38 +0200125 [IIO_MOD_I] = "i",
126 [IIO_MOD_Q] = "q",
Matt Ranostay8ff6b3b2015-09-13 20:26:11 -0700127 [IIO_MOD_CO2] = "co2",
128 [IIO_MOD_VOC] = "voc",
Jonathan Cameron1d892712011-05-18 14:40:51 +0100129};
130
131/* relies on pairs of these shared then separate */
132static const char * const iio_chan_info_postfix[] = {
Jonathan Cameron75a973c2012-04-15 17:41:30 +0100133 [IIO_CHAN_INFO_RAW] = "raw",
134 [IIO_CHAN_INFO_PROCESSED] = "input",
Jonathan Cameronc8a9f802011-10-26 17:41:36 +0100135 [IIO_CHAN_INFO_SCALE] = "scale",
136 [IIO_CHAN_INFO_OFFSET] = "offset",
137 [IIO_CHAN_INFO_CALIBSCALE] = "calibscale",
138 [IIO_CHAN_INFO_CALIBBIAS] = "calibbias",
139 [IIO_CHAN_INFO_PEAK] = "peak_raw",
140 [IIO_CHAN_INFO_PEAK_SCALE] = "peak_scale",
141 [IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW] = "quadrature_correction_raw",
142 [IIO_CHAN_INFO_AVERAGE_RAW] = "mean_raw",
Jonathan Camerondf94aba2011-11-27 11:39:12 +0000143 [IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY]
144 = "filter_low_pass_3db_frequency",
Martin Fuzzey3f7f6422015-05-13 12:26:42 +0200145 [IIO_CHAN_INFO_HIGH_PASS_FILTER_3DB_FREQUENCY]
146 = "filter_high_pass_3db_frequency",
Laxman Dewangance85a1c2012-04-13 16:03:31 +0530147 [IIO_CHAN_INFO_SAMP_FREQ] = "sampling_frequency",
Michael Hennericha6b12852012-04-27 10:58:34 +0200148 [IIO_CHAN_INFO_FREQUENCY] = "frequency",
149 [IIO_CHAN_INFO_PHASE] = "phase",
Michael Hennerichb65d6212012-05-11 11:36:53 +0200150 [IIO_CHAN_INFO_HARDWAREGAIN] = "hardwaregain",
srinivas pandruvada7c9ab032012-09-05 13:56:00 +0100151 [IIO_CHAN_INFO_HYSTERESIS] = "hysteresis",
Peter Meerwald899d90b2013-09-08 16:20:00 +0100152 [IIO_CHAN_INFO_INT_TIME] = "integration_time",
Irina Tirdeaa88bfe72014-11-10 14:45:32 +0200153 [IIO_CHAN_INFO_ENABLE] = "en",
Irina Tirdeabcdf28f2014-11-10 14:45:33 +0200154 [IIO_CHAN_INFO_CALIBHEIGHT] = "calibheight",
Irina Tirdead37f6832015-01-11 21:10:10 +0200155 [IIO_CHAN_INFO_CALIBWEIGHT] = "calibweight",
Irina Tirdea2f0ecb72015-01-27 20:41:52 +0200156 [IIO_CHAN_INFO_DEBOUNCE_COUNT] = "debounce_count",
157 [IIO_CHAN_INFO_DEBOUNCE_TIME] = "debounce_time",
Vianney le Clément de Saint-Marcqc8a85852015-03-30 10:34:58 +0200158 [IIO_CHAN_INFO_CALIBEMISSIVITY] = "calibemissivity",
Irina Tirdeafaaa4492015-04-29 21:16:39 +0300159 [IIO_CHAN_INFO_OVERSAMPLING_RATIO] = "oversampling_ratio",
Jonathan Cameron1d892712011-05-18 14:40:51 +0100160};
161
Sachin Kamata7e57dc2013-10-29 11:39:00 +0000162/**
163 * iio_find_channel_from_si() - get channel from its scan index
164 * @indio_dev: device
165 * @si: scan index to match
166 */
Jonathan Cameron5fb21c82011-12-05 21:37:10 +0000167const struct iio_chan_spec
168*iio_find_channel_from_si(struct iio_dev *indio_dev, int si)
169{
170 int i;
171
172 for (i = 0; i < indio_dev->num_channels; i++)
173 if (indio_dev->channels[i].scan_index == si)
174 return &indio_dev->channels[i];
175 return NULL;
176}
177
Jonathan Cameron847ec802009-08-18 18:06:19 +0100178/* This turns up an awful lot */
179ssize_t iio_read_const_attr(struct device *dev,
180 struct device_attribute *attr,
181 char *buf)
182{
183 return sprintf(buf, "%s\n", to_iio_const_attr(attr)->string);
184}
185EXPORT_SYMBOL(iio_read_const_attr);
186
Gregor Boiriebc2b7da2016-03-09 19:05:49 +0100187static int iio_device_set_clock(struct iio_dev *indio_dev, clockid_t clock_id)
188{
189 int ret;
190 const struct iio_event_interface *ev_int = indio_dev->event_interface;
191
192 ret = mutex_lock_interruptible(&indio_dev->mlock);
193 if (ret)
194 return ret;
195 if ((ev_int && iio_event_enabled(ev_int)) ||
196 iio_buffer_enabled(indio_dev)) {
197 mutex_unlock(&indio_dev->mlock);
198 return -EBUSY;
199 }
200 indio_dev->clock_id = clock_id;
201 mutex_unlock(&indio_dev->mlock);
202
203 return 0;
204}
205
206/**
207 * iio_get_time_ns() - utility function to get a time stamp for events etc
208 * @indio_dev: device
209 */
210s64 iio_get_time_ns(const struct iio_dev *indio_dev)
211{
Arnd Bergmann45e7f5d2018-06-18 17:31:36 +0200212 struct timespec64 tp;
Gregor Boiriebc2b7da2016-03-09 19:05:49 +0100213
214 switch (iio_device_get_clock(indio_dev)) {
215 case CLOCK_REALTIME:
Arnd Bergmann45e7f5d2018-06-18 17:31:36 +0200216 return ktime_get_real_ns();
Gregor Boiriebc2b7da2016-03-09 19:05:49 +0100217 case CLOCK_MONOTONIC:
Arnd Bergmann45e7f5d2018-06-18 17:31:36 +0200218 return ktime_get_ns();
Gregor Boiriebc2b7da2016-03-09 19:05:49 +0100219 case CLOCK_MONOTONIC_RAW:
Arnd Bergmann45e7f5d2018-06-18 17:31:36 +0200220 return ktime_get_raw_ns();
Gregor Boiriebc2b7da2016-03-09 19:05:49 +0100221 case CLOCK_REALTIME_COARSE:
Arnd Bergmann45e7f5d2018-06-18 17:31:36 +0200222 return ktime_to_ns(ktime_get_coarse_real());
Gregor Boiriebc2b7da2016-03-09 19:05:49 +0100223 case CLOCK_MONOTONIC_COARSE:
Arnd Bergmann45e7f5d2018-06-18 17:31:36 +0200224 ktime_get_coarse_ts64(&tp);
225 return timespec64_to_ns(&tp);
Gregor Boiriebc2b7da2016-03-09 19:05:49 +0100226 case CLOCK_BOOTTIME:
Arnd Bergmann45e7f5d2018-06-18 17:31:36 +0200227 return ktime_get_boot_ns();
Gregor Boiriebc2b7da2016-03-09 19:05:49 +0100228 case CLOCK_TAI:
Arnd Bergmann45e7f5d2018-06-18 17:31:36 +0200229 return ktime_get_tai_ns();
Gregor Boiriebc2b7da2016-03-09 19:05:49 +0100230 default:
231 BUG();
232 }
Gregor Boiriebc2b7da2016-03-09 19:05:49 +0100233}
234EXPORT_SYMBOL(iio_get_time_ns);
235
236/**
237 * iio_get_time_res() - utility function to get time stamp clock resolution in
238 * nano seconds.
239 * @indio_dev: device
240 */
241unsigned int iio_get_time_res(const struct iio_dev *indio_dev)
242{
243 switch (iio_device_get_clock(indio_dev)) {
244 case CLOCK_REALTIME:
245 case CLOCK_MONOTONIC:
246 case CLOCK_MONOTONIC_RAW:
247 case CLOCK_BOOTTIME:
248 case CLOCK_TAI:
249 return hrtimer_resolution;
250 case CLOCK_REALTIME_COARSE:
251 case CLOCK_MONOTONIC_COARSE:
252 return LOW_RES_NSEC;
253 default:
254 BUG();
255 }
256}
257EXPORT_SYMBOL(iio_get_time_res);
258
Jonathan Cameron847ec802009-08-18 18:06:19 +0100259static int __init iio_init(void)
260{
261 int ret;
262
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100263 /* Register sysfs bus */
264 ret = bus_register(&iio_bus_type);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100265 if (ret < 0) {
Sachin Kamat3176dd52013-10-24 12:53:00 +0100266 pr_err("could not register bus type\n");
Jonathan Cameron847ec802009-08-18 18:06:19 +0100267 goto error_nothing;
268 }
269
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100270 ret = alloc_chrdev_region(&iio_devt, 0, IIO_DEV_MAX, "iio");
271 if (ret < 0) {
Sachin Kamat3176dd52013-10-24 12:53:00 +0100272 pr_err("failed to allocate char dev region\n");
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100273 goto error_unregister_bus_type;
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100274 }
Jonathan Cameron847ec802009-08-18 18:06:19 +0100275
Michael Henneriche553f182012-03-01 10:51:03 +0100276 iio_debugfs_dentry = debugfs_create_dir("iio", NULL);
277
Jonathan Cameron847ec802009-08-18 18:06:19 +0100278 return 0;
279
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100280error_unregister_bus_type:
281 bus_unregister(&iio_bus_type);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100282error_nothing:
283 return ret;
284}
285
286static void __exit iio_exit(void)
287{
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100288 if (iio_devt)
289 unregister_chrdev_region(iio_devt, IIO_DEV_MAX);
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100290 bus_unregister(&iio_bus_type);
Michael Henneriche553f182012-03-01 10:51:03 +0100291 debugfs_remove(iio_debugfs_dentry);
292}
293
294#if defined(CONFIG_DEBUG_FS)
Michael Henneriche553f182012-03-01 10:51:03 +0100295static ssize_t iio_debugfs_read_reg(struct file *file, char __user *userbuf,
296 size_t count, loff_t *ppos)
297{
298 struct iio_dev *indio_dev = file->private_data;
299 char buf[20];
300 unsigned val = 0;
301 ssize_t len;
302 int ret;
303
304 ret = indio_dev->info->debugfs_reg_access(indio_dev,
305 indio_dev->cached_reg_addr,
306 0, &val);
Matt Fornero3d62c782017-09-05 16:34:10 +0200307 if (ret) {
Michael Henneriche553f182012-03-01 10:51:03 +0100308 dev_err(indio_dev->dev.parent, "%s: read failed\n", __func__);
Matt Fornero3d62c782017-09-05 16:34:10 +0200309 return ret;
310 }
Michael Henneriche553f182012-03-01 10:51:03 +0100311
312 len = snprintf(buf, sizeof(buf), "0x%X\n", val);
313
314 return simple_read_from_buffer(userbuf, count, ppos, buf, len);
315}
316
317static ssize_t iio_debugfs_write_reg(struct file *file,
318 const char __user *userbuf, size_t count, loff_t *ppos)
319{
320 struct iio_dev *indio_dev = file->private_data;
321 unsigned reg, val;
322 char buf[80];
323 int ret;
324
325 count = min_t(size_t, count, (sizeof(buf)-1));
326 if (copy_from_user(buf, userbuf, count))
327 return -EFAULT;
328
329 buf[count] = 0;
330
331 ret = sscanf(buf, "%i %i", &reg, &val);
332
333 switch (ret) {
334 case 1:
335 indio_dev->cached_reg_addr = reg;
336 break;
337 case 2:
338 indio_dev->cached_reg_addr = reg;
339 ret = indio_dev->info->debugfs_reg_access(indio_dev, reg,
340 val, NULL);
341 if (ret) {
342 dev_err(indio_dev->dev.parent, "%s: write failed\n",
343 __func__);
344 return ret;
345 }
346 break;
347 default:
348 return -EINVAL;
349 }
350
351 return count;
352}
353
354static const struct file_operations iio_debugfs_reg_fops = {
Axel Lin5a28c872012-05-03 09:50:51 +0800355 .open = simple_open,
Michael Henneriche553f182012-03-01 10:51:03 +0100356 .read = iio_debugfs_read_reg,
357 .write = iio_debugfs_write_reg,
358};
359
360static void iio_device_unregister_debugfs(struct iio_dev *indio_dev)
361{
362 debugfs_remove_recursive(indio_dev->debugfs_dentry);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100363}
364
Michael Henneriche553f182012-03-01 10:51:03 +0100365static int iio_device_register_debugfs(struct iio_dev *indio_dev)
366{
367 struct dentry *d;
368
369 if (indio_dev->info->debugfs_reg_access == NULL)
370 return 0;
371
Axel Linabd5a2f2012-05-03 22:56:58 +0800372 if (!iio_debugfs_dentry)
Michael Henneriche553f182012-03-01 10:51:03 +0100373 return 0;
374
375 indio_dev->debugfs_dentry =
376 debugfs_create_dir(dev_name(&indio_dev->dev),
377 iio_debugfs_dentry);
Michael Henneriche553f182012-03-01 10:51:03 +0100378 if (indio_dev->debugfs_dentry == NULL) {
379 dev_warn(indio_dev->dev.parent,
380 "Failed to create debugfs directory\n");
381 return -EFAULT;
382 }
383
384 d = debugfs_create_file("direct_reg_access", 0644,
385 indio_dev->debugfs_dentry,
386 indio_dev, &iio_debugfs_reg_fops);
387 if (!d) {
388 iio_device_unregister_debugfs(indio_dev);
389 return -ENOMEM;
390 }
391
392 return 0;
393}
394#else
395static int iio_device_register_debugfs(struct iio_dev *indio_dev)
396{
397 return 0;
398}
399
400static void iio_device_unregister_debugfs(struct iio_dev *indio_dev)
401{
402}
403#endif /* CONFIG_DEBUG_FS */
404
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100405static ssize_t iio_read_channel_ext_info(struct device *dev,
406 struct device_attribute *attr,
407 char *buf)
408{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200409 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100410 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
411 const struct iio_chan_spec_ext_info *ext_info;
412
413 ext_info = &this_attr->c->ext_info[this_attr->address];
414
Michael Hennerichfc6d1132012-04-27 10:58:36 +0200415 return ext_info->read(indio_dev, ext_info->private, this_attr->c, buf);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100416}
417
418static ssize_t iio_write_channel_ext_info(struct device *dev,
419 struct device_attribute *attr,
420 const char *buf,
421 size_t len)
422{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200423 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100424 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
425 const struct iio_chan_spec_ext_info *ext_info;
426
427 ext_info = &this_attr->c->ext_info[this_attr->address];
428
Michael Hennerichfc6d1132012-04-27 10:58:36 +0200429 return ext_info->write(indio_dev, ext_info->private,
430 this_attr->c, buf, len);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100431}
432
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200433ssize_t iio_enum_available_read(struct iio_dev *indio_dev,
434 uintptr_t priv, const struct iio_chan_spec *chan, char *buf)
435{
436 const struct iio_enum *e = (const struct iio_enum *)priv;
437 unsigned int i;
438 size_t len = 0;
439
440 if (!e->num_items)
441 return 0;
442
443 for (i = 0; i < e->num_items; ++i)
Lars-Peter Clausen74dcd432012-06-05 18:24:12 +0200444 len += scnprintf(buf + len, PAGE_SIZE - len, "%s ", e->items[i]);
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200445
446 /* replace last space with a newline */
447 buf[len - 1] = '\n';
448
449 return len;
450}
451EXPORT_SYMBOL_GPL(iio_enum_available_read);
452
453ssize_t iio_enum_read(struct iio_dev *indio_dev,
454 uintptr_t priv, const struct iio_chan_spec *chan, char *buf)
455{
456 const struct iio_enum *e = (const struct iio_enum *)priv;
457 int i;
458
459 if (!e->get)
460 return -EINVAL;
461
462 i = e->get(indio_dev, chan);
463 if (i < 0)
464 return i;
465 else if (i >= e->num_items)
466 return -EINVAL;
467
Kees Cook598db582014-03-13 16:46:00 +0000468 return snprintf(buf, PAGE_SIZE, "%s\n", e->items[i]);
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200469}
470EXPORT_SYMBOL_GPL(iio_enum_read);
471
472ssize_t iio_enum_write(struct iio_dev *indio_dev,
473 uintptr_t priv, const struct iio_chan_spec *chan, const char *buf,
474 size_t len)
475{
476 const struct iio_enum *e = (const struct iio_enum *)priv;
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200477 int ret;
478
479 if (!e->set)
480 return -EINVAL;
481
Andy Shevchenko02e9a0ff2017-06-09 15:08:16 +0300482 ret = __sysfs_match_string(e->items, e->num_items, buf);
483 if (ret < 0)
484 return ret;
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200485
Andy Shevchenko02e9a0ff2017-06-09 15:08:16 +0300486 ret = e->set(indio_dev, chan, ret);
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200487 return ret ? ret : len;
488}
489EXPORT_SYMBOL_GPL(iio_enum_write);
490
Gregor Boiriedfc57732016-04-20 19:23:43 +0200491static const struct iio_mount_matrix iio_mount_idmatrix = {
492 .rotation = {
493 "1", "0", "0",
494 "0", "1", "0",
495 "0", "0", "1"
496 }
497};
498
499static int iio_setup_mount_idmatrix(const struct device *dev,
500 struct iio_mount_matrix *matrix)
501{
502 *matrix = iio_mount_idmatrix;
503 dev_info(dev, "mounting matrix not found: using identity...\n");
504 return 0;
505}
506
507ssize_t iio_show_mount_matrix(struct iio_dev *indio_dev, uintptr_t priv,
508 const struct iio_chan_spec *chan, char *buf)
509{
510 const struct iio_mount_matrix *mtx = ((iio_get_mount_matrix_t *)
511 priv)(indio_dev, chan);
512
513 if (IS_ERR(mtx))
514 return PTR_ERR(mtx);
515
516 if (!mtx)
517 mtx = &iio_mount_idmatrix;
518
519 return snprintf(buf, PAGE_SIZE, "%s, %s, %s; %s, %s, %s; %s, %s, %s\n",
520 mtx->rotation[0], mtx->rotation[1], mtx->rotation[2],
521 mtx->rotation[3], mtx->rotation[4], mtx->rotation[5],
522 mtx->rotation[6], mtx->rotation[7], mtx->rotation[8]);
523}
524EXPORT_SYMBOL_GPL(iio_show_mount_matrix);
525
526/**
527 * of_iio_read_mount_matrix() - retrieve iio device mounting matrix from
528 * device-tree "mount-matrix" property
529 * @dev: device the mounting matrix property is assigned to
530 * @propname: device specific mounting matrix property name
531 * @matrix: where to store retrieved matrix
532 *
533 * If device is assigned no mounting matrix property, a default 3x3 identity
534 * matrix will be filled in.
535 *
536 * Return: 0 if success, or a negative error code on failure.
537 */
538#ifdef CONFIG_OF
539int of_iio_read_mount_matrix(const struct device *dev,
540 const char *propname,
541 struct iio_mount_matrix *matrix)
542{
543 if (dev->of_node) {
544 int err = of_property_read_string_array(dev->of_node,
545 propname, matrix->rotation,
546 ARRAY_SIZE(iio_mount_idmatrix.rotation));
547
548 if (err == ARRAY_SIZE(iio_mount_idmatrix.rotation))
549 return 0;
550
551 if (err >= 0)
552 /* Invalid number of matrix entries. */
553 return -EINVAL;
554
555 if (err != -EINVAL)
556 /* Invalid matrix declaration format. */
557 return err;
558 }
559
560 /* Matrix was not declared at all: fallback to identity. */
561 return iio_setup_mount_idmatrix(dev, matrix);
562}
563#else
564int of_iio_read_mount_matrix(const struct device *dev,
565 const char *propname,
566 struct iio_mount_matrix *matrix)
567{
568 return iio_setup_mount_idmatrix(dev, matrix);
569}
570#endif
571EXPORT_SYMBOL(of_iio_read_mount_matrix);
572
Jonathan Cameron51239602016-11-08 12:58:51 +0100573static ssize_t __iio_format_value(char *buf, size_t len, unsigned int type,
574 int size, const int *vals)
575{
576 unsigned long long tmp;
577 int tmp0, tmp1;
578 bool scale_db = false;
579
580 switch (type) {
581 case IIO_VAL_INT:
582 return snprintf(buf, len, "%d", vals[0]);
583 case IIO_VAL_INT_PLUS_MICRO_DB:
584 scale_db = true;
Gustavo A. R. Silva9d793c12017-11-08 12:08:26 -0600585 /* fall through */
Jonathan Cameron51239602016-11-08 12:58:51 +0100586 case IIO_VAL_INT_PLUS_MICRO:
587 if (vals[1] < 0)
588 return snprintf(buf, len, "-%d.%06u%s", abs(vals[0]),
589 -vals[1], scale_db ? " dB" : "");
590 else
591 return snprintf(buf, len, "%d.%06u%s", vals[0], vals[1],
592 scale_db ? " dB" : "");
593 case IIO_VAL_INT_PLUS_NANO:
594 if (vals[1] < 0)
595 return snprintf(buf, len, "-%d.%09u", abs(vals[0]),
596 -vals[1]);
597 else
598 return snprintf(buf, len, "%d.%09u", vals[0], vals[1]);
599 case IIO_VAL_FRACTIONAL:
600 tmp = div_s64((s64)vals[0] * 1000000000LL, vals[1]);
601 tmp1 = vals[1];
602 tmp0 = (int)div_s64_rem(tmp, 1000000000, &tmp1);
603 return snprintf(buf, len, "%d.%09u", tmp0, abs(tmp1));
604 case IIO_VAL_FRACTIONAL_LOG2:
Nikolaus Schulz7fd65922017-03-24 13:41:51 +0100605 tmp = shift_right((s64)vals[0] * 1000000000LL, vals[1]);
606 tmp0 = (int)div_s64_rem(tmp, 1000000000LL, &tmp1);
607 return snprintf(buf, len, "%d.%09u", tmp0, abs(tmp1));
Jonathan Cameron51239602016-11-08 12:58:51 +0100608 case IIO_VAL_INT_MULTIPLE:
609 {
610 int i;
611 int l = 0;
612
613 for (i = 0; i < size; ++i) {
614 l += snprintf(&buf[l], len - l, "%d ", vals[i]);
615 if (l >= len)
616 break;
617 }
618 return l;
619 }
620 default:
621 return 0;
622 }
623}
624
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100625/**
626 * iio_format_value() - Formats a IIO value into its string representation
Cristina Opriceana2498dcf2015-07-24 16:16:19 +0300627 * @buf: The buffer to which the formatted value gets written
Jonathan Cameron51239602016-11-08 12:58:51 +0100628 * which is assumed to be big enough (i.e. PAGE_SIZE).
Randy Dunlapc175cb72017-10-29 17:06:01 -0700629 * @type: One of the IIO_VAL_* constants. This decides how the val
Cristina Opriceana2498dcf2015-07-24 16:16:19 +0300630 * and val2 parameters are formatted.
631 * @size: Number of IIO value entries contained in vals
632 * @vals: Pointer to the values, exact meaning depends on the
633 * type parameter.
634 *
635 * Return: 0 by default, a negative number on failure or the
636 * total number of characters written for a type that belongs
Randy Dunlapc175cb72017-10-29 17:06:01 -0700637 * to the IIO_VAL_* constant.
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100638 */
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100639ssize_t iio_format_value(char *buf, unsigned int type, int size, int *vals)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100640{
Jonathan Cameron51239602016-11-08 12:58:51 +0100641 ssize_t len;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100642
Jonathan Cameron51239602016-11-08 12:58:51 +0100643 len = __iio_format_value(buf, PAGE_SIZE, type, size, vals);
644 if (len >= PAGE_SIZE - 1)
645 return -EFBIG;
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100646
Jonathan Cameron51239602016-11-08 12:58:51 +0100647 return len + sprintf(buf + len, "\n");
Jonathan Cameron1d892712011-05-18 14:40:51 +0100648}
Andrew F. Davis7d2c2aca2015-12-14 16:35:57 -0600649EXPORT_SYMBOL_GPL(iio_format_value);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100650
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100651static ssize_t iio_read_channel_info(struct device *dev,
652 struct device_attribute *attr,
653 char *buf)
654{
655 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
656 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100657 int vals[INDIO_MAX_RAW_ELEMENTS];
658 int ret;
659 int val_len = 2;
660
661 if (indio_dev->info->read_raw_multi)
662 ret = indio_dev->info->read_raw_multi(indio_dev, this_attr->c,
663 INDIO_MAX_RAW_ELEMENTS,
664 vals, &val_len,
665 this_attr->address);
666 else
667 ret = indio_dev->info->read_raw(indio_dev, this_attr->c,
668 &vals[0], &vals[1], this_attr->address);
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100669
670 if (ret < 0)
671 return ret;
672
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100673 return iio_format_value(buf, ret, val_len, vals);
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100674}
675
Jonathan Cameron51239602016-11-08 12:58:51 +0100676static ssize_t iio_format_avail_list(char *buf, const int *vals,
677 int type, int length)
678{
679 int i;
680 ssize_t len = 0;
681
682 switch (type) {
683 case IIO_VAL_INT:
684 for (i = 0; i < length; i++) {
685 len += __iio_format_value(buf + len, PAGE_SIZE - len,
686 type, 1, &vals[i]);
687 if (len >= PAGE_SIZE)
688 return -EFBIG;
689 if (i < length - 1)
690 len += snprintf(buf + len, PAGE_SIZE - len,
691 " ");
692 else
693 len += snprintf(buf + len, PAGE_SIZE - len,
694 "\n");
695 if (len >= PAGE_SIZE)
696 return -EFBIG;
697 }
698 break;
699 default:
700 for (i = 0; i < length / 2; i++) {
701 len += __iio_format_value(buf + len, PAGE_SIZE - len,
702 type, 2, &vals[i * 2]);
703 if (len >= PAGE_SIZE)
704 return -EFBIG;
705 if (i < length / 2 - 1)
706 len += snprintf(buf + len, PAGE_SIZE - len,
707 " ");
708 else
709 len += snprintf(buf + len, PAGE_SIZE - len,
710 "\n");
711 if (len >= PAGE_SIZE)
712 return -EFBIG;
713 }
714 }
715
716 return len;
717}
718
719static ssize_t iio_format_avail_range(char *buf, const int *vals, int type)
720{
721 int i;
722 ssize_t len;
723
724 len = snprintf(buf, PAGE_SIZE, "[");
725 switch (type) {
726 case IIO_VAL_INT:
727 for (i = 0; i < 3; i++) {
728 len += __iio_format_value(buf + len, PAGE_SIZE - len,
729 type, 1, &vals[i]);
730 if (len >= PAGE_SIZE)
731 return -EFBIG;
732 if (i < 2)
733 len += snprintf(buf + len, PAGE_SIZE - len,
734 " ");
735 else
736 len += snprintf(buf + len, PAGE_SIZE - len,
737 "]\n");
738 if (len >= PAGE_SIZE)
739 return -EFBIG;
740 }
741 break;
742 default:
743 for (i = 0; i < 3; i++) {
744 len += __iio_format_value(buf + len, PAGE_SIZE - len,
745 type, 2, &vals[i * 2]);
746 if (len >= PAGE_SIZE)
747 return -EFBIG;
748 if (i < 2)
749 len += snprintf(buf + len, PAGE_SIZE - len,
750 " ");
751 else
752 len += snprintf(buf + len, PAGE_SIZE - len,
753 "]\n");
754 if (len >= PAGE_SIZE)
755 return -EFBIG;
756 }
757 }
758
759 return len;
760}
761
762static ssize_t iio_read_channel_info_avail(struct device *dev,
763 struct device_attribute *attr,
764 char *buf)
765{
766 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
767 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
768 const int *vals;
769 int ret;
770 int length;
771 int type;
772
773 ret = indio_dev->info->read_avail(indio_dev, this_attr->c,
774 &vals, &type, &length,
775 this_attr->address);
776
777 if (ret < 0)
778 return ret;
779 switch (ret) {
780 case IIO_AVAIL_LIST:
781 return iio_format_avail_list(buf, vals, type, length);
782 case IIO_AVAIL_RANGE:
783 return iio_format_avail_range(buf, vals, type);
784 default:
785 return -EINVAL;
786 }
787}
788
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000789/**
790 * iio_str_to_fixpoint() - Parse a fixed-point number from a string
791 * @str: The string to parse
792 * @fract_mult: Multiplier for the first decimal place, should be a power of 10
793 * @integer: The integer part of the number
794 * @fract: The fractional part of the number
795 *
796 * Returns 0 on success, or a negative error code if the string could not be
797 * parsed.
798 */
799int iio_str_to_fixpoint(const char *str, int fract_mult,
800 int *integer, int *fract)
801{
802 int i = 0, f = 0;
803 bool integer_part = true, negative = false;
804
Sean Nyekjaerf47dff32015-11-09 13:55:34 +0100805 if (fract_mult == 0) {
806 *fract = 0;
807
808 return kstrtoint(str, 0, integer);
809 }
810
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000811 if (str[0] == '-') {
812 negative = true;
813 str++;
814 } else if (str[0] == '+') {
815 str++;
816 }
817
818 while (*str) {
819 if ('0' <= *str && *str <= '9') {
820 if (integer_part) {
821 i = i * 10 + *str - '0';
822 } else {
823 f += fract_mult * (*str - '0');
824 fract_mult /= 10;
825 }
826 } else if (*str == '\n') {
827 if (*(str + 1) == '\0')
828 break;
829 else
830 return -EINVAL;
831 } else if (*str == '.' && integer_part) {
832 integer_part = false;
833 } else {
834 return -EINVAL;
835 }
836 str++;
837 }
838
839 if (negative) {
840 if (i)
841 i = -i;
842 else
843 f = -f;
844 }
845
846 *integer = i;
847 *fract = f;
848
849 return 0;
850}
851EXPORT_SYMBOL_GPL(iio_str_to_fixpoint);
852
Jonathan Cameron1d892712011-05-18 14:40:51 +0100853static ssize_t iio_write_channel_info(struct device *dev,
854 struct device_attribute *attr,
855 const char *buf,
856 size_t len)
857{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200858 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100859 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000860 int ret, fract_mult = 100000;
861 int integer, fract;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100862
863 /* Assumes decimal - precision based on number of digits */
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100864 if (!indio_dev->info->write_raw)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100865 return -EINVAL;
Michael Hennerich5c04af02011-06-27 13:07:10 +0100866
867 if (indio_dev->info->write_raw_get_fmt)
868 switch (indio_dev->info->write_raw_get_fmt(indio_dev,
869 this_attr->c, this_attr->address)) {
Sean Nyekjaerf47dff32015-11-09 13:55:34 +0100870 case IIO_VAL_INT:
871 fract_mult = 0;
872 break;
Michael Hennerich5c04af02011-06-27 13:07:10 +0100873 case IIO_VAL_INT_PLUS_MICRO:
874 fract_mult = 100000;
875 break;
876 case IIO_VAL_INT_PLUS_NANO:
877 fract_mult = 100000000;
878 break;
879 default:
880 return -EINVAL;
881 }
882
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000883 ret = iio_str_to_fixpoint(buf, fract_mult, &integer, &fract);
884 if (ret)
885 return ret;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100886
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100887 ret = indio_dev->info->write_raw(indio_dev, this_attr->c,
Michael Hennerich5c04af02011-06-27 13:07:10 +0100888 integer, fract, this_attr->address);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100889 if (ret)
890 return ret;
891
892 return len;
893}
894
Jonathan Camerondf9c1c42011-08-12 17:56:03 +0100895static
Jonathan Cameron1d892712011-05-18 14:40:51 +0100896int __iio_device_attr_init(struct device_attribute *dev_attr,
897 const char *postfix,
898 struct iio_chan_spec const *chan,
899 ssize_t (*readfunc)(struct device *dev,
900 struct device_attribute *attr,
901 char *buf),
902 ssize_t (*writefunc)(struct device *dev,
903 struct device_attribute *attr,
904 const char *buf,
905 size_t len),
Jonathan Cameron37044322013-09-08 14:57:00 +0100906 enum iio_shared_by shared_by)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100907{
Jonathan Cameron37044322013-09-08 14:57:00 +0100908 int ret = 0;
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000909 char *name = NULL;
Jonathan Cameron37044322013-09-08 14:57:00 +0100910 char *full_postfix;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100911 sysfs_attr_init(&dev_attr->attr);
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100912
913 /* Build up postfix of <extend_name>_<modifier>_postfix */
Jonathan Cameron37044322013-09-08 14:57:00 +0100914 if (chan->modified && (shared_by == IIO_SEPARATE)) {
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100915 if (chan->extend_name)
916 full_postfix = kasprintf(GFP_KERNEL, "%s_%s_%s",
917 iio_modifier_names[chan
918 ->channel2],
919 chan->extend_name,
920 postfix);
921 else
922 full_postfix = kasprintf(GFP_KERNEL, "%s_%s",
923 iio_modifier_names[chan
924 ->channel2],
925 postfix);
926 } else {
Lars-Peter Clausen77bfa8b2014-02-14 14:19:00 +0000927 if (chan->extend_name == NULL || shared_by != IIO_SEPARATE)
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100928 full_postfix = kstrdup(postfix, GFP_KERNEL);
929 else
930 full_postfix = kasprintf(GFP_KERNEL,
931 "%s_%s",
932 chan->extend_name,
933 postfix);
934 }
Jonathan Cameron37044322013-09-08 14:57:00 +0100935 if (full_postfix == NULL)
936 return -ENOMEM;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100937
Justin P. Mattock4abf6f82012-02-29 22:00:38 -0800938 if (chan->differential) { /* Differential can not have modifier */
Jonathan Cameron37044322013-09-08 14:57:00 +0100939 switch (shared_by) {
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100940 case IIO_SHARED_BY_ALL:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000941 name = kasprintf(GFP_KERNEL, "%s", full_postfix);
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100942 break;
943 case IIO_SHARED_BY_DIR:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000944 name = kasprintf(GFP_KERNEL, "%s_%s",
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100945 iio_direction[chan->output],
946 full_postfix);
947 break;
Jonathan Cameron37044322013-09-08 14:57:00 +0100948 case IIO_SHARED_BY_TYPE:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000949 name = kasprintf(GFP_KERNEL, "%s_%s-%s_%s",
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100950 iio_direction[chan->output],
951 iio_chan_type_name_spec[chan->type],
952 iio_chan_type_name_spec[chan->type],
953 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100954 break;
955 case IIO_SEPARATE:
956 if (!chan->indexed) {
Dan Carpenter231bfe52015-11-21 13:33:00 +0300957 WARN(1, "Differential channels must be indexed\n");
Jonathan Cameron37044322013-09-08 14:57:00 +0100958 ret = -EINVAL;
959 goto error_free_full_postfix;
960 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000961 name = kasprintf(GFP_KERNEL,
Jonathan Cameron37044322013-09-08 14:57:00 +0100962 "%s_%s%d-%s%d_%s",
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100963 iio_direction[chan->output],
964 iio_chan_type_name_spec[chan->type],
965 chan->channel,
966 iio_chan_type_name_spec[chan->type],
967 chan->channel2,
968 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100969 break;
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100970 }
971 } else { /* Single ended */
Jonathan Cameron37044322013-09-08 14:57:00 +0100972 switch (shared_by) {
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100973 case IIO_SHARED_BY_ALL:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000974 name = kasprintf(GFP_KERNEL, "%s", full_postfix);
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100975 break;
976 case IIO_SHARED_BY_DIR:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000977 name = kasprintf(GFP_KERNEL, "%s_%s",
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100978 iio_direction[chan->output],
979 full_postfix);
980 break;
Jonathan Cameron37044322013-09-08 14:57:00 +0100981 case IIO_SHARED_BY_TYPE:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000982 name = kasprintf(GFP_KERNEL, "%s_%s_%s",
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100983 iio_direction[chan->output],
984 iio_chan_type_name_spec[chan->type],
985 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100986 break;
987
988 case IIO_SEPARATE:
989 if (chan->indexed)
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000990 name = kasprintf(GFP_KERNEL, "%s_%s%d_%s",
Jonathan Cameron37044322013-09-08 14:57:00 +0100991 iio_direction[chan->output],
992 iio_chan_type_name_spec[chan->type],
993 chan->channel,
994 full_postfix);
995 else
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000996 name = kasprintf(GFP_KERNEL, "%s_%s_%s",
Jonathan Cameron37044322013-09-08 14:57:00 +0100997 iio_direction[chan->output],
998 iio_chan_type_name_spec[chan->type],
999 full_postfix);
1000 break;
1001 }
Jonathan Cameronade7ef72011-09-02 17:14:45 +01001002 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +00001003 if (name == NULL) {
Jonathan Cameron1d892712011-05-18 14:40:51 +01001004 ret = -ENOMEM;
1005 goto error_free_full_postfix;
1006 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +00001007 dev_attr->attr.name = name;
Jonathan Cameron1d892712011-05-18 14:40:51 +01001008
1009 if (readfunc) {
1010 dev_attr->attr.mode |= S_IRUGO;
1011 dev_attr->show = readfunc;
1012 }
1013
1014 if (writefunc) {
1015 dev_attr->attr.mode |= S_IWUSR;
1016 dev_attr->store = writefunc;
1017 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +00001018
Jonathan Cameron1d892712011-05-18 14:40:51 +01001019error_free_full_postfix:
1020 kfree(full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +01001021
Jonathan Cameron847ec802009-08-18 18:06:19 +01001022 return ret;
1023}
1024
Jonathan Camerondf9c1c42011-08-12 17:56:03 +01001025static void __iio_device_attr_deinit(struct device_attribute *dev_attr)
Jonathan Cameron1d892712011-05-18 14:40:51 +01001026{
1027 kfree(dev_attr->attr.name);
1028}
1029
1030int __iio_add_chan_devattr(const char *postfix,
Jonathan Cameron1d892712011-05-18 14:40:51 +01001031 struct iio_chan_spec const *chan,
1032 ssize_t (*readfunc)(struct device *dev,
1033 struct device_attribute *attr,
1034 char *buf),
1035 ssize_t (*writefunc)(struct device *dev,
1036 struct device_attribute *attr,
1037 const char *buf,
1038 size_t len),
Jonathan Camerone614a542011-09-02 17:14:41 +01001039 u64 mask,
Jonathan Cameron37044322013-09-08 14:57:00 +01001040 enum iio_shared_by shared_by,
Jonathan Cameron1d892712011-05-18 14:40:51 +01001041 struct device *dev,
1042 struct list_head *attr_list)
1043{
1044 int ret;
1045 struct iio_dev_attr *iio_attr, *t;
1046
Sachin Kamat670c1102013-10-24 12:53:00 +01001047 iio_attr = kzalloc(sizeof(*iio_attr), GFP_KERNEL);
Hartmut Knaack92825ff2014-02-16 11:53:00 +00001048 if (iio_attr == NULL)
1049 return -ENOMEM;
Jonathan Cameron1d892712011-05-18 14:40:51 +01001050 ret = __iio_device_attr_init(&iio_attr->dev_attr,
1051 postfix, chan,
Jonathan Cameron37044322013-09-08 14:57:00 +01001052 readfunc, writefunc, shared_by);
Jonathan Cameron1d892712011-05-18 14:40:51 +01001053 if (ret)
1054 goto error_iio_dev_attr_free;
1055 iio_attr->c = chan;
1056 iio_attr->address = mask;
1057 list_for_each_entry(t, attr_list, l)
1058 if (strcmp(t->dev_attr.attr.name,
1059 iio_attr->dev_attr.attr.name) == 0) {
Jonathan Cameron37044322013-09-08 14:57:00 +01001060 if (shared_by == IIO_SEPARATE)
Jonathan Cameron1d892712011-05-18 14:40:51 +01001061 dev_err(dev, "tried to double register : %s\n",
1062 t->dev_attr.attr.name);
1063 ret = -EBUSY;
1064 goto error_device_attr_deinit;
1065 }
Jonathan Cameron1d892712011-05-18 14:40:51 +01001066 list_add(&iio_attr->l, attr_list);
1067
1068 return 0;
1069
1070error_device_attr_deinit:
1071 __iio_device_attr_deinit(&iio_attr->dev_attr);
1072error_iio_dev_attr_free:
1073 kfree(iio_attr);
Jonathan Cameron1d892712011-05-18 14:40:51 +01001074 return ret;
1075}
1076
Jonathan Cameron37044322013-09-08 14:57:00 +01001077static int iio_device_add_info_mask_type(struct iio_dev *indio_dev,
1078 struct iio_chan_spec const *chan,
1079 enum iio_shared_by shared_by,
1080 const long *infomask)
1081{
1082 int i, ret, attrcount = 0;
1083
Orson Zhai1016d562017-04-25 09:16:56 +08001084 for_each_set_bit(i, infomask, sizeof(*infomask)*8) {
Jonathan Cameronef4b4852014-01-03 22:24:00 +00001085 if (i >= ARRAY_SIZE(iio_chan_info_postfix))
1086 return -EINVAL;
Jonathan Cameron37044322013-09-08 14:57:00 +01001087 ret = __iio_add_chan_devattr(iio_chan_info_postfix[i],
1088 chan,
1089 &iio_read_channel_info,
1090 &iio_write_channel_info,
1091 i,
1092 shared_by,
1093 &indio_dev->dev,
1094 &indio_dev->channel_attr_list);
1095 if ((ret == -EBUSY) && (shared_by != IIO_SEPARATE))
1096 continue;
1097 else if (ret < 0)
1098 return ret;
1099 attrcount++;
1100 }
1101
1102 return attrcount;
1103}
1104
Jonathan Cameron51239602016-11-08 12:58:51 +01001105static int iio_device_add_info_mask_type_avail(struct iio_dev *indio_dev,
1106 struct iio_chan_spec const *chan,
1107 enum iio_shared_by shared_by,
1108 const long *infomask)
1109{
1110 int i, ret, attrcount = 0;
1111 char *avail_postfix;
1112
Orson Zhai1016d562017-04-25 09:16:56 +08001113 for_each_set_bit(i, infomask, sizeof(*infomask) * 8) {
Jonathan Cameron51239602016-11-08 12:58:51 +01001114 avail_postfix = kasprintf(GFP_KERNEL,
1115 "%s_available",
1116 iio_chan_info_postfix[i]);
1117 if (!avail_postfix)
1118 return -ENOMEM;
1119
1120 ret = __iio_add_chan_devattr(avail_postfix,
1121 chan,
1122 &iio_read_channel_info_avail,
1123 NULL,
1124 i,
1125 shared_by,
1126 &indio_dev->dev,
1127 &indio_dev->channel_attr_list);
1128 kfree(avail_postfix);
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 Cameronf8c6f4e2011-10-06 17:14:35 +01001139static int iio_device_add_channel_sysfs(struct iio_dev *indio_dev,
Jonathan Cameron1d892712011-05-18 14:40:51 +01001140 struct iio_chan_spec const *chan)
1141{
Jonathan Cameron5ccb3ad2012-04-15 17:41:16 +01001142 int ret, attrcount = 0;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +01001143 const struct iio_chan_spec_ext_info *ext_info;
Jonathan Cameron1d892712011-05-18 14:40:51 +01001144
Jonathan Cameron1d892712011-05-18 14:40:51 +01001145 if (chan->channel < 0)
1146 return 0;
Jonathan Cameron37044322013-09-08 14:57:00 +01001147 ret = iio_device_add_info_mask_type(indio_dev, chan,
1148 IIO_SEPARATE,
1149 &chan->info_mask_separate);
1150 if (ret < 0)
1151 return ret;
1152 attrcount += ret;
1153
Jonathan Cameron51239602016-11-08 12:58:51 +01001154 ret = iio_device_add_info_mask_type_avail(indio_dev, chan,
1155 IIO_SEPARATE,
1156 &chan->
1157 info_mask_separate_available);
1158 if (ret < 0)
1159 return ret;
1160 attrcount += ret;
1161
Jonathan Cameron37044322013-09-08 14:57:00 +01001162 ret = iio_device_add_info_mask_type(indio_dev, chan,
1163 IIO_SHARED_BY_TYPE,
1164 &chan->info_mask_shared_by_type);
1165 if (ret < 0)
1166 return ret;
1167 attrcount += ret;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +01001168
Jonathan Cameron51239602016-11-08 12:58:51 +01001169 ret = iio_device_add_info_mask_type_avail(indio_dev, chan,
1170 IIO_SHARED_BY_TYPE,
1171 &chan->
1172 info_mask_shared_by_type_available);
1173 if (ret < 0)
1174 return ret;
1175 attrcount += ret;
1176
Jonathan Cameronc006ec82013-09-08 14:57:00 +01001177 ret = iio_device_add_info_mask_type(indio_dev, chan,
1178 IIO_SHARED_BY_DIR,
1179 &chan->info_mask_shared_by_dir);
1180 if (ret < 0)
1181 return ret;
1182 attrcount += ret;
1183
Jonathan Cameron51239602016-11-08 12:58:51 +01001184 ret = iio_device_add_info_mask_type_avail(indio_dev, chan,
1185 IIO_SHARED_BY_DIR,
1186 &chan->info_mask_shared_by_dir_available);
1187 if (ret < 0)
1188 return ret;
1189 attrcount += ret;
1190
Jonathan Cameronc006ec82013-09-08 14:57:00 +01001191 ret = iio_device_add_info_mask_type(indio_dev, chan,
1192 IIO_SHARED_BY_ALL,
1193 &chan->info_mask_shared_by_all);
1194 if (ret < 0)
1195 return ret;
1196 attrcount += ret;
1197
Jonathan Cameron51239602016-11-08 12:58:51 +01001198 ret = iio_device_add_info_mask_type_avail(indio_dev, chan,
1199 IIO_SHARED_BY_ALL,
1200 &chan->info_mask_shared_by_all_available);
1201 if (ret < 0)
1202 return ret;
1203 attrcount += ret;
1204
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +01001205 if (chan->ext_info) {
1206 unsigned int i = 0;
1207 for (ext_info = chan->ext_info; ext_info->name; ext_info++) {
1208 ret = __iio_add_chan_devattr(ext_info->name,
1209 chan,
1210 ext_info->read ?
1211 &iio_read_channel_ext_info : NULL,
1212 ext_info->write ?
1213 &iio_write_channel_ext_info : NULL,
1214 i,
1215 ext_info->shared,
1216 &indio_dev->dev,
1217 &indio_dev->channel_attr_list);
1218 i++;
1219 if (ret == -EBUSY && ext_info->shared)
1220 continue;
1221
1222 if (ret)
Jonathan Cameron37044322013-09-08 14:57:00 +01001223 return ret;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +01001224
1225 attrcount++;
1226 }
1227 }
1228
Jonathan Cameron37044322013-09-08 14:57:00 +01001229 return attrcount;
Jonathan Cameron1d892712011-05-18 14:40:51 +01001230}
1231
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +01001232/**
1233 * iio_free_chan_devattr_list() - Free a list of IIO device attributes
1234 * @attr_list: List of IIO device attributes
1235 *
1236 * This function frees the memory allocated for each of the IIO device
Martin Fuzzeyc1b03ab2015-02-19 15:17:44 +01001237 * attributes in the list.
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +01001238 */
1239void iio_free_chan_devattr_list(struct list_head *attr_list)
Jonathan Cameron1d892712011-05-18 14:40:51 +01001240{
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +01001241 struct iio_dev_attr *p, *n;
1242
1243 list_for_each_entry_safe(p, n, attr_list, l) {
1244 kfree(p->dev_attr.attr.name);
Martin Fuzzeyc1b03ab2015-02-19 15:17:44 +01001245 list_del(&p->l);
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +01001246 kfree(p);
1247 }
Jonathan Cameron1d892712011-05-18 14:40:51 +01001248}
1249
Jonathan Cameron1b732882011-05-18 14:41:43 +01001250static ssize_t iio_show_dev_name(struct device *dev,
1251 struct device_attribute *attr,
1252 char *buf)
1253{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +02001254 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Kees Cook598db582014-03-13 16:46:00 +00001255 return snprintf(buf, PAGE_SIZE, "%s\n", indio_dev->name);
Jonathan Cameron1b732882011-05-18 14:41:43 +01001256}
1257
1258static DEVICE_ATTR(name, S_IRUGO, iio_show_dev_name, NULL);
1259
Gregor Boiriebc2b7da2016-03-09 19:05:49 +01001260static ssize_t iio_show_timestamp_clock(struct device *dev,
1261 struct device_attribute *attr,
1262 char *buf)
1263{
1264 const struct iio_dev *indio_dev = dev_to_iio_dev(dev);
1265 const clockid_t clk = iio_device_get_clock(indio_dev);
1266 const char *name;
1267 ssize_t sz;
1268
1269 switch (clk) {
1270 case CLOCK_REALTIME:
1271 name = "realtime\n";
1272 sz = sizeof("realtime\n");
1273 break;
1274 case CLOCK_MONOTONIC:
1275 name = "monotonic\n";
1276 sz = sizeof("monotonic\n");
1277 break;
1278 case CLOCK_MONOTONIC_RAW:
1279 name = "monotonic_raw\n";
1280 sz = sizeof("monotonic_raw\n");
1281 break;
1282 case CLOCK_REALTIME_COARSE:
1283 name = "realtime_coarse\n";
1284 sz = sizeof("realtime_coarse\n");
1285 break;
1286 case CLOCK_MONOTONIC_COARSE:
1287 name = "monotonic_coarse\n";
1288 sz = sizeof("monotonic_coarse\n");
1289 break;
1290 case CLOCK_BOOTTIME:
1291 name = "boottime\n";
1292 sz = sizeof("boottime\n");
1293 break;
1294 case CLOCK_TAI:
1295 name = "tai\n";
1296 sz = sizeof("tai\n");
1297 break;
1298 default:
1299 BUG();
1300 }
1301
1302 memcpy(buf, name, sz);
1303 return sz;
1304}
1305
1306static ssize_t iio_store_timestamp_clock(struct device *dev,
1307 struct device_attribute *attr,
1308 const char *buf, size_t len)
1309{
1310 clockid_t clk;
1311 int ret;
1312
1313 if (sysfs_streq(buf, "realtime"))
1314 clk = CLOCK_REALTIME;
1315 else if (sysfs_streq(buf, "monotonic"))
1316 clk = CLOCK_MONOTONIC;
1317 else if (sysfs_streq(buf, "monotonic_raw"))
1318 clk = CLOCK_MONOTONIC_RAW;
1319 else if (sysfs_streq(buf, "realtime_coarse"))
1320 clk = CLOCK_REALTIME_COARSE;
1321 else if (sysfs_streq(buf, "monotonic_coarse"))
1322 clk = CLOCK_MONOTONIC_COARSE;
1323 else if (sysfs_streq(buf, "boottime"))
1324 clk = CLOCK_BOOTTIME;
1325 else if (sysfs_streq(buf, "tai"))
1326 clk = CLOCK_TAI;
1327 else
1328 return -EINVAL;
1329
1330 ret = iio_device_set_clock(dev_to_iio_dev(dev), clk);
1331 if (ret)
1332 return ret;
1333
1334 return len;
1335}
1336
1337static DEVICE_ATTR(current_timestamp_clock, S_IRUGO | S_IWUSR,
1338 iio_show_timestamp_clock, iio_store_timestamp_clock);
1339
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001340static int iio_device_register_sysfs(struct iio_dev *indio_dev)
Jonathan Cameron1d892712011-05-18 14:40:51 +01001341{
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001342 int i, ret = 0, attrcount, attrn, attrcount_orig = 0;
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +01001343 struct iio_dev_attr *p;
Gregor Boiriebc2b7da2016-03-09 19:05:49 +01001344 struct attribute **attr, *clk = NULL;
Jonathan Cameron1d892712011-05-18 14:40:51 +01001345
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001346 /* First count elements in any existing group */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001347 if (indio_dev->info->attrs) {
1348 attr = indio_dev->info->attrs->attrs;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001349 while (*attr++ != NULL)
1350 attrcount_orig++;
Jonathan Cameron1d892712011-05-18 14:40:51 +01001351 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001352 attrcount = attrcount_orig;
Jonathan Cameron1d892712011-05-18 14:40:51 +01001353 /*
1354 * New channel registration method - relies on the fact a group does
Peter Meerwaldd25b3802012-08-26 13:43:00 +01001355 * not need to be initialized if its name is NULL.
Jonathan Cameron1d892712011-05-18 14:40:51 +01001356 */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001357 if (indio_dev->channels)
1358 for (i = 0; i < indio_dev->num_channels; i++) {
Gregor Boiriebc2b7da2016-03-09 19:05:49 +01001359 const struct iio_chan_spec *chan =
1360 &indio_dev->channels[i];
1361
1362 if (chan->type == IIO_TIMESTAMP)
1363 clk = &dev_attr_current_timestamp_clock.attr;
1364
1365 ret = iio_device_add_channel_sysfs(indio_dev, chan);
Jonathan Cameron1d892712011-05-18 14:40:51 +01001366 if (ret < 0)
1367 goto error_clear_attrs;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001368 attrcount += ret;
Jonathan Cameron1d892712011-05-18 14:40:51 +01001369 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001370
Gregor Boiriebc2b7da2016-03-09 19:05:49 +01001371 if (indio_dev->event_interface)
1372 clk = &dev_attr_current_timestamp_clock.attr;
1373
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001374 if (indio_dev->name)
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001375 attrcount++;
Gregor Boiriebc2b7da2016-03-09 19:05:49 +01001376 if (clk)
1377 attrcount++;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001378
Thomas Meyerd83fb182011-11-29 22:08:00 +01001379 indio_dev->chan_attr_group.attrs = kcalloc(attrcount + 1,
1380 sizeof(indio_dev->chan_attr_group.attrs[0]),
1381 GFP_KERNEL);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001382 if (indio_dev->chan_attr_group.attrs == NULL) {
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001383 ret = -ENOMEM;
1384 goto error_clear_attrs;
Jonathan Cameron1b732882011-05-18 14:41:43 +01001385 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001386 /* Copy across original attributes */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001387 if (indio_dev->info->attrs)
1388 memcpy(indio_dev->chan_attr_group.attrs,
1389 indio_dev->info->attrs->attrs,
1390 sizeof(indio_dev->chan_attr_group.attrs[0])
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001391 *attrcount_orig);
1392 attrn = attrcount_orig;
1393 /* Add all elements from the list. */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001394 list_for_each_entry(p, &indio_dev->channel_attr_list, l)
1395 indio_dev->chan_attr_group.attrs[attrn++] = &p->dev_attr.attr;
1396 if (indio_dev->name)
1397 indio_dev->chan_attr_group.attrs[attrn++] = &dev_attr_name.attr;
Gregor Boiriebc2b7da2016-03-09 19:05:49 +01001398 if (clk)
1399 indio_dev->chan_attr_group.attrs[attrn++] = clk;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001400
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001401 indio_dev->groups[indio_dev->groupcounter++] =
1402 &indio_dev->chan_attr_group;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001403
Jonathan Cameron1d892712011-05-18 14:40:51 +01001404 return 0;
Jonathan Cameron1b732882011-05-18 14:41:43 +01001405
Jonathan Cameron1d892712011-05-18 14:40:51 +01001406error_clear_attrs:
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +01001407 iio_free_chan_devattr_list(&indio_dev->channel_attr_list);
Jonathan Cameron1d892712011-05-18 14:40:51 +01001408
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001409 return ret;
Jonathan Cameron1d892712011-05-18 14:40:51 +01001410}
1411
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001412static void iio_device_unregister_sysfs(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001413{
Jonathan Cameron1d892712011-05-18 14:40:51 +01001414
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +01001415 iio_free_chan_devattr_list(&indio_dev->channel_attr_list);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001416 kfree(indio_dev->chan_attr_group.attrs);
Martin Fuzzeyc1b03ab2015-02-19 15:17:44 +01001417 indio_dev->chan_attr_group.attrs = NULL;
Jonathan Cameron847ec802009-08-18 18:06:19 +01001418}
1419
Jonathan Cameron847ec802009-08-18 18:06:19 +01001420static void iio_dev_release(struct device *device)
1421{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +02001422 struct iio_dev *indio_dev = dev_to_iio_dev(device);
Benjamin Gaignardd89e1192017-04-27 15:29:15 +02001423 if (indio_dev->modes & INDIO_ALL_TRIGGERED_MODES)
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001424 iio_device_unregister_trigger_consumer(indio_dev);
1425 iio_device_unregister_eventset(indio_dev);
1426 iio_device_unregister_sysfs(indio_dev);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +02001427
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +01001428 iio_buffer_put(indio_dev->buffer);
1429
Lars-Peter Clausene407fd62012-06-04 10:41:42 +02001430 ida_simple_remove(&iio_ida, indio_dev->id);
1431 kfree(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001432}
1433
Guenter Roeck17d82b42013-02-07 17:09:00 +00001434struct device_type iio_device_type = {
Jonathan Cameron847ec802009-08-18 18:06:19 +01001435 .name = "iio_device",
1436 .release = iio_dev_release,
1437};
1438
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001439/**
1440 * iio_device_alloc() - allocate an iio_dev from a driver
1441 * @sizeof_priv: Space to allocate for private structure.
1442 **/
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +02001443struct iio_dev *iio_device_alloc(int sizeof_priv)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001444{
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +01001445 struct iio_dev *dev;
1446 size_t alloc_size;
1447
1448 alloc_size = sizeof(struct iio_dev);
1449 if (sizeof_priv) {
1450 alloc_size = ALIGN(alloc_size, IIO_ALIGN);
1451 alloc_size += sizeof_priv;
1452 }
1453 /* ensure 32-byte alignment of whole construct ? */
1454 alloc_size += IIO_ALIGN - 1;
1455
1456 dev = kzalloc(alloc_size, GFP_KERNEL);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001457
1458 if (dev) {
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001459 dev->dev.groups = dev->groups;
Guenter Roeck17d82b42013-02-07 17:09:00 +00001460 dev->dev.type = &iio_device_type;
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +01001461 dev->dev.bus = &iio_bus_type;
Jonathan Cameron847ec802009-08-18 18:06:19 +01001462 device_initialize(&dev->dev);
1463 dev_set_drvdata(&dev->dev, (void *)dev);
1464 mutex_init(&dev->mlock);
Jonathan Cameronac917a82012-02-15 19:48:00 +00001465 mutex_init(&dev->info_exist_lock);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +02001466 INIT_LIST_HEAD(&dev->channel_attr_list);
Jonathan Camerona9e39f92011-09-14 13:01:25 +01001467
1468 dev->id = ida_simple_get(&iio_ida, 0, 0, GFP_KERNEL);
1469 if (dev->id < 0) {
1470 /* cannot use a dev_err as the name isn't available */
Sachin Kamat3176dd52013-10-24 12:53:00 +01001471 pr_err("failed to get device id\n");
Jonathan Camerona9e39f92011-09-14 13:01:25 +01001472 kfree(dev);
1473 return NULL;
1474 }
1475 dev_set_name(&dev->dev, "iio:device%d", dev->id);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001476 INIT_LIST_HEAD(&dev->buffer_list);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001477 }
1478
1479 return dev;
1480}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +02001481EXPORT_SYMBOL(iio_device_alloc);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001482
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001483/**
1484 * iio_device_free() - free an iio_dev from a driver
1485 * @dev: the iio_dev associated with the device
1486 **/
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +02001487void iio_device_free(struct iio_dev *dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001488{
Lars-Peter Clausene407fd62012-06-04 10:41:42 +02001489 if (dev)
1490 put_device(&dev->dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001491}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +02001492EXPORT_SYMBOL(iio_device_free);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001493
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001494static void devm_iio_device_release(struct device *dev, void *res)
1495{
1496 iio_device_free(*(struct iio_dev **)res);
1497}
1498
Gregor Boirie70e48342016-09-02 20:47:55 +02001499int devm_iio_device_match(struct device *dev, void *res, void *data)
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001500{
1501 struct iio_dev **r = res;
1502 if (!r || !*r) {
1503 WARN_ON(!r || !*r);
1504 return 0;
1505 }
1506 return *r == data;
1507}
Gregor Boirie70e48342016-09-02 20:47:55 +02001508EXPORT_SYMBOL_GPL(devm_iio_device_match);
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001509
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001510/**
1511 * devm_iio_device_alloc - Resource-managed iio_device_alloc()
1512 * @dev: Device to allocate iio_dev for
1513 * @sizeof_priv: Space to allocate for private structure.
1514 *
1515 * Managed iio_device_alloc. iio_dev allocated with this function is
1516 * automatically freed on driver detach.
1517 *
1518 * If an iio_dev allocated with this function needs to be freed separately,
1519 * devm_iio_device_free() must be used.
1520 *
1521 * RETURNS:
1522 * Pointer to allocated iio_dev on success, NULL on failure.
1523 */
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001524struct iio_dev *devm_iio_device_alloc(struct device *dev, int sizeof_priv)
1525{
1526 struct iio_dev **ptr, *iio_dev;
1527
1528 ptr = devres_alloc(devm_iio_device_release, sizeof(*ptr),
1529 GFP_KERNEL);
1530 if (!ptr)
1531 return NULL;
1532
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001533 iio_dev = iio_device_alloc(sizeof_priv);
1534 if (iio_dev) {
1535 *ptr = iio_dev;
1536 devres_add(dev, ptr);
1537 } else {
1538 devres_free(ptr);
1539 }
1540
1541 return iio_dev;
1542}
1543EXPORT_SYMBOL_GPL(devm_iio_device_alloc);
1544
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001545/**
1546 * devm_iio_device_free - Resource-managed iio_device_free()
1547 * @dev: Device this iio_dev belongs to
1548 * @iio_dev: the iio_dev associated with the device
1549 *
1550 * Free iio_dev allocated with devm_iio_device_alloc().
1551 */
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001552void devm_iio_device_free(struct device *dev, struct iio_dev *iio_dev)
1553{
1554 int rc;
1555
1556 rc = devres_release(dev, devm_iio_device_release,
1557 devm_iio_device_match, iio_dev);
1558 WARN_ON(rc);
1559}
1560EXPORT_SYMBOL_GPL(devm_iio_device_free);
1561
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001562/**
Jonathan Cameron14555b12011-09-21 11:15:57 +01001563 * iio_chrdev_open() - chrdev file open for buffer access and ioctls
Cristina Opriceana2498dcf2015-07-24 16:16:19 +03001564 * @inode: Inode structure for identifying the device in the file system
1565 * @filp: File structure for iio device used to keep and later access
1566 * private data
1567 *
1568 * Return: 0 on success or -EBUSY if the device is already opened
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001569 **/
1570static int iio_chrdev_open(struct inode *inode, struct file *filp)
1571{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001572 struct iio_dev *indio_dev = container_of(inode->i_cdev,
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001573 struct iio_dev, chrdev);
Lars-Peter Clausenbb014432011-12-19 15:23:45 +01001574
1575 if (test_and_set_bit(IIO_BUSY_BIT_POS, &indio_dev->flags))
1576 return -EBUSY;
1577
Lars-Peter Clausencadc2122013-09-18 21:02:00 +01001578 iio_device_get(indio_dev);
1579
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001580 filp->private_data = indio_dev;
Jonathan Cameron30eb82f2011-09-21 11:16:02 +01001581
Lars-Peter Clausen79335142011-12-19 15:23:49 +01001582 return 0;
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001583}
1584
1585/**
Jonathan Cameron14555b12011-09-21 11:15:57 +01001586 * iio_chrdev_release() - chrdev file close buffer access and ioctls
Cristina Opriceana2498dcf2015-07-24 16:16:19 +03001587 * @inode: Inode structure pointer for the char device
1588 * @filp: File structure pointer for the char device
1589 *
1590 * Return: 0 for successful release
1591 */
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001592static int iio_chrdev_release(struct inode *inode, struct file *filp)
1593{
Lars-Peter Clausenbb014432011-12-19 15:23:45 +01001594 struct iio_dev *indio_dev = container_of(inode->i_cdev,
1595 struct iio_dev, chrdev);
Lars-Peter Clausenbb014432011-12-19 15:23:45 +01001596 clear_bit(IIO_BUSY_BIT_POS, &indio_dev->flags);
Lars-Peter Clausencadc2122013-09-18 21:02:00 +01001597 iio_device_put(indio_dev);
1598
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001599 return 0;
1600}
1601
1602/* Somewhat of a cross file organization violation - ioctls here are actually
1603 * event related */
1604static long iio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1605{
1606 struct iio_dev *indio_dev = filp->private_data;
1607 int __user *ip = (int __user *)arg;
1608 int fd;
1609
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +01001610 if (!indio_dev->info)
1611 return -ENODEV;
1612
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001613 if (cmd == IIO_GET_EVENT_FD_IOCTL) {
1614 fd = iio_event_getfd(indio_dev);
Linus Walleij3f9059b2015-08-11 11:56:40 +02001615 if (fd < 0)
1616 return fd;
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001617 if (copy_to_user(ip, &fd, sizeof(fd)))
1618 return -EFAULT;
1619 return 0;
1620 }
1621 return -EINVAL;
1622}
1623
Jonathan Cameron14555b12011-09-21 11:15:57 +01001624static const struct file_operations iio_buffer_fileops = {
1625 .read = iio_buffer_read_first_n_outer_addr,
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001626 .release = iio_chrdev_release,
1627 .open = iio_chrdev_open,
Jonathan Cameron14555b12011-09-21 11:15:57 +01001628 .poll = iio_buffer_poll_addr,
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001629 .owner = THIS_MODULE,
1630 .llseek = noop_llseek,
1631 .unlocked_ioctl = iio_ioctl,
1632 .compat_ioctl = iio_ioctl,
1633};
1634
Vlad Dogaru8f5d8722014-12-29 11:37:48 +02001635static int iio_check_unique_scan_index(struct iio_dev *indio_dev)
1636{
1637 int i, j;
1638 const struct iio_chan_spec *channels = indio_dev->channels;
1639
1640 if (!(indio_dev->modes & INDIO_ALL_BUFFER_MODES))
1641 return 0;
1642
1643 for (i = 0; i < indio_dev->num_channels - 1; i++) {
1644 if (channels[i].scan_index < 0)
1645 continue;
1646 for (j = i + 1; j < indio_dev->num_channels; j++)
1647 if (channels[i].scan_index == channels[j].scan_index) {
1648 dev_err(&indio_dev->dev,
1649 "Duplicate scan index %d\n",
1650 channels[i].scan_index);
1651 return -EINVAL;
1652 }
1653 }
1654
1655 return 0;
1656}
1657
Michael Hennerich0f1acee2012-03-01 10:51:04 +01001658static const struct iio_buffer_setup_ops noop_ring_setup_ops;
1659
Jonathan Cameron63b19542017-07-23 17:25:43 +01001660int __iio_device_register(struct iio_dev *indio_dev, struct module *this_mod)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001661{
1662 int ret;
1663
Jonathan Cameron63b19542017-07-23 17:25:43 +01001664 indio_dev->driver_module = this_mod;
Guenter Roeck17d82b42013-02-07 17:09:00 +00001665 /* If the calling driver did not initialize of_node, do it here */
1666 if (!indio_dev->dev.of_node && indio_dev->dev.parent)
1667 indio_dev->dev.of_node = indio_dev->dev.parent->of_node;
1668
Vlad Dogaru8f5d8722014-12-29 11:37:48 +02001669 ret = iio_check_unique_scan_index(indio_dev);
1670 if (ret < 0)
1671 return ret;
1672
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001673 /* configure elements for the chrdev */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001674 indio_dev->dev.devt = MKDEV(MAJOR(iio_devt), indio_dev->id);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001675
Michael Henneriche553f182012-03-01 10:51:03 +01001676 ret = iio_device_register_debugfs(indio_dev);
1677 if (ret) {
1678 dev_err(indio_dev->dev.parent,
1679 "Failed to register debugfs interfaces\n");
Hartmut Knaack92825ff2014-02-16 11:53:00 +00001680 return ret;
Michael Henneriche553f182012-03-01 10:51:03 +01001681 }
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001682
1683 ret = iio_buffer_alloc_sysfs_and_mask(indio_dev);
1684 if (ret) {
1685 dev_err(indio_dev->dev.parent,
1686 "Failed to create buffer sysfs interfaces\n");
1687 goto error_unreg_debugfs;
1688 }
1689
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001690 ret = iio_device_register_sysfs(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001691 if (ret) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001692 dev_err(indio_dev->dev.parent,
Jonathan Cameron847ec802009-08-18 18:06:19 +01001693 "Failed to register sysfs interfaces\n");
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001694 goto error_buffer_free_sysfs;
Jonathan Cameron847ec802009-08-18 18:06:19 +01001695 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001696 ret = iio_device_register_eventset(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001697 if (ret) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001698 dev_err(indio_dev->dev.parent,
Roel Van Nyenc849d252010-04-29 19:27:31 +02001699 "Failed to register event set\n");
Jonathan Cameron847ec802009-08-18 18:06:19 +01001700 goto error_free_sysfs;
1701 }
Benjamin Gaignardd89e1192017-04-27 15:29:15 +02001702 if (indio_dev->modes & INDIO_ALL_TRIGGERED_MODES)
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001703 iio_device_register_trigger_consumer(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001704
Michael Hennerich0f1acee2012-03-01 10:51:04 +01001705 if ((indio_dev->modes & INDIO_ALL_BUFFER_MODES) &&
1706 indio_dev->setup_ops == NULL)
1707 indio_dev->setup_ops = &noop_ring_setup_ops;
1708
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001709 cdev_init(&indio_dev->chrdev, &iio_buffer_fileops);
Jonathan Cameron63b19542017-07-23 17:25:43 +01001710
1711 indio_dev->chrdev.owner = this_mod;
Logan Gunthorpe389239112017-03-17 12:48:17 -06001712
1713 ret = cdev_device_add(&indio_dev->chrdev, &indio_dev->dev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001714 if (ret < 0)
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001715 goto error_unreg_eventset;
Jonathan Cameron847ec802009-08-18 18:06:19 +01001716
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001717 return 0;
Logan Gunthorpe389239112017-03-17 12:48:17 -06001718
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001719error_unreg_eventset:
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001720 iio_device_unregister_eventset(indio_dev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001721error_free_sysfs:
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001722 iio_device_unregister_sysfs(indio_dev);
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001723error_buffer_free_sysfs:
1724 iio_buffer_free_sysfs_and_mask(indio_dev);
Michael Henneriche553f182012-03-01 10:51:03 +01001725error_unreg_debugfs:
1726 iio_device_unregister_debugfs(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001727 return ret;
1728}
Jonathan Cameron63b19542017-07-23 17:25:43 +01001729EXPORT_SYMBOL(__iio_device_register);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001730
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001731/**
1732 * iio_device_unregister() - unregister a device from the IIO subsystem
1733 * @indio_dev: Device structure representing the device.
1734 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001735void iio_device_unregister(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001736{
Jonathan Cameronac917a82012-02-15 19:48:00 +00001737 mutex_lock(&indio_dev->info_exist_lock);
Lars-Peter Clausena87c82e2013-09-18 21:02:00 +01001738
Logan Gunthorpe389239112017-03-17 12:48:17 -06001739 cdev_device_del(&indio_dev->chrdev, &indio_dev->dev);
Lars-Peter Clausena87c82e2013-09-18 21:02:00 +01001740
Lars-Peter Clausenbc4c9612013-09-21 16:21:00 +01001741 iio_device_unregister_debugfs(indio_dev);
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001742
Lars-Peter Clausena87c82e2013-09-18 21:02:00 +01001743 iio_disable_all_buffers(indio_dev);
1744
Jonathan Cameronac917a82012-02-15 19:48:00 +00001745 indio_dev->info = NULL;
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +01001746
1747 iio_device_wakeup_eventset(indio_dev);
1748 iio_buffer_wakeup_poll(indio_dev);
1749
Jonathan Cameronac917a82012-02-15 19:48:00 +00001750 mutex_unlock(&indio_dev->info_exist_lock);
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001751
1752 iio_buffer_free_sysfs_and_mask(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001753}
1754EXPORT_SYMBOL(iio_device_unregister);
Sachin Kamat8caa07c2013-10-29 11:39:00 +00001755
1756static void devm_iio_device_unreg(struct device *dev, void *res)
1757{
1758 iio_device_unregister(*(struct iio_dev **)res);
1759}
1760
Jonathan Cameron63b19542017-07-23 17:25:43 +01001761int __devm_iio_device_register(struct device *dev, struct iio_dev *indio_dev,
1762 struct module *this_mod)
Sachin Kamat8caa07c2013-10-29 11:39:00 +00001763{
1764 struct iio_dev **ptr;
1765 int ret;
1766
1767 ptr = devres_alloc(devm_iio_device_unreg, sizeof(*ptr), GFP_KERNEL);
1768 if (!ptr)
1769 return -ENOMEM;
1770
1771 *ptr = indio_dev;
Jonathan Cameron63b19542017-07-23 17:25:43 +01001772 ret = __iio_device_register(indio_dev, this_mod);
Sachin Kamat8caa07c2013-10-29 11:39:00 +00001773 if (!ret)
1774 devres_add(dev, ptr);
1775 else
1776 devres_free(ptr);
1777
1778 return ret;
1779}
Jonathan Cameron63b19542017-07-23 17:25:43 +01001780EXPORT_SYMBOL_GPL(__devm_iio_device_register);
Sachin Kamat8caa07c2013-10-29 11:39:00 +00001781
1782/**
1783 * devm_iio_device_unregister - Resource-managed iio_device_unregister()
1784 * @dev: Device this iio_dev belongs to
1785 * @indio_dev: the iio_dev associated with the device
1786 *
1787 * Unregister iio_dev registered with devm_iio_device_register().
1788 */
1789void devm_iio_device_unregister(struct device *dev, struct iio_dev *indio_dev)
1790{
1791 int rc;
1792
1793 rc = devres_release(dev, devm_iio_device_unreg,
1794 devm_iio_device_match, indio_dev);
1795 WARN_ON(rc);
1796}
1797EXPORT_SYMBOL_GPL(devm_iio_device_unregister);
1798
Alison Schofield08a33802016-03-09 11:30:12 -08001799/**
1800 * iio_device_claim_direct_mode - Keep device in direct mode
1801 * @indio_dev: the iio_dev associated with the device
1802 *
1803 * If the device is in direct mode it is guaranteed to stay
1804 * that way until iio_device_release_direct_mode() is called.
1805 *
1806 * Use with iio_device_release_direct_mode()
1807 *
1808 * Returns: 0 on success, -EBUSY on failure
1809 */
1810int iio_device_claim_direct_mode(struct iio_dev *indio_dev)
1811{
1812 mutex_lock(&indio_dev->mlock);
1813
1814 if (iio_buffer_enabled(indio_dev)) {
1815 mutex_unlock(&indio_dev->mlock);
1816 return -EBUSY;
1817 }
1818 return 0;
1819}
1820EXPORT_SYMBOL_GPL(iio_device_claim_direct_mode);
1821
1822/**
1823 * iio_device_release_direct_mode - releases claim on direct mode
1824 * @indio_dev: the iio_dev associated with the device
1825 *
1826 * Release the claim. Device is no longer guaranteed to stay
1827 * in direct mode.
1828 *
1829 * Use with iio_device_claim_direct_mode()
1830 */
1831void iio_device_release_direct_mode(struct iio_dev *indio_dev)
1832{
1833 mutex_unlock(&indio_dev->mlock);
1834}
1835EXPORT_SYMBOL_GPL(iio_device_release_direct_mode);
1836
Jonathan Cameron847ec802009-08-18 18:06:19 +01001837subsys_initcall(iio_init);
1838module_exit(iio_exit);
1839
Jonathan Cameronc8b95952012-09-02 21:27:56 +01001840MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>");
Jonathan Cameron847ec802009-08-18 18:06:19 +01001841MODULE_DESCRIPTION("Industrial I/O core");
1842MODULE_LICENSE("GPL");