blob: dfa81db3b910e860c5c8ad0418a0a18657343a06 [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",
Jonathan Cameron8f5879b2012-05-05 10:39:22 +010084 [IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)",
Jonathan Cameroncf82cb82012-05-05 10:56:41 +010085 [IIO_MOD_SUM_SQUARED_X_Y_Z] = "x^2+y^2+z^2",
Jonathan Cameron330c6c52011-09-02 17:14:39 +010086 [IIO_MOD_LIGHT_BOTH] = "both",
87 [IIO_MOD_LIGHT_IR] = "ir",
Jon Brenner21cd1fa2012-05-16 10:46:42 -050088 [IIO_MOD_LIGHT_CLEAR] = "clear",
89 [IIO_MOD_LIGHT_RED] = "red",
90 [IIO_MOD_LIGHT_GREEN] = "green",
91 [IIO_MOD_LIGHT_BLUE] = "blue",
Srinivas Pandruvada5082f402014-04-29 00:51:00 +010092 [IIO_MOD_QUATERNION] = "quaternion",
Peter Meerwald638b43b2014-02-05 16:57:00 +000093 [IIO_MOD_TEMP_AMBIENT] = "ambient",
94 [IIO_MOD_TEMP_OBJECT] = "object",
Reyad Attiyat11b8dda2014-07-17 19:18:00 +010095 [IIO_MOD_NORTH_MAGN] = "from_north_magnetic",
96 [IIO_MOD_NORTH_TRUE] = "from_north_true",
97 [IIO_MOD_NORTH_MAGN_TILT_COMP] = "from_north_magnetic_tilt_comp",
98 [IIO_MOD_NORTH_TRUE_TILT_COMP] = "from_north_true_tilt_comp",
Daniel Baluta55aebeb2014-11-10 14:45:30 +020099 [IIO_MOD_RUNNING] = "running",
100 [IIO_MOD_JOGGING] = "jogging",
101 [IIO_MOD_WALKING] = "walking",
102 [IIO_MOD_STILL] = "still",
Irina Tirdea5a1a9322015-01-11 21:10:09 +0200103 [IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z] = "sqrt(x^2+y^2+z^2)",
Jonathan Cameron1d892712011-05-18 14:40:51 +0100104};
105
106/* relies on pairs of these shared then separate */
107static const char * const iio_chan_info_postfix[] = {
Jonathan Cameron75a973c2012-04-15 17:41:30 +0100108 [IIO_CHAN_INFO_RAW] = "raw",
109 [IIO_CHAN_INFO_PROCESSED] = "input",
Jonathan Cameronc8a9f802011-10-26 17:41:36 +0100110 [IIO_CHAN_INFO_SCALE] = "scale",
111 [IIO_CHAN_INFO_OFFSET] = "offset",
112 [IIO_CHAN_INFO_CALIBSCALE] = "calibscale",
113 [IIO_CHAN_INFO_CALIBBIAS] = "calibbias",
114 [IIO_CHAN_INFO_PEAK] = "peak_raw",
115 [IIO_CHAN_INFO_PEAK_SCALE] = "peak_scale",
116 [IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW] = "quadrature_correction_raw",
117 [IIO_CHAN_INFO_AVERAGE_RAW] = "mean_raw",
Jonathan Camerondf94aba2011-11-27 11:39:12 +0000118 [IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY]
119 = "filter_low_pass_3db_frequency",
Laxman Dewangance85a1c2012-04-13 16:03:31 +0530120 [IIO_CHAN_INFO_SAMP_FREQ] = "sampling_frequency",
Michael Hennericha6b12852012-04-27 10:58:34 +0200121 [IIO_CHAN_INFO_FREQUENCY] = "frequency",
122 [IIO_CHAN_INFO_PHASE] = "phase",
Michael Hennerichb65d6212012-05-11 11:36:53 +0200123 [IIO_CHAN_INFO_HARDWAREGAIN] = "hardwaregain",
srinivas pandruvada7c9ab032012-09-05 13:56:00 +0100124 [IIO_CHAN_INFO_HYSTERESIS] = "hysteresis",
Peter Meerwald899d90b2013-09-08 16:20:00 +0100125 [IIO_CHAN_INFO_INT_TIME] = "integration_time",
Irina Tirdeaa88bfe72014-11-10 14:45:32 +0200126 [IIO_CHAN_INFO_ENABLE] = "en",
Irina Tirdeabcdf28f2014-11-10 14:45:33 +0200127 [IIO_CHAN_INFO_CALIBHEIGHT] = "calibheight",
Irina Tirdead37f6832015-01-11 21:10:10 +0200128 [IIO_CHAN_INFO_CALIBWEIGHT] = "calibweight",
Irina Tirdea2f0ecb72015-01-27 20:41:52 +0200129 [IIO_CHAN_INFO_DEBOUNCE_COUNT] = "debounce_count",
130 [IIO_CHAN_INFO_DEBOUNCE_TIME] = "debounce_time",
Vianney le Clément de Saint-Marcqc8a85852015-03-30 10:34:58 +0200131 [IIO_CHAN_INFO_CALIBEMISSIVITY] = "calibemissivity",
Irina Tirdeafaaa4492015-04-29 21:16:39 +0300132 [IIO_CHAN_INFO_OVERSAMPLING_RATIO] = "oversampling_ratio",
Jonathan Cameron1d892712011-05-18 14:40:51 +0100133};
134
Sachin Kamata7e57dc2013-10-29 11:39:00 +0000135/**
136 * iio_find_channel_from_si() - get channel from its scan index
137 * @indio_dev: device
138 * @si: scan index to match
139 */
Jonathan Cameron5fb21c82011-12-05 21:37:10 +0000140const struct iio_chan_spec
141*iio_find_channel_from_si(struct iio_dev *indio_dev, int si)
142{
143 int i;
144
145 for (i = 0; i < indio_dev->num_channels; i++)
146 if (indio_dev->channels[i].scan_index == si)
147 return &indio_dev->channels[i];
148 return NULL;
149}
150
Jonathan Cameron847ec802009-08-18 18:06:19 +0100151/* This turns up an awful lot */
152ssize_t iio_read_const_attr(struct device *dev,
153 struct device_attribute *attr,
154 char *buf)
155{
156 return sprintf(buf, "%s\n", to_iio_const_attr(attr)->string);
157}
158EXPORT_SYMBOL(iio_read_const_attr);
159
Jonathan Cameron847ec802009-08-18 18:06:19 +0100160static int __init iio_init(void)
161{
162 int ret;
163
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100164 /* Register sysfs bus */
165 ret = bus_register(&iio_bus_type);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100166 if (ret < 0) {
Sachin Kamat3176dd52013-10-24 12:53:00 +0100167 pr_err("could not register bus type\n");
Jonathan Cameron847ec802009-08-18 18:06:19 +0100168 goto error_nothing;
169 }
170
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100171 ret = alloc_chrdev_region(&iio_devt, 0, IIO_DEV_MAX, "iio");
172 if (ret < 0) {
Sachin Kamat3176dd52013-10-24 12:53:00 +0100173 pr_err("failed to allocate char dev region\n");
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100174 goto error_unregister_bus_type;
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100175 }
Jonathan Cameron847ec802009-08-18 18:06:19 +0100176
Michael Henneriche553f182012-03-01 10:51:03 +0100177 iio_debugfs_dentry = debugfs_create_dir("iio", NULL);
178
Jonathan Cameron847ec802009-08-18 18:06:19 +0100179 return 0;
180
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100181error_unregister_bus_type:
182 bus_unregister(&iio_bus_type);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100183error_nothing:
184 return ret;
185}
186
187static void __exit iio_exit(void)
188{
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100189 if (iio_devt)
190 unregister_chrdev_region(iio_devt, IIO_DEV_MAX);
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100191 bus_unregister(&iio_bus_type);
Michael Henneriche553f182012-03-01 10:51:03 +0100192 debugfs_remove(iio_debugfs_dentry);
193}
194
195#if defined(CONFIG_DEBUG_FS)
Michael Henneriche553f182012-03-01 10:51:03 +0100196static ssize_t iio_debugfs_read_reg(struct file *file, char __user *userbuf,
197 size_t count, loff_t *ppos)
198{
199 struct iio_dev *indio_dev = file->private_data;
200 char buf[20];
201 unsigned val = 0;
202 ssize_t len;
203 int ret;
204
205 ret = indio_dev->info->debugfs_reg_access(indio_dev,
206 indio_dev->cached_reg_addr,
207 0, &val);
208 if (ret)
209 dev_err(indio_dev->dev.parent, "%s: read failed\n", __func__);
210
211 len = snprintf(buf, sizeof(buf), "0x%X\n", val);
212
213 return simple_read_from_buffer(userbuf, count, ppos, buf, len);
214}
215
216static ssize_t iio_debugfs_write_reg(struct file *file,
217 const char __user *userbuf, size_t count, loff_t *ppos)
218{
219 struct iio_dev *indio_dev = file->private_data;
220 unsigned reg, val;
221 char buf[80];
222 int ret;
223
224 count = min_t(size_t, count, (sizeof(buf)-1));
225 if (copy_from_user(buf, userbuf, count))
226 return -EFAULT;
227
228 buf[count] = 0;
229
230 ret = sscanf(buf, "%i %i", &reg, &val);
231
232 switch (ret) {
233 case 1:
234 indio_dev->cached_reg_addr = reg;
235 break;
236 case 2:
237 indio_dev->cached_reg_addr = reg;
238 ret = indio_dev->info->debugfs_reg_access(indio_dev, reg,
239 val, NULL);
240 if (ret) {
241 dev_err(indio_dev->dev.parent, "%s: write failed\n",
242 __func__);
243 return ret;
244 }
245 break;
246 default:
247 return -EINVAL;
248 }
249
250 return count;
251}
252
253static const struct file_operations iio_debugfs_reg_fops = {
Axel Lin5a28c872012-05-03 09:50:51 +0800254 .open = simple_open,
Michael Henneriche553f182012-03-01 10:51:03 +0100255 .read = iio_debugfs_read_reg,
256 .write = iio_debugfs_write_reg,
257};
258
259static void iio_device_unregister_debugfs(struct iio_dev *indio_dev)
260{
261 debugfs_remove_recursive(indio_dev->debugfs_dentry);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100262}
263
Michael Henneriche553f182012-03-01 10:51:03 +0100264static int iio_device_register_debugfs(struct iio_dev *indio_dev)
265{
266 struct dentry *d;
267
268 if (indio_dev->info->debugfs_reg_access == NULL)
269 return 0;
270
Axel Linabd5a2f2012-05-03 22:56:58 +0800271 if (!iio_debugfs_dentry)
Michael Henneriche553f182012-03-01 10:51:03 +0100272 return 0;
273
274 indio_dev->debugfs_dentry =
275 debugfs_create_dir(dev_name(&indio_dev->dev),
276 iio_debugfs_dentry);
Michael Henneriche553f182012-03-01 10:51:03 +0100277 if (indio_dev->debugfs_dentry == NULL) {
278 dev_warn(indio_dev->dev.parent,
279 "Failed to create debugfs directory\n");
280 return -EFAULT;
281 }
282
283 d = debugfs_create_file("direct_reg_access", 0644,
284 indio_dev->debugfs_dentry,
285 indio_dev, &iio_debugfs_reg_fops);
286 if (!d) {
287 iio_device_unregister_debugfs(indio_dev);
288 return -ENOMEM;
289 }
290
291 return 0;
292}
293#else
294static int iio_device_register_debugfs(struct iio_dev *indio_dev)
295{
296 return 0;
297}
298
299static void iio_device_unregister_debugfs(struct iio_dev *indio_dev)
300{
301}
302#endif /* CONFIG_DEBUG_FS */
303
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100304static ssize_t iio_read_channel_ext_info(struct device *dev,
305 struct device_attribute *attr,
306 char *buf)
307{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200308 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100309 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
310 const struct iio_chan_spec_ext_info *ext_info;
311
312 ext_info = &this_attr->c->ext_info[this_attr->address];
313
Michael Hennerichfc6d1132012-04-27 10:58:36 +0200314 return ext_info->read(indio_dev, ext_info->private, this_attr->c, buf);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100315}
316
317static ssize_t iio_write_channel_ext_info(struct device *dev,
318 struct device_attribute *attr,
319 const char *buf,
320 size_t len)
321{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200322 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100323 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
324 const struct iio_chan_spec_ext_info *ext_info;
325
326 ext_info = &this_attr->c->ext_info[this_attr->address];
327
Michael Hennerichfc6d1132012-04-27 10:58:36 +0200328 return ext_info->write(indio_dev, ext_info->private,
329 this_attr->c, buf, len);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100330}
331
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200332ssize_t iio_enum_available_read(struct iio_dev *indio_dev,
333 uintptr_t priv, const struct iio_chan_spec *chan, char *buf)
334{
335 const struct iio_enum *e = (const struct iio_enum *)priv;
336 unsigned int i;
337 size_t len = 0;
338
339 if (!e->num_items)
340 return 0;
341
342 for (i = 0; i < e->num_items; ++i)
Lars-Peter Clausen74dcd432012-06-05 18:24:12 +0200343 len += scnprintf(buf + len, PAGE_SIZE - len, "%s ", e->items[i]);
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200344
345 /* replace last space with a newline */
346 buf[len - 1] = '\n';
347
348 return len;
349}
350EXPORT_SYMBOL_GPL(iio_enum_available_read);
351
352ssize_t iio_enum_read(struct iio_dev *indio_dev,
353 uintptr_t priv, const struct iio_chan_spec *chan, char *buf)
354{
355 const struct iio_enum *e = (const struct iio_enum *)priv;
356 int i;
357
358 if (!e->get)
359 return -EINVAL;
360
361 i = e->get(indio_dev, chan);
362 if (i < 0)
363 return i;
364 else if (i >= e->num_items)
365 return -EINVAL;
366
Kees Cook598db582014-03-13 16:46:00 +0000367 return snprintf(buf, PAGE_SIZE, "%s\n", e->items[i]);
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200368}
369EXPORT_SYMBOL_GPL(iio_enum_read);
370
371ssize_t iio_enum_write(struct iio_dev *indio_dev,
372 uintptr_t priv, const struct iio_chan_spec *chan, const char *buf,
373 size_t len)
374{
375 const struct iio_enum *e = (const struct iio_enum *)priv;
376 unsigned int i;
377 int ret;
378
379 if (!e->set)
380 return -EINVAL;
381
382 for (i = 0; i < e->num_items; i++) {
383 if (sysfs_streq(buf, e->items[i]))
384 break;
385 }
386
387 if (i == e->num_items)
388 return -EINVAL;
389
390 ret = e->set(indio_dev, chan, i);
391 return ret ? ret : len;
392}
393EXPORT_SYMBOL_GPL(iio_enum_write);
394
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100395/**
396 * iio_format_value() - Formats a IIO value into its string representation
397 * @buf: The buffer to which the formated value gets written
398 * @type: One of the IIO_VAL_... constants. This decides how the val and val2
399 * parameters are formatted.
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100400 * @vals: pointer to the values, exact meaning depends on the type parameter.
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100401 */
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100402ssize_t iio_format_value(char *buf, unsigned int type, int size, int *vals)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100403{
Lars-Peter Clausen7985e7c2012-09-14 16:21:00 +0100404 unsigned long long tmp;
Michael Hennerich67eedba2012-05-11 11:36:52 +0200405 bool scale_db = false;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100406
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100407 switch (type) {
Michael Hennerich67eedba2012-05-11 11:36:52 +0200408 case IIO_VAL_INT:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100409 return sprintf(buf, "%d\n", vals[0]);
Michael Hennerich67eedba2012-05-11 11:36:52 +0200410 case IIO_VAL_INT_PLUS_MICRO_DB:
411 scale_db = true;
412 case IIO_VAL_INT_PLUS_MICRO:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100413 if (vals[1] < 0)
414 return sprintf(buf, "-%ld.%06u%s\n", abs(vals[0]),
415 -vals[1],
Michael Hennerich67eedba2012-05-11 11:36:52 +0200416 scale_db ? " dB" : "");
Jonathan Cameron1d892712011-05-18 14:40:51 +0100417 else
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100418 return sprintf(buf, "%d.%06u%s\n", vals[0], vals[1],
Michael Hennerich67eedba2012-05-11 11:36:52 +0200419 scale_db ? " dB" : "");
420 case IIO_VAL_INT_PLUS_NANO:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100421 if (vals[1] < 0)
422 return sprintf(buf, "-%ld.%09u\n", abs(vals[0]),
423 -vals[1]);
Michael Hennerich71646e22011-06-27 13:07:07 +0100424 else
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100425 return sprintf(buf, "%d.%09u\n", vals[0], vals[1]);
Lars-Peter Clausen7985e7c2012-09-14 16:21:00 +0100426 case IIO_VAL_FRACTIONAL:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100427 tmp = div_s64((s64)vals[0] * 1000000000LL, vals[1]);
428 vals[1] = do_div(tmp, 1000000000LL);
429 vals[0] = tmp;
430 return sprintf(buf, "%d.%09u\n", vals[0], vals[1]);
Lars-Peter Clausen103d9fb2012-10-16 17:29:00 +0100431 case IIO_VAL_FRACTIONAL_LOG2:
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100432 tmp = (s64)vals[0] * 1000000000LL >> vals[1];
433 vals[1] = do_div(tmp, 1000000000LL);
434 vals[0] = tmp;
435 return sprintf(buf, "%d.%09u\n", vals[0], vals[1]);
436 case IIO_VAL_INT_MULTIPLE:
437 {
438 int i;
439 int len = 0;
440
441 for (i = 0; i < size; ++i)
442 len += snprintf(&buf[len], PAGE_SIZE - len, "%d ",
443 vals[i]);
444 len += snprintf(&buf[len], PAGE_SIZE - len, "\n");
445 return len;
446 }
Michael Hennerich67eedba2012-05-11 11:36:52 +0200447 default:
Jonathan Cameron1d892712011-05-18 14:40:51 +0100448 return 0;
Michael Hennerich67eedba2012-05-11 11:36:52 +0200449 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100450}
451
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100452static ssize_t iio_read_channel_info(struct device *dev,
453 struct device_attribute *attr,
454 char *buf)
455{
456 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
457 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100458 int vals[INDIO_MAX_RAW_ELEMENTS];
459 int ret;
460 int val_len = 2;
461
462 if (indio_dev->info->read_raw_multi)
463 ret = indio_dev->info->read_raw_multi(indio_dev, this_attr->c,
464 INDIO_MAX_RAW_ELEMENTS,
465 vals, &val_len,
466 this_attr->address);
467 else
468 ret = indio_dev->info->read_raw(indio_dev, this_attr->c,
469 &vals[0], &vals[1], this_attr->address);
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100470
471 if (ret < 0)
472 return ret;
473
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100474 return iio_format_value(buf, ret, val_len, vals);
Lars-Peter Clausen3661f3f2013-10-07 15:11:00 +0100475}
476
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000477/**
478 * iio_str_to_fixpoint() - Parse a fixed-point number from a string
479 * @str: The string to parse
480 * @fract_mult: Multiplier for the first decimal place, should be a power of 10
481 * @integer: The integer part of the number
482 * @fract: The fractional part of the number
483 *
484 * Returns 0 on success, or a negative error code if the string could not be
485 * parsed.
486 */
487int iio_str_to_fixpoint(const char *str, int fract_mult,
488 int *integer, int *fract)
489{
490 int i = 0, f = 0;
491 bool integer_part = true, negative = false;
492
493 if (str[0] == '-') {
494 negative = true;
495 str++;
496 } else if (str[0] == '+') {
497 str++;
498 }
499
500 while (*str) {
501 if ('0' <= *str && *str <= '9') {
502 if (integer_part) {
503 i = i * 10 + *str - '0';
504 } else {
505 f += fract_mult * (*str - '0');
506 fract_mult /= 10;
507 }
508 } else if (*str == '\n') {
509 if (*(str + 1) == '\0')
510 break;
511 else
512 return -EINVAL;
513 } else if (*str == '.' && integer_part) {
514 integer_part = false;
515 } else {
516 return -EINVAL;
517 }
518 str++;
519 }
520
521 if (negative) {
522 if (i)
523 i = -i;
524 else
525 f = -f;
526 }
527
528 *integer = i;
529 *fract = f;
530
531 return 0;
532}
533EXPORT_SYMBOL_GPL(iio_str_to_fixpoint);
534
Jonathan Cameron1d892712011-05-18 14:40:51 +0100535static ssize_t iio_write_channel_info(struct device *dev,
536 struct device_attribute *attr,
537 const char *buf,
538 size_t len)
539{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200540 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100541 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000542 int ret, fract_mult = 100000;
543 int integer, fract;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100544
545 /* Assumes decimal - precision based on number of digits */
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100546 if (!indio_dev->info->write_raw)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100547 return -EINVAL;
Michael Hennerich5c04af02011-06-27 13:07:10 +0100548
549 if (indio_dev->info->write_raw_get_fmt)
550 switch (indio_dev->info->write_raw_get_fmt(indio_dev,
551 this_attr->c, this_attr->address)) {
552 case IIO_VAL_INT_PLUS_MICRO:
553 fract_mult = 100000;
554 break;
555 case IIO_VAL_INT_PLUS_NANO:
556 fract_mult = 100000000;
557 break;
558 default:
559 return -EINVAL;
560 }
561
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000562 ret = iio_str_to_fixpoint(buf, fract_mult, &integer, &fract);
563 if (ret)
564 return ret;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100565
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100566 ret = indio_dev->info->write_raw(indio_dev, this_attr->c,
Michael Hennerich5c04af02011-06-27 13:07:10 +0100567 integer, fract, this_attr->address);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100568 if (ret)
569 return ret;
570
571 return len;
572}
573
Jonathan Camerondf9c1c42011-08-12 17:56:03 +0100574static
Jonathan Cameron1d892712011-05-18 14:40:51 +0100575int __iio_device_attr_init(struct device_attribute *dev_attr,
576 const char *postfix,
577 struct iio_chan_spec const *chan,
578 ssize_t (*readfunc)(struct device *dev,
579 struct device_attribute *attr,
580 char *buf),
581 ssize_t (*writefunc)(struct device *dev,
582 struct device_attribute *attr,
583 const char *buf,
584 size_t len),
Jonathan Cameron37044322013-09-08 14:57:00 +0100585 enum iio_shared_by shared_by)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100586{
Jonathan Cameron37044322013-09-08 14:57:00 +0100587 int ret = 0;
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000588 char *name = NULL;
Jonathan Cameron37044322013-09-08 14:57:00 +0100589 char *full_postfix;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100590 sysfs_attr_init(&dev_attr->attr);
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100591
592 /* Build up postfix of <extend_name>_<modifier>_postfix */
Jonathan Cameron37044322013-09-08 14:57:00 +0100593 if (chan->modified && (shared_by == IIO_SEPARATE)) {
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100594 if (chan->extend_name)
595 full_postfix = kasprintf(GFP_KERNEL, "%s_%s_%s",
596 iio_modifier_names[chan
597 ->channel2],
598 chan->extend_name,
599 postfix);
600 else
601 full_postfix = kasprintf(GFP_KERNEL, "%s_%s",
602 iio_modifier_names[chan
603 ->channel2],
604 postfix);
605 } else {
Lars-Peter Clausen77bfa8b2014-02-14 14:19:00 +0000606 if (chan->extend_name == NULL || shared_by != IIO_SEPARATE)
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100607 full_postfix = kstrdup(postfix, GFP_KERNEL);
608 else
609 full_postfix = kasprintf(GFP_KERNEL,
610 "%s_%s",
611 chan->extend_name,
612 postfix);
613 }
Jonathan Cameron37044322013-09-08 14:57:00 +0100614 if (full_postfix == NULL)
615 return -ENOMEM;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100616
Justin P. Mattock4abf6f82012-02-29 22:00:38 -0800617 if (chan->differential) { /* Differential can not have modifier */
Jonathan Cameron37044322013-09-08 14:57:00 +0100618 switch (shared_by) {
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100619 case IIO_SHARED_BY_ALL:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000620 name = kasprintf(GFP_KERNEL, "%s", full_postfix);
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100621 break;
622 case IIO_SHARED_BY_DIR:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000623 name = kasprintf(GFP_KERNEL, "%s_%s",
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100624 iio_direction[chan->output],
625 full_postfix);
626 break;
Jonathan Cameron37044322013-09-08 14:57:00 +0100627 case IIO_SHARED_BY_TYPE:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000628 name = kasprintf(GFP_KERNEL, "%s_%s-%s_%s",
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100629 iio_direction[chan->output],
630 iio_chan_type_name_spec[chan->type],
631 iio_chan_type_name_spec[chan->type],
632 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100633 break;
634 case IIO_SEPARATE:
635 if (!chan->indexed) {
636 WARN_ON("Differential channels must be indexed\n");
637 ret = -EINVAL;
638 goto error_free_full_postfix;
639 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000640 name = kasprintf(GFP_KERNEL,
Jonathan Cameron37044322013-09-08 14:57:00 +0100641 "%s_%s%d-%s%d_%s",
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100642 iio_direction[chan->output],
643 iio_chan_type_name_spec[chan->type],
644 chan->channel,
645 iio_chan_type_name_spec[chan->type],
646 chan->channel2,
647 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100648 break;
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100649 }
650 } else { /* Single ended */
Jonathan Cameron37044322013-09-08 14:57:00 +0100651 switch (shared_by) {
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100652 case IIO_SHARED_BY_ALL:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000653 name = kasprintf(GFP_KERNEL, "%s", full_postfix);
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100654 break;
655 case IIO_SHARED_BY_DIR:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000656 name = kasprintf(GFP_KERNEL, "%s_%s",
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100657 iio_direction[chan->output],
658 full_postfix);
659 break;
Jonathan Cameron37044322013-09-08 14:57:00 +0100660 case IIO_SHARED_BY_TYPE:
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000661 name = kasprintf(GFP_KERNEL, "%s_%s_%s",
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100662 iio_direction[chan->output],
663 iio_chan_type_name_spec[chan->type],
664 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100665 break;
666
667 case IIO_SEPARATE:
668 if (chan->indexed)
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000669 name = kasprintf(GFP_KERNEL, "%s_%s%d_%s",
Jonathan Cameron37044322013-09-08 14:57:00 +0100670 iio_direction[chan->output],
671 iio_chan_type_name_spec[chan->type],
672 chan->channel,
673 full_postfix);
674 else
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000675 name = kasprintf(GFP_KERNEL, "%s_%s_%s",
Jonathan Cameron37044322013-09-08 14:57:00 +0100676 iio_direction[chan->output],
677 iio_chan_type_name_spec[chan->type],
678 full_postfix);
679 break;
680 }
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100681 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000682 if (name == NULL) {
Jonathan Cameron1d892712011-05-18 14:40:51 +0100683 ret = -ENOMEM;
684 goto error_free_full_postfix;
685 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000686 dev_attr->attr.name = name;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100687
688 if (readfunc) {
689 dev_attr->attr.mode |= S_IRUGO;
690 dev_attr->show = readfunc;
691 }
692
693 if (writefunc) {
694 dev_attr->attr.mode |= S_IWUSR;
695 dev_attr->store = writefunc;
696 }
Lars-Peter Clausen7bbcf7e2014-02-14 14:19:00 +0000697
Jonathan Cameron1d892712011-05-18 14:40:51 +0100698error_free_full_postfix:
699 kfree(full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100700
Jonathan Cameron847ec802009-08-18 18:06:19 +0100701 return ret;
702}
703
Jonathan Camerondf9c1c42011-08-12 17:56:03 +0100704static void __iio_device_attr_deinit(struct device_attribute *dev_attr)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100705{
706 kfree(dev_attr->attr.name);
707}
708
709int __iio_add_chan_devattr(const char *postfix,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100710 struct iio_chan_spec const *chan,
711 ssize_t (*readfunc)(struct device *dev,
712 struct device_attribute *attr,
713 char *buf),
714 ssize_t (*writefunc)(struct device *dev,
715 struct device_attribute *attr,
716 const char *buf,
717 size_t len),
Jonathan Camerone614a542011-09-02 17:14:41 +0100718 u64 mask,
Jonathan Cameron37044322013-09-08 14:57:00 +0100719 enum iio_shared_by shared_by,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100720 struct device *dev,
721 struct list_head *attr_list)
722{
723 int ret;
724 struct iio_dev_attr *iio_attr, *t;
725
Sachin Kamat670c1102013-10-24 12:53:00 +0100726 iio_attr = kzalloc(sizeof(*iio_attr), GFP_KERNEL);
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000727 if (iio_attr == NULL)
728 return -ENOMEM;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100729 ret = __iio_device_attr_init(&iio_attr->dev_attr,
730 postfix, chan,
Jonathan Cameron37044322013-09-08 14:57:00 +0100731 readfunc, writefunc, shared_by);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100732 if (ret)
733 goto error_iio_dev_attr_free;
734 iio_attr->c = chan;
735 iio_attr->address = mask;
736 list_for_each_entry(t, attr_list, l)
737 if (strcmp(t->dev_attr.attr.name,
738 iio_attr->dev_attr.attr.name) == 0) {
Jonathan Cameron37044322013-09-08 14:57:00 +0100739 if (shared_by == IIO_SEPARATE)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100740 dev_err(dev, "tried to double register : %s\n",
741 t->dev_attr.attr.name);
742 ret = -EBUSY;
743 goto error_device_attr_deinit;
744 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100745 list_add(&iio_attr->l, attr_list);
746
747 return 0;
748
749error_device_attr_deinit:
750 __iio_device_attr_deinit(&iio_attr->dev_attr);
751error_iio_dev_attr_free:
752 kfree(iio_attr);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100753 return ret;
754}
755
Jonathan Cameron37044322013-09-08 14:57:00 +0100756static int iio_device_add_info_mask_type(struct iio_dev *indio_dev,
757 struct iio_chan_spec const *chan,
758 enum iio_shared_by shared_by,
759 const long *infomask)
760{
761 int i, ret, attrcount = 0;
762
763 for_each_set_bit(i, infomask, sizeof(infomask)*8) {
Jonathan Cameronef4b4852014-01-03 22:24:00 +0000764 if (i >= ARRAY_SIZE(iio_chan_info_postfix))
765 return -EINVAL;
Jonathan Cameron37044322013-09-08 14:57:00 +0100766 ret = __iio_add_chan_devattr(iio_chan_info_postfix[i],
767 chan,
768 &iio_read_channel_info,
769 &iio_write_channel_info,
770 i,
771 shared_by,
772 &indio_dev->dev,
773 &indio_dev->channel_attr_list);
774 if ((ret == -EBUSY) && (shared_by != IIO_SEPARATE))
775 continue;
776 else if (ret < 0)
777 return ret;
778 attrcount++;
779 }
780
781 return attrcount;
782}
783
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100784static int iio_device_add_channel_sysfs(struct iio_dev *indio_dev,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100785 struct iio_chan_spec const *chan)
786{
Jonathan Cameron5ccb3ad2012-04-15 17:41:16 +0100787 int ret, attrcount = 0;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100788 const struct iio_chan_spec_ext_info *ext_info;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100789
Jonathan Cameron1d892712011-05-18 14:40:51 +0100790 if (chan->channel < 0)
791 return 0;
Jonathan Cameron37044322013-09-08 14:57:00 +0100792 ret = iio_device_add_info_mask_type(indio_dev, chan,
793 IIO_SEPARATE,
794 &chan->info_mask_separate);
795 if (ret < 0)
796 return ret;
797 attrcount += ret;
798
799 ret = iio_device_add_info_mask_type(indio_dev, chan,
800 IIO_SHARED_BY_TYPE,
801 &chan->info_mask_shared_by_type);
802 if (ret < 0)
803 return ret;
804 attrcount += ret;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100805
Jonathan Cameronc006ec82013-09-08 14:57:00 +0100806 ret = iio_device_add_info_mask_type(indio_dev, chan,
807 IIO_SHARED_BY_DIR,
808 &chan->info_mask_shared_by_dir);
809 if (ret < 0)
810 return ret;
811 attrcount += ret;
812
813 ret = iio_device_add_info_mask_type(indio_dev, chan,
814 IIO_SHARED_BY_ALL,
815 &chan->info_mask_shared_by_all);
816 if (ret < 0)
817 return ret;
818 attrcount += ret;
819
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100820 if (chan->ext_info) {
821 unsigned int i = 0;
822 for (ext_info = chan->ext_info; ext_info->name; ext_info++) {
823 ret = __iio_add_chan_devattr(ext_info->name,
824 chan,
825 ext_info->read ?
826 &iio_read_channel_ext_info : NULL,
827 ext_info->write ?
828 &iio_write_channel_ext_info : NULL,
829 i,
830 ext_info->shared,
831 &indio_dev->dev,
832 &indio_dev->channel_attr_list);
833 i++;
834 if (ret == -EBUSY && ext_info->shared)
835 continue;
836
837 if (ret)
Jonathan Cameron37044322013-09-08 14:57:00 +0100838 return ret;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100839
840 attrcount++;
841 }
842 }
843
Jonathan Cameron37044322013-09-08 14:57:00 +0100844 return attrcount;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100845}
846
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100847/**
848 * iio_free_chan_devattr_list() - Free a list of IIO device attributes
849 * @attr_list: List of IIO device attributes
850 *
851 * This function frees the memory allocated for each of the IIO device
Martin Fuzzeyc1b03ab2015-02-19 15:17:44 +0100852 * attributes in the list.
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100853 */
854void iio_free_chan_devattr_list(struct list_head *attr_list)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100855{
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100856 struct iio_dev_attr *p, *n;
857
858 list_for_each_entry_safe(p, n, attr_list, l) {
859 kfree(p->dev_attr.attr.name);
Martin Fuzzeyc1b03ab2015-02-19 15:17:44 +0100860 list_del(&p->l);
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100861 kfree(p);
862 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100863}
864
Jonathan Cameron1b732882011-05-18 14:41:43 +0100865static ssize_t iio_show_dev_name(struct device *dev,
866 struct device_attribute *attr,
867 char *buf)
868{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200869 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Kees Cook598db582014-03-13 16:46:00 +0000870 return snprintf(buf, PAGE_SIZE, "%s\n", indio_dev->name);
Jonathan Cameron1b732882011-05-18 14:41:43 +0100871}
872
873static DEVICE_ATTR(name, S_IRUGO, iio_show_dev_name, NULL);
874
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100875static int iio_device_register_sysfs(struct iio_dev *indio_dev)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100876{
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100877 int i, ret = 0, attrcount, attrn, attrcount_orig = 0;
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100878 struct iio_dev_attr *p;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100879 struct attribute **attr;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100880
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100881 /* First count elements in any existing group */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100882 if (indio_dev->info->attrs) {
883 attr = indio_dev->info->attrs->attrs;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100884 while (*attr++ != NULL)
885 attrcount_orig++;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100886 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100887 attrcount = attrcount_orig;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100888 /*
889 * New channel registration method - relies on the fact a group does
Peter Meerwaldd25b3802012-08-26 13:43:00 +0100890 * not need to be initialized if its name is NULL.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100891 */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100892 if (indio_dev->channels)
893 for (i = 0; i < indio_dev->num_channels; i++) {
894 ret = iio_device_add_channel_sysfs(indio_dev,
895 &indio_dev
Jonathan Cameron1d892712011-05-18 14:40:51 +0100896 ->channels[i]);
897 if (ret < 0)
898 goto error_clear_attrs;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100899 attrcount += ret;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100900 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100901
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100902 if (indio_dev->name)
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100903 attrcount++;
904
Thomas Meyerd83fb182011-11-29 22:08:00 +0100905 indio_dev->chan_attr_group.attrs = kcalloc(attrcount + 1,
906 sizeof(indio_dev->chan_attr_group.attrs[0]),
907 GFP_KERNEL);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100908 if (indio_dev->chan_attr_group.attrs == NULL) {
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100909 ret = -ENOMEM;
910 goto error_clear_attrs;
Jonathan Cameron1b732882011-05-18 14:41:43 +0100911 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100912 /* Copy across original attributes */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100913 if (indio_dev->info->attrs)
914 memcpy(indio_dev->chan_attr_group.attrs,
915 indio_dev->info->attrs->attrs,
916 sizeof(indio_dev->chan_attr_group.attrs[0])
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100917 *attrcount_orig);
918 attrn = attrcount_orig;
919 /* Add all elements from the list. */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100920 list_for_each_entry(p, &indio_dev->channel_attr_list, l)
921 indio_dev->chan_attr_group.attrs[attrn++] = &p->dev_attr.attr;
922 if (indio_dev->name)
923 indio_dev->chan_attr_group.attrs[attrn++] = &dev_attr_name.attr;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100924
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100925 indio_dev->groups[indio_dev->groupcounter++] =
926 &indio_dev->chan_attr_group;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100927
Jonathan Cameron1d892712011-05-18 14:40:51 +0100928 return 0;
Jonathan Cameron1b732882011-05-18 14:41:43 +0100929
Jonathan Cameron1d892712011-05-18 14:40:51 +0100930error_clear_attrs:
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100931 iio_free_chan_devattr_list(&indio_dev->channel_attr_list);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100932
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100933 return ret;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100934}
935
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100936static void iio_device_unregister_sysfs(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100937{
Jonathan Cameron1d892712011-05-18 14:40:51 +0100938
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100939 iio_free_chan_devattr_list(&indio_dev->channel_attr_list);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100940 kfree(indio_dev->chan_attr_group.attrs);
Martin Fuzzeyc1b03ab2015-02-19 15:17:44 +0100941 indio_dev->chan_attr_group.attrs = NULL;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100942}
943
Jonathan Cameron847ec802009-08-18 18:06:19 +0100944static void iio_dev_release(struct device *device)
945{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200946 struct iio_dev *indio_dev = dev_to_iio_dev(device);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100947 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
948 iio_device_unregister_trigger_consumer(indio_dev);
949 iio_device_unregister_eventset(indio_dev);
950 iio_device_unregister_sysfs(indio_dev);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200951
Lars-Peter Clausen9e69c932013-10-04 12:06:00 +0100952 iio_buffer_put(indio_dev->buffer);
953
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200954 ida_simple_remove(&iio_ida, indio_dev->id);
955 kfree(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100956}
957
Guenter Roeck17d82b42013-02-07 17:09:00 +0000958struct device_type iio_device_type = {
Jonathan Cameron847ec802009-08-18 18:06:19 +0100959 .name = "iio_device",
960 .release = iio_dev_release,
961};
962
Sachin Kamata7e57dc2013-10-29 11:39:00 +0000963/**
964 * iio_device_alloc() - allocate an iio_dev from a driver
965 * @sizeof_priv: Space to allocate for private structure.
966 **/
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200967struct iio_dev *iio_device_alloc(int sizeof_priv)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100968{
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100969 struct iio_dev *dev;
970 size_t alloc_size;
971
972 alloc_size = sizeof(struct iio_dev);
973 if (sizeof_priv) {
974 alloc_size = ALIGN(alloc_size, IIO_ALIGN);
975 alloc_size += sizeof_priv;
976 }
977 /* ensure 32-byte alignment of whole construct ? */
978 alloc_size += IIO_ALIGN - 1;
979
980 dev = kzalloc(alloc_size, GFP_KERNEL);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100981
982 if (dev) {
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100983 dev->dev.groups = dev->groups;
Guenter Roeck17d82b42013-02-07 17:09:00 +0000984 dev->dev.type = &iio_device_type;
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100985 dev->dev.bus = &iio_bus_type;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100986 device_initialize(&dev->dev);
987 dev_set_drvdata(&dev->dev, (void *)dev);
988 mutex_init(&dev->mlock);
Jonathan Cameronac917a82012-02-15 19:48:00 +0000989 mutex_init(&dev->info_exist_lock);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200990 INIT_LIST_HEAD(&dev->channel_attr_list);
Jonathan Camerona9e39f92011-09-14 13:01:25 +0100991
992 dev->id = ida_simple_get(&iio_ida, 0, 0, GFP_KERNEL);
993 if (dev->id < 0) {
994 /* cannot use a dev_err as the name isn't available */
Sachin Kamat3176dd52013-10-24 12:53:00 +0100995 pr_err("failed to get device id\n");
Jonathan Camerona9e39f92011-09-14 13:01:25 +0100996 kfree(dev);
997 return NULL;
998 }
999 dev_set_name(&dev->dev, "iio:device%d", dev->id);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +01001000 INIT_LIST_HEAD(&dev->buffer_list);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001001 }
1002
1003 return dev;
1004}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +02001005EXPORT_SYMBOL(iio_device_alloc);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001006
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001007/**
1008 * iio_device_free() - free an iio_dev from a driver
1009 * @dev: the iio_dev associated with the device
1010 **/
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +02001011void iio_device_free(struct iio_dev *dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001012{
Lars-Peter Clausene407fd62012-06-04 10:41:42 +02001013 if (dev)
1014 put_device(&dev->dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001015}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +02001016EXPORT_SYMBOL(iio_device_free);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001017
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001018static void devm_iio_device_release(struct device *dev, void *res)
1019{
1020 iio_device_free(*(struct iio_dev **)res);
1021}
1022
1023static int devm_iio_device_match(struct device *dev, void *res, void *data)
1024{
1025 struct iio_dev **r = res;
1026 if (!r || !*r) {
1027 WARN_ON(!r || !*r);
1028 return 0;
1029 }
1030 return *r == data;
1031}
1032
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001033/**
1034 * devm_iio_device_alloc - Resource-managed iio_device_alloc()
1035 * @dev: Device to allocate iio_dev for
1036 * @sizeof_priv: Space to allocate for private structure.
1037 *
1038 * Managed iio_device_alloc. iio_dev allocated with this function is
1039 * automatically freed on driver detach.
1040 *
1041 * If an iio_dev allocated with this function needs to be freed separately,
1042 * devm_iio_device_free() must be used.
1043 *
1044 * RETURNS:
1045 * Pointer to allocated iio_dev on success, NULL on failure.
1046 */
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001047struct iio_dev *devm_iio_device_alloc(struct device *dev, int sizeof_priv)
1048{
1049 struct iio_dev **ptr, *iio_dev;
1050
1051 ptr = devres_alloc(devm_iio_device_release, sizeof(*ptr),
1052 GFP_KERNEL);
1053 if (!ptr)
1054 return NULL;
1055
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001056 iio_dev = iio_device_alloc(sizeof_priv);
1057 if (iio_dev) {
1058 *ptr = iio_dev;
1059 devres_add(dev, ptr);
1060 } else {
1061 devres_free(ptr);
1062 }
1063
1064 return iio_dev;
1065}
1066EXPORT_SYMBOL_GPL(devm_iio_device_alloc);
1067
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001068/**
1069 * devm_iio_device_free - Resource-managed iio_device_free()
1070 * @dev: Device this iio_dev belongs to
1071 * @iio_dev: the iio_dev associated with the device
1072 *
1073 * Free iio_dev allocated with devm_iio_device_alloc().
1074 */
Grygorii Strashko9dabaf52013-07-18 11:19:00 +01001075void devm_iio_device_free(struct device *dev, struct iio_dev *iio_dev)
1076{
1077 int rc;
1078
1079 rc = devres_release(dev, devm_iio_device_release,
1080 devm_iio_device_match, iio_dev);
1081 WARN_ON(rc);
1082}
1083EXPORT_SYMBOL_GPL(devm_iio_device_free);
1084
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001085/**
Jonathan Cameron14555b12011-09-21 11:15:57 +01001086 * iio_chrdev_open() - chrdev file open for buffer access and ioctls
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001087 **/
1088static int iio_chrdev_open(struct inode *inode, struct file *filp)
1089{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001090 struct iio_dev *indio_dev = container_of(inode->i_cdev,
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001091 struct iio_dev, chrdev);
Lars-Peter Clausenbb014432011-12-19 15:23:45 +01001092
1093 if (test_and_set_bit(IIO_BUSY_BIT_POS, &indio_dev->flags))
1094 return -EBUSY;
1095
Lars-Peter Clausencadc2122013-09-18 21:02:00 +01001096 iio_device_get(indio_dev);
1097
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001098 filp->private_data = indio_dev;
Jonathan Cameron30eb82f2011-09-21 11:16:02 +01001099
Lars-Peter Clausen79335142011-12-19 15:23:49 +01001100 return 0;
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001101}
1102
1103/**
Jonathan Cameron14555b12011-09-21 11:15:57 +01001104 * iio_chrdev_release() - chrdev file close buffer access and ioctls
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001105 **/
1106static int iio_chrdev_release(struct inode *inode, struct file *filp)
1107{
Lars-Peter Clausenbb014432011-12-19 15:23:45 +01001108 struct iio_dev *indio_dev = container_of(inode->i_cdev,
1109 struct iio_dev, chrdev);
Lars-Peter Clausenbb014432011-12-19 15:23:45 +01001110 clear_bit(IIO_BUSY_BIT_POS, &indio_dev->flags);
Lars-Peter Clausencadc2122013-09-18 21:02:00 +01001111 iio_device_put(indio_dev);
1112
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001113 return 0;
1114}
1115
1116/* Somewhat of a cross file organization violation - ioctls here are actually
1117 * event related */
1118static long iio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1119{
1120 struct iio_dev *indio_dev = filp->private_data;
1121 int __user *ip = (int __user *)arg;
1122 int fd;
1123
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +01001124 if (!indio_dev->info)
1125 return -ENODEV;
1126
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001127 if (cmd == IIO_GET_EVENT_FD_IOCTL) {
1128 fd = iio_event_getfd(indio_dev);
1129 if (copy_to_user(ip, &fd, sizeof(fd)))
1130 return -EFAULT;
1131 return 0;
1132 }
1133 return -EINVAL;
1134}
1135
Jonathan Cameron14555b12011-09-21 11:15:57 +01001136static const struct file_operations iio_buffer_fileops = {
1137 .read = iio_buffer_read_first_n_outer_addr,
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001138 .release = iio_chrdev_release,
1139 .open = iio_chrdev_open,
Jonathan Cameron14555b12011-09-21 11:15:57 +01001140 .poll = iio_buffer_poll_addr,
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001141 .owner = THIS_MODULE,
1142 .llseek = noop_llseek,
1143 .unlocked_ioctl = iio_ioctl,
1144 .compat_ioctl = iio_ioctl,
1145};
1146
Vlad Dogaru8f5d8722014-12-29 11:37:48 +02001147static int iio_check_unique_scan_index(struct iio_dev *indio_dev)
1148{
1149 int i, j;
1150 const struct iio_chan_spec *channels = indio_dev->channels;
1151
1152 if (!(indio_dev->modes & INDIO_ALL_BUFFER_MODES))
1153 return 0;
1154
1155 for (i = 0; i < indio_dev->num_channels - 1; i++) {
1156 if (channels[i].scan_index < 0)
1157 continue;
1158 for (j = i + 1; j < indio_dev->num_channels; j++)
1159 if (channels[i].scan_index == channels[j].scan_index) {
1160 dev_err(&indio_dev->dev,
1161 "Duplicate scan index %d\n",
1162 channels[i].scan_index);
1163 return -EINVAL;
1164 }
1165 }
1166
1167 return 0;
1168}
1169
Michael Hennerich0f1acee2012-03-01 10:51:04 +01001170static const struct iio_buffer_setup_ops noop_ring_setup_ops;
1171
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001172/**
1173 * iio_device_register() - register a device with the IIO subsystem
1174 * @indio_dev: Device structure filled by the device driver
1175 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001176int iio_device_register(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001177{
1178 int ret;
1179
Guenter Roeck17d82b42013-02-07 17:09:00 +00001180 /* If the calling driver did not initialize of_node, do it here */
1181 if (!indio_dev->dev.of_node && indio_dev->dev.parent)
1182 indio_dev->dev.of_node = indio_dev->dev.parent->of_node;
1183
Vlad Dogaru8f5d8722014-12-29 11:37:48 +02001184 ret = iio_check_unique_scan_index(indio_dev);
1185 if (ret < 0)
1186 return ret;
1187
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001188 /* configure elements for the chrdev */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001189 indio_dev->dev.devt = MKDEV(MAJOR(iio_devt), indio_dev->id);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001190
Michael Henneriche553f182012-03-01 10:51:03 +01001191 ret = iio_device_register_debugfs(indio_dev);
1192 if (ret) {
1193 dev_err(indio_dev->dev.parent,
1194 "Failed to register debugfs interfaces\n");
Hartmut Knaack92825ff2014-02-16 11:53:00 +00001195 return ret;
Michael Henneriche553f182012-03-01 10:51:03 +01001196 }
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001197
1198 ret = iio_buffer_alloc_sysfs_and_mask(indio_dev);
1199 if (ret) {
1200 dev_err(indio_dev->dev.parent,
1201 "Failed to create buffer sysfs interfaces\n");
1202 goto error_unreg_debugfs;
1203 }
1204
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001205 ret = iio_device_register_sysfs(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001206 if (ret) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001207 dev_err(indio_dev->dev.parent,
Jonathan Cameron847ec802009-08-18 18:06:19 +01001208 "Failed to register sysfs interfaces\n");
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001209 goto error_buffer_free_sysfs;
Jonathan Cameron847ec802009-08-18 18:06:19 +01001210 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001211 ret = iio_device_register_eventset(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001212 if (ret) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001213 dev_err(indio_dev->dev.parent,
Roel Van Nyenc849d252010-04-29 19:27:31 +02001214 "Failed to register event set\n");
Jonathan Cameron847ec802009-08-18 18:06:19 +01001215 goto error_free_sysfs;
1216 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001217 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
1218 iio_device_register_trigger_consumer(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001219
Michael Hennerich0f1acee2012-03-01 10:51:04 +01001220 if ((indio_dev->modes & INDIO_ALL_BUFFER_MODES) &&
1221 indio_dev->setup_ops == NULL)
1222 indio_dev->setup_ops = &noop_ring_setup_ops;
1223
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001224 cdev_init(&indio_dev->chrdev, &iio_buffer_fileops);
1225 indio_dev->chrdev.owner = indio_dev->info->driver_module;
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001226 indio_dev->chrdev.kobj.parent = &indio_dev->dev.kobj;
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001227 ret = cdev_add(&indio_dev->chrdev, indio_dev->dev.devt, 1);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001228 if (ret < 0)
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001229 goto error_unreg_eventset;
Jonathan Cameron847ec802009-08-18 18:06:19 +01001230
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001231 ret = device_add(&indio_dev->dev);
1232 if (ret < 0)
1233 goto error_cdev_del;
1234
1235 return 0;
1236error_cdev_del:
1237 cdev_del(&indio_dev->chrdev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001238error_unreg_eventset:
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001239 iio_device_unregister_eventset(indio_dev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001240error_free_sysfs:
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001241 iio_device_unregister_sysfs(indio_dev);
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001242error_buffer_free_sysfs:
1243 iio_buffer_free_sysfs_and_mask(indio_dev);
Michael Henneriche553f182012-03-01 10:51:03 +01001244error_unreg_debugfs:
1245 iio_device_unregister_debugfs(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001246 return ret;
1247}
1248EXPORT_SYMBOL(iio_device_register);
1249
Sachin Kamata7e57dc2013-10-29 11:39:00 +00001250/**
1251 * iio_device_unregister() - unregister a device from the IIO subsystem
1252 * @indio_dev: Device structure representing the device.
1253 **/
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001254void iio_device_unregister(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001255{
Jonathan Cameronac917a82012-02-15 19:48:00 +00001256 mutex_lock(&indio_dev->info_exist_lock);
Lars-Peter Clausena87c82e2013-09-18 21:02:00 +01001257
1258 device_del(&indio_dev->dev);
1259
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001260 if (indio_dev->chrdev.dev)
1261 cdev_del(&indio_dev->chrdev);
Lars-Peter Clausenbc4c9612013-09-21 16:21:00 +01001262 iio_device_unregister_debugfs(indio_dev);
Lars-Peter Clausen0d5b7da2013-09-18 21:02:00 +01001263
Lars-Peter Clausena87c82e2013-09-18 21:02:00 +01001264 iio_disable_all_buffers(indio_dev);
1265
Jonathan Cameronac917a82012-02-15 19:48:00 +00001266 indio_dev->info = NULL;
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +01001267
1268 iio_device_wakeup_eventset(indio_dev);
1269 iio_buffer_wakeup_poll(indio_dev);
1270
Jonathan Cameronac917a82012-02-15 19:48:00 +00001271 mutex_unlock(&indio_dev->info_exist_lock);
Lars-Peter Clausen3e1b6c92014-11-26 18:55:12 +01001272
1273 iio_buffer_free_sysfs_and_mask(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001274}
1275EXPORT_SYMBOL(iio_device_unregister);
Sachin Kamat8caa07c2013-10-29 11:39:00 +00001276
1277static void devm_iio_device_unreg(struct device *dev, void *res)
1278{
1279 iio_device_unregister(*(struct iio_dev **)res);
1280}
1281
1282/**
1283 * devm_iio_device_register - Resource-managed iio_device_register()
1284 * @dev: Device to allocate iio_dev for
1285 * @indio_dev: Device structure filled by the device driver
1286 *
1287 * Managed iio_device_register. The IIO device registered with this
1288 * function is automatically unregistered on driver detach. This function
1289 * calls iio_device_register() internally. Refer to that function for more
1290 * information.
1291 *
1292 * If an iio_dev registered with this function needs to be unregistered
1293 * separately, devm_iio_device_unregister() must be used.
1294 *
1295 * RETURNS:
1296 * 0 on success, negative error number on failure.
1297 */
1298int devm_iio_device_register(struct device *dev, struct iio_dev *indio_dev)
1299{
1300 struct iio_dev **ptr;
1301 int ret;
1302
1303 ptr = devres_alloc(devm_iio_device_unreg, sizeof(*ptr), GFP_KERNEL);
1304 if (!ptr)
1305 return -ENOMEM;
1306
1307 *ptr = indio_dev;
1308 ret = iio_device_register(indio_dev);
1309 if (!ret)
1310 devres_add(dev, ptr);
1311 else
1312 devres_free(ptr);
1313
1314 return ret;
1315}
1316EXPORT_SYMBOL_GPL(devm_iio_device_register);
1317
1318/**
1319 * devm_iio_device_unregister - Resource-managed iio_device_unregister()
1320 * @dev: Device this iio_dev belongs to
1321 * @indio_dev: the iio_dev associated with the device
1322 *
1323 * Unregister iio_dev registered with devm_iio_device_register().
1324 */
1325void devm_iio_device_unregister(struct device *dev, struct iio_dev *indio_dev)
1326{
1327 int rc;
1328
1329 rc = devres_release(dev, devm_iio_device_unreg,
1330 devm_iio_device_match, indio_dev);
1331 WARN_ON(rc);
1332}
1333EXPORT_SYMBOL_GPL(devm_iio_device_unregister);
1334
Jonathan Cameron847ec802009-08-18 18:06:19 +01001335subsys_initcall(iio_init);
1336module_exit(iio_exit);
1337
Jonathan Cameronc8b95952012-09-02 21:27:56 +01001338MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>");
Jonathan Cameron847ec802009-08-18 18:06:19 +01001339MODULE_DESCRIPTION("Industrial I/O core");
1340MODULE_LICENSE("GPL");