blob: d8051cdcbdc2212fe6e069c3bf60db0f2431aa58 [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
409 * @buf: The buffer to which the formated value gets written
410 * @type: One of the IIO_VAL_... constants. This decides how the val and val2
411 * parameters are formatted.
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100412 * @vals: pointer to the values, exact meaning depends on the type parameter.
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100413 */
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100414ssize_t iio_format_value(char *buf, unsigned int type, int size, int *vals)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100415{
Lars-Peter Clausen7985e7c2012-09-14 16:21:00 +0100416 unsigned long long tmp;
Michael Hennerich67eedba2012-05-11 11:36:52 +0200417 bool scale_db = false;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100418
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100419 switch (type) {
Michael Hennerich67eedba2012-05-11 11:36:52 +0200420 case IIO_VAL_INT:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100421 return sprintf(buf, "%d\n", vals[0]);
Michael Hennerich67eedba2012-05-11 11:36:52 +0200422 case IIO_VAL_INT_PLUS_MICRO_DB:
423 scale_db = true;
424 case IIO_VAL_INT_PLUS_MICRO:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100425 if (vals[1] < 0)
426 return sprintf(buf, "-%ld.%06u%s\n", abs(vals[0]),
427 -vals[1],
Michael Hennerich67eedba2012-05-11 11:36:52 +0200428 scale_db ? " dB" : "");
Jonathan Cameron1d892712011-05-18 14:40:51 +0100429 else
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100430 return sprintf(buf, "%d.%06u%s\n", vals[0], vals[1],
Michael Hennerich67eedba2012-05-11 11:36:52 +0200431 scale_db ? " dB" : "");
432 case IIO_VAL_INT_PLUS_NANO:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100433 if (vals[1] < 0)
434 return sprintf(buf, "-%ld.%09u\n", abs(vals[0]),
435 -vals[1]);
Michael Hennerich71646e22011-06-27 13:07:07 +0100436 else
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100437 return sprintf(buf, "%d.%09u\n", vals[0], vals[1]);
Lars-Peter Clausen7985e7c2012-09-14 16:21:00 +0100438 case IIO_VAL_FRACTIONAL:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100439 tmp = div_s64((s64)vals[0] * 1000000000LL, vals[1]);
440 vals[1] = do_div(tmp, 1000000000LL);
441 vals[0] = tmp;
442 return sprintf(buf, "%d.%09u\n", vals[0], vals[1]);
Lars-Peter Clausen103d9fb2012-10-16 17:29:00 +0100443 case IIO_VAL_FRACTIONAL_LOG2:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100444 tmp = (s64)vals[0] * 1000000000LL >> vals[1];
445 vals[1] = do_div(tmp, 1000000000LL);
446 vals[0] = tmp;
447 return sprintf(buf, "%d.%09u\n", vals[0], vals[1]);
448 case IIO_VAL_INT_MULTIPLE:
449 {
450 int i;
451 int len = 0;
452
453 for (i = 0; i < size; ++i)
454 len += snprintf(&buf[len], PAGE_SIZE - len, "%d ",
455 vals[i]);
456 len += snprintf(&buf[len], PAGE_SIZE - len, "\n");
457 return len;
458 }
Michael Hennerich67eedba2012-05-11 11:36:52 +0200459 default:
Jonathan Cameron1d892712011-05-18 14:40:51 +0100460 return 0;
Michael Hennerich67eedba2012-05-11 11:36:52 +0200461 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100462}
463
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100464static ssize_t iio_read_channel_info(struct device *dev,
465 struct device_attribute *attr,
466 char *buf)
467{
468 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
469 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100470 int vals[INDIO_MAX_RAW_ELEMENTS];
471 int ret;
472 int val_len = 2;
473
474 if (indio_dev->info->read_raw_multi)
475 ret = indio_dev->info->read_raw_multi(indio_dev, this_attr->c,
476 INDIO_MAX_RAW_ELEMENTS,
477 vals, &val_len,
478 this_attr->address);
479 else
480 ret = indio_dev->info->read_raw(indio_dev, this_attr->c,
481 &vals[0], &vals[1], this_attr->address);
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100482
483 if (ret < 0)
484 return ret;
485
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100486 return iio_format_value(buf, ret, val_len, vals);
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100487}
488
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000489/**
490 * iio_str_to_fixpoint() - Parse a fixed-point number from a string
491 * @str: The string to parse
492 * @fract_mult: Multiplier for the first decimal place, should be a power of 10
493 * @integer: The integer part of the number
494 * @fract: The fractional part of the number
495 *
496 * Returns 0 on success, or a negative error code if the string could not be
497 * parsed.
498 */
499int iio_str_to_fixpoint(const char *str, int fract_mult,
500 int *integer, int *fract)
501{
502 int i = 0, f = 0;
503 bool integer_part = true, negative = false;
504
505 if (str[0] == '-') {
506 negative = true;
507 str++;
508 } else if (str[0] == '+') {
509 str++;
510 }
511
512 while (*str) {
513 if ('0' <= *str && *str <= '9') {
514 if (integer_part) {
515 i = i * 10 + *str - '0';
516 } else {
517 f += fract_mult * (*str - '0');
518 fract_mult /= 10;
519 }
520 } else if (*str == '\n') {
521 if (*(str + 1) == '\0')
522 break;
523 else
524 return -EINVAL;
525 } else if (*str == '.' && integer_part) {
526 integer_part = false;
527 } else {
528 return -EINVAL;
529 }
530 str++;
531 }
532
533 if (negative) {
534 if (i)
535 i = -i;
536 else
537 f = -f;
538 }
539
540 *integer = i;
541 *fract = f;
542
543 return 0;
544}
545EXPORT_SYMBOL_GPL(iio_str_to_fixpoint);
546
Jonathan Cameron1d892712011-05-18 14:40:51 +0100547static ssize_t iio_write_channel_info(struct device *dev,
548 struct device_attribute *attr,
549 const char *buf,
550 size_t len)
551{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200552 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100553 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000554 int ret, fract_mult = 100000;
555 int integer, fract;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100556
557 /* Assumes decimal - precision based on number of digits */
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100558 if (!indio_dev->info->write_raw)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100559 return -EINVAL;
Michael Hennerich5c04af02011-06-27 13:07:10 +0100560
561 if (indio_dev->info->write_raw_get_fmt)
562 switch (indio_dev->info->write_raw_get_fmt(indio_dev,
563 this_attr->c, this_attr->address)) {
564 case IIO_VAL_INT_PLUS_MICRO:
565 fract_mult = 100000;
566 break;
567 case IIO_VAL_INT_PLUS_NANO:
568 fract_mult = 100000000;
569 break;
570 default:
571 return -EINVAL;
572 }
573
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000574 ret = iio_str_to_fixpoint(buf, fract_mult, &integer, &fract);
575 if (ret)
576 return ret;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100577
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100578 ret = indio_dev->info->write_raw(indio_dev, this_attr->c,
Michael Hennerich5c04af02011-06-27 13:07:10 +0100579 integer, fract, this_attr->address);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100580 if (ret)
581 return ret;
582
583 return len;
584}
585
Jonathan Camerondf9c1c42011-08-12 17:56:03 +0100586static
Jonathan Cameron1d892712011-05-18 14:40:51 +0100587int __iio_device_attr_init(struct device_attribute *dev_attr,
588 const char *postfix,
589 struct iio_chan_spec const *chan,
590 ssize_t (*readfunc)(struct device *dev,
591 struct device_attribute *attr,
592 char *buf),
593 ssize_t (*writefunc)(struct device *dev,
594 struct device_attribute *attr,
595 const char *buf,
596 size_t len),
Jonathan Cameron37044322013-09-08 14:57:00 +0100597 enum iio_shared_by shared_by)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100598{
Jonathan Cameron37044322013-09-08 14:57:00 +0100599 int ret = 0;
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000600 char *name = NULL;
Jonathan Cameron37044322013-09-08 14:57:00 +0100601 char *full_postfix;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100602 sysfs_attr_init(&dev_attr->attr);
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100603
604 /* Build up postfix of <extend_name>_<modifier>_postfix */
Jonathan Cameron37044322013-09-08 14:57:00 +0100605 if (chan->modified && (shared_by == IIO_SEPARATE)) {
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100606 if (chan->extend_name)
607 full_postfix = kasprintf(GFP_KERNEL, "%s_%s_%s",
608 iio_modifier_names[chan
609 ->channel2],
610 chan->extend_name,
611 postfix);
612 else
613 full_postfix = kasprintf(GFP_KERNEL, "%s_%s",
614 iio_modifier_names[chan
615 ->channel2],
616 postfix);
617 } else {
Lars-Peter Clausen77bfa8b2014-02-14 14:19:00 +0000618 if (chan->extend_name == NULL || shared_by != IIO_SEPARATE)
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100619 full_postfix = kstrdup(postfix, GFP_KERNEL);
620 else
621 full_postfix = kasprintf(GFP_KERNEL,
622 "%s_%s",
623 chan->extend_name,
624 postfix);
625 }
Jonathan Cameron37044322013-09-08 14:57:00 +0100626 if (full_postfix == NULL)
627 return -ENOMEM;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100628
Justin P. Mattock4abf6f82012-02-29 22:00:38 -0800629 if (chan->differential) { /* Differential can not have modifier */
Jonathan Cameron37044322013-09-08 14:57:00 +0100630 switch (shared_by) {
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100631 case IIO_SHARED_BY_ALL:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000632 name = kasprintf(GFP_KERNEL, "%s", full_postfix);
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100633 break;
634 case IIO_SHARED_BY_DIR:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000635 name = kasprintf(GFP_KERNEL, "%s_%s",
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100636 iio_direction[chan->output],
637 full_postfix);
638 break;
Jonathan Cameron37044322013-09-08 14:57:00 +0100639 case IIO_SHARED_BY_TYPE:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000640 name = kasprintf(GFP_KERNEL, "%s_%s-%s_%s",
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100641 iio_direction[chan->output],
642 iio_chan_type_name_spec[chan->type],
643 iio_chan_type_name_spec[chan->type],
644 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100645 break;
646 case IIO_SEPARATE:
647 if (!chan->indexed) {
648 WARN_ON("Differential channels must be indexed\n");
649 ret = -EINVAL;
650 goto error_free_full_postfix;
651 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000652 name = kasprintf(GFP_KERNEL,
Jonathan Cameron37044322013-09-08 14:57:00 +0100653 "%s_%s%d-%s%d_%s",
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100654 iio_direction[chan->output],
655 iio_chan_type_name_spec[chan->type],
656 chan->channel,
657 iio_chan_type_name_spec[chan->type],
658 chan->channel2,
659 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100660 break;
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100661 }
662 } else { /* Single ended */
Jonathan Cameron37044322013-09-08 14:57:00 +0100663 switch (shared_by) {
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100664 case IIO_SHARED_BY_ALL:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000665 name = kasprintf(GFP_KERNEL, "%s", full_postfix);
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100666 break;
667 case IIO_SHARED_BY_DIR:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000668 name = kasprintf(GFP_KERNEL, "%s_%s",
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100669 iio_direction[chan->output],
670 full_postfix);
671 break;
Jonathan Cameron37044322013-09-08 14:57:00 +0100672 case IIO_SHARED_BY_TYPE:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000673 name = kasprintf(GFP_KERNEL, "%s_%s_%s",
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100674 iio_direction[chan->output],
675 iio_chan_type_name_spec[chan->type],
676 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100677 break;
678
679 case IIO_SEPARATE:
680 if (chan->indexed)
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000681 name = kasprintf(GFP_KERNEL, "%s_%s%d_%s",
Jonathan Cameron37044322013-09-08 14:57:00 +0100682 iio_direction[chan->output],
683 iio_chan_type_name_spec[chan->type],
684 chan->channel,
685 full_postfix);
686 else
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000687 name = kasprintf(GFP_KERNEL, "%s_%s_%s",
Jonathan Cameron37044322013-09-08 14:57:00 +0100688 iio_direction[chan->output],
689 iio_chan_type_name_spec[chan->type],
690 full_postfix);
691 break;
692 }
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100693 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000694 if (name == NULL) {
Jonathan Cameron1d892712011-05-18 14:40:51 +0100695 ret = -ENOMEM;
696 goto error_free_full_postfix;
697 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000698 dev_attr->attr.name = name;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100699
700 if (readfunc) {
701 dev_attr->attr.mode |= S_IRUGO;
702 dev_attr->show = readfunc;
703 }
704
705 if (writefunc) {
706 dev_attr->attr.mode |= S_IWUSR;
707 dev_attr->store = writefunc;
708 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000709
Jonathan Cameron1d892712011-05-18 14:40:51 +0100710error_free_full_postfix:
711 kfree(full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100712
Jonathan Cameron847ec802009-08-18 18:06:19 +0100713 return ret;
714}
715
Jonathan Camerondf9c1c42011-08-12 17:56:03 +0100716static void __iio_device_attr_deinit(struct device_attribute *dev_attr)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100717{
718 kfree(dev_attr->attr.name);
719}
720
721int __iio_add_chan_devattr(const char *postfix,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100722 struct iio_chan_spec const *chan,
723 ssize_t (*readfunc)(struct device *dev,
724 struct device_attribute *attr,
725 char *buf),
726 ssize_t (*writefunc)(struct device *dev,
727 struct device_attribute *attr,
728 const char *buf,
729 size_t len),
Jonathan Camerone614a542011-09-02 17:14:41 +0100730 u64 mask,
Jonathan Cameron37044322013-09-08 14:57:00 +0100731 enum iio_shared_by shared_by,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100732 struct device *dev,
733 struct list_head *attr_list)
734{
735 int ret;
736 struct iio_dev_attr *iio_attr, *t;
737
Sachin Kamat670c1102013-10-24 12:53:00 +0100738 iio_attr = kzalloc(sizeof(*iio_attr), GFP_KERNEL);
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000739 if (iio_attr == NULL)
740 return -ENOMEM;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100741 ret = __iio_device_attr_init(&iio_attr->dev_attr,
742 postfix, chan,
Jonathan Cameron37044322013-09-08 14:57:00 +0100743 readfunc, writefunc, shared_by);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100744 if (ret)
745 goto error_iio_dev_attr_free;
746 iio_attr->c = chan;
747 iio_attr->address = mask;
748 list_for_each_entry(t, attr_list, l)
749 if (strcmp(t->dev_attr.attr.name,
750 iio_attr->dev_attr.attr.name) == 0) {
Jonathan Cameron37044322013-09-08 14:57:00 +0100751 if (shared_by == IIO_SEPARATE)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100752 dev_err(dev, "tried to double register : %s\n",
753 t->dev_attr.attr.name);
754 ret = -EBUSY;
755 goto error_device_attr_deinit;
756 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100757 list_add(&iio_attr->l, attr_list);
758
759 return 0;
760
761error_device_attr_deinit:
762 __iio_device_attr_deinit(&iio_attr->dev_attr);
763error_iio_dev_attr_free:
764 kfree(iio_attr);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100765 return ret;
766}
767
Jonathan Cameron37044322013-09-08 14:57:00 +0100768static int iio_device_add_info_mask_type(struct iio_dev *indio_dev,
769 struct iio_chan_spec const *chan,
770 enum iio_shared_by shared_by,
771 const long *infomask)
772{
773 int i, ret, attrcount = 0;
774
775 for_each_set_bit(i, infomask, sizeof(infomask)*8) {
Jonathan Cameronef4b4852014-01-03 22:24:00 +0000776 if (i >= ARRAY_SIZE(iio_chan_info_postfix))
777 return -EINVAL;
Jonathan Cameron37044322013-09-08 14:57:00 +0100778 ret = __iio_add_chan_devattr(iio_chan_info_postfix[i],
779 chan,
780 &iio_read_channel_info,
781 &iio_write_channel_info,
782 i,
783 shared_by,
784 &indio_dev->dev,
785 &indio_dev->channel_attr_list);
786 if ((ret == -EBUSY) && (shared_by != IIO_SEPARATE))
787 continue;
788 else if (ret < 0)
789 return ret;
790 attrcount++;
791 }
792
793 return attrcount;
794}
795
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100796static int iio_device_add_channel_sysfs(struct iio_dev *indio_dev,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100797 struct iio_chan_spec const *chan)
798{
Jonathan Cameron5ccb3ad2012-04-15 17:41:16 +0100799 int ret, attrcount = 0;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100800 const struct iio_chan_spec_ext_info *ext_info;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100801
Jonathan Cameron1d892712011-05-18 14:40:51 +0100802 if (chan->channel < 0)
803 return 0;
Jonathan Cameron37044322013-09-08 14:57:00 +0100804 ret = iio_device_add_info_mask_type(indio_dev, chan,
805 IIO_SEPARATE,
806 &chan->info_mask_separate);
807 if (ret < 0)
808 return ret;
809 attrcount += ret;
810
811 ret = iio_device_add_info_mask_type(indio_dev, chan,
812 IIO_SHARED_BY_TYPE,
813 &chan->info_mask_shared_by_type);
814 if (ret < 0)
815 return ret;
816 attrcount += ret;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100817
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100818 ret = iio_device_add_info_mask_type(indio_dev, chan,
819 IIO_SHARED_BY_DIR,
820 &chan->info_mask_shared_by_dir);
821 if (ret < 0)
822 return ret;
823 attrcount += ret;
824
825 ret = iio_device_add_info_mask_type(indio_dev, chan,
826 IIO_SHARED_BY_ALL,
827 &chan->info_mask_shared_by_all);
828 if (ret < 0)
829 return ret;
830 attrcount += ret;
831
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100832 if (chan->ext_info) {
833 unsigned int i = 0;
834 for (ext_info = chan->ext_info; ext_info->name; ext_info++) {
835 ret = __iio_add_chan_devattr(ext_info->name,
836 chan,
837 ext_info->read ?
838 &iio_read_channel_ext_info : NULL,
839 ext_info->write ?
840 &iio_write_channel_ext_info : NULL,
841 i,
842 ext_info->shared,
843 &indio_dev->dev,
844 &indio_dev->channel_attr_list);
845 i++;
846 if (ret == -EBUSY && ext_info->shared)
847 continue;
848
849 if (ret)
Jonathan Cameron37044322013-09-08 14:57:00 +0100850 return ret;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100851
852 attrcount++;
853 }
854 }
855
Jonathan Cameron37044322013-09-08 14:57:00 +0100856 return attrcount;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100857}
858
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100859/**
860 * iio_free_chan_devattr_list() - Free a list of IIO device attributes
861 * @attr_list: List of IIO device attributes
862 *
863 * This function frees the memory allocated for each of the IIO device
Martin Fuzzeyc1b03ab2015-02-19 15:17:44 +0100864 * attributes in the list.
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100865 */
866void iio_free_chan_devattr_list(struct list_head *attr_list)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100867{
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100868 struct iio_dev_attr *p, *n;
869
870 list_for_each_entry_safe(p, n, attr_list, l) {
871 kfree(p->dev_attr.attr.name);
Martin Fuzzeyc1b03ab2015-02-19 15:17:44 +0100872 list_del(&p->l);
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100873 kfree(p);
874 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100875}
876
Jonathan Cameron1b732882011-05-18 14:41:43 +0100877static ssize_t iio_show_dev_name(struct device *dev,
878 struct device_attribute *attr,
879 char *buf)
880{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200881 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Kees Cook598db582014-03-13 16:46:00 +0000882 return snprintf(buf, PAGE_SIZE, "%s\n", indio_dev->name);
Jonathan Cameron1b732882011-05-18 14:41:43 +0100883}
884
885static DEVICE_ATTR(name, S_IRUGO, iio_show_dev_name, NULL);
886
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100887static int iio_device_register_sysfs(struct iio_dev *indio_dev)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100888{
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100889 int i, ret = 0, attrcount, attrn, attrcount_orig = 0;
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100890 struct iio_dev_attr *p;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100891 struct attribute **attr;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100892
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100893 /* First count elements in any existing group */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100894 if (indio_dev->info->attrs) {
895 attr = indio_dev->info->attrs->attrs;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100896 while (*attr++ != NULL)
897 attrcount_orig++;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100898 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100899 attrcount = attrcount_orig;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100900 /*
901 * New channel registration method - relies on the fact a group does
Peter Meerwaldd25b3802012-08-26 13:43:00 +0100902 * not need to be initialized if its name is NULL.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100903 */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100904 if (indio_dev->channels)
905 for (i = 0; i < indio_dev->num_channels; i++) {
906 ret = iio_device_add_channel_sysfs(indio_dev,
907 &indio_dev
Jonathan Cameron1d892712011-05-18 14:40:51 +0100908 ->channels[i]);
909 if (ret < 0)
910 goto error_clear_attrs;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100911 attrcount += ret;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100912 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100913
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100914 if (indio_dev->name)
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100915 attrcount++;
916
Thomas Meyerd83fb182011-11-29 22:08:00 +0100917 indio_dev->chan_attr_group.attrs = kcalloc(attrcount + 1,
918 sizeof(indio_dev->chan_attr_group.attrs[0]),
919 GFP_KERNEL);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100920 if (indio_dev->chan_attr_group.attrs == NULL) {
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100921 ret = -ENOMEM;
922 goto error_clear_attrs;
Jonathan Cameron1b732882011-05-18 14:41:43 +0100923 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100924 /* Copy across original attributes */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100925 if (indio_dev->info->attrs)
926 memcpy(indio_dev->chan_attr_group.attrs,
927 indio_dev->info->attrs->attrs,
928 sizeof(indio_dev->chan_attr_group.attrs[0])
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100929 *attrcount_orig);
930 attrn = attrcount_orig;
931 /* Add all elements from the list. */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100932 list_for_each_entry(p, &indio_dev->channel_attr_list, l)
933 indio_dev->chan_attr_group.attrs[attrn++] = &p->dev_attr.attr;
934 if (indio_dev->name)
935 indio_dev->chan_attr_group.attrs[attrn++] = &dev_attr_name.attr;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100936
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100937 indio_dev->groups[indio_dev->groupcounter++] =
938 &indio_dev->chan_attr_group;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100939
Jonathan Cameron1d892712011-05-18 14:40:51 +0100940 return 0;
Jonathan Cameron1b732882011-05-18 14:41:43 +0100941
Jonathan Cameron1d892712011-05-18 14:40:51 +0100942error_clear_attrs:
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100943 iio_free_chan_devattr_list(&indio_dev->channel_attr_list);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100944
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100945 return ret;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100946}
947
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100948static void iio_device_unregister_sysfs(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100949{
Jonathan Cameron1d892712011-05-18 14:40:51 +0100950
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100951 iio_free_chan_devattr_list(&indio_dev->channel_attr_list);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100952 kfree(indio_dev->chan_attr_group.attrs);
Martin Fuzzeyc1b03ab2015-02-19 15:17:44 +0100953 indio_dev->chan_attr_group.attrs = NULL;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100954}
955
Jonathan Cameron847ec802009-08-18 18:06:19 +0100956static void iio_dev_release(struct device *device)
957{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200958 struct iio_dev *indio_dev = dev_to_iio_dev(device);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100959 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
960 iio_device_unregister_trigger_consumer(indio_dev);
961 iio_device_unregister_eventset(indio_dev);
962 iio_device_unregister_sysfs(indio_dev);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200963
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100964 iio_buffer_put(indio_dev->buffer);
965
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200966 ida_simple_remove(&iio_ida, indio_dev->id);
967 kfree(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100968}
969
Guenter Roeck17d82b42013-02-07 17:09:00 +0000970struct device_type iio_device_type = {
Jonathan Cameron847ec802009-08-18 18:06:19 +0100971 .name = "iio_device",
972 .release = iio_dev_release,
973};
974
Sachin Kamata7e57dc2013-10-29 11:39:00 +0000975/**
976 * iio_device_alloc() - allocate an iio_dev from a driver
977 * @sizeof_priv: Space to allocate for private structure.
978 **/
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200979struct iio_dev *iio_device_alloc(int sizeof_priv)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100980{
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100981 struct iio_dev *dev;
982 size_t alloc_size;
983
984 alloc_size = sizeof(struct iio_dev);
985 if (sizeof_priv) {
986 alloc_size = ALIGN(alloc_size, IIO_ALIGN);
987 alloc_size += sizeof_priv;
988 }
989 /* ensure 32-byte alignment of whole construct ? */
990 alloc_size += IIO_ALIGN - 1;
991
992 dev = kzalloc(alloc_size, GFP_KERNEL);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100993
994 if (dev) {
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100995 dev->dev.groups = dev->groups;
Guenter Roeck17d82b42013-02-07 17:09:00 +0000996 dev->dev.type = &iio_device_type;
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100997 dev->dev.bus = &iio_bus_type;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100998 device_initialize(&dev->dev);
999 dev_set_drvdata(&dev->dev, (void *)dev);
1000 mutex_init(&dev->mlock);
Jonathan Cameronac917a82012-02-15 19:48:00 +00001001 mutex_init(&dev->info_exist_lock);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +02001002 INIT_LIST_HEAD(&dev->channel_attr_list);
Jonathan Camerona9e39f92011-09-14 13:01:25 +01001003
1004 dev->id = ida_simple_get(&iio_ida, 0, 0, GFP_KERNEL);
1005 if (dev->id < 0) {
1006 /* cannot use a dev_err as the name isn't available */
Sachin Kamat3176dd52013-10-24 12:53:00 +01001007 pr_err("failed to get device id\n");
Jonathan Camerona9e39f92011-09-14 13:01:25 +01001008 kfree(dev);
1009 return NULL;
1010 }
1011 dev_set_name(&dev->dev, "iio:device%d", dev->id);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001012 INIT_LIST_HEAD(&dev->buffer_list);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001013 }
1014
1015 return dev;
1016}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +02001017EXPORT_SYMBOL(iio_device_alloc);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001018
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001019/**
1020 * iio_device_free() - free an iio_dev from a driver
1021 * @dev: the iio_dev associated with the device
1022 **/
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +02001023void iio_device_free(struct iio_dev *dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001024{
Lars-Peter Clausene407fd62012-06-04 10:41:42 +02001025 if (dev)
1026 put_device(&dev->dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001027}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +02001028EXPORT_SYMBOL(iio_device_free);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001029
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001030static void devm_iio_device_release(struct device *dev, void *res)
1031{
1032 iio_device_free(*(struct iio_dev **)res);
1033}
1034
1035static int devm_iio_device_match(struct device *dev, void *res, void *data)
1036{
1037 struct iio_dev **r = res;
1038 if (!r || !*r) {
1039 WARN_ON(!r || !*r);
1040 return 0;
1041 }
1042 return *r == data;
1043}
1044
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001045/**
1046 * devm_iio_device_alloc - Resource-managed iio_device_alloc()
1047 * @dev: Device to allocate iio_dev for
1048 * @sizeof_priv: Space to allocate for private structure.
1049 *
1050 * Managed iio_device_alloc. iio_dev allocated with this function is
1051 * automatically freed on driver detach.
1052 *
1053 * If an iio_dev allocated with this function needs to be freed separately,
1054 * devm_iio_device_free() must be used.
1055 *
1056 * RETURNS:
1057 * Pointer to allocated iio_dev on success, NULL on failure.
1058 */
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001059struct iio_dev *devm_iio_device_alloc(struct device *dev, int sizeof_priv)
1060{
1061 struct iio_dev **ptr, *iio_dev;
1062
1063 ptr = devres_alloc(devm_iio_device_release, sizeof(*ptr),
1064 GFP_KERNEL);
1065 if (!ptr)
1066 return NULL;
1067
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001068 iio_dev = iio_device_alloc(sizeof_priv);
1069 if (iio_dev) {
1070 *ptr = iio_dev;
1071 devres_add(dev, ptr);
1072 } else {
1073 devres_free(ptr);
1074 }
1075
1076 return iio_dev;
1077}
1078EXPORT_SYMBOL_GPL(devm_iio_device_alloc);
1079
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001080/**
1081 * devm_iio_device_free - Resource-managed iio_device_free()
1082 * @dev: Device this iio_dev belongs to
1083 * @iio_dev: the iio_dev associated with the device
1084 *
1085 * Free iio_dev allocated with devm_iio_device_alloc().
1086 */
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001087void devm_iio_device_free(struct device *dev, struct iio_dev *iio_dev)
1088{
1089 int rc;
1090
1091 rc = devres_release(dev, devm_iio_device_release,
1092 devm_iio_device_match, iio_dev);
1093 WARN_ON(rc);
1094}
1095EXPORT_SYMBOL_GPL(devm_iio_device_free);
1096
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001097/**
Jonathan Cameron14555b12011-09-21 11:15:57 +01001098 * iio_chrdev_open() - chrdev file open for buffer access and ioctls
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001099 **/
1100static int iio_chrdev_open(struct inode *inode, struct file *filp)
1101{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001102 struct iio_dev *indio_dev = container_of(inode->i_cdev,
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001103 struct iio_dev, chrdev);
Lars-Peter Clausenbb014432011-12-19 15:23:45 +01001104
1105 if (test_and_set_bit(IIO_BUSY_BIT_POS, &indio_dev->flags))
1106 return -EBUSY;
1107
Lars-Peter Clausencadc2122013-09-18 21:02:00 +01001108 iio_device_get(indio_dev);
1109
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001110 filp->private_data = indio_dev;
Jonathan Cameron30eb82f2011-09-21 11:16:02 +01001111
Lars-Peter Clausen79335142011-12-19 15:23:49 +01001112 return 0;
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001113}
1114
1115/**
Jonathan Cameron14555b12011-09-21 11:15:57 +01001116 * iio_chrdev_release() - chrdev file close buffer access and ioctls
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001117 **/
1118static int iio_chrdev_release(struct inode *inode, struct file *filp)
1119{
Lars-Peter Clausenbb014432011-12-19 15:23:45 +01001120 struct iio_dev *indio_dev = container_of(inode->i_cdev,
1121 struct iio_dev, chrdev);
Lars-Peter Clausenbb014432011-12-19 15:23:45 +01001122 clear_bit(IIO_BUSY_BIT_POS, &indio_dev->flags);
Lars-Peter Clausencadc2122013-09-18 21:02:00 +01001123 iio_device_put(indio_dev);
1124
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001125 return 0;
1126}
1127
1128/* Somewhat of a cross file organization violation - ioctls here are actually
1129 * event related */
1130static long iio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1131{
1132 struct iio_dev *indio_dev = filp->private_data;
1133 int __user *ip = (int __user *)arg;
1134 int fd;
1135
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +01001136 if (!indio_dev->info)
1137 return -ENODEV;
1138
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001139 if (cmd == IIO_GET_EVENT_FD_IOCTL) {
1140 fd = iio_event_getfd(indio_dev);
1141 if (copy_to_user(ip, &fd, sizeof(fd)))
1142 return -EFAULT;
1143 return 0;
1144 }
1145 return -EINVAL;
1146}
1147
Jonathan Cameron14555b12011-09-21 11:15:57 +01001148static const struct file_operations iio_buffer_fileops = {
1149 .read = iio_buffer_read_first_n_outer_addr,
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001150 .release = iio_chrdev_release,
1151 .open = iio_chrdev_open,
Jonathan Cameron14555b12011-09-21 11:15:57 +01001152 .poll = iio_buffer_poll_addr,
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001153 .owner = THIS_MODULE,
1154 .llseek = noop_llseek,
1155 .unlocked_ioctl = iio_ioctl,
1156 .compat_ioctl = iio_ioctl,
1157};
1158
Vlad Dogaru8f5d8722014-12-29 11:37:48 +02001159static int iio_check_unique_scan_index(struct iio_dev *indio_dev)
1160{
1161 int i, j;
1162 const struct iio_chan_spec *channels = indio_dev->channels;
1163
1164 if (!(indio_dev->modes & INDIO_ALL_BUFFER_MODES))
1165 return 0;
1166
1167 for (i = 0; i < indio_dev->num_channels - 1; i++) {
1168 if (channels[i].scan_index < 0)
1169 continue;
1170 for (j = i + 1; j < indio_dev->num_channels; j++)
1171 if (channels[i].scan_index == channels[j].scan_index) {
1172 dev_err(&indio_dev->dev,
1173 "Duplicate scan index %d\n",
1174 channels[i].scan_index);
1175 return -EINVAL;
1176 }
1177 }
1178
1179 return 0;
1180}
1181
Michael Hennerich0f1acee2012-03-01 10:51:04 +01001182static const struct iio_buffer_setup_ops noop_ring_setup_ops;
1183
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001184/**
1185 * iio_device_register() - register a device with the IIO subsystem
1186 * @indio_dev: Device structure filled by the device driver
1187 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001188int iio_device_register(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001189{
1190 int ret;
1191
Guenter Roeck17d82b42013-02-07 17:09:00 +00001192 /* If the calling driver did not initialize of_node, do it here */
1193 if (!indio_dev->dev.of_node && indio_dev->dev.parent)
1194 indio_dev->dev.of_node = indio_dev->dev.parent->of_node;
1195
Vlad Dogaru8f5d8722014-12-29 11:37:48 +02001196 ret = iio_check_unique_scan_index(indio_dev);
1197 if (ret < 0)
1198 return ret;
1199
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001200 /* configure elements for the chrdev */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001201 indio_dev->dev.devt = MKDEV(MAJOR(iio_devt), indio_dev->id);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001202
Michael Henneriche553f182012-03-01 10:51:03 +01001203 ret = iio_device_register_debugfs(indio_dev);
1204 if (ret) {
1205 dev_err(indio_dev->dev.parent,
1206 "Failed to register debugfs interfaces\n");
Hartmut Knaack92825ff2014-02-16 11:53:00 +00001207 return ret;
Michael Henneriche553f182012-03-01 10:51:03 +01001208 }
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001209
1210 ret = iio_buffer_alloc_sysfs_and_mask(indio_dev);
1211 if (ret) {
1212 dev_err(indio_dev->dev.parent,
1213 "Failed to create buffer sysfs interfaces\n");
1214 goto error_unreg_debugfs;
1215 }
1216
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001217 ret = iio_device_register_sysfs(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001218 if (ret) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001219 dev_err(indio_dev->dev.parent,
Jonathan Cameron847ec802009-08-18 18:06:19 +01001220 "Failed to register sysfs interfaces\n");
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001221 goto error_buffer_free_sysfs;
Jonathan Cameron847ec802009-08-18 18:06:19 +01001222 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001223 ret = iio_device_register_eventset(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001224 if (ret) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001225 dev_err(indio_dev->dev.parent,
Roel Van Nyenc849d252010-04-29 19:27:31 +02001226 "Failed to register event set\n");
Jonathan Cameron847ec802009-08-18 18:06:19 +01001227 goto error_free_sysfs;
1228 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001229 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
1230 iio_device_register_trigger_consumer(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001231
Michael Hennerich0f1acee2012-03-01 10:51:04 +01001232 if ((indio_dev->modes & INDIO_ALL_BUFFER_MODES) &&
1233 indio_dev->setup_ops == NULL)
1234 indio_dev->setup_ops = &noop_ring_setup_ops;
1235
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001236 cdev_init(&indio_dev->chrdev, &iio_buffer_fileops);
1237 indio_dev->chrdev.owner = indio_dev->info->driver_module;
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001238 indio_dev->chrdev.kobj.parent = &indio_dev->dev.kobj;
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001239 ret = cdev_add(&indio_dev->chrdev, indio_dev->dev.devt, 1);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001240 if (ret < 0)
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001241 goto error_unreg_eventset;
Jonathan Cameron847ec802009-08-18 18:06:19 +01001242
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001243 ret = device_add(&indio_dev->dev);
1244 if (ret < 0)
1245 goto error_cdev_del;
1246
1247 return 0;
1248error_cdev_del:
1249 cdev_del(&indio_dev->chrdev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001250error_unreg_eventset:
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001251 iio_device_unregister_eventset(indio_dev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001252error_free_sysfs:
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001253 iio_device_unregister_sysfs(indio_dev);
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001254error_buffer_free_sysfs:
1255 iio_buffer_free_sysfs_and_mask(indio_dev);
Michael Henneriche553f182012-03-01 10:51:03 +01001256error_unreg_debugfs:
1257 iio_device_unregister_debugfs(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001258 return ret;
1259}
1260EXPORT_SYMBOL(iio_device_register);
1261
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001262/**
1263 * iio_device_unregister() - unregister a device from the IIO subsystem
1264 * @indio_dev: Device structure representing the device.
1265 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001266void iio_device_unregister(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001267{
Jonathan Cameronac917a82012-02-15 19:48:00 +00001268 mutex_lock(&indio_dev->info_exist_lock);
Lars-Peter Clausena87c82e2013-09-18 21:02:00 +01001269
1270 device_del(&indio_dev->dev);
1271
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001272 if (indio_dev->chrdev.dev)
1273 cdev_del(&indio_dev->chrdev);
Lars-Peter Clausenbc4c9612013-09-21 16:21:00 +01001274 iio_device_unregister_debugfs(indio_dev);
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001275
Lars-Peter Clausena87c82e2013-09-18 21:02:00 +01001276 iio_disable_all_buffers(indio_dev);
1277
Jonathan Cameronac917a82012-02-15 19:48:00 +00001278 indio_dev->info = NULL;
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +01001279
1280 iio_device_wakeup_eventset(indio_dev);
1281 iio_buffer_wakeup_poll(indio_dev);
1282
Jonathan Cameronac917a82012-02-15 19:48:00 +00001283 mutex_unlock(&indio_dev->info_exist_lock);
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001284
1285 iio_buffer_free_sysfs_and_mask(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001286}
1287EXPORT_SYMBOL(iio_device_unregister);
Sachin Kamat8caa07c2013-10-29 11:39:00 +00001288
1289static void devm_iio_device_unreg(struct device *dev, void *res)
1290{
1291 iio_device_unregister(*(struct iio_dev **)res);
1292}
1293
1294/**
1295 * devm_iio_device_register - Resource-managed iio_device_register()
1296 * @dev: Device to allocate iio_dev for
1297 * @indio_dev: Device structure filled by the device driver
1298 *
1299 * Managed iio_device_register. The IIO device registered with this
1300 * function is automatically unregistered on driver detach. This function
1301 * calls iio_device_register() internally. Refer to that function for more
1302 * information.
1303 *
1304 * If an iio_dev registered with this function needs to be unregistered
1305 * separately, devm_iio_device_unregister() must be used.
1306 *
1307 * RETURNS:
1308 * 0 on success, negative error number on failure.
1309 */
1310int devm_iio_device_register(struct device *dev, struct iio_dev *indio_dev)
1311{
1312 struct iio_dev **ptr;
1313 int ret;
1314
1315 ptr = devres_alloc(devm_iio_device_unreg, sizeof(*ptr), GFP_KERNEL);
1316 if (!ptr)
1317 return -ENOMEM;
1318
1319 *ptr = indio_dev;
1320 ret = iio_device_register(indio_dev);
1321 if (!ret)
1322 devres_add(dev, ptr);
1323 else
1324 devres_free(ptr);
1325
1326 return ret;
1327}
1328EXPORT_SYMBOL_GPL(devm_iio_device_register);
1329
1330/**
1331 * devm_iio_device_unregister - Resource-managed iio_device_unregister()
1332 * @dev: Device this iio_dev belongs to
1333 * @indio_dev: the iio_dev associated with the device
1334 *
1335 * Unregister iio_dev registered with devm_iio_device_register().
1336 */
1337void devm_iio_device_unregister(struct device *dev, struct iio_dev *indio_dev)
1338{
1339 int rc;
1340
1341 rc = devres_release(dev, devm_iio_device_unreg,
1342 devm_iio_device_match, indio_dev);
1343 WARN_ON(rc);
1344}
1345EXPORT_SYMBOL_GPL(devm_iio_device_unregister);
1346
Jonathan Cameron847ec802009-08-18 18:06:19 +01001347subsys_initcall(iio_init);
1348module_exit(iio_exit);
1349
Jonathan Cameronc8b95952012-09-02 21:27:56 +01001350MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>");
Jonathan Cameron847ec802009-08-18 18:06:19 +01001351MODULE_DESCRIPTION("Industrial I/O core");
1352MODULE_LICENSE("GPL");