blob: b3fcc2c449d80e2cb1fdfe95dc6ca200d36931e3 [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>
Jonathan Cameron06458e22012-04-25 15:54:58 +010028#include <linux/iio/iio.h>
Jonathan Camerondf9c1c42011-08-12 17:56:03 +010029#include "iio_core.h"
Jonathan Cameron6aea1c32011-08-24 17:28:38 +010030#include "iio_core_trigger.h"
Jonathan Cameron06458e22012-04-25 15:54:58 +010031#include <linux/iio/sysfs.h>
32#include <linux/iio/events.h>
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +010033#include <linux/iio/buffer.h>
Jonathan Cameron9dd1cb32011-08-30 12:41:15 +010034
Peter Meerwald99698b42012-08-26 13:43:00 +010035/* IDA to assign each registered device a unique id */
Jonathan Cameronb156cf72010-09-04 17:54:43 +010036static DEFINE_IDA(iio_ida);
Jonathan Cameron847ec802009-08-18 18:06:19 +010037
Jonathan Cameronf625cb92011-08-30 12:32:48 +010038static dev_t iio_devt;
Jonathan Cameron847ec802009-08-18 18:06:19 +010039
40#define IIO_DEV_MAX 256
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +010041struct bus_type iio_bus_type = {
Jonathan Cameron847ec802009-08-18 18:06:19 +010042 .name = "iio",
Jonathan Cameron847ec802009-08-18 18:06:19 +010043};
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +010044EXPORT_SYMBOL(iio_bus_type);
Jonathan Cameron847ec802009-08-18 18:06:19 +010045
Michael Henneriche553f182012-03-01 10:51:03 +010046static struct dentry *iio_debugfs_dentry;
47
Jonathan Cameronc6fc8062011-09-02 17:14:34 +010048static const char * const iio_direction[] = {
49 [0] = "in",
50 [1] = "out",
51};
52
Jonathan Cameronade7ef72011-09-02 17:14:45 +010053static const char * const iio_chan_type_name_spec[] = {
Jonathan Cameronc6fc8062011-09-02 17:14:34 +010054 [IIO_VOLTAGE] = "voltage",
Michael Hennerichfaf290e2011-05-18 14:42:02 +010055 [IIO_CURRENT] = "current",
56 [IIO_POWER] = "power",
Bryan Freed9bff02f2011-07-07 12:01:54 -070057 [IIO_ACCEL] = "accel",
Jonathan Cameron41ea0402011-10-05 15:27:59 +010058 [IIO_ANGL_VEL] = "anglvel",
Jonathan Cameron1d892712011-05-18 14:40:51 +010059 [IIO_MAGN] = "magn",
Bryan Freed9bff02f2011-07-07 12:01:54 -070060 [IIO_LIGHT] = "illuminance",
61 [IIO_INTENSITY] = "intensity",
Bryan Freedf09f2c82011-07-07 12:01:55 -070062 [IIO_PROXIMITY] = "proximity",
Bryan Freed9bff02f2011-07-07 12:01:54 -070063 [IIO_TEMP] = "temp",
Jonathan Cameron1d892712011-05-18 14:40:51 +010064 [IIO_INCLI] = "incli",
65 [IIO_ROT] = "rot",
Jonathan Cameron1d892712011-05-18 14:40:51 +010066 [IIO_ANGL] = "angl",
Bryan Freed9bff02f2011-07-07 12:01:54 -070067 [IIO_TIMESTAMP] = "timestamp",
Jonathan Cameron66dbe702011-09-02 17:14:43 +010068 [IIO_CAPACITANCE] = "capacitance",
Michael Hennericha6b12852012-04-27 10:58:34 +020069 [IIO_ALTVOLTAGE] = "altvoltage",
Jon Brenner21cd1fa2012-05-16 10:46:42 -050070 [IIO_CCT] = "cct",
Lars-Peter Clausenc4f0c692012-11-20 13:36:00 +000071 [IIO_PRESSURE] = "pressure",
Harald Geyerac216aa2013-12-01 15:08:00 +000072 [IIO_HUMIDITYRELATIVE] = "humidityrelative",
Daniel Baluta55aebeb2014-11-10 14:45:30 +020073 [IIO_ACTIVITY] = "activity",
Irina Tirdeaa88bfe72014-11-10 14:45:32 +020074 [IIO_STEPS] = "steps",
Irina Tirdea72c66642015-01-11 21:10:07 +020075 [IIO_ENERGY] = "energy",
Irina Tirdeacc3c9ee2015-01-11 21:10:08 +020076 [IIO_DISTANCE] = "distance",
Irina Tirdea5a1a9322015-01-11 21:10:09 +020077 [IIO_VELOCITY] = "velocity",
Jonathan Cameron1d892712011-05-18 14:40:51 +010078};
79
Jonathan Cameron330c6c52011-09-02 17:14:39 +010080static const char * const iio_modifier_names[] = {
Jonathan Cameron1d892712011-05-18 14:40:51 +010081 [IIO_MOD_X] = "x",
82 [IIO_MOD_Y] = "y",
83 [IIO_MOD_Z] = "z",
Peter Meerwald4b8d8012015-06-20 23:52:30 +020084 [IIO_MOD_X_AND_Y] = "x&y",
85 [IIO_MOD_X_AND_Z] = "x&z",
86 [IIO_MOD_Y_AND_Z] = "y&z",
87 [IIO_MOD_X_AND_Y_AND_Z] = "x&y&z",
88 [IIO_MOD_X_OR_Y] = "x|y",
89 [IIO_MOD_X_OR_Z] = "x|z",
90 [IIO_MOD_Y_OR_Z] = "y|z",
91 [IIO_MOD_X_OR_Y_OR_Z] = "x|y|z",
Jonathan Cameron8f5879b2012-05-05 10:39:22 +010092 [IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)",
Jonathan Cameroncf82cb82012-05-05 10:56:41 +010093 [IIO_MOD_SUM_SQUARED_X_Y_Z] = "x^2+y^2+z^2",
Jonathan Cameron330c6c52011-09-02 17:14:39 +010094 [IIO_MOD_LIGHT_BOTH] = "both",
95 [IIO_MOD_LIGHT_IR] = "ir",
Jon Brenner21cd1fa2012-05-16 10:46:42 -050096 [IIO_MOD_LIGHT_CLEAR] = "clear",
97 [IIO_MOD_LIGHT_RED] = "red",
98 [IIO_MOD_LIGHT_GREEN] = "green",
99 [IIO_MOD_LIGHT_BLUE] = "blue",
Srinivas Pandruvada5082f402014-04-29 00:51:00 +0100100 [IIO_MOD_QUATERNION] = "quaternion",
Peter Meerwald638b43b2014-02-05 16:57:00 +0000101 [IIO_MOD_TEMP_AMBIENT] = "ambient",
102 [IIO_MOD_TEMP_OBJECT] = "object",
Reyad Attiyat11b8dda2014-07-17 19:18:00 +0100103 [IIO_MOD_NORTH_MAGN] = "from_north_magnetic",
104 [IIO_MOD_NORTH_TRUE] = "from_north_true",
105 [IIO_MOD_NORTH_MAGN_TILT_COMP] = "from_north_magnetic_tilt_comp",
106 [IIO_MOD_NORTH_TRUE_TILT_COMP] = "from_north_true_tilt_comp",
Daniel Baluta55aebeb2014-11-10 14:45:30 +0200107 [IIO_MOD_RUNNING] = "running",
108 [IIO_MOD_JOGGING] = "jogging",
109 [IIO_MOD_WALKING] = "walking",
110 [IIO_MOD_STILL] = "still",
Irina Tirdea5a1a9322015-01-11 21:10:09 +0200111 [IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z] = "sqrt(x^2+y^2+z^2)",
Lars-Peter Clausen1ce87f22015-05-22 18:17:38 +0200112 [IIO_MOD_I] = "i",
113 [IIO_MOD_Q] = "q",
Jonathan Cameron1d892712011-05-18 14:40:51 +0100114};
115
116/* relies on pairs of these shared then separate */
117static const char * const iio_chan_info_postfix[] = {
Jonathan Cameron75a973c2012-04-15 17:41:30 +0100118 [IIO_CHAN_INFO_RAW] = "raw",
119 [IIO_CHAN_INFO_PROCESSED] = "input",
Jonathan Cameronc8a9f802011-10-26 17:41:36 +0100120 [IIO_CHAN_INFO_SCALE] = "scale",
121 [IIO_CHAN_INFO_OFFSET] = "offset",
122 [IIO_CHAN_INFO_CALIBSCALE] = "calibscale",
123 [IIO_CHAN_INFO_CALIBBIAS] = "calibbias",
124 [IIO_CHAN_INFO_PEAK] = "peak_raw",
125 [IIO_CHAN_INFO_PEAK_SCALE] = "peak_scale",
126 [IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW] = "quadrature_correction_raw",
127 [IIO_CHAN_INFO_AVERAGE_RAW] = "mean_raw",
Jonathan Camerondf94aba2011-11-27 11:39:12 +0000128 [IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY]
129 = "filter_low_pass_3db_frequency",
Martin Fuzzey3f7f6422015-05-13 12:26:42 +0200130 [IIO_CHAN_INFO_HIGH_PASS_FILTER_3DB_FREQUENCY]
131 = "filter_high_pass_3db_frequency",
Laxman Dewangance85a1c2012-04-13 16:03:31 +0530132 [IIO_CHAN_INFO_SAMP_FREQ] = "sampling_frequency",
Michael Hennericha6b12852012-04-27 10:58:34 +0200133 [IIO_CHAN_INFO_FREQUENCY] = "frequency",
134 [IIO_CHAN_INFO_PHASE] = "phase",
Michael Hennerichb65d6212012-05-11 11:36:53 +0200135 [IIO_CHAN_INFO_HARDWAREGAIN] = "hardwaregain",
srinivas pandruvada7c9ab032012-09-05 13:56:00 +0100136 [IIO_CHAN_INFO_HYSTERESIS] = "hysteresis",
Peter Meerwald899d90b2013-09-08 16:20:00 +0100137 [IIO_CHAN_INFO_INT_TIME] = "integration_time",
Irina Tirdeaa88bfe72014-11-10 14:45:32 +0200138 [IIO_CHAN_INFO_ENABLE] = "en",
Irina Tirdeabcdf28f2014-11-10 14:45:33 +0200139 [IIO_CHAN_INFO_CALIBHEIGHT] = "calibheight",
Irina Tirdead37f6832015-01-11 21:10:10 +0200140 [IIO_CHAN_INFO_CALIBWEIGHT] = "calibweight",
Irina Tirdea2f0ecb72015-01-27 20:41:52 +0200141 [IIO_CHAN_INFO_DEBOUNCE_COUNT] = "debounce_count",
142 [IIO_CHAN_INFO_DEBOUNCE_TIME] = "debounce_time",
Vianney le Clément de Saint-Marcqc8a85852015-03-30 10:34:58 +0200143 [IIO_CHAN_INFO_CALIBEMISSIVITY] = "calibemissivity",
Irina Tirdeafaaa4492015-04-29 21:16:39 +0300144 [IIO_CHAN_INFO_OVERSAMPLING_RATIO] = "oversampling_ratio",
Jonathan Cameron1d892712011-05-18 14:40:51 +0100145};
146
Sachin Kamata7e57dc2013-10-29 11:39:00 +0000147/**
148 * iio_find_channel_from_si() - get channel from its scan index
149 * @indio_dev: device
150 * @si: scan index to match
151 */
Jonathan Cameron5fb21c82011-12-05 21:37:10 +0000152const struct iio_chan_spec
153*iio_find_channel_from_si(struct iio_dev *indio_dev, int si)
154{
155 int i;
156
157 for (i = 0; i < indio_dev->num_channels; i++)
158 if (indio_dev->channels[i].scan_index == si)
159 return &indio_dev->channels[i];
160 return NULL;
161}
162
Jonathan Cameron847ec802009-08-18 18:06:19 +0100163/* This turns up an awful lot */
164ssize_t iio_read_const_attr(struct device *dev,
165 struct device_attribute *attr,
166 char *buf)
167{
168 return sprintf(buf, "%s\n", to_iio_const_attr(attr)->string);
169}
170EXPORT_SYMBOL(iio_read_const_attr);
171
Jonathan Cameron847ec802009-08-18 18:06:19 +0100172static int __init iio_init(void)
173{
174 int ret;
175
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100176 /* Register sysfs bus */
177 ret = bus_register(&iio_bus_type);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100178 if (ret < 0) {
Sachin Kamat3176dd52013-10-24 12:53:00 +0100179 pr_err("could not register bus type\n");
Jonathan Cameron847ec802009-08-18 18:06:19 +0100180 goto error_nothing;
181 }
182
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100183 ret = alloc_chrdev_region(&iio_devt, 0, IIO_DEV_MAX, "iio");
184 if (ret < 0) {
Sachin Kamat3176dd52013-10-24 12:53:00 +0100185 pr_err("failed to allocate char dev region\n");
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100186 goto error_unregister_bus_type;
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100187 }
Jonathan Cameron847ec802009-08-18 18:06:19 +0100188
Michael Henneriche553f182012-03-01 10:51:03 +0100189 iio_debugfs_dentry = debugfs_create_dir("iio", NULL);
190
Jonathan Cameron847ec802009-08-18 18:06:19 +0100191 return 0;
192
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100193error_unregister_bus_type:
194 bus_unregister(&iio_bus_type);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100195error_nothing:
196 return ret;
197}
198
199static void __exit iio_exit(void)
200{
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100201 if (iio_devt)
202 unregister_chrdev_region(iio_devt, IIO_DEV_MAX);
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100203 bus_unregister(&iio_bus_type);
Michael Henneriche553f182012-03-01 10:51:03 +0100204 debugfs_remove(iio_debugfs_dentry);
205}
206
207#if defined(CONFIG_DEBUG_FS)
Michael Henneriche553f182012-03-01 10:51:03 +0100208static ssize_t iio_debugfs_read_reg(struct file *file, char __user *userbuf,
209 size_t count, loff_t *ppos)
210{
211 struct iio_dev *indio_dev = file->private_data;
212 char buf[20];
213 unsigned val = 0;
214 ssize_t len;
215 int ret;
216
217 ret = indio_dev->info->debugfs_reg_access(indio_dev,
218 indio_dev->cached_reg_addr,
219 0, &val);
220 if (ret)
221 dev_err(indio_dev->dev.parent, "%s: read failed\n", __func__);
222
223 len = snprintf(buf, sizeof(buf), "0x%X\n", val);
224
225 return simple_read_from_buffer(userbuf, count, ppos, buf, len);
226}
227
228static ssize_t iio_debugfs_write_reg(struct file *file,
229 const char __user *userbuf, size_t count, loff_t *ppos)
230{
231 struct iio_dev *indio_dev = file->private_data;
232 unsigned reg, val;
233 char buf[80];
234 int ret;
235
236 count = min_t(size_t, count, (sizeof(buf)-1));
237 if (copy_from_user(buf, userbuf, count))
238 return -EFAULT;
239
240 buf[count] = 0;
241
242 ret = sscanf(buf, "%i %i", &reg, &val);
243
244 switch (ret) {
245 case 1:
246 indio_dev->cached_reg_addr = reg;
247 break;
248 case 2:
249 indio_dev->cached_reg_addr = reg;
250 ret = indio_dev->info->debugfs_reg_access(indio_dev, reg,
251 val, NULL);
252 if (ret) {
253 dev_err(indio_dev->dev.parent, "%s: write failed\n",
254 __func__);
255 return ret;
256 }
257 break;
258 default:
259 return -EINVAL;
260 }
261
262 return count;
263}
264
265static const struct file_operations iio_debugfs_reg_fops = {
Axel Lin5a28c872012-05-03 09:50:51 +0800266 .open = simple_open,
Michael Henneriche553f182012-03-01 10:51:03 +0100267 .read = iio_debugfs_read_reg,
268 .write = iio_debugfs_write_reg,
269};
270
271static void iio_device_unregister_debugfs(struct iio_dev *indio_dev)
272{
273 debugfs_remove_recursive(indio_dev->debugfs_dentry);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100274}
275
Michael Henneriche553f182012-03-01 10:51:03 +0100276static int iio_device_register_debugfs(struct iio_dev *indio_dev)
277{
278 struct dentry *d;
279
280 if (indio_dev->info->debugfs_reg_access == NULL)
281 return 0;
282
Axel Linabd5a2f2012-05-03 22:56:58 +0800283 if (!iio_debugfs_dentry)
Michael Henneriche553f182012-03-01 10:51:03 +0100284 return 0;
285
286 indio_dev->debugfs_dentry =
287 debugfs_create_dir(dev_name(&indio_dev->dev),
288 iio_debugfs_dentry);
Michael Henneriche553f182012-03-01 10:51:03 +0100289 if (indio_dev->debugfs_dentry == NULL) {
290 dev_warn(indio_dev->dev.parent,
291 "Failed to create debugfs directory\n");
292 return -EFAULT;
293 }
294
295 d = debugfs_create_file("direct_reg_access", 0644,
296 indio_dev->debugfs_dentry,
297 indio_dev, &iio_debugfs_reg_fops);
298 if (!d) {
299 iio_device_unregister_debugfs(indio_dev);
300 return -ENOMEM;
301 }
302
303 return 0;
304}
305#else
306static int iio_device_register_debugfs(struct iio_dev *indio_dev)
307{
308 return 0;
309}
310
311static void iio_device_unregister_debugfs(struct iio_dev *indio_dev)
312{
313}
314#endif /* CONFIG_DEBUG_FS */
315
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100316static ssize_t iio_read_channel_ext_info(struct device *dev,
317 struct device_attribute *attr,
318 char *buf)
319{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200320 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100321 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
322 const struct iio_chan_spec_ext_info *ext_info;
323
324 ext_info = &this_attr->c->ext_info[this_attr->address];
325
Michael Hennerichfc6d1132012-04-27 10:58:36 +0200326 return ext_info->read(indio_dev, ext_info->private, this_attr->c, buf);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100327}
328
329static ssize_t iio_write_channel_ext_info(struct device *dev,
330 struct device_attribute *attr,
331 const char *buf,
332 size_t len)
333{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200334 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100335 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
336 const struct iio_chan_spec_ext_info *ext_info;
337
338 ext_info = &this_attr->c->ext_info[this_attr->address];
339
Michael Hennerichfc6d1132012-04-27 10:58:36 +0200340 return ext_info->write(indio_dev, ext_info->private,
341 this_attr->c, buf, len);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100342}
343
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200344ssize_t iio_enum_available_read(struct iio_dev *indio_dev,
345 uintptr_t priv, const struct iio_chan_spec *chan, char *buf)
346{
347 const struct iio_enum *e = (const struct iio_enum *)priv;
348 unsigned int i;
349 size_t len = 0;
350
351 if (!e->num_items)
352 return 0;
353
354 for (i = 0; i < e->num_items; ++i)
Lars-Peter Clausen74dcd432012-06-05 18:24:12 +0200355 len += scnprintf(buf + len, PAGE_SIZE - len, "%s ", e->items[i]);
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200356
357 /* replace last space with a newline */
358 buf[len - 1] = '\n';
359
360 return len;
361}
362EXPORT_SYMBOL_GPL(iio_enum_available_read);
363
364ssize_t iio_enum_read(struct iio_dev *indio_dev,
365 uintptr_t priv, const struct iio_chan_spec *chan, char *buf)
366{
367 const struct iio_enum *e = (const struct iio_enum *)priv;
368 int i;
369
370 if (!e->get)
371 return -EINVAL;
372
373 i = e->get(indio_dev, chan);
374 if (i < 0)
375 return i;
376 else if (i >= e->num_items)
377 return -EINVAL;
378
Kees Cook598db582014-03-13 16:46:00 +0000379 return snprintf(buf, PAGE_SIZE, "%s\n", e->items[i]);
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200380}
381EXPORT_SYMBOL_GPL(iio_enum_read);
382
383ssize_t iio_enum_write(struct iio_dev *indio_dev,
384 uintptr_t priv, const struct iio_chan_spec *chan, const char *buf,
385 size_t len)
386{
387 const struct iio_enum *e = (const struct iio_enum *)priv;
388 unsigned int i;
389 int ret;
390
391 if (!e->set)
392 return -EINVAL;
393
394 for (i = 0; i < e->num_items; i++) {
395 if (sysfs_streq(buf, e->items[i]))
396 break;
397 }
398
399 if (i == e->num_items)
400 return -EINVAL;
401
402 ret = e->set(indio_dev, chan, i);
403 return ret ? ret : len;
404}
405EXPORT_SYMBOL_GPL(iio_enum_write);
406
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100407/**
408 * iio_format_value() - Formats a IIO value into its string representation
Cristina Opriceana2498dcf2015-07-24 16:16:19 +0300409 * @buf: The buffer to which the formatted value gets written
410 * @type: One of the IIO_VAL_... constants. This decides how the val
411 * and val2 parameters are formatted.
412 * @size: Number of IIO value entries contained in vals
413 * @vals: Pointer to the values, exact meaning depends on the
414 * type parameter.
415 *
416 * Return: 0 by default, a negative number on failure or the
417 * total number of characters written for a type that belongs
418 * to the IIO_VAL_... constant.
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100419 */
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100420ssize_t iio_format_value(char *buf, unsigned int type, int size, int *vals)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100421{
Lars-Peter Clausen7985e7c2012-09-14 16:21:00 +0100422 unsigned long long tmp;
Michael Hennerich67eedba2012-05-11 11:36:52 +0200423 bool scale_db = false;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100424
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100425 switch (type) {
Michael Hennerich67eedba2012-05-11 11:36:52 +0200426 case IIO_VAL_INT:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100427 return sprintf(buf, "%d\n", vals[0]);
Michael Hennerich67eedba2012-05-11 11:36:52 +0200428 case IIO_VAL_INT_PLUS_MICRO_DB:
429 scale_db = true;
430 case IIO_VAL_INT_PLUS_MICRO:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100431 if (vals[1] < 0)
432 return sprintf(buf, "-%ld.%06u%s\n", abs(vals[0]),
433 -vals[1],
Michael Hennerich67eedba2012-05-11 11:36:52 +0200434 scale_db ? " dB" : "");
Jonathan Cameron1d892712011-05-18 14:40:51 +0100435 else
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100436 return sprintf(buf, "%d.%06u%s\n", vals[0], vals[1],
Michael Hennerich67eedba2012-05-11 11:36:52 +0200437 scale_db ? " dB" : "");
438 case IIO_VAL_INT_PLUS_NANO:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100439 if (vals[1] < 0)
440 return sprintf(buf, "-%ld.%09u\n", abs(vals[0]),
441 -vals[1]);
Michael Hennerich71646e22011-06-27 13:07:07 +0100442 else
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100443 return sprintf(buf, "%d.%09u\n", vals[0], vals[1]);
Lars-Peter Clausen7985e7c2012-09-14 16:21:00 +0100444 case IIO_VAL_FRACTIONAL:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100445 tmp = div_s64((s64)vals[0] * 1000000000LL, vals[1]);
446 vals[1] = do_div(tmp, 1000000000LL);
447 vals[0] = tmp;
448 return sprintf(buf, "%d.%09u\n", vals[0], vals[1]);
Lars-Peter Clausen103d9fb2012-10-16 17:29:00 +0100449 case IIO_VAL_FRACTIONAL_LOG2:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100450 tmp = (s64)vals[0] * 1000000000LL >> vals[1];
451 vals[1] = do_div(tmp, 1000000000LL);
452 vals[0] = tmp;
453 return sprintf(buf, "%d.%09u\n", vals[0], vals[1]);
454 case IIO_VAL_INT_MULTIPLE:
455 {
456 int i;
457 int len = 0;
458
459 for (i = 0; i < size; ++i)
460 len += snprintf(&buf[len], PAGE_SIZE - len, "%d ",
461 vals[i]);
462 len += snprintf(&buf[len], PAGE_SIZE - len, "\n");
463 return len;
464 }
Michael Hennerich67eedba2012-05-11 11:36:52 +0200465 default:
Jonathan Cameron1d892712011-05-18 14:40:51 +0100466 return 0;
Michael Hennerich67eedba2012-05-11 11:36:52 +0200467 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100468}
469
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100470static ssize_t iio_read_channel_info(struct device *dev,
471 struct device_attribute *attr,
472 char *buf)
473{
474 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
475 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100476 int vals[INDIO_MAX_RAW_ELEMENTS];
477 int ret;
478 int val_len = 2;
479
480 if (indio_dev->info->read_raw_multi)
481 ret = indio_dev->info->read_raw_multi(indio_dev, this_attr->c,
482 INDIO_MAX_RAW_ELEMENTS,
483 vals, &val_len,
484 this_attr->address);
485 else
486 ret = indio_dev->info->read_raw(indio_dev, this_attr->c,
487 &vals[0], &vals[1], this_attr->address);
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100488
489 if (ret < 0)
490 return ret;
491
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100492 return iio_format_value(buf, ret, val_len, vals);
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100493}
494
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000495/**
496 * iio_str_to_fixpoint() - Parse a fixed-point number from a string
497 * @str: The string to parse
498 * @fract_mult: Multiplier for the first decimal place, should be a power of 10
499 * @integer: The integer part of the number
500 * @fract: The fractional part of the number
501 *
502 * Returns 0 on success, or a negative error code if the string could not be
503 * parsed.
504 */
505int iio_str_to_fixpoint(const char *str, int fract_mult,
506 int *integer, int *fract)
507{
508 int i = 0, f = 0;
509 bool integer_part = true, negative = false;
510
511 if (str[0] == '-') {
512 negative = true;
513 str++;
514 } else if (str[0] == '+') {
515 str++;
516 }
517
518 while (*str) {
519 if ('0' <= *str && *str <= '9') {
520 if (integer_part) {
521 i = i * 10 + *str - '0';
522 } else {
523 f += fract_mult * (*str - '0');
524 fract_mult /= 10;
525 }
526 } else if (*str == '\n') {
527 if (*(str + 1) == '\0')
528 break;
529 else
530 return -EINVAL;
531 } else if (*str == '.' && integer_part) {
532 integer_part = false;
533 } else {
534 return -EINVAL;
535 }
536 str++;
537 }
538
539 if (negative) {
540 if (i)
541 i = -i;
542 else
543 f = -f;
544 }
545
546 *integer = i;
547 *fract = f;
548
549 return 0;
550}
551EXPORT_SYMBOL_GPL(iio_str_to_fixpoint);
552
Jonathan Cameron1d892712011-05-18 14:40:51 +0100553static ssize_t iio_write_channel_info(struct device *dev,
554 struct device_attribute *attr,
555 const char *buf,
556 size_t len)
557{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200558 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100559 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000560 int ret, fract_mult = 100000;
561 int integer, fract;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100562
563 /* Assumes decimal - precision based on number of digits */
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100564 if (!indio_dev->info->write_raw)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100565 return -EINVAL;
Michael Hennerich5c04af02011-06-27 13:07:10 +0100566
567 if (indio_dev->info->write_raw_get_fmt)
568 switch (indio_dev->info->write_raw_get_fmt(indio_dev,
569 this_attr->c, this_attr->address)) {
570 case IIO_VAL_INT_PLUS_MICRO:
571 fract_mult = 100000;
572 break;
573 case IIO_VAL_INT_PLUS_NANO:
574 fract_mult = 100000000;
575 break;
576 default:
577 return -EINVAL;
578 }
579
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000580 ret = iio_str_to_fixpoint(buf, fract_mult, &integer, &fract);
581 if (ret)
582 return ret;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100583
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100584 ret = indio_dev->info->write_raw(indio_dev, this_attr->c,
Michael Hennerich5c04af02011-06-27 13:07:10 +0100585 integer, fract, this_attr->address);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100586 if (ret)
587 return ret;
588
589 return len;
590}
591
Jonathan Camerondf9c1c42011-08-12 17:56:03 +0100592static
Jonathan Cameron1d892712011-05-18 14:40:51 +0100593int __iio_device_attr_init(struct device_attribute *dev_attr,
594 const char *postfix,
595 struct iio_chan_spec const *chan,
596 ssize_t (*readfunc)(struct device *dev,
597 struct device_attribute *attr,
598 char *buf),
599 ssize_t (*writefunc)(struct device *dev,
600 struct device_attribute *attr,
601 const char *buf,
602 size_t len),
Jonathan Cameron37044322013-09-08 14:57:00 +0100603 enum iio_shared_by shared_by)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100604{
Jonathan Cameron37044322013-09-08 14:57:00 +0100605 int ret = 0;
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000606 char *name = NULL;
Jonathan Cameron37044322013-09-08 14:57:00 +0100607 char *full_postfix;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100608 sysfs_attr_init(&dev_attr->attr);
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100609
610 /* Build up postfix of <extend_name>_<modifier>_postfix */
Jonathan Cameron37044322013-09-08 14:57:00 +0100611 if (chan->modified && (shared_by == IIO_SEPARATE)) {
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100612 if (chan->extend_name)
613 full_postfix = kasprintf(GFP_KERNEL, "%s_%s_%s",
614 iio_modifier_names[chan
615 ->channel2],
616 chan->extend_name,
617 postfix);
618 else
619 full_postfix = kasprintf(GFP_KERNEL, "%s_%s",
620 iio_modifier_names[chan
621 ->channel2],
622 postfix);
623 } else {
Lars-Peter Clausen77bfa8b2014-02-14 14:19:00 +0000624 if (chan->extend_name == NULL || shared_by != IIO_SEPARATE)
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100625 full_postfix = kstrdup(postfix, GFP_KERNEL);
626 else
627 full_postfix = kasprintf(GFP_KERNEL,
628 "%s_%s",
629 chan->extend_name,
630 postfix);
631 }
Jonathan Cameron37044322013-09-08 14:57:00 +0100632 if (full_postfix == NULL)
633 return -ENOMEM;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100634
Justin P. Mattock4abf6f82012-02-29 22:00:38 -0800635 if (chan->differential) { /* Differential can not have modifier */
Jonathan Cameron37044322013-09-08 14:57:00 +0100636 switch (shared_by) {
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100637 case IIO_SHARED_BY_ALL:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000638 name = kasprintf(GFP_KERNEL, "%s", full_postfix);
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100639 break;
640 case IIO_SHARED_BY_DIR:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000641 name = kasprintf(GFP_KERNEL, "%s_%s",
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100642 iio_direction[chan->output],
643 full_postfix);
644 break;
Jonathan Cameron37044322013-09-08 14:57:00 +0100645 case IIO_SHARED_BY_TYPE:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000646 name = kasprintf(GFP_KERNEL, "%s_%s-%s_%s",
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100647 iio_direction[chan->output],
648 iio_chan_type_name_spec[chan->type],
649 iio_chan_type_name_spec[chan->type],
650 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100651 break;
652 case IIO_SEPARATE:
653 if (!chan->indexed) {
654 WARN_ON("Differential channels must be indexed\n");
655 ret = -EINVAL;
656 goto error_free_full_postfix;
657 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000658 name = kasprintf(GFP_KERNEL,
Jonathan Cameron37044322013-09-08 14:57:00 +0100659 "%s_%s%d-%s%d_%s",
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100660 iio_direction[chan->output],
661 iio_chan_type_name_spec[chan->type],
662 chan->channel,
663 iio_chan_type_name_spec[chan->type],
664 chan->channel2,
665 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100666 break;
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100667 }
668 } else { /* Single ended */
Jonathan Cameron37044322013-09-08 14:57:00 +0100669 switch (shared_by) {
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100670 case IIO_SHARED_BY_ALL:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000671 name = kasprintf(GFP_KERNEL, "%s", full_postfix);
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100672 break;
673 case IIO_SHARED_BY_DIR:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000674 name = kasprintf(GFP_KERNEL, "%s_%s",
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100675 iio_direction[chan->output],
676 full_postfix);
677 break;
Jonathan Cameron37044322013-09-08 14:57:00 +0100678 case IIO_SHARED_BY_TYPE:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000679 name = kasprintf(GFP_KERNEL, "%s_%s_%s",
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100680 iio_direction[chan->output],
681 iio_chan_type_name_spec[chan->type],
682 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100683 break;
684
685 case IIO_SEPARATE:
686 if (chan->indexed)
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000687 name = kasprintf(GFP_KERNEL, "%s_%s%d_%s",
Jonathan Cameron37044322013-09-08 14:57:00 +0100688 iio_direction[chan->output],
689 iio_chan_type_name_spec[chan->type],
690 chan->channel,
691 full_postfix);
692 else
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000693 name = kasprintf(GFP_KERNEL, "%s_%s_%s",
Jonathan Cameron37044322013-09-08 14:57:00 +0100694 iio_direction[chan->output],
695 iio_chan_type_name_spec[chan->type],
696 full_postfix);
697 break;
698 }
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100699 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000700 if (name == NULL) {
Jonathan Cameron1d892712011-05-18 14:40:51 +0100701 ret = -ENOMEM;
702 goto error_free_full_postfix;
703 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000704 dev_attr->attr.name = name;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100705
706 if (readfunc) {
707 dev_attr->attr.mode |= S_IRUGO;
708 dev_attr->show = readfunc;
709 }
710
711 if (writefunc) {
712 dev_attr->attr.mode |= S_IWUSR;
713 dev_attr->store = writefunc;
714 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000715
Jonathan Cameron1d892712011-05-18 14:40:51 +0100716error_free_full_postfix:
717 kfree(full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100718
Jonathan Cameron847ec802009-08-18 18:06:19 +0100719 return ret;
720}
721
Jonathan Camerondf9c1c42011-08-12 17:56:03 +0100722static void __iio_device_attr_deinit(struct device_attribute *dev_attr)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100723{
724 kfree(dev_attr->attr.name);
725}
726
727int __iio_add_chan_devattr(const char *postfix,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100728 struct iio_chan_spec const *chan,
729 ssize_t (*readfunc)(struct device *dev,
730 struct device_attribute *attr,
731 char *buf),
732 ssize_t (*writefunc)(struct device *dev,
733 struct device_attribute *attr,
734 const char *buf,
735 size_t len),
Jonathan Camerone614a542011-09-02 17:14:41 +0100736 u64 mask,
Jonathan Cameron37044322013-09-08 14:57:00 +0100737 enum iio_shared_by shared_by,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100738 struct device *dev,
739 struct list_head *attr_list)
740{
741 int ret;
742 struct iio_dev_attr *iio_attr, *t;
743
Sachin Kamat670c1102013-10-24 12:53:00 +0100744 iio_attr = kzalloc(sizeof(*iio_attr), GFP_KERNEL);
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000745 if (iio_attr == NULL)
746 return -ENOMEM;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100747 ret = __iio_device_attr_init(&iio_attr->dev_attr,
748 postfix, chan,
Jonathan Cameron37044322013-09-08 14:57:00 +0100749 readfunc, writefunc, shared_by);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100750 if (ret)
751 goto error_iio_dev_attr_free;
752 iio_attr->c = chan;
753 iio_attr->address = mask;
754 list_for_each_entry(t, attr_list, l)
755 if (strcmp(t->dev_attr.attr.name,
756 iio_attr->dev_attr.attr.name) == 0) {
Jonathan Cameron37044322013-09-08 14:57:00 +0100757 if (shared_by == IIO_SEPARATE)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100758 dev_err(dev, "tried to double register : %s\n",
759 t->dev_attr.attr.name);
760 ret = -EBUSY;
761 goto error_device_attr_deinit;
762 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100763 list_add(&iio_attr->l, attr_list);
764
765 return 0;
766
767error_device_attr_deinit:
768 __iio_device_attr_deinit(&iio_attr->dev_attr);
769error_iio_dev_attr_free:
770 kfree(iio_attr);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100771 return ret;
772}
773
Jonathan Cameron37044322013-09-08 14:57:00 +0100774static int iio_device_add_info_mask_type(struct iio_dev *indio_dev,
775 struct iio_chan_spec const *chan,
776 enum iio_shared_by shared_by,
777 const long *infomask)
778{
779 int i, ret, attrcount = 0;
780
781 for_each_set_bit(i, infomask, sizeof(infomask)*8) {
Jonathan Cameronef4b4852014-01-03 22:24:00 +0000782 if (i >= ARRAY_SIZE(iio_chan_info_postfix))
783 return -EINVAL;
Jonathan Cameron37044322013-09-08 14:57:00 +0100784 ret = __iio_add_chan_devattr(iio_chan_info_postfix[i],
785 chan,
786 &iio_read_channel_info,
787 &iio_write_channel_info,
788 i,
789 shared_by,
790 &indio_dev->dev,
791 &indio_dev->channel_attr_list);
792 if ((ret == -EBUSY) && (shared_by != IIO_SEPARATE))
793 continue;
794 else if (ret < 0)
795 return ret;
796 attrcount++;
797 }
798
799 return attrcount;
800}
801
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100802static int iio_device_add_channel_sysfs(struct iio_dev *indio_dev,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100803 struct iio_chan_spec const *chan)
804{
Jonathan Cameron5ccb3ad2012-04-15 17:41:16 +0100805 int ret, attrcount = 0;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100806 const struct iio_chan_spec_ext_info *ext_info;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100807
Jonathan Cameron1d892712011-05-18 14:40:51 +0100808 if (chan->channel < 0)
809 return 0;
Jonathan Cameron37044322013-09-08 14:57:00 +0100810 ret = iio_device_add_info_mask_type(indio_dev, chan,
811 IIO_SEPARATE,
812 &chan->info_mask_separate);
813 if (ret < 0)
814 return ret;
815 attrcount += ret;
816
817 ret = iio_device_add_info_mask_type(indio_dev, chan,
818 IIO_SHARED_BY_TYPE,
819 &chan->info_mask_shared_by_type);
820 if (ret < 0)
821 return ret;
822 attrcount += ret;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100823
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100824 ret = iio_device_add_info_mask_type(indio_dev, chan,
825 IIO_SHARED_BY_DIR,
826 &chan->info_mask_shared_by_dir);
827 if (ret < 0)
828 return ret;
829 attrcount += ret;
830
831 ret = iio_device_add_info_mask_type(indio_dev, chan,
832 IIO_SHARED_BY_ALL,
833 &chan->info_mask_shared_by_all);
834 if (ret < 0)
835 return ret;
836 attrcount += ret;
837
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100838 if (chan->ext_info) {
839 unsigned int i = 0;
840 for (ext_info = chan->ext_info; ext_info->name; ext_info++) {
841 ret = __iio_add_chan_devattr(ext_info->name,
842 chan,
843 ext_info->read ?
844 &iio_read_channel_ext_info : NULL,
845 ext_info->write ?
846 &iio_write_channel_ext_info : NULL,
847 i,
848 ext_info->shared,
849 &indio_dev->dev,
850 &indio_dev->channel_attr_list);
851 i++;
852 if (ret == -EBUSY && ext_info->shared)
853 continue;
854
855 if (ret)
Jonathan Cameron37044322013-09-08 14:57:00 +0100856 return ret;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100857
858 attrcount++;
859 }
860 }
861
Jonathan Cameron37044322013-09-08 14:57:00 +0100862 return attrcount;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100863}
864
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100865/**
866 * iio_free_chan_devattr_list() - Free a list of IIO device attributes
867 * @attr_list: List of IIO device attributes
868 *
869 * This function frees the memory allocated for each of the IIO device
Martin Fuzzeyc1b03ab2015-02-19 15:17:44 +0100870 * attributes in the list.
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100871 */
872void iio_free_chan_devattr_list(struct list_head *attr_list)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100873{
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100874 struct iio_dev_attr *p, *n;
875
876 list_for_each_entry_safe(p, n, attr_list, l) {
877 kfree(p->dev_attr.attr.name);
Martin Fuzzeyc1b03ab2015-02-19 15:17:44 +0100878 list_del(&p->l);
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100879 kfree(p);
880 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100881}
882
Jonathan Cameron1b732882011-05-18 14:41:43 +0100883static ssize_t iio_show_dev_name(struct device *dev,
884 struct device_attribute *attr,
885 char *buf)
886{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200887 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Kees Cook598db582014-03-13 16:46:00 +0000888 return snprintf(buf, PAGE_SIZE, "%s\n", indio_dev->name);
Jonathan Cameron1b732882011-05-18 14:41:43 +0100889}
890
891static DEVICE_ATTR(name, S_IRUGO, iio_show_dev_name, NULL);
892
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100893static int iio_device_register_sysfs(struct iio_dev *indio_dev)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100894{
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100895 int i, ret = 0, attrcount, attrn, attrcount_orig = 0;
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100896 struct iio_dev_attr *p;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100897 struct attribute **attr;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100898
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100899 /* First count elements in any existing group */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100900 if (indio_dev->info->attrs) {
901 attr = indio_dev->info->attrs->attrs;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100902 while (*attr++ != NULL)
903 attrcount_orig++;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100904 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100905 attrcount = attrcount_orig;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100906 /*
907 * New channel registration method - relies on the fact a group does
Peter Meerwaldd25b3802012-08-26 13:43:00 +0100908 * not need to be initialized if its name is NULL.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100909 */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100910 if (indio_dev->channels)
911 for (i = 0; i < indio_dev->num_channels; i++) {
912 ret = iio_device_add_channel_sysfs(indio_dev,
913 &indio_dev
Jonathan Cameron1d892712011-05-18 14:40:51 +0100914 ->channels[i]);
915 if (ret < 0)
916 goto error_clear_attrs;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100917 attrcount += ret;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100918 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100919
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100920 if (indio_dev->name)
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100921 attrcount++;
922
Thomas Meyerd83fb182011-11-29 22:08:00 +0100923 indio_dev->chan_attr_group.attrs = kcalloc(attrcount + 1,
924 sizeof(indio_dev->chan_attr_group.attrs[0]),
925 GFP_KERNEL);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100926 if (indio_dev->chan_attr_group.attrs == NULL) {
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100927 ret = -ENOMEM;
928 goto error_clear_attrs;
Jonathan Cameron1b732882011-05-18 14:41:43 +0100929 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100930 /* Copy across original attributes */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100931 if (indio_dev->info->attrs)
932 memcpy(indio_dev->chan_attr_group.attrs,
933 indio_dev->info->attrs->attrs,
934 sizeof(indio_dev->chan_attr_group.attrs[0])
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100935 *attrcount_orig);
936 attrn = attrcount_orig;
937 /* Add all elements from the list. */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100938 list_for_each_entry(p, &indio_dev->channel_attr_list, l)
939 indio_dev->chan_attr_group.attrs[attrn++] = &p->dev_attr.attr;
940 if (indio_dev->name)
941 indio_dev->chan_attr_group.attrs[attrn++] = &dev_attr_name.attr;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100942
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100943 indio_dev->groups[indio_dev->groupcounter++] =
944 &indio_dev->chan_attr_group;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100945
Jonathan Cameron1d892712011-05-18 14:40:51 +0100946 return 0;
Jonathan Cameron1b732882011-05-18 14:41:43 +0100947
Jonathan Cameron1d892712011-05-18 14:40:51 +0100948error_clear_attrs:
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100949 iio_free_chan_devattr_list(&indio_dev->channel_attr_list);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100950
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100951 return ret;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100952}
953
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100954static void iio_device_unregister_sysfs(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100955{
Jonathan Cameron1d892712011-05-18 14:40:51 +0100956
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100957 iio_free_chan_devattr_list(&indio_dev->channel_attr_list);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100958 kfree(indio_dev->chan_attr_group.attrs);
Martin Fuzzeyc1b03ab2015-02-19 15:17:44 +0100959 indio_dev->chan_attr_group.attrs = NULL;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100960}
961
Jonathan Cameron847ec802009-08-18 18:06:19 +0100962static void iio_dev_release(struct device *device)
963{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200964 struct iio_dev *indio_dev = dev_to_iio_dev(device);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100965 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
966 iio_device_unregister_trigger_consumer(indio_dev);
967 iio_device_unregister_eventset(indio_dev);
968 iio_device_unregister_sysfs(indio_dev);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200969
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100970 iio_buffer_put(indio_dev->buffer);
971
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200972 ida_simple_remove(&iio_ida, indio_dev->id);
973 kfree(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100974}
975
Guenter Roeck17d82b42013-02-07 17:09:00 +0000976struct device_type iio_device_type = {
Jonathan Cameron847ec802009-08-18 18:06:19 +0100977 .name = "iio_device",
978 .release = iio_dev_release,
979};
980
Sachin Kamata7e57dc2013-10-29 11:39:00 +0000981/**
982 * iio_device_alloc() - allocate an iio_dev from a driver
983 * @sizeof_priv: Space to allocate for private structure.
984 **/
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200985struct iio_dev *iio_device_alloc(int sizeof_priv)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100986{
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100987 struct iio_dev *dev;
988 size_t alloc_size;
989
990 alloc_size = sizeof(struct iio_dev);
991 if (sizeof_priv) {
992 alloc_size = ALIGN(alloc_size, IIO_ALIGN);
993 alloc_size += sizeof_priv;
994 }
995 /* ensure 32-byte alignment of whole construct ? */
996 alloc_size += IIO_ALIGN - 1;
997
998 dev = kzalloc(alloc_size, GFP_KERNEL);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100999
1000 if (dev) {
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001001 dev->dev.groups = dev->groups;
Guenter Roeck17d82b42013-02-07 17:09:00 +00001002 dev->dev.type = &iio_device_type;
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +01001003 dev->dev.bus = &iio_bus_type;
Jonathan Cameron847ec802009-08-18 18:06:19 +01001004 device_initialize(&dev->dev);
1005 dev_set_drvdata(&dev->dev, (void *)dev);
1006 mutex_init(&dev->mlock);
Jonathan Cameronac917a82012-02-15 19:48:00 +00001007 mutex_init(&dev->info_exist_lock);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +02001008 INIT_LIST_HEAD(&dev->channel_attr_list);
Jonathan Camerona9e39f92011-09-14 13:01:25 +01001009
1010 dev->id = ida_simple_get(&iio_ida, 0, 0, GFP_KERNEL);
1011 if (dev->id < 0) {
1012 /* cannot use a dev_err as the name isn't available */
Sachin Kamat3176dd52013-10-24 12:53:00 +01001013 pr_err("failed to get device id\n");
Jonathan Camerona9e39f92011-09-14 13:01:25 +01001014 kfree(dev);
1015 return NULL;
1016 }
1017 dev_set_name(&dev->dev, "iio:device%d", dev->id);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001018 INIT_LIST_HEAD(&dev->buffer_list);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001019 }
1020
1021 return dev;
1022}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +02001023EXPORT_SYMBOL(iio_device_alloc);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001024
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001025/**
1026 * iio_device_free() - free an iio_dev from a driver
1027 * @dev: the iio_dev associated with the device
1028 **/
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +02001029void iio_device_free(struct iio_dev *dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001030{
Lars-Peter Clausene407fd62012-06-04 10:41:42 +02001031 if (dev)
1032 put_device(&dev->dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001033}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +02001034EXPORT_SYMBOL(iio_device_free);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001035
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001036static void devm_iio_device_release(struct device *dev, void *res)
1037{
1038 iio_device_free(*(struct iio_dev **)res);
1039}
1040
1041static int devm_iio_device_match(struct device *dev, void *res, void *data)
1042{
1043 struct iio_dev **r = res;
1044 if (!r || !*r) {
1045 WARN_ON(!r || !*r);
1046 return 0;
1047 }
1048 return *r == data;
1049}
1050
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001051/**
1052 * devm_iio_device_alloc - Resource-managed iio_device_alloc()
1053 * @dev: Device to allocate iio_dev for
1054 * @sizeof_priv: Space to allocate for private structure.
1055 *
1056 * Managed iio_device_alloc. iio_dev allocated with this function is
1057 * automatically freed on driver detach.
1058 *
1059 * If an iio_dev allocated with this function needs to be freed separately,
1060 * devm_iio_device_free() must be used.
1061 *
1062 * RETURNS:
1063 * Pointer to allocated iio_dev on success, NULL on failure.
1064 */
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001065struct iio_dev *devm_iio_device_alloc(struct device *dev, int sizeof_priv)
1066{
1067 struct iio_dev **ptr, *iio_dev;
1068
1069 ptr = devres_alloc(devm_iio_device_release, sizeof(*ptr),
1070 GFP_KERNEL);
1071 if (!ptr)
1072 return NULL;
1073
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001074 iio_dev = iio_device_alloc(sizeof_priv);
1075 if (iio_dev) {
1076 *ptr = iio_dev;
1077 devres_add(dev, ptr);
1078 } else {
1079 devres_free(ptr);
1080 }
1081
1082 return iio_dev;
1083}
1084EXPORT_SYMBOL_GPL(devm_iio_device_alloc);
1085
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001086/**
1087 * devm_iio_device_free - Resource-managed iio_device_free()
1088 * @dev: Device this iio_dev belongs to
1089 * @iio_dev: the iio_dev associated with the device
1090 *
1091 * Free iio_dev allocated with devm_iio_device_alloc().
1092 */
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001093void devm_iio_device_free(struct device *dev, struct iio_dev *iio_dev)
1094{
1095 int rc;
1096
1097 rc = devres_release(dev, devm_iio_device_release,
1098 devm_iio_device_match, iio_dev);
1099 WARN_ON(rc);
1100}
1101EXPORT_SYMBOL_GPL(devm_iio_device_free);
1102
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001103/**
Jonathan Cameron14555b12011-09-21 11:15:57 +01001104 * iio_chrdev_open() - chrdev file open for buffer access and ioctls
Cristina Opriceana2498dcf2015-07-24 16:16:19 +03001105 * @inode: Inode structure for identifying the device in the file system
1106 * @filp: File structure for iio device used to keep and later access
1107 * private data
1108 *
1109 * Return: 0 on success or -EBUSY if the device is already opened
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001110 **/
1111static int iio_chrdev_open(struct inode *inode, struct file *filp)
1112{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001113 struct iio_dev *indio_dev = container_of(inode->i_cdev,
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001114 struct iio_dev, chrdev);
Lars-Peter Clausenbb014432011-12-19 15:23:45 +01001115
1116 if (test_and_set_bit(IIO_BUSY_BIT_POS, &indio_dev->flags))
1117 return -EBUSY;
1118
Lars-Peter Clausencadc2122013-09-18 21:02:00 +01001119 iio_device_get(indio_dev);
1120
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001121 filp->private_data = indio_dev;
Jonathan Cameron30eb82f2011-09-21 11:16:02 +01001122
Lars-Peter Clausen79335142011-12-19 15:23:49 +01001123 return 0;
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001124}
1125
1126/**
Jonathan Cameron14555b12011-09-21 11:15:57 +01001127 * iio_chrdev_release() - chrdev file close buffer access and ioctls
Cristina Opriceana2498dcf2015-07-24 16:16:19 +03001128 * @inode: Inode structure pointer for the char device
1129 * @filp: File structure pointer for the char device
1130 *
1131 * Return: 0 for successful release
1132 */
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001133static int iio_chrdev_release(struct inode *inode, struct file *filp)
1134{
Lars-Peter Clausenbb014432011-12-19 15:23:45 +01001135 struct iio_dev *indio_dev = container_of(inode->i_cdev,
1136 struct iio_dev, chrdev);
Lars-Peter Clausenbb014432011-12-19 15:23:45 +01001137 clear_bit(IIO_BUSY_BIT_POS, &indio_dev->flags);
Lars-Peter Clausencadc2122013-09-18 21:02:00 +01001138 iio_device_put(indio_dev);
1139
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001140 return 0;
1141}
1142
1143/* Somewhat of a cross file organization violation - ioctls here are actually
1144 * event related */
1145static long iio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1146{
1147 struct iio_dev *indio_dev = filp->private_data;
1148 int __user *ip = (int __user *)arg;
1149 int fd;
1150
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +01001151 if (!indio_dev->info)
1152 return -ENODEV;
1153
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001154 if (cmd == IIO_GET_EVENT_FD_IOCTL) {
1155 fd = iio_event_getfd(indio_dev);
1156 if (copy_to_user(ip, &fd, sizeof(fd)))
1157 return -EFAULT;
1158 return 0;
1159 }
1160 return -EINVAL;
1161}
1162
Jonathan Cameron14555b12011-09-21 11:15:57 +01001163static const struct file_operations iio_buffer_fileops = {
1164 .read = iio_buffer_read_first_n_outer_addr,
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001165 .release = iio_chrdev_release,
1166 .open = iio_chrdev_open,
Jonathan Cameron14555b12011-09-21 11:15:57 +01001167 .poll = iio_buffer_poll_addr,
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001168 .owner = THIS_MODULE,
1169 .llseek = noop_llseek,
1170 .unlocked_ioctl = iio_ioctl,
1171 .compat_ioctl = iio_ioctl,
1172};
1173
Vlad Dogaru8f5d8722014-12-29 11:37:48 +02001174static int iio_check_unique_scan_index(struct iio_dev *indio_dev)
1175{
1176 int i, j;
1177 const struct iio_chan_spec *channels = indio_dev->channels;
1178
1179 if (!(indio_dev->modes & INDIO_ALL_BUFFER_MODES))
1180 return 0;
1181
1182 for (i = 0; i < indio_dev->num_channels - 1; i++) {
1183 if (channels[i].scan_index < 0)
1184 continue;
1185 for (j = i + 1; j < indio_dev->num_channels; j++)
1186 if (channels[i].scan_index == channels[j].scan_index) {
1187 dev_err(&indio_dev->dev,
1188 "Duplicate scan index %d\n",
1189 channels[i].scan_index);
1190 return -EINVAL;
1191 }
1192 }
1193
1194 return 0;
1195}
1196
Michael Hennerich0f1acee2012-03-01 10:51:04 +01001197static const struct iio_buffer_setup_ops noop_ring_setup_ops;
1198
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001199/**
1200 * iio_device_register() - register a device with the IIO subsystem
1201 * @indio_dev: Device structure filled by the device driver
1202 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001203int iio_device_register(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001204{
1205 int ret;
1206
Guenter Roeck17d82b42013-02-07 17:09:00 +00001207 /* If the calling driver did not initialize of_node, do it here */
1208 if (!indio_dev->dev.of_node && indio_dev->dev.parent)
1209 indio_dev->dev.of_node = indio_dev->dev.parent->of_node;
1210
Vlad Dogaru8f5d8722014-12-29 11:37:48 +02001211 ret = iio_check_unique_scan_index(indio_dev);
1212 if (ret < 0)
1213 return ret;
1214
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001215 /* configure elements for the chrdev */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001216 indio_dev->dev.devt = MKDEV(MAJOR(iio_devt), indio_dev->id);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001217
Michael Henneriche553f182012-03-01 10:51:03 +01001218 ret = iio_device_register_debugfs(indio_dev);
1219 if (ret) {
1220 dev_err(indio_dev->dev.parent,
1221 "Failed to register debugfs interfaces\n");
Hartmut Knaack92825ff2014-02-16 11:53:00 +00001222 return ret;
Michael Henneriche553f182012-03-01 10:51:03 +01001223 }
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001224
1225 ret = iio_buffer_alloc_sysfs_and_mask(indio_dev);
1226 if (ret) {
1227 dev_err(indio_dev->dev.parent,
1228 "Failed to create buffer sysfs interfaces\n");
1229 goto error_unreg_debugfs;
1230 }
1231
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001232 ret = iio_device_register_sysfs(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001233 if (ret) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001234 dev_err(indio_dev->dev.parent,
Jonathan Cameron847ec802009-08-18 18:06:19 +01001235 "Failed to register sysfs interfaces\n");
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001236 goto error_buffer_free_sysfs;
Jonathan Cameron847ec802009-08-18 18:06:19 +01001237 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001238 ret = iio_device_register_eventset(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001239 if (ret) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001240 dev_err(indio_dev->dev.parent,
Roel Van Nyenc849d252010-04-29 19:27:31 +02001241 "Failed to register event set\n");
Jonathan Cameron847ec802009-08-18 18:06:19 +01001242 goto error_free_sysfs;
1243 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001244 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
1245 iio_device_register_trigger_consumer(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001246
Michael Hennerich0f1acee2012-03-01 10:51:04 +01001247 if ((indio_dev->modes & INDIO_ALL_BUFFER_MODES) &&
1248 indio_dev->setup_ops == NULL)
1249 indio_dev->setup_ops = &noop_ring_setup_ops;
1250
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001251 cdev_init(&indio_dev->chrdev, &iio_buffer_fileops);
1252 indio_dev->chrdev.owner = indio_dev->info->driver_module;
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001253 indio_dev->chrdev.kobj.parent = &indio_dev->dev.kobj;
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001254 ret = cdev_add(&indio_dev->chrdev, indio_dev->dev.devt, 1);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001255 if (ret < 0)
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001256 goto error_unreg_eventset;
Jonathan Cameron847ec802009-08-18 18:06:19 +01001257
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001258 ret = device_add(&indio_dev->dev);
1259 if (ret < 0)
1260 goto error_cdev_del;
1261
1262 return 0;
1263error_cdev_del:
1264 cdev_del(&indio_dev->chrdev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001265error_unreg_eventset:
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001266 iio_device_unregister_eventset(indio_dev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001267error_free_sysfs:
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001268 iio_device_unregister_sysfs(indio_dev);
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001269error_buffer_free_sysfs:
1270 iio_buffer_free_sysfs_and_mask(indio_dev);
Michael Henneriche553f182012-03-01 10:51:03 +01001271error_unreg_debugfs:
1272 iio_device_unregister_debugfs(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001273 return ret;
1274}
1275EXPORT_SYMBOL(iio_device_register);
1276
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001277/**
1278 * iio_device_unregister() - unregister a device from the IIO subsystem
1279 * @indio_dev: Device structure representing the device.
1280 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001281void iio_device_unregister(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001282{
Jonathan Cameronac917a82012-02-15 19:48:00 +00001283 mutex_lock(&indio_dev->info_exist_lock);
Lars-Peter Clausena87c82e2013-09-18 21:02:00 +01001284
1285 device_del(&indio_dev->dev);
1286
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001287 if (indio_dev->chrdev.dev)
1288 cdev_del(&indio_dev->chrdev);
Lars-Peter Clausenbc4c9612013-09-21 16:21:00 +01001289 iio_device_unregister_debugfs(indio_dev);
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001290
Lars-Peter Clausena87c82e2013-09-18 21:02:00 +01001291 iio_disable_all_buffers(indio_dev);
1292
Jonathan Cameronac917a82012-02-15 19:48:00 +00001293 indio_dev->info = NULL;
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +01001294
1295 iio_device_wakeup_eventset(indio_dev);
1296 iio_buffer_wakeup_poll(indio_dev);
1297
Jonathan Cameronac917a82012-02-15 19:48:00 +00001298 mutex_unlock(&indio_dev->info_exist_lock);
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001299
1300 iio_buffer_free_sysfs_and_mask(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001301}
1302EXPORT_SYMBOL(iio_device_unregister);
Sachin Kamat8caa07c2013-10-29 11:39:00 +00001303
1304static void devm_iio_device_unreg(struct device *dev, void *res)
1305{
1306 iio_device_unregister(*(struct iio_dev **)res);
1307}
1308
1309/**
1310 * devm_iio_device_register - Resource-managed iio_device_register()
1311 * @dev: Device to allocate iio_dev for
1312 * @indio_dev: Device structure filled by the device driver
1313 *
1314 * Managed iio_device_register. The IIO device registered with this
1315 * function is automatically unregistered on driver detach. This function
1316 * calls iio_device_register() internally. Refer to that function for more
1317 * information.
1318 *
1319 * If an iio_dev registered with this function needs to be unregistered
1320 * separately, devm_iio_device_unregister() must be used.
1321 *
1322 * RETURNS:
1323 * 0 on success, negative error number on failure.
1324 */
1325int devm_iio_device_register(struct device *dev, struct iio_dev *indio_dev)
1326{
1327 struct iio_dev **ptr;
1328 int ret;
1329
1330 ptr = devres_alloc(devm_iio_device_unreg, sizeof(*ptr), GFP_KERNEL);
1331 if (!ptr)
1332 return -ENOMEM;
1333
1334 *ptr = indio_dev;
1335 ret = iio_device_register(indio_dev);
1336 if (!ret)
1337 devres_add(dev, ptr);
1338 else
1339 devres_free(ptr);
1340
1341 return ret;
1342}
1343EXPORT_SYMBOL_GPL(devm_iio_device_register);
1344
1345/**
1346 * devm_iio_device_unregister - Resource-managed iio_device_unregister()
1347 * @dev: Device this iio_dev belongs to
1348 * @indio_dev: the iio_dev associated with the device
1349 *
1350 * Unregister iio_dev registered with devm_iio_device_register().
1351 */
1352void devm_iio_device_unregister(struct device *dev, struct iio_dev *indio_dev)
1353{
1354 int rc;
1355
1356 rc = devres_release(dev, devm_iio_device_unreg,
1357 devm_iio_device_match, indio_dev);
1358 WARN_ON(rc);
1359}
1360EXPORT_SYMBOL_GPL(devm_iio_device_unregister);
1361
Jonathan Cameron847ec802009-08-18 18:06:19 +01001362subsys_initcall(iio_init);
1363module_exit(iio_exit);
1364
Jonathan Cameronc8b95952012-09-02 21:27:56 +01001365MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>");
Jonathan Cameron847ec802009-08-18 18:06:19 +01001366MODULE_DESCRIPTION("Industrial I/O core");
1367MODULE_LICENSE("GPL");