devres: introduce API "devm_kmemdup
[linux-block.git] / drivers / iio / industrialio-core.c
CommitLineData
847ec80b
JC
1/* 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
3176dd5d
SK
12#define pr_fmt(fmt) "iio-core: " fmt
13
847ec80b
JC
14#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>
847ec80b 21#include <linux/poll.h>
ffc18afa 22#include <linux/sched.h>
4439c935 23#include <linux/wait.h>
847ec80b 24#include <linux/cdev.h>
5a0e3ad6 25#include <linux/slab.h>
8e7d9672 26#include <linux/anon_inodes.h>
e553f182 27#include <linux/debugfs.h>
06458e27 28#include <linux/iio/iio.h>
df9c1c42 29#include "iio_core.h"
6aea1c36 30#include "iio_core_trigger.h"
06458e27
JC
31#include <linux/iio/sysfs.h>
32#include <linux/iio/events.h>
9e69c935 33#include <linux/iio/buffer.h>
9dd1cb30 34
99698b45 35/* IDA to assign each registered device a unique id */
b156cf70 36static DEFINE_IDA(iio_ida);
847ec80b 37
f625cb97 38static dev_t iio_devt;
847ec80b
JC
39
40#define IIO_DEV_MAX 256
5aaaeba8 41struct bus_type iio_bus_type = {
847ec80b 42 .name = "iio",
847ec80b 43};
5aaaeba8 44EXPORT_SYMBOL(iio_bus_type);
847ec80b 45
e553f182
MH
46static struct dentry *iio_debugfs_dentry;
47
c6fc8062
JC
48static const char * const iio_direction[] = {
49 [0] = "in",
50 [1] = "out",
51};
52
ade7ef7b 53static const char * const iio_chan_type_name_spec[] = {
c6fc8062 54 [IIO_VOLTAGE] = "voltage",
faf290e8
MH
55 [IIO_CURRENT] = "current",
56 [IIO_POWER] = "power",
9bff02f8 57 [IIO_ACCEL] = "accel",
41ea040c 58 [IIO_ANGL_VEL] = "anglvel",
1d892719 59 [IIO_MAGN] = "magn",
9bff02f8
BF
60 [IIO_LIGHT] = "illuminance",
61 [IIO_INTENSITY] = "intensity",
f09f2c81 62 [IIO_PROXIMITY] = "proximity",
9bff02f8 63 [IIO_TEMP] = "temp",
1d892719
JC
64 [IIO_INCLI] = "incli",
65 [IIO_ROT] = "rot",
1d892719 66 [IIO_ANGL] = "angl",
9bff02f8 67 [IIO_TIMESTAMP] = "timestamp",
66dbe704 68 [IIO_CAPACITANCE] = "capacitance",
a6b12855 69 [IIO_ALTVOLTAGE] = "altvoltage",
21cd1fab 70 [IIO_CCT] = "cct",
c4f0c693 71 [IIO_PRESSURE] = "pressure",
ac216aa2 72 [IIO_HUMIDITYRELATIVE] = "humidityrelative",
1d892719
JC
73};
74
330c6c57 75static const char * const iio_modifier_names[] = {
1d892719
JC
76 [IIO_MOD_X] = "x",
77 [IIO_MOD_Y] = "y",
78 [IIO_MOD_Z] = "z",
8f5879b2 79 [IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)",
cf82cb81 80 [IIO_MOD_SUM_SQUARED_X_Y_Z] = "x^2+y^2+z^2",
330c6c57
JC
81 [IIO_MOD_LIGHT_BOTH] = "both",
82 [IIO_MOD_LIGHT_IR] = "ir",
21cd1fab
JB
83 [IIO_MOD_LIGHT_CLEAR] = "clear",
84 [IIO_MOD_LIGHT_RED] = "red",
85 [IIO_MOD_LIGHT_GREEN] = "green",
86 [IIO_MOD_LIGHT_BLUE] = "blue",
1d892719
JC
87};
88
89/* relies on pairs of these shared then separate */
90static const char * const iio_chan_info_postfix[] = {
75a973c7
JC
91 [IIO_CHAN_INFO_RAW] = "raw",
92 [IIO_CHAN_INFO_PROCESSED] = "input",
c8a9f805
JC
93 [IIO_CHAN_INFO_SCALE] = "scale",
94 [IIO_CHAN_INFO_OFFSET] = "offset",
95 [IIO_CHAN_INFO_CALIBSCALE] = "calibscale",
96 [IIO_CHAN_INFO_CALIBBIAS] = "calibbias",
97 [IIO_CHAN_INFO_PEAK] = "peak_raw",
98 [IIO_CHAN_INFO_PEAK_SCALE] = "peak_scale",
99 [IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW] = "quadrature_correction_raw",
100 [IIO_CHAN_INFO_AVERAGE_RAW] = "mean_raw",
df94aba8
JC
101 [IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY]
102 = "filter_low_pass_3db_frequency",
ce85a1cb 103 [IIO_CHAN_INFO_SAMP_FREQ] = "sampling_frequency",
a6b12855
MH
104 [IIO_CHAN_INFO_FREQUENCY] = "frequency",
105 [IIO_CHAN_INFO_PHASE] = "phase",
b65d6212 106 [IIO_CHAN_INFO_HARDWAREGAIN] = "hardwaregain",
7c9ab035 107 [IIO_CHAN_INFO_HYSTERESIS] = "hysteresis",
899d90bd 108 [IIO_CHAN_INFO_INT_TIME] = "integration_time",
1d892719
JC
109};
110
a7e57dce
SK
111/**
112 * iio_find_channel_from_si() - get channel from its scan index
113 * @indio_dev: device
114 * @si: scan index to match
115 */
5fb21c82
JC
116const struct iio_chan_spec
117*iio_find_channel_from_si(struct iio_dev *indio_dev, int si)
118{
119 int i;
120
121 for (i = 0; i < indio_dev->num_channels; i++)
122 if (indio_dev->channels[i].scan_index == si)
123 return &indio_dev->channels[i];
124 return NULL;
125}
126
847ec80b
JC
127/* This turns up an awful lot */
128ssize_t iio_read_const_attr(struct device *dev,
129 struct device_attribute *attr,
130 char *buf)
131{
132 return sprintf(buf, "%s\n", to_iio_const_attr(attr)->string);
133}
134EXPORT_SYMBOL(iio_read_const_attr);
135
847ec80b
JC
136static int __init iio_init(void)
137{
138 int ret;
139
5aaaeba8
JC
140 /* Register sysfs bus */
141 ret = bus_register(&iio_bus_type);
847ec80b 142 if (ret < 0) {
3176dd5d 143 pr_err("could not register bus type\n");
847ec80b
JC
144 goto error_nothing;
145 }
146
9aa1a167
JC
147 ret = alloc_chrdev_region(&iio_devt, 0, IIO_DEV_MAX, "iio");
148 if (ret < 0) {
3176dd5d 149 pr_err("failed to allocate char dev region\n");
5aaaeba8 150 goto error_unregister_bus_type;
9aa1a167 151 }
847ec80b 152
e553f182
MH
153 iio_debugfs_dentry = debugfs_create_dir("iio", NULL);
154
847ec80b
JC
155 return 0;
156
5aaaeba8
JC
157error_unregister_bus_type:
158 bus_unregister(&iio_bus_type);
847ec80b
JC
159error_nothing:
160 return ret;
161}
162
163static void __exit iio_exit(void)
164{
9aa1a167
JC
165 if (iio_devt)
166 unregister_chrdev_region(iio_devt, IIO_DEV_MAX);
5aaaeba8 167 bus_unregister(&iio_bus_type);
e553f182
MH
168 debugfs_remove(iio_debugfs_dentry);
169}
170
171#if defined(CONFIG_DEBUG_FS)
e553f182
MH
172static ssize_t iio_debugfs_read_reg(struct file *file, char __user *userbuf,
173 size_t count, loff_t *ppos)
174{
175 struct iio_dev *indio_dev = file->private_data;
176 char buf[20];
177 unsigned val = 0;
178 ssize_t len;
179 int ret;
180
181 ret = indio_dev->info->debugfs_reg_access(indio_dev,
182 indio_dev->cached_reg_addr,
183 0, &val);
184 if (ret)
185 dev_err(indio_dev->dev.parent, "%s: read failed\n", __func__);
186
187 len = snprintf(buf, sizeof(buf), "0x%X\n", val);
188
189 return simple_read_from_buffer(userbuf, count, ppos, buf, len);
190}
191
192static ssize_t iio_debugfs_write_reg(struct file *file,
193 const char __user *userbuf, size_t count, loff_t *ppos)
194{
195 struct iio_dev *indio_dev = file->private_data;
196 unsigned reg, val;
197 char buf[80];
198 int ret;
199
200 count = min_t(size_t, count, (sizeof(buf)-1));
201 if (copy_from_user(buf, userbuf, count))
202 return -EFAULT;
203
204 buf[count] = 0;
205
206 ret = sscanf(buf, "%i %i", &reg, &val);
207
208 switch (ret) {
209 case 1:
210 indio_dev->cached_reg_addr = reg;
211 break;
212 case 2:
213 indio_dev->cached_reg_addr = reg;
214 ret = indio_dev->info->debugfs_reg_access(indio_dev, reg,
215 val, NULL);
216 if (ret) {
217 dev_err(indio_dev->dev.parent, "%s: write failed\n",
218 __func__);
219 return ret;
220 }
221 break;
222 default:
223 return -EINVAL;
224 }
225
226 return count;
227}
228
229static const struct file_operations iio_debugfs_reg_fops = {
5a28c873 230 .open = simple_open,
e553f182
MH
231 .read = iio_debugfs_read_reg,
232 .write = iio_debugfs_write_reg,
233};
234
235static void iio_device_unregister_debugfs(struct iio_dev *indio_dev)
236{
237 debugfs_remove_recursive(indio_dev->debugfs_dentry);
847ec80b
JC
238}
239
e553f182
MH
240static int iio_device_register_debugfs(struct iio_dev *indio_dev)
241{
242 struct dentry *d;
243
244 if (indio_dev->info->debugfs_reg_access == NULL)
245 return 0;
246
abd5a2fb 247 if (!iio_debugfs_dentry)
e553f182
MH
248 return 0;
249
250 indio_dev->debugfs_dentry =
251 debugfs_create_dir(dev_name(&indio_dev->dev),
252 iio_debugfs_dentry);
e553f182
MH
253 if (indio_dev->debugfs_dentry == NULL) {
254 dev_warn(indio_dev->dev.parent,
255 "Failed to create debugfs directory\n");
256 return -EFAULT;
257 }
258
259 d = debugfs_create_file("direct_reg_access", 0644,
260 indio_dev->debugfs_dentry,
261 indio_dev, &iio_debugfs_reg_fops);
262 if (!d) {
263 iio_device_unregister_debugfs(indio_dev);
264 return -ENOMEM;
265 }
266
267 return 0;
268}
269#else
270static int iio_device_register_debugfs(struct iio_dev *indio_dev)
271{
272 return 0;
273}
274
275static void iio_device_unregister_debugfs(struct iio_dev *indio_dev)
276{
277}
278#endif /* CONFIG_DEBUG_FS */
279
4fee7e16
LPC
280static ssize_t iio_read_channel_ext_info(struct device *dev,
281 struct device_attribute *attr,
282 char *buf)
283{
e53f5ac5 284 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
4fee7e16
LPC
285 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
286 const struct iio_chan_spec_ext_info *ext_info;
287
288 ext_info = &this_attr->c->ext_info[this_attr->address];
289
fc6d1139 290 return ext_info->read(indio_dev, ext_info->private, this_attr->c, buf);
4fee7e16
LPC
291}
292
293static ssize_t iio_write_channel_ext_info(struct device *dev,
294 struct device_attribute *attr,
295 const char *buf,
296 size_t len)
297{
e53f5ac5 298 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
4fee7e16
LPC
299 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
300 const struct iio_chan_spec_ext_info *ext_info;
301
302 ext_info = &this_attr->c->ext_info[this_attr->address];
303
fc6d1139
MH
304 return ext_info->write(indio_dev, ext_info->private,
305 this_attr->c, buf, len);
4fee7e16
LPC
306}
307
5212cc8a
LPC
308ssize_t iio_enum_available_read(struct iio_dev *indio_dev,
309 uintptr_t priv, const struct iio_chan_spec *chan, char *buf)
310{
311 const struct iio_enum *e = (const struct iio_enum *)priv;
312 unsigned int i;
313 size_t len = 0;
314
315 if (!e->num_items)
316 return 0;
317
318 for (i = 0; i < e->num_items; ++i)
74dcd439 319 len += scnprintf(buf + len, PAGE_SIZE - len, "%s ", e->items[i]);
5212cc8a
LPC
320
321 /* replace last space with a newline */
322 buf[len - 1] = '\n';
323
324 return len;
325}
326EXPORT_SYMBOL_GPL(iio_enum_available_read);
327
328ssize_t iio_enum_read(struct iio_dev *indio_dev,
329 uintptr_t priv, const struct iio_chan_spec *chan, char *buf)
330{
331 const struct iio_enum *e = (const struct iio_enum *)priv;
332 int i;
333
334 if (!e->get)
335 return -EINVAL;
336
337 i = e->get(indio_dev, chan);
338 if (i < 0)
339 return i;
340 else if (i >= e->num_items)
341 return -EINVAL;
342
598db581 343 return snprintf(buf, PAGE_SIZE, "%s\n", e->items[i]);
5212cc8a
LPC
344}
345EXPORT_SYMBOL_GPL(iio_enum_read);
346
347ssize_t iio_enum_write(struct iio_dev *indio_dev,
348 uintptr_t priv, const struct iio_chan_spec *chan, const char *buf,
349 size_t len)
350{
351 const struct iio_enum *e = (const struct iio_enum *)priv;
352 unsigned int i;
353 int ret;
354
355 if (!e->set)
356 return -EINVAL;
357
358 for (i = 0; i < e->num_items; i++) {
359 if (sysfs_streq(buf, e->items[i]))
360 break;
361 }
362
363 if (i == e->num_items)
364 return -EINVAL;
365
366 ret = e->set(indio_dev, chan, i);
367 return ret ? ret : len;
368}
369EXPORT_SYMBOL_GPL(iio_enum_write);
370
3661f3f5
LPC
371/**
372 * iio_format_value() - Formats a IIO value into its string representation
373 * @buf: The buffer to which the formated value gets written
374 * @type: One of the IIO_VAL_... constants. This decides how the val and val2
375 * parameters are formatted.
376 * @val: First part of the value, exact meaning depends on the type parameter.
377 * @val2: Second part of the value, exact meaning depends on the type parameter.
378 */
379ssize_t iio_format_value(char *buf, unsigned int type, int val, int val2)
847ec80b 380{
7985e7c1 381 unsigned long long tmp;
67eedba3 382 bool scale_db = false;
1d892719 383
3661f3f5 384 switch (type) {
67eedba3 385 case IIO_VAL_INT:
1d892719 386 return sprintf(buf, "%d\n", val);
67eedba3
MH
387 case IIO_VAL_INT_PLUS_MICRO_DB:
388 scale_db = true;
389 case IIO_VAL_INT_PLUS_MICRO:
1d892719 390 if (val2 < 0)
d9a0134e 391 return sprintf(buf, "-%ld.%06u%s\n", abs(val), -val2,
67eedba3 392 scale_db ? " dB" : "");
1d892719 393 else
67eedba3
MH
394 return sprintf(buf, "%d.%06u%s\n", val, val2,
395 scale_db ? " dB" : "");
396 case IIO_VAL_INT_PLUS_NANO:
71646e2c 397 if (val2 < 0)
d9a0134e 398 return sprintf(buf, "-%ld.%09u\n", abs(val), -val2);
71646e2c
MH
399 else
400 return sprintf(buf, "%d.%09u\n", val, val2);
7985e7c1
LPC
401 case IIO_VAL_FRACTIONAL:
402 tmp = div_s64((s64)val * 1000000000LL, val2);
403 val2 = do_div(tmp, 1000000000LL);
404 val = tmp;
405 return sprintf(buf, "%d.%09u\n", val, val2);
103d9fb9
LPC
406 case IIO_VAL_FRACTIONAL_LOG2:
407 tmp = (s64)val * 1000000000LL >> val2;
408 val2 = do_div(tmp, 1000000000LL);
409 val = tmp;
410 return sprintf(buf, "%d.%09u\n", val, val2);
67eedba3 411 default:
1d892719 412 return 0;
67eedba3 413 }
1d892719
JC
414}
415
3661f3f5
LPC
416static ssize_t iio_read_channel_info(struct device *dev,
417 struct device_attribute *attr,
418 char *buf)
419{
420 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
421 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
422 int val, val2;
423 int ret = indio_dev->info->read_raw(indio_dev, this_attr->c,
424 &val, &val2, this_attr->address);
425
426 if (ret < 0)
427 return ret;
428
429 return iio_format_value(buf, ret, val, val2);
430}
431
6807d721
LPC
432/**
433 * iio_str_to_fixpoint() - Parse a fixed-point number from a string
434 * @str: The string to parse
435 * @fract_mult: Multiplier for the first decimal place, should be a power of 10
436 * @integer: The integer part of the number
437 * @fract: The fractional part of the number
438 *
439 * Returns 0 on success, or a negative error code if the string could not be
440 * parsed.
441 */
442int iio_str_to_fixpoint(const char *str, int fract_mult,
443 int *integer, int *fract)
444{
445 int i = 0, f = 0;
446 bool integer_part = true, negative = false;
447
448 if (str[0] == '-') {
449 negative = true;
450 str++;
451 } else if (str[0] == '+') {
452 str++;
453 }
454
455 while (*str) {
456 if ('0' <= *str && *str <= '9') {
457 if (integer_part) {
458 i = i * 10 + *str - '0';
459 } else {
460 f += fract_mult * (*str - '0');
461 fract_mult /= 10;
462 }
463 } else if (*str == '\n') {
464 if (*(str + 1) == '\0')
465 break;
466 else
467 return -EINVAL;
468 } else if (*str == '.' && integer_part) {
469 integer_part = false;
470 } else {
471 return -EINVAL;
472 }
473 str++;
474 }
475
476 if (negative) {
477 if (i)
478 i = -i;
479 else
480 f = -f;
481 }
482
483 *integer = i;
484 *fract = f;
485
486 return 0;
487}
488EXPORT_SYMBOL_GPL(iio_str_to_fixpoint);
489
1d892719
JC
490static ssize_t iio_write_channel_info(struct device *dev,
491 struct device_attribute *attr,
492 const char *buf,
493 size_t len)
494{
e53f5ac5 495 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
1d892719 496 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
6807d721
LPC
497 int ret, fract_mult = 100000;
498 int integer, fract;
1d892719
JC
499
500 /* Assumes decimal - precision based on number of digits */
6fe8135f 501 if (!indio_dev->info->write_raw)
1d892719 502 return -EINVAL;
5c04af04
MH
503
504 if (indio_dev->info->write_raw_get_fmt)
505 switch (indio_dev->info->write_raw_get_fmt(indio_dev,
506 this_attr->c, this_attr->address)) {
507 case IIO_VAL_INT_PLUS_MICRO:
508 fract_mult = 100000;
509 break;
510 case IIO_VAL_INT_PLUS_NANO:
511 fract_mult = 100000000;
512 break;
513 default:
514 return -EINVAL;
515 }
516
6807d721
LPC
517 ret = iio_str_to_fixpoint(buf, fract_mult, &integer, &fract);
518 if (ret)
519 return ret;
1d892719 520
6fe8135f 521 ret = indio_dev->info->write_raw(indio_dev, this_attr->c,
5c04af04 522 integer, fract, this_attr->address);
1d892719
JC
523 if (ret)
524 return ret;
525
526 return len;
527}
528
df9c1c42 529static
1d892719
JC
530int __iio_device_attr_init(struct device_attribute *dev_attr,
531 const char *postfix,
532 struct iio_chan_spec const *chan,
533 ssize_t (*readfunc)(struct device *dev,
534 struct device_attribute *attr,
535 char *buf),
536 ssize_t (*writefunc)(struct device *dev,
537 struct device_attribute *attr,
538 const char *buf,
539 size_t len),
3704432f 540 enum iio_shared_by shared_by)
1d892719 541{
3704432f 542 int ret = 0;
7bbcf7e1 543 char *name = NULL;
3704432f 544 char *full_postfix;
1d892719 545 sysfs_attr_init(&dev_attr->attr);
1d892719 546
ade7ef7b 547 /* Build up postfix of <extend_name>_<modifier>_postfix */
3704432f 548 if (chan->modified && (shared_by == IIO_SEPARATE)) {
ade7ef7b
JC
549 if (chan->extend_name)
550 full_postfix = kasprintf(GFP_KERNEL, "%s_%s_%s",
551 iio_modifier_names[chan
552 ->channel2],
553 chan->extend_name,
554 postfix);
555 else
556 full_postfix = kasprintf(GFP_KERNEL, "%s_%s",
557 iio_modifier_names[chan
558 ->channel2],
559 postfix);
560 } else {
77bfa8ba 561 if (chan->extend_name == NULL || shared_by != IIO_SEPARATE)
ade7ef7b
JC
562 full_postfix = kstrdup(postfix, GFP_KERNEL);
563 else
564 full_postfix = kasprintf(GFP_KERNEL,
565 "%s_%s",
566 chan->extend_name,
567 postfix);
568 }
3704432f
JC
569 if (full_postfix == NULL)
570 return -ENOMEM;
1d892719 571
4abf6f8b 572 if (chan->differential) { /* Differential can not have modifier */
3704432f 573 switch (shared_by) {
c006ec83 574 case IIO_SHARED_BY_ALL:
7bbcf7e1 575 name = kasprintf(GFP_KERNEL, "%s", full_postfix);
c006ec83
JC
576 break;
577 case IIO_SHARED_BY_DIR:
7bbcf7e1 578 name = kasprintf(GFP_KERNEL, "%s_%s",
c006ec83
JC
579 iio_direction[chan->output],
580 full_postfix);
581 break;
3704432f 582 case IIO_SHARED_BY_TYPE:
7bbcf7e1 583 name = kasprintf(GFP_KERNEL, "%s_%s-%s_%s",
ade7ef7b
JC
584 iio_direction[chan->output],
585 iio_chan_type_name_spec[chan->type],
586 iio_chan_type_name_spec[chan->type],
587 full_postfix);
3704432f
JC
588 break;
589 case IIO_SEPARATE:
590 if (!chan->indexed) {
591 WARN_ON("Differential channels must be indexed\n");
592 ret = -EINVAL;
593 goto error_free_full_postfix;
594 }
7bbcf7e1 595 name = kasprintf(GFP_KERNEL,
3704432f 596 "%s_%s%d-%s%d_%s",
ade7ef7b
JC
597 iio_direction[chan->output],
598 iio_chan_type_name_spec[chan->type],
599 chan->channel,
600 iio_chan_type_name_spec[chan->type],
601 chan->channel2,
602 full_postfix);
3704432f 603 break;
ade7ef7b
JC
604 }
605 } else { /* Single ended */
3704432f 606 switch (shared_by) {
c006ec83 607 case IIO_SHARED_BY_ALL:
7bbcf7e1 608 name = kasprintf(GFP_KERNEL, "%s", full_postfix);
c006ec83
JC
609 break;
610 case IIO_SHARED_BY_DIR:
7bbcf7e1 611 name = kasprintf(GFP_KERNEL, "%s_%s",
c006ec83
JC
612 iio_direction[chan->output],
613 full_postfix);
614 break;
3704432f 615 case IIO_SHARED_BY_TYPE:
7bbcf7e1 616 name = kasprintf(GFP_KERNEL, "%s_%s_%s",
ade7ef7b
JC
617 iio_direction[chan->output],
618 iio_chan_type_name_spec[chan->type],
619 full_postfix);
3704432f
JC
620 break;
621
622 case IIO_SEPARATE:
623 if (chan->indexed)
7bbcf7e1 624 name = kasprintf(GFP_KERNEL, "%s_%s%d_%s",
3704432f
JC
625 iio_direction[chan->output],
626 iio_chan_type_name_spec[chan->type],
627 chan->channel,
628 full_postfix);
629 else
7bbcf7e1 630 name = kasprintf(GFP_KERNEL, "%s_%s_%s",
3704432f
JC
631 iio_direction[chan->output],
632 iio_chan_type_name_spec[chan->type],
633 full_postfix);
634 break;
635 }
ade7ef7b 636 }
7bbcf7e1 637 if (name == NULL) {
1d892719
JC
638 ret = -ENOMEM;
639 goto error_free_full_postfix;
640 }
7bbcf7e1 641 dev_attr->attr.name = name;
1d892719
JC
642
643 if (readfunc) {
644 dev_attr->attr.mode |= S_IRUGO;
645 dev_attr->show = readfunc;
646 }
647
648 if (writefunc) {
649 dev_attr->attr.mode |= S_IWUSR;
650 dev_attr->store = writefunc;
651 }
7bbcf7e1 652
1d892719
JC
653error_free_full_postfix:
654 kfree(full_postfix);
3704432f 655
1d892719
JC
656 return ret;
657}
658
df9c1c42 659static void __iio_device_attr_deinit(struct device_attribute *dev_attr)
1d892719
JC
660{
661 kfree(dev_attr->attr.name);
662}
663
664int __iio_add_chan_devattr(const char *postfix,
1d892719
JC
665 struct iio_chan_spec const *chan,
666 ssize_t (*readfunc)(struct device *dev,
667 struct device_attribute *attr,
668 char *buf),
669 ssize_t (*writefunc)(struct device *dev,
670 struct device_attribute *attr,
671 const char *buf,
672 size_t len),
e614a54b 673 u64 mask,
3704432f 674 enum iio_shared_by shared_by,
1d892719
JC
675 struct device *dev,
676 struct list_head *attr_list)
677{
678 int ret;
679 struct iio_dev_attr *iio_attr, *t;
680
670c1103 681 iio_attr = kzalloc(sizeof(*iio_attr), GFP_KERNEL);
92825ff9
HK
682 if (iio_attr == NULL)
683 return -ENOMEM;
1d892719
JC
684 ret = __iio_device_attr_init(&iio_attr->dev_attr,
685 postfix, chan,
3704432f 686 readfunc, writefunc, shared_by);
1d892719
JC
687 if (ret)
688 goto error_iio_dev_attr_free;
689 iio_attr->c = chan;
690 iio_attr->address = mask;
691 list_for_each_entry(t, attr_list, l)
692 if (strcmp(t->dev_attr.attr.name,
693 iio_attr->dev_attr.attr.name) == 0) {
3704432f 694 if (shared_by == IIO_SEPARATE)
1d892719
JC
695 dev_err(dev, "tried to double register : %s\n",
696 t->dev_attr.attr.name);
697 ret = -EBUSY;
698 goto error_device_attr_deinit;
699 }
1d892719
JC
700 list_add(&iio_attr->l, attr_list);
701
702 return 0;
703
704error_device_attr_deinit:
705 __iio_device_attr_deinit(&iio_attr->dev_attr);
706error_iio_dev_attr_free:
707 kfree(iio_attr);
1d892719
JC
708 return ret;
709}
710
3704432f
JC
711static int iio_device_add_info_mask_type(struct iio_dev *indio_dev,
712 struct iio_chan_spec const *chan,
713 enum iio_shared_by shared_by,
714 const long *infomask)
1d892719 715{
3704432f 716 int i, ret, attrcount = 0;
1d892719 717
3704432f 718 for_each_set_bit(i, infomask, sizeof(infomask)*8) {
ef4b4856
JC
719 if (i >= ARRAY_SIZE(iio_chan_info_postfix))
720 return -EINVAL;
8655cc49
JC
721 ret = __iio_add_chan_devattr(iio_chan_info_postfix[i],
722 chan,
723 &iio_read_channel_info,
724 &iio_write_channel_info,
725 i,
3704432f 726 shared_by,
8655cc49
JC
727 &indio_dev->dev,
728 &indio_dev->channel_attr_list);
3704432f 729 if ((ret == -EBUSY) && (shared_by != IIO_SEPARATE))
8655cc49 730 continue;
3704432f
JC
731 else if (ret < 0)
732 return ret;
8655cc49
JC
733 attrcount++;
734 }
5f420b42 735
3704432f
JC
736 return attrcount;
737}
738
739static int iio_device_add_channel_sysfs(struct iio_dev *indio_dev,
740 struct iio_chan_spec const *chan)
741{
742 int ret, attrcount = 0;
743 const struct iio_chan_spec_ext_info *ext_info;
744
745 if (chan->channel < 0)
746 return 0;
747 ret = iio_device_add_info_mask_type(indio_dev, chan,
748 IIO_SEPARATE,
749 &chan->info_mask_separate);
750 if (ret < 0)
751 return ret;
752 attrcount += ret;
753
754 ret = iio_device_add_info_mask_type(indio_dev, chan,
755 IIO_SHARED_BY_TYPE,
756 &chan->info_mask_shared_by_type);
757 if (ret < 0)
758 return ret;
759 attrcount += ret;
760
c006ec83
JC
761 ret = iio_device_add_info_mask_type(indio_dev, chan,
762 IIO_SHARED_BY_DIR,
763 &chan->info_mask_shared_by_dir);
764 if (ret < 0)
765 return ret;
766 attrcount += ret;
767
768 ret = iio_device_add_info_mask_type(indio_dev, chan,
769 IIO_SHARED_BY_ALL,
770 &chan->info_mask_shared_by_all);
771 if (ret < 0)
772 return ret;
773 attrcount += ret;
774
5f420b42
LPC
775 if (chan->ext_info) {
776 unsigned int i = 0;
777 for (ext_info = chan->ext_info; ext_info->name; ext_info++) {
778 ret = __iio_add_chan_devattr(ext_info->name,
779 chan,
780 ext_info->read ?
781 &iio_read_channel_ext_info : NULL,
782 ext_info->write ?
783 &iio_write_channel_ext_info : NULL,
784 i,
785 ext_info->shared,
786 &indio_dev->dev,
787 &indio_dev->channel_attr_list);
788 i++;
789 if (ret == -EBUSY && ext_info->shared)
790 continue;
791
792 if (ret)
3704432f 793 return ret;
5f420b42
LPC
794
795 attrcount++;
796 }
797 }
798
3704432f 799 return attrcount;
1d892719
JC
800}
801
84088ebd
LPC
802/**
803 * iio_free_chan_devattr_list() - Free a list of IIO device attributes
804 * @attr_list: List of IIO device attributes
805 *
806 * This function frees the memory allocated for each of the IIO device
807 * attributes in the list. Note: if you want to reuse the list after calling
808 * this function you have to reinitialize it using INIT_LIST_HEAD().
809 */
810void iio_free_chan_devattr_list(struct list_head *attr_list)
1d892719 811{
84088ebd
LPC
812 struct iio_dev_attr *p, *n;
813
814 list_for_each_entry_safe(p, n, attr_list, l) {
815 kfree(p->dev_attr.attr.name);
816 kfree(p);
817 }
1d892719
JC
818}
819
1b732888
JC
820static ssize_t iio_show_dev_name(struct device *dev,
821 struct device_attribute *attr,
822 char *buf)
823{
e53f5ac5 824 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
598db581 825 return snprintf(buf, PAGE_SIZE, "%s\n", indio_dev->name);
1b732888
JC
826}
827
828static DEVICE_ATTR(name, S_IRUGO, iio_show_dev_name, NULL);
829
f8c6f4e9 830static int iio_device_register_sysfs(struct iio_dev *indio_dev)
1d892719 831{
26d25ae3 832 int i, ret = 0, attrcount, attrn, attrcount_orig = 0;
84088ebd 833 struct iio_dev_attr *p;
26d25ae3 834 struct attribute **attr;
1d892719 835
26d25ae3 836 /* First count elements in any existing group */
f8c6f4e9
JC
837 if (indio_dev->info->attrs) {
838 attr = indio_dev->info->attrs->attrs;
26d25ae3
JC
839 while (*attr++ != NULL)
840 attrcount_orig++;
847ec80b 841 }
26d25ae3 842 attrcount = attrcount_orig;
1d892719
JC
843 /*
844 * New channel registration method - relies on the fact a group does
d25b3808 845 * not need to be initialized if its name is NULL.
1d892719 846 */
f8c6f4e9
JC
847 if (indio_dev->channels)
848 for (i = 0; i < indio_dev->num_channels; i++) {
849 ret = iio_device_add_channel_sysfs(indio_dev,
850 &indio_dev
1d892719
JC
851 ->channels[i]);
852 if (ret < 0)
853 goto error_clear_attrs;
26d25ae3 854 attrcount += ret;
1d892719 855 }
26d25ae3 856
f8c6f4e9 857 if (indio_dev->name)
26d25ae3
JC
858 attrcount++;
859
d83fb184
TM
860 indio_dev->chan_attr_group.attrs = kcalloc(attrcount + 1,
861 sizeof(indio_dev->chan_attr_group.attrs[0]),
862 GFP_KERNEL);
f8c6f4e9 863 if (indio_dev->chan_attr_group.attrs == NULL) {
26d25ae3
JC
864 ret = -ENOMEM;
865 goto error_clear_attrs;
1b732888 866 }
26d25ae3 867 /* Copy across original attributes */
f8c6f4e9
JC
868 if (indio_dev->info->attrs)
869 memcpy(indio_dev->chan_attr_group.attrs,
870 indio_dev->info->attrs->attrs,
871 sizeof(indio_dev->chan_attr_group.attrs[0])
26d25ae3
JC
872 *attrcount_orig);
873 attrn = attrcount_orig;
874 /* Add all elements from the list. */
f8c6f4e9
JC
875 list_for_each_entry(p, &indio_dev->channel_attr_list, l)
876 indio_dev->chan_attr_group.attrs[attrn++] = &p->dev_attr.attr;
877 if (indio_dev->name)
878 indio_dev->chan_attr_group.attrs[attrn++] = &dev_attr_name.attr;
26d25ae3 879
f8c6f4e9
JC
880 indio_dev->groups[indio_dev->groupcounter++] =
881 &indio_dev->chan_attr_group;
26d25ae3 882
1d892719 883 return 0;
1b732888 884
1d892719 885error_clear_attrs:
84088ebd 886 iio_free_chan_devattr_list(&indio_dev->channel_attr_list);
1d892719 887
26d25ae3 888 return ret;
847ec80b
JC
889}
890
f8c6f4e9 891static void iio_device_unregister_sysfs(struct iio_dev *indio_dev)
847ec80b 892{
1d892719 893
84088ebd 894 iio_free_chan_devattr_list(&indio_dev->channel_attr_list);
f8c6f4e9 895 kfree(indio_dev->chan_attr_group.attrs);
847ec80b
JC
896}
897
847ec80b
JC
898static void iio_dev_release(struct device *device)
899{
e53f5ac5 900 struct iio_dev *indio_dev = dev_to_iio_dev(device);
f8c6f4e9
JC
901 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
902 iio_device_unregister_trigger_consumer(indio_dev);
903 iio_device_unregister_eventset(indio_dev);
904 iio_device_unregister_sysfs(indio_dev);
e407fd65 905
9e69c935
LPC
906 iio_buffer_put(indio_dev->buffer);
907
e407fd65
LPC
908 ida_simple_remove(&iio_ida, indio_dev->id);
909 kfree(indio_dev);
847ec80b
JC
910}
911
17d82b47 912struct device_type iio_device_type = {
847ec80b
JC
913 .name = "iio_device",
914 .release = iio_dev_release,
915};
916
a7e57dce
SK
917/**
918 * iio_device_alloc() - allocate an iio_dev from a driver
919 * @sizeof_priv: Space to allocate for private structure.
920 **/
7cbb7537 921struct iio_dev *iio_device_alloc(int sizeof_priv)
847ec80b 922{
6f7c8ee5
JC
923 struct iio_dev *dev;
924 size_t alloc_size;
925
926 alloc_size = sizeof(struct iio_dev);
927 if (sizeof_priv) {
928 alloc_size = ALIGN(alloc_size, IIO_ALIGN);
929 alloc_size += sizeof_priv;
930 }
931 /* ensure 32-byte alignment of whole construct ? */
932 alloc_size += IIO_ALIGN - 1;
933
934 dev = kzalloc(alloc_size, GFP_KERNEL);
847ec80b
JC
935
936 if (dev) {
26d25ae3 937 dev->dev.groups = dev->groups;
17d82b47 938 dev->dev.type = &iio_device_type;
5aaaeba8 939 dev->dev.bus = &iio_bus_type;
847ec80b
JC
940 device_initialize(&dev->dev);
941 dev_set_drvdata(&dev->dev, (void *)dev);
942 mutex_init(&dev->mlock);
ac917a81 943 mutex_init(&dev->info_exist_lock);
e407fd65 944 INIT_LIST_HEAD(&dev->channel_attr_list);
a9e39f9e
JC
945
946 dev->id = ida_simple_get(&iio_ida, 0, 0, GFP_KERNEL);
947 if (dev->id < 0) {
948 /* cannot use a dev_err as the name isn't available */
3176dd5d 949 pr_err("failed to get device id\n");
a9e39f9e
JC
950 kfree(dev);
951 return NULL;
952 }
953 dev_set_name(&dev->dev, "iio:device%d", dev->id);
84b36ce5 954 INIT_LIST_HEAD(&dev->buffer_list);
847ec80b
JC
955 }
956
957 return dev;
958}
7cbb7537 959EXPORT_SYMBOL(iio_device_alloc);
847ec80b 960
a7e57dce
SK
961/**
962 * iio_device_free() - free an iio_dev from a driver
963 * @dev: the iio_dev associated with the device
964 **/
7cbb7537 965void iio_device_free(struct iio_dev *dev)
847ec80b 966{
e407fd65
LPC
967 if (dev)
968 put_device(&dev->dev);
847ec80b 969}
7cbb7537 970EXPORT_SYMBOL(iio_device_free);
847ec80b 971
9dabaf5e
GS
972static void devm_iio_device_release(struct device *dev, void *res)
973{
974 iio_device_free(*(struct iio_dev **)res);
975}
976
977static int devm_iio_device_match(struct device *dev, void *res, void *data)
978{
979 struct iio_dev **r = res;
980 if (!r || !*r) {
981 WARN_ON(!r || !*r);
982 return 0;
983 }
984 return *r == data;
985}
986
a7e57dce
SK
987/**
988 * devm_iio_device_alloc - Resource-managed iio_device_alloc()
989 * @dev: Device to allocate iio_dev for
990 * @sizeof_priv: Space to allocate for private structure.
991 *
992 * Managed iio_device_alloc. iio_dev allocated with this function is
993 * automatically freed on driver detach.
994 *
995 * If an iio_dev allocated with this function needs to be freed separately,
996 * devm_iio_device_free() must be used.
997 *
998 * RETURNS:
999 * Pointer to allocated iio_dev on success, NULL on failure.
1000 */
9dabaf5e
GS
1001struct iio_dev *devm_iio_device_alloc(struct device *dev, int sizeof_priv)
1002{
1003 struct iio_dev **ptr, *iio_dev;
1004
1005 ptr = devres_alloc(devm_iio_device_release, sizeof(*ptr),
1006 GFP_KERNEL);
1007 if (!ptr)
1008 return NULL;
1009
1010 /* use raw alloc_dr for kmalloc caller tracing */
1011 iio_dev = iio_device_alloc(sizeof_priv);
1012 if (iio_dev) {
1013 *ptr = iio_dev;
1014 devres_add(dev, ptr);
1015 } else {
1016 devres_free(ptr);
1017 }
1018
1019 return iio_dev;
1020}
1021EXPORT_SYMBOL_GPL(devm_iio_device_alloc);
1022
a7e57dce
SK
1023/**
1024 * devm_iio_device_free - Resource-managed iio_device_free()
1025 * @dev: Device this iio_dev belongs to
1026 * @iio_dev: the iio_dev associated with the device
1027 *
1028 * Free iio_dev allocated with devm_iio_device_alloc().
1029 */
9dabaf5e
GS
1030void devm_iio_device_free(struct device *dev, struct iio_dev *iio_dev)
1031{
1032 int rc;
1033
1034 rc = devres_release(dev, devm_iio_device_release,
1035 devm_iio_device_match, iio_dev);
1036 WARN_ON(rc);
1037}
1038EXPORT_SYMBOL_GPL(devm_iio_device_free);
1039
1aa04278 1040/**
14555b14 1041 * iio_chrdev_open() - chrdev file open for buffer access and ioctls
1aa04278
JC
1042 **/
1043static int iio_chrdev_open(struct inode *inode, struct file *filp)
1044{
f8c6f4e9 1045 struct iio_dev *indio_dev = container_of(inode->i_cdev,
1aa04278 1046 struct iio_dev, chrdev);
bb01443e
LPC
1047
1048 if (test_and_set_bit(IIO_BUSY_BIT_POS, &indio_dev->flags))
1049 return -EBUSY;
1050
cadc2125
LPC
1051 iio_device_get(indio_dev);
1052
f8c6f4e9 1053 filp->private_data = indio_dev;
30eb82f0 1054
79335140 1055 return 0;
1aa04278
JC
1056}
1057
1058/**
14555b14 1059 * iio_chrdev_release() - chrdev file close buffer access and ioctls
1aa04278
JC
1060 **/
1061static int iio_chrdev_release(struct inode *inode, struct file *filp)
1062{
bb01443e
LPC
1063 struct iio_dev *indio_dev = container_of(inode->i_cdev,
1064 struct iio_dev, chrdev);
bb01443e 1065 clear_bit(IIO_BUSY_BIT_POS, &indio_dev->flags);
cadc2125
LPC
1066 iio_device_put(indio_dev);
1067
1aa04278
JC
1068 return 0;
1069}
1070
1071/* Somewhat of a cross file organization violation - ioctls here are actually
1072 * event related */
1073static long iio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1074{
1075 struct iio_dev *indio_dev = filp->private_data;
1076 int __user *ip = (int __user *)arg;
1077 int fd;
1078
f18e7a06
LPC
1079 if (!indio_dev->info)
1080 return -ENODEV;
1081
1aa04278
JC
1082 if (cmd == IIO_GET_EVENT_FD_IOCTL) {
1083 fd = iio_event_getfd(indio_dev);
1084 if (copy_to_user(ip, &fd, sizeof(fd)))
1085 return -EFAULT;
1086 return 0;
1087 }
1088 return -EINVAL;
1089}
1090
14555b14
JC
1091static const struct file_operations iio_buffer_fileops = {
1092 .read = iio_buffer_read_first_n_outer_addr,
1aa04278
JC
1093 .release = iio_chrdev_release,
1094 .open = iio_chrdev_open,
14555b14 1095 .poll = iio_buffer_poll_addr,
1aa04278
JC
1096 .owner = THIS_MODULE,
1097 .llseek = noop_llseek,
1098 .unlocked_ioctl = iio_ioctl,
1099 .compat_ioctl = iio_ioctl,
1100};
1101
0f1acee5
MH
1102static const struct iio_buffer_setup_ops noop_ring_setup_ops;
1103
a7e57dce
SK
1104/**
1105 * iio_device_register() - register a device with the IIO subsystem
1106 * @indio_dev: Device structure filled by the device driver
1107 **/
f8c6f4e9 1108int iio_device_register(struct iio_dev *indio_dev)
847ec80b
JC
1109{
1110 int ret;
1111
17d82b47
GR
1112 /* If the calling driver did not initialize of_node, do it here */
1113 if (!indio_dev->dev.of_node && indio_dev->dev.parent)
1114 indio_dev->dev.of_node = indio_dev->dev.parent->of_node;
1115
1aa04278 1116 /* configure elements for the chrdev */
f8c6f4e9 1117 indio_dev->dev.devt = MKDEV(MAJOR(iio_devt), indio_dev->id);
847ec80b 1118
e553f182
MH
1119 ret = iio_device_register_debugfs(indio_dev);
1120 if (ret) {
1121 dev_err(indio_dev->dev.parent,
1122 "Failed to register debugfs interfaces\n");
92825ff9 1123 return ret;
e553f182 1124 }
f8c6f4e9 1125 ret = iio_device_register_sysfs(indio_dev);
847ec80b 1126 if (ret) {
f8c6f4e9 1127 dev_err(indio_dev->dev.parent,
847ec80b 1128 "Failed to register sysfs interfaces\n");
e553f182 1129 goto error_unreg_debugfs;
847ec80b 1130 }
f8c6f4e9 1131 ret = iio_device_register_eventset(indio_dev);
847ec80b 1132 if (ret) {
f8c6f4e9 1133 dev_err(indio_dev->dev.parent,
c849d253 1134 "Failed to register event set\n");
847ec80b
JC
1135 goto error_free_sysfs;
1136 }
f8c6f4e9
JC
1137 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
1138 iio_device_register_trigger_consumer(indio_dev);
847ec80b 1139
0f1acee5
MH
1140 if ((indio_dev->modes & INDIO_ALL_BUFFER_MODES) &&
1141 indio_dev->setup_ops == NULL)
1142 indio_dev->setup_ops = &noop_ring_setup_ops;
1143
f8c6f4e9
JC
1144 cdev_init(&indio_dev->chrdev, &iio_buffer_fileops);
1145 indio_dev->chrdev.owner = indio_dev->info->driver_module;
0d5b7dae 1146 indio_dev->chrdev.kobj.parent = &indio_dev->dev.kobj;
f8c6f4e9 1147 ret = cdev_add(&indio_dev->chrdev, indio_dev->dev.devt, 1);
26d25ae3 1148 if (ret < 0)
0d5b7dae 1149 goto error_unreg_eventset;
847ec80b 1150
0d5b7dae
LPC
1151 ret = device_add(&indio_dev->dev);
1152 if (ret < 0)
1153 goto error_cdev_del;
1154
1155 return 0;
1156error_cdev_del:
1157 cdev_del(&indio_dev->chrdev);
26d25ae3 1158error_unreg_eventset:
f8c6f4e9 1159 iio_device_unregister_eventset(indio_dev);
26d25ae3 1160error_free_sysfs:
f8c6f4e9 1161 iio_device_unregister_sysfs(indio_dev);
e553f182
MH
1162error_unreg_debugfs:
1163 iio_device_unregister_debugfs(indio_dev);
847ec80b
JC
1164 return ret;
1165}
1166EXPORT_SYMBOL(iio_device_register);
1167
a7e57dce
SK
1168/**
1169 * iio_device_unregister() - unregister a device from the IIO subsystem
1170 * @indio_dev: Device structure representing the device.
1171 **/
f8c6f4e9 1172void iio_device_unregister(struct iio_dev *indio_dev)
847ec80b 1173{
ac917a81 1174 mutex_lock(&indio_dev->info_exist_lock);
a87c82e4
LPC
1175
1176 device_del(&indio_dev->dev);
1177
0d5b7dae
LPC
1178 if (indio_dev->chrdev.dev)
1179 cdev_del(&indio_dev->chrdev);
bc4c9612 1180 iio_device_unregister_debugfs(indio_dev);
0d5b7dae 1181
a87c82e4
LPC
1182 iio_disable_all_buffers(indio_dev);
1183
ac917a81 1184 indio_dev->info = NULL;
d2f0a48f
LPC
1185
1186 iio_device_wakeup_eventset(indio_dev);
1187 iio_buffer_wakeup_poll(indio_dev);
1188
ac917a81 1189 mutex_unlock(&indio_dev->info_exist_lock);
847ec80b
JC
1190}
1191EXPORT_SYMBOL(iio_device_unregister);
8caa07c0
SK
1192
1193static void devm_iio_device_unreg(struct device *dev, void *res)
1194{
1195 iio_device_unregister(*(struct iio_dev **)res);
1196}
1197
1198/**
1199 * devm_iio_device_register - Resource-managed iio_device_register()
1200 * @dev: Device to allocate iio_dev for
1201 * @indio_dev: Device structure filled by the device driver
1202 *
1203 * Managed iio_device_register. The IIO device registered with this
1204 * function is automatically unregistered on driver detach. This function
1205 * calls iio_device_register() internally. Refer to that function for more
1206 * information.
1207 *
1208 * If an iio_dev registered with this function needs to be unregistered
1209 * separately, devm_iio_device_unregister() must be used.
1210 *
1211 * RETURNS:
1212 * 0 on success, negative error number on failure.
1213 */
1214int devm_iio_device_register(struct device *dev, struct iio_dev *indio_dev)
1215{
1216 struct iio_dev **ptr;
1217 int ret;
1218
1219 ptr = devres_alloc(devm_iio_device_unreg, sizeof(*ptr), GFP_KERNEL);
1220 if (!ptr)
1221 return -ENOMEM;
1222
1223 *ptr = indio_dev;
1224 ret = iio_device_register(indio_dev);
1225 if (!ret)
1226 devres_add(dev, ptr);
1227 else
1228 devres_free(ptr);
1229
1230 return ret;
1231}
1232EXPORT_SYMBOL_GPL(devm_iio_device_register);
1233
1234/**
1235 * devm_iio_device_unregister - Resource-managed iio_device_unregister()
1236 * @dev: Device this iio_dev belongs to
1237 * @indio_dev: the iio_dev associated with the device
1238 *
1239 * Unregister iio_dev registered with devm_iio_device_register().
1240 */
1241void devm_iio_device_unregister(struct device *dev, struct iio_dev *indio_dev)
1242{
1243 int rc;
1244
1245 rc = devres_release(dev, devm_iio_device_unreg,
1246 devm_iio_device_match, indio_dev);
1247 WARN_ON(rc);
1248}
1249EXPORT_SYMBOL_GPL(devm_iio_device_unregister);
1250
847ec80b
JC
1251subsys_initcall(iio_init);
1252module_exit(iio_exit);
1253
c8b95952 1254MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>");
847ec80b
JC
1255MODULE_DESCRIPTION("Industrial I/O core");
1256MODULE_LICENSE("GPL");