1 /* The industrial I/O core
3 * Copyright (c) 2008 Jonathan Cameron
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.
9 * Based on elements of hwmon and input subsystems.
12 #define pr_fmt(fmt) "iio-core: " fmt
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>
21 #include <linux/poll.h>
22 #include <linux/sched.h>
23 #include <linux/wait.h>
24 #include <linux/cdev.h>
25 #include <linux/slab.h>
26 #include <linux/anon_inodes.h>
27 #include <linux/debugfs.h>
28 #include <linux/mutex.h>
29 #include <linux/iio/iio.h>
31 #include "iio_core_trigger.h"
32 #include <linux/iio/sysfs.h>
33 #include <linux/iio/events.h>
34 #include <linux/iio/buffer.h>
35 #include <linux/iio/buffer_impl.h>
37 /* IDA to assign each registered device a unique id */
38 static DEFINE_IDA(iio_ida
);
40 static dev_t iio_devt
;
42 #define IIO_DEV_MAX 256
43 struct bus_type iio_bus_type
= {
46 EXPORT_SYMBOL(iio_bus_type
);
48 static struct dentry
*iio_debugfs_dentry
;
50 static const char * const iio_direction
[] = {
55 static const char * const iio_chan_type_name_spec
[] = {
56 [IIO_VOLTAGE
] = "voltage",
57 [IIO_CURRENT
] = "current",
58 [IIO_POWER
] = "power",
59 [IIO_ACCEL
] = "accel",
60 [IIO_ANGL_VEL
] = "anglvel",
62 [IIO_LIGHT
] = "illuminance",
63 [IIO_INTENSITY
] = "intensity",
64 [IIO_PROXIMITY
] = "proximity",
66 [IIO_INCLI
] = "incli",
69 [IIO_TIMESTAMP
] = "timestamp",
70 [IIO_CAPACITANCE
] = "capacitance",
71 [IIO_ALTVOLTAGE
] = "altvoltage",
73 [IIO_PRESSURE
] = "pressure",
74 [IIO_HUMIDITYRELATIVE
] = "humidityrelative",
75 [IIO_ACTIVITY
] = "activity",
76 [IIO_STEPS
] = "steps",
77 [IIO_ENERGY
] = "energy",
78 [IIO_DISTANCE
] = "distance",
79 [IIO_VELOCITY
] = "velocity",
80 [IIO_CONCENTRATION
] = "concentration",
81 [IIO_RESISTANCE
] = "resistance",
83 [IIO_UVINDEX
] = "uvindex",
84 [IIO_ELECTRICALCONDUCTIVITY
] = "electricalconductivity",
85 [IIO_COUNT
] = "count",
86 [IIO_INDEX
] = "index",
87 [IIO_GRAVITY
] = "gravity",
88 [IIO_POSITIONRELATIVE
] = "positionrelative",
89 [IIO_PHASE
] = "phase",
92 static const char * const iio_modifier_names
[] = {
96 [IIO_MOD_X_AND_Y
] = "x&y",
97 [IIO_MOD_X_AND_Z
] = "x&z",
98 [IIO_MOD_Y_AND_Z
] = "y&z",
99 [IIO_MOD_X_AND_Y_AND_Z
] = "x&y&z",
100 [IIO_MOD_X_OR_Y
] = "x|y",
101 [IIO_MOD_X_OR_Z
] = "x|z",
102 [IIO_MOD_Y_OR_Z
] = "y|z",
103 [IIO_MOD_X_OR_Y_OR_Z
] = "x|y|z",
104 [IIO_MOD_ROOT_SUM_SQUARED_X_Y
] = "sqrt(x^2+y^2)",
105 [IIO_MOD_SUM_SQUARED_X_Y_Z
] = "x^2+y^2+z^2",
106 [IIO_MOD_LIGHT_BOTH
] = "both",
107 [IIO_MOD_LIGHT_IR
] = "ir",
108 [IIO_MOD_LIGHT_CLEAR
] = "clear",
109 [IIO_MOD_LIGHT_RED
] = "red",
110 [IIO_MOD_LIGHT_GREEN
] = "green",
111 [IIO_MOD_LIGHT_BLUE
] = "blue",
112 [IIO_MOD_LIGHT_UV
] = "uv",
113 [IIO_MOD_LIGHT_DUV
] = "duv",
114 [IIO_MOD_QUATERNION
] = "quaternion",
115 [IIO_MOD_TEMP_AMBIENT
] = "ambient",
116 [IIO_MOD_TEMP_OBJECT
] = "object",
117 [IIO_MOD_NORTH_MAGN
] = "from_north_magnetic",
118 [IIO_MOD_NORTH_TRUE
] = "from_north_true",
119 [IIO_MOD_NORTH_MAGN_TILT_COMP
] = "from_north_magnetic_tilt_comp",
120 [IIO_MOD_NORTH_TRUE_TILT_COMP
] = "from_north_true_tilt_comp",
121 [IIO_MOD_RUNNING
] = "running",
122 [IIO_MOD_JOGGING
] = "jogging",
123 [IIO_MOD_WALKING
] = "walking",
124 [IIO_MOD_STILL
] = "still",
125 [IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z
] = "sqrt(x^2+y^2+z^2)",
128 [IIO_MOD_CO2
] = "co2",
129 [IIO_MOD_VOC
] = "voc",
132 /* relies on pairs of these shared then separate */
133 static const char * const iio_chan_info_postfix
[] = {
134 [IIO_CHAN_INFO_RAW
] = "raw",
135 [IIO_CHAN_INFO_PROCESSED
] = "input",
136 [IIO_CHAN_INFO_SCALE
] = "scale",
137 [IIO_CHAN_INFO_OFFSET
] = "offset",
138 [IIO_CHAN_INFO_CALIBSCALE
] = "calibscale",
139 [IIO_CHAN_INFO_CALIBBIAS
] = "calibbias",
140 [IIO_CHAN_INFO_PEAK
] = "peak_raw",
141 [IIO_CHAN_INFO_PEAK_SCALE
] = "peak_scale",
142 [IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW
] = "quadrature_correction_raw",
143 [IIO_CHAN_INFO_AVERAGE_RAW
] = "mean_raw",
144 [IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY
]
145 = "filter_low_pass_3db_frequency",
146 [IIO_CHAN_INFO_HIGH_PASS_FILTER_3DB_FREQUENCY
]
147 = "filter_high_pass_3db_frequency",
148 [IIO_CHAN_INFO_SAMP_FREQ
] = "sampling_frequency",
149 [IIO_CHAN_INFO_FREQUENCY
] = "frequency",
150 [IIO_CHAN_INFO_PHASE
] = "phase",
151 [IIO_CHAN_INFO_HARDWAREGAIN
] = "hardwaregain",
152 [IIO_CHAN_INFO_HYSTERESIS
] = "hysteresis",
153 [IIO_CHAN_INFO_INT_TIME
] = "integration_time",
154 [IIO_CHAN_INFO_ENABLE
] = "en",
155 [IIO_CHAN_INFO_CALIBHEIGHT
] = "calibheight",
156 [IIO_CHAN_INFO_CALIBWEIGHT
] = "calibweight",
157 [IIO_CHAN_INFO_DEBOUNCE_COUNT
] = "debounce_count",
158 [IIO_CHAN_INFO_DEBOUNCE_TIME
] = "debounce_time",
159 [IIO_CHAN_INFO_CALIBEMISSIVITY
] = "calibemissivity",
160 [IIO_CHAN_INFO_OVERSAMPLING_RATIO
] = "oversampling_ratio",
164 * iio_find_channel_from_si() - get channel from its scan index
166 * @si: scan index to match
168 const struct iio_chan_spec
169 *iio_find_channel_from_si(struct iio_dev
*indio_dev
, int si
)
173 for (i
= 0; i
< indio_dev
->num_channels
; i
++)
174 if (indio_dev
->channels
[i
].scan_index
== si
)
175 return &indio_dev
->channels
[i
];
179 /* This turns up an awful lot */
180 ssize_t
iio_read_const_attr(struct device
*dev
,
181 struct device_attribute
*attr
,
184 return sprintf(buf
, "%s\n", to_iio_const_attr(attr
)->string
);
186 EXPORT_SYMBOL(iio_read_const_attr
);
188 static int iio_device_set_clock(struct iio_dev
*indio_dev
, clockid_t clock_id
)
191 const struct iio_event_interface
*ev_int
= indio_dev
->event_interface
;
193 ret
= mutex_lock_interruptible(&indio_dev
->mlock
);
196 if ((ev_int
&& iio_event_enabled(ev_int
)) ||
197 iio_buffer_enabled(indio_dev
)) {
198 mutex_unlock(&indio_dev
->mlock
);
201 indio_dev
->clock_id
= clock_id
;
202 mutex_unlock(&indio_dev
->mlock
);
208 * iio_get_time_ns() - utility function to get a time stamp for events etc
211 s64
iio_get_time_ns(const struct iio_dev
*indio_dev
)
213 struct timespec64 tp
;
215 switch (iio_device_get_clock(indio_dev
)) {
217 return ktime_get_real_ns();
218 case CLOCK_MONOTONIC
:
219 return ktime_get_ns();
220 case CLOCK_MONOTONIC_RAW
:
221 return ktime_get_raw_ns();
222 case CLOCK_REALTIME_COARSE
:
223 return ktime_to_ns(ktime_get_coarse_real());
224 case CLOCK_MONOTONIC_COARSE
:
225 ktime_get_coarse_ts64(&tp
);
226 return timespec64_to_ns(&tp
);
228 return ktime_get_boot_ns();
230 return ktime_get_tai_ns();
235 EXPORT_SYMBOL(iio_get_time_ns
);
238 * iio_get_time_res() - utility function to get time stamp clock resolution in
242 unsigned int iio_get_time_res(const struct iio_dev
*indio_dev
)
244 switch (iio_device_get_clock(indio_dev
)) {
246 case CLOCK_MONOTONIC
:
247 case CLOCK_MONOTONIC_RAW
:
250 return hrtimer_resolution
;
251 case CLOCK_REALTIME_COARSE
:
252 case CLOCK_MONOTONIC_COARSE
:
258 EXPORT_SYMBOL(iio_get_time_res
);
260 static int __init
iio_init(void)
264 /* Register sysfs bus */
265 ret
= bus_register(&iio_bus_type
);
267 pr_err("could not register bus type\n");
271 ret
= alloc_chrdev_region(&iio_devt
, 0, IIO_DEV_MAX
, "iio");
273 pr_err("failed to allocate char dev region\n");
274 goto error_unregister_bus_type
;
277 iio_debugfs_dentry
= debugfs_create_dir("iio", NULL
);
281 error_unregister_bus_type
:
282 bus_unregister(&iio_bus_type
);
287 static void __exit
iio_exit(void)
290 unregister_chrdev_region(iio_devt
, IIO_DEV_MAX
);
291 bus_unregister(&iio_bus_type
);
292 debugfs_remove(iio_debugfs_dentry
);
295 #if defined(CONFIG_DEBUG_FS)
296 static ssize_t
iio_debugfs_read_reg(struct file
*file
, char __user
*userbuf
,
297 size_t count
, loff_t
*ppos
)
299 struct iio_dev
*indio_dev
= file
->private_data
;
305 ret
= indio_dev
->info
->debugfs_reg_access(indio_dev
,
306 indio_dev
->cached_reg_addr
,
309 dev_err(indio_dev
->dev
.parent
, "%s: read failed\n", __func__
);
313 len
= snprintf(buf
, sizeof(buf
), "0x%X\n", val
);
315 return simple_read_from_buffer(userbuf
, count
, ppos
, buf
, len
);
318 static ssize_t
iio_debugfs_write_reg(struct file
*file
,
319 const char __user
*userbuf
, size_t count
, loff_t
*ppos
)
321 struct iio_dev
*indio_dev
= file
->private_data
;
326 count
= min_t(size_t, count
, (sizeof(buf
)-1));
327 if (copy_from_user(buf
, userbuf
, count
))
332 ret
= sscanf(buf
, "%i %i", ®
, &val
);
336 indio_dev
->cached_reg_addr
= reg
;
339 indio_dev
->cached_reg_addr
= reg
;
340 ret
= indio_dev
->info
->debugfs_reg_access(indio_dev
, reg
,
343 dev_err(indio_dev
->dev
.parent
, "%s: write failed\n",
355 static const struct file_operations iio_debugfs_reg_fops
= {
357 .read
= iio_debugfs_read_reg
,
358 .write
= iio_debugfs_write_reg
,
361 static void iio_device_unregister_debugfs(struct iio_dev
*indio_dev
)
363 debugfs_remove_recursive(indio_dev
->debugfs_dentry
);
366 static int iio_device_register_debugfs(struct iio_dev
*indio_dev
)
370 if (indio_dev
->info
->debugfs_reg_access
== NULL
)
373 if (!iio_debugfs_dentry
)
376 indio_dev
->debugfs_dentry
=
377 debugfs_create_dir(dev_name(&indio_dev
->dev
),
379 if (indio_dev
->debugfs_dentry
== NULL
) {
380 dev_warn(indio_dev
->dev
.parent
,
381 "Failed to create debugfs directory\n");
385 d
= debugfs_create_file("direct_reg_access", 0644,
386 indio_dev
->debugfs_dentry
,
387 indio_dev
, &iio_debugfs_reg_fops
);
389 iio_device_unregister_debugfs(indio_dev
);
396 static int iio_device_register_debugfs(struct iio_dev
*indio_dev
)
401 static void iio_device_unregister_debugfs(struct iio_dev
*indio_dev
)
404 #endif /* CONFIG_DEBUG_FS */
406 static ssize_t
iio_read_channel_ext_info(struct device
*dev
,
407 struct device_attribute
*attr
,
410 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
411 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
412 const struct iio_chan_spec_ext_info
*ext_info
;
414 ext_info
= &this_attr
->c
->ext_info
[this_attr
->address
];
416 return ext_info
->read(indio_dev
, ext_info
->private, this_attr
->c
, buf
);
419 static ssize_t
iio_write_channel_ext_info(struct device
*dev
,
420 struct device_attribute
*attr
,
424 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
425 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
426 const struct iio_chan_spec_ext_info
*ext_info
;
428 ext_info
= &this_attr
->c
->ext_info
[this_attr
->address
];
430 return ext_info
->write(indio_dev
, ext_info
->private,
431 this_attr
->c
, buf
, len
);
434 ssize_t
iio_enum_available_read(struct iio_dev
*indio_dev
,
435 uintptr_t priv
, const struct iio_chan_spec
*chan
, char *buf
)
437 const struct iio_enum
*e
= (const struct iio_enum
*)priv
;
444 for (i
= 0; i
< e
->num_items
; ++i
)
445 len
+= scnprintf(buf
+ len
, PAGE_SIZE
- len
, "%s ", e
->items
[i
]);
447 /* replace last space with a newline */
452 EXPORT_SYMBOL_GPL(iio_enum_available_read
);
454 ssize_t
iio_enum_read(struct iio_dev
*indio_dev
,
455 uintptr_t priv
, const struct iio_chan_spec
*chan
, char *buf
)
457 const struct iio_enum
*e
= (const struct iio_enum
*)priv
;
463 i
= e
->get(indio_dev
, chan
);
466 else if (i
>= e
->num_items
)
469 return snprintf(buf
, PAGE_SIZE
, "%s\n", e
->items
[i
]);
471 EXPORT_SYMBOL_GPL(iio_enum_read
);
473 ssize_t
iio_enum_write(struct iio_dev
*indio_dev
,
474 uintptr_t priv
, const struct iio_chan_spec
*chan
, const char *buf
,
477 const struct iio_enum
*e
= (const struct iio_enum
*)priv
;
483 ret
= __sysfs_match_string(e
->items
, e
->num_items
, buf
);
487 ret
= e
->set(indio_dev
, chan
, ret
);
488 return ret
? ret
: len
;
490 EXPORT_SYMBOL_GPL(iio_enum_write
);
492 static const struct iio_mount_matrix iio_mount_idmatrix
= {
500 static int iio_setup_mount_idmatrix(const struct device
*dev
,
501 struct iio_mount_matrix
*matrix
)
503 *matrix
= iio_mount_idmatrix
;
504 dev_info(dev
, "mounting matrix not found: using identity...\n");
508 ssize_t
iio_show_mount_matrix(struct iio_dev
*indio_dev
, uintptr_t priv
,
509 const struct iio_chan_spec
*chan
, char *buf
)
511 const struct iio_mount_matrix
*mtx
= ((iio_get_mount_matrix_t
*)
512 priv
)(indio_dev
, chan
);
518 mtx
= &iio_mount_idmatrix
;
520 return snprintf(buf
, PAGE_SIZE
, "%s, %s, %s; %s, %s, %s; %s, %s, %s\n",
521 mtx
->rotation
[0], mtx
->rotation
[1], mtx
->rotation
[2],
522 mtx
->rotation
[3], mtx
->rotation
[4], mtx
->rotation
[5],
523 mtx
->rotation
[6], mtx
->rotation
[7], mtx
->rotation
[8]);
525 EXPORT_SYMBOL_GPL(iio_show_mount_matrix
);
528 * of_iio_read_mount_matrix() - retrieve iio device mounting matrix from
529 * device-tree "mount-matrix" property
530 * @dev: device the mounting matrix property is assigned to
531 * @propname: device specific mounting matrix property name
532 * @matrix: where to store retrieved matrix
534 * If device is assigned no mounting matrix property, a default 3x3 identity
535 * matrix will be filled in.
537 * Return: 0 if success, or a negative error code on failure.
540 int of_iio_read_mount_matrix(const struct device
*dev
,
541 const char *propname
,
542 struct iio_mount_matrix
*matrix
)
545 int err
= of_property_read_string_array(dev
->of_node
,
546 propname
, matrix
->rotation
,
547 ARRAY_SIZE(iio_mount_idmatrix
.rotation
));
549 if (err
== ARRAY_SIZE(iio_mount_idmatrix
.rotation
))
553 /* Invalid number of matrix entries. */
557 /* Invalid matrix declaration format. */
561 /* Matrix was not declared at all: fallback to identity. */
562 return iio_setup_mount_idmatrix(dev
, matrix
);
565 int of_iio_read_mount_matrix(const struct device
*dev
,
566 const char *propname
,
567 struct iio_mount_matrix
*matrix
)
569 return iio_setup_mount_idmatrix(dev
, matrix
);
572 EXPORT_SYMBOL(of_iio_read_mount_matrix
);
574 static ssize_t
__iio_format_value(char *buf
, size_t len
, unsigned int type
,
575 int size
, const int *vals
)
577 unsigned long long tmp
;
579 bool scale_db
= false;
583 return snprintf(buf
, len
, "%d", vals
[0]);
584 case IIO_VAL_INT_PLUS_MICRO_DB
:
587 case IIO_VAL_INT_PLUS_MICRO
:
589 return snprintf(buf
, len
, "-%d.%06u%s", abs(vals
[0]),
590 -vals
[1], scale_db
? " dB" : "");
592 return snprintf(buf
, len
, "%d.%06u%s", vals
[0], vals
[1],
593 scale_db
? " dB" : "");
594 case IIO_VAL_INT_PLUS_NANO
:
596 return snprintf(buf
, len
, "-%d.%09u", abs(vals
[0]),
599 return snprintf(buf
, len
, "%d.%09u", vals
[0], vals
[1]);
600 case IIO_VAL_FRACTIONAL
:
601 tmp
= div_s64((s64
)vals
[0] * 1000000000LL, vals
[1]);
603 tmp0
= (int)div_s64_rem(tmp
, 1000000000, &tmp1
);
604 return snprintf(buf
, len
, "%d.%09u", tmp0
, abs(tmp1
));
605 case IIO_VAL_FRACTIONAL_LOG2
:
606 tmp
= shift_right((s64
)vals
[0] * 1000000000LL, vals
[1]);
607 tmp0
= (int)div_s64_rem(tmp
, 1000000000LL, &tmp1
);
608 return snprintf(buf
, len
, "%d.%09u", tmp0
, abs(tmp1
));
609 case IIO_VAL_INT_MULTIPLE
:
614 for (i
= 0; i
< size
; ++i
) {
615 l
+= snprintf(&buf
[l
], len
- l
, "%d ", vals
[i
]);
627 * iio_format_value() - Formats a IIO value into its string representation
628 * @buf: The buffer to which the formatted value gets written
629 * which is assumed to be big enough (i.e. PAGE_SIZE).
630 * @type: One of the IIO_VAL_* constants. This decides how the val
631 * and val2 parameters are formatted.
632 * @size: Number of IIO value entries contained in vals
633 * @vals: Pointer to the values, exact meaning depends on the
636 * Return: 0 by default, a negative number on failure or the
637 * total number of characters written for a type that belongs
638 * to the IIO_VAL_* constant.
640 ssize_t
iio_format_value(char *buf
, unsigned int type
, int size
, int *vals
)
644 len
= __iio_format_value(buf
, PAGE_SIZE
, type
, size
, vals
);
645 if (len
>= PAGE_SIZE
- 1)
648 return len
+ sprintf(buf
+ len
, "\n");
650 EXPORT_SYMBOL_GPL(iio_format_value
);
652 static ssize_t
iio_read_channel_info(struct device
*dev
,
653 struct device_attribute
*attr
,
656 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
657 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
658 int vals
[INDIO_MAX_RAW_ELEMENTS
];
662 if (indio_dev
->info
->read_raw_multi
)
663 ret
= indio_dev
->info
->read_raw_multi(indio_dev
, this_attr
->c
,
664 INDIO_MAX_RAW_ELEMENTS
,
668 ret
= indio_dev
->info
->read_raw(indio_dev
, this_attr
->c
,
669 &vals
[0], &vals
[1], this_attr
->address
);
674 return iio_format_value(buf
, ret
, val_len
, vals
);
677 static ssize_t
iio_format_avail_list(char *buf
, const int *vals
,
678 int type
, int length
)
685 for (i
= 0; i
< length
; i
++) {
686 len
+= __iio_format_value(buf
+ len
, PAGE_SIZE
- len
,
688 if (len
>= PAGE_SIZE
)
691 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
694 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
696 if (len
>= PAGE_SIZE
)
701 for (i
= 0; i
< length
/ 2; i
++) {
702 len
+= __iio_format_value(buf
+ len
, PAGE_SIZE
- len
,
703 type
, 2, &vals
[i
* 2]);
704 if (len
>= PAGE_SIZE
)
706 if (i
< length
/ 2 - 1)
707 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
710 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
712 if (len
>= PAGE_SIZE
)
720 static ssize_t
iio_format_avail_range(char *buf
, const int *vals
, int type
)
725 len
= snprintf(buf
, PAGE_SIZE
, "[");
728 for (i
= 0; i
< 3; i
++) {
729 len
+= __iio_format_value(buf
+ len
, PAGE_SIZE
- len
,
731 if (len
>= PAGE_SIZE
)
734 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
737 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
739 if (len
>= PAGE_SIZE
)
744 for (i
= 0; i
< 3; i
++) {
745 len
+= __iio_format_value(buf
+ len
, PAGE_SIZE
- len
,
746 type
, 2, &vals
[i
* 2]);
747 if (len
>= PAGE_SIZE
)
750 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
753 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
755 if (len
>= PAGE_SIZE
)
763 static ssize_t
iio_read_channel_info_avail(struct device
*dev
,
764 struct device_attribute
*attr
,
767 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
768 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
774 ret
= indio_dev
->info
->read_avail(indio_dev
, this_attr
->c
,
775 &vals
, &type
, &length
,
782 return iio_format_avail_list(buf
, vals
, type
, length
);
783 case IIO_AVAIL_RANGE
:
784 return iio_format_avail_range(buf
, vals
, type
);
791 * iio_str_to_fixpoint() - Parse a fixed-point number from a string
792 * @str: The string to parse
793 * @fract_mult: Multiplier for the first decimal place, should be a power of 10
794 * @integer: The integer part of the number
795 * @fract: The fractional part of the number
797 * Returns 0 on success, or a negative error code if the string could not be
800 int iio_str_to_fixpoint(const char *str
, int fract_mult
,
801 int *integer
, int *fract
)
804 bool integer_part
= true, negative
= false;
806 if (fract_mult
== 0) {
809 return kstrtoint(str
, 0, integer
);
815 } else if (str
[0] == '+') {
820 if ('0' <= *str
&& *str
<= '9') {
822 i
= i
* 10 + *str
- '0';
824 f
+= fract_mult
* (*str
- '0');
827 } else if (*str
== '\n') {
828 if (*(str
+ 1) == '\0')
832 } else if (*str
== '.' && integer_part
) {
833 integer_part
= false;
852 EXPORT_SYMBOL_GPL(iio_str_to_fixpoint
);
854 static ssize_t
iio_write_channel_info(struct device
*dev
,
855 struct device_attribute
*attr
,
859 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
860 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
861 int ret
, fract_mult
= 100000;
864 /* Assumes decimal - precision based on number of digits */
865 if (!indio_dev
->info
->write_raw
)
868 if (indio_dev
->info
->write_raw_get_fmt
)
869 switch (indio_dev
->info
->write_raw_get_fmt(indio_dev
,
870 this_attr
->c
, this_attr
->address
)) {
874 case IIO_VAL_INT_PLUS_MICRO
:
877 case IIO_VAL_INT_PLUS_NANO
:
878 fract_mult
= 100000000;
884 ret
= iio_str_to_fixpoint(buf
, fract_mult
, &integer
, &fract
);
888 ret
= indio_dev
->info
->write_raw(indio_dev
, this_attr
->c
,
889 integer
, fract
, this_attr
->address
);
897 int __iio_device_attr_init(struct device_attribute
*dev_attr
,
899 struct iio_chan_spec
const *chan
,
900 ssize_t (*readfunc
)(struct device
*dev
,
901 struct device_attribute
*attr
,
903 ssize_t (*writefunc
)(struct device
*dev
,
904 struct device_attribute
*attr
,
907 enum iio_shared_by shared_by
)
912 sysfs_attr_init(&dev_attr
->attr
);
914 /* Build up postfix of <extend_name>_<modifier>_postfix */
915 if (chan
->modified
&& (shared_by
== IIO_SEPARATE
)) {
916 if (chan
->extend_name
)
917 full_postfix
= kasprintf(GFP_KERNEL
, "%s_%s_%s",
918 iio_modifier_names
[chan
923 full_postfix
= kasprintf(GFP_KERNEL
, "%s_%s",
924 iio_modifier_names
[chan
928 if (chan
->extend_name
== NULL
|| shared_by
!= IIO_SEPARATE
)
929 full_postfix
= kstrdup(postfix
, GFP_KERNEL
);
931 full_postfix
= kasprintf(GFP_KERNEL
,
936 if (full_postfix
== NULL
)
939 if (chan
->differential
) { /* Differential can not have modifier */
941 case IIO_SHARED_BY_ALL
:
942 name
= kasprintf(GFP_KERNEL
, "%s", full_postfix
);
944 case IIO_SHARED_BY_DIR
:
945 name
= kasprintf(GFP_KERNEL
, "%s_%s",
946 iio_direction
[chan
->output
],
949 case IIO_SHARED_BY_TYPE
:
950 name
= kasprintf(GFP_KERNEL
, "%s_%s-%s_%s",
951 iio_direction
[chan
->output
],
952 iio_chan_type_name_spec
[chan
->type
],
953 iio_chan_type_name_spec
[chan
->type
],
957 if (!chan
->indexed
) {
958 WARN(1, "Differential channels must be indexed\n");
960 goto error_free_full_postfix
;
962 name
= kasprintf(GFP_KERNEL
,
964 iio_direction
[chan
->output
],
965 iio_chan_type_name_spec
[chan
->type
],
967 iio_chan_type_name_spec
[chan
->type
],
972 } else { /* Single ended */
974 case IIO_SHARED_BY_ALL
:
975 name
= kasprintf(GFP_KERNEL
, "%s", full_postfix
);
977 case IIO_SHARED_BY_DIR
:
978 name
= kasprintf(GFP_KERNEL
, "%s_%s",
979 iio_direction
[chan
->output
],
982 case IIO_SHARED_BY_TYPE
:
983 name
= kasprintf(GFP_KERNEL
, "%s_%s_%s",
984 iio_direction
[chan
->output
],
985 iio_chan_type_name_spec
[chan
->type
],
991 name
= kasprintf(GFP_KERNEL
, "%s_%s%d_%s",
992 iio_direction
[chan
->output
],
993 iio_chan_type_name_spec
[chan
->type
],
997 name
= kasprintf(GFP_KERNEL
, "%s_%s_%s",
998 iio_direction
[chan
->output
],
999 iio_chan_type_name_spec
[chan
->type
],
1006 goto error_free_full_postfix
;
1008 dev_attr
->attr
.name
= name
;
1011 dev_attr
->attr
.mode
|= S_IRUGO
;
1012 dev_attr
->show
= readfunc
;
1016 dev_attr
->attr
.mode
|= S_IWUSR
;
1017 dev_attr
->store
= writefunc
;
1020 error_free_full_postfix
:
1021 kfree(full_postfix
);
1026 static void __iio_device_attr_deinit(struct device_attribute
*dev_attr
)
1028 kfree(dev_attr
->attr
.name
);
1031 int __iio_add_chan_devattr(const char *postfix
,
1032 struct iio_chan_spec
const *chan
,
1033 ssize_t (*readfunc
)(struct device
*dev
,
1034 struct device_attribute
*attr
,
1036 ssize_t (*writefunc
)(struct device
*dev
,
1037 struct device_attribute
*attr
,
1041 enum iio_shared_by shared_by
,
1043 struct list_head
*attr_list
)
1046 struct iio_dev_attr
*iio_attr
, *t
;
1048 iio_attr
= kzalloc(sizeof(*iio_attr
), GFP_KERNEL
);
1049 if (iio_attr
== NULL
)
1051 ret
= __iio_device_attr_init(&iio_attr
->dev_attr
,
1053 readfunc
, writefunc
, shared_by
);
1055 goto error_iio_dev_attr_free
;
1057 iio_attr
->address
= mask
;
1058 list_for_each_entry(t
, attr_list
, l
)
1059 if (strcmp(t
->dev_attr
.attr
.name
,
1060 iio_attr
->dev_attr
.attr
.name
) == 0) {
1061 if (shared_by
== IIO_SEPARATE
)
1062 dev_err(dev
, "tried to double register : %s\n",
1063 t
->dev_attr
.attr
.name
);
1065 goto error_device_attr_deinit
;
1067 list_add(&iio_attr
->l
, attr_list
);
1071 error_device_attr_deinit
:
1072 __iio_device_attr_deinit(&iio_attr
->dev_attr
);
1073 error_iio_dev_attr_free
:
1078 static int iio_device_add_info_mask_type(struct iio_dev
*indio_dev
,
1079 struct iio_chan_spec
const *chan
,
1080 enum iio_shared_by shared_by
,
1081 const long *infomask
)
1083 int i
, ret
, attrcount
= 0;
1085 for_each_set_bit(i
, infomask
, sizeof(*infomask
)*8) {
1086 if (i
>= ARRAY_SIZE(iio_chan_info_postfix
))
1088 ret
= __iio_add_chan_devattr(iio_chan_info_postfix
[i
],
1090 &iio_read_channel_info
,
1091 &iio_write_channel_info
,
1095 &indio_dev
->channel_attr_list
);
1096 if ((ret
== -EBUSY
) && (shared_by
!= IIO_SEPARATE
))
1106 static int iio_device_add_info_mask_type_avail(struct iio_dev
*indio_dev
,
1107 struct iio_chan_spec
const *chan
,
1108 enum iio_shared_by shared_by
,
1109 const long *infomask
)
1111 int i
, ret
, attrcount
= 0;
1112 char *avail_postfix
;
1114 for_each_set_bit(i
, infomask
, sizeof(*infomask
) * 8) {
1115 avail_postfix
= kasprintf(GFP_KERNEL
,
1117 iio_chan_info_postfix
[i
]);
1121 ret
= __iio_add_chan_devattr(avail_postfix
,
1123 &iio_read_channel_info_avail
,
1128 &indio_dev
->channel_attr_list
);
1129 kfree(avail_postfix
);
1130 if ((ret
== -EBUSY
) && (shared_by
!= IIO_SEPARATE
))
1140 static int iio_device_add_channel_sysfs(struct iio_dev
*indio_dev
,
1141 struct iio_chan_spec
const *chan
)
1143 int ret
, attrcount
= 0;
1144 const struct iio_chan_spec_ext_info
*ext_info
;
1146 if (chan
->channel
< 0)
1148 ret
= iio_device_add_info_mask_type(indio_dev
, chan
,
1150 &chan
->info_mask_separate
);
1155 ret
= iio_device_add_info_mask_type_avail(indio_dev
, chan
,
1158 info_mask_separate_available
);
1163 ret
= iio_device_add_info_mask_type(indio_dev
, chan
,
1165 &chan
->info_mask_shared_by_type
);
1170 ret
= iio_device_add_info_mask_type_avail(indio_dev
, chan
,
1173 info_mask_shared_by_type_available
);
1178 ret
= iio_device_add_info_mask_type(indio_dev
, chan
,
1180 &chan
->info_mask_shared_by_dir
);
1185 ret
= iio_device_add_info_mask_type_avail(indio_dev
, chan
,
1187 &chan
->info_mask_shared_by_dir_available
);
1192 ret
= iio_device_add_info_mask_type(indio_dev
, chan
,
1194 &chan
->info_mask_shared_by_all
);
1199 ret
= iio_device_add_info_mask_type_avail(indio_dev
, chan
,
1201 &chan
->info_mask_shared_by_all_available
);
1206 if (chan
->ext_info
) {
1208 for (ext_info
= chan
->ext_info
; ext_info
->name
; ext_info
++) {
1209 ret
= __iio_add_chan_devattr(ext_info
->name
,
1212 &iio_read_channel_ext_info
: NULL
,
1214 &iio_write_channel_ext_info
: NULL
,
1218 &indio_dev
->channel_attr_list
);
1220 if (ret
== -EBUSY
&& ext_info
->shared
)
1234 * iio_free_chan_devattr_list() - Free a list of IIO device attributes
1235 * @attr_list: List of IIO device attributes
1237 * This function frees the memory allocated for each of the IIO device
1238 * attributes in the list.
1240 void iio_free_chan_devattr_list(struct list_head
*attr_list
)
1242 struct iio_dev_attr
*p
, *n
;
1244 list_for_each_entry_safe(p
, n
, attr_list
, l
) {
1245 kfree(p
->dev_attr
.attr
.name
);
1251 static ssize_t
iio_show_dev_name(struct device
*dev
,
1252 struct device_attribute
*attr
,
1255 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
1256 return snprintf(buf
, PAGE_SIZE
, "%s\n", indio_dev
->name
);
1259 static DEVICE_ATTR(name
, S_IRUGO
, iio_show_dev_name
, NULL
);
1261 static ssize_t
iio_show_timestamp_clock(struct device
*dev
,
1262 struct device_attribute
*attr
,
1265 const struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
1266 const clockid_t clk
= iio_device_get_clock(indio_dev
);
1271 case CLOCK_REALTIME
:
1272 name
= "realtime\n";
1273 sz
= sizeof("realtime\n");
1275 case CLOCK_MONOTONIC
:
1276 name
= "monotonic\n";
1277 sz
= sizeof("monotonic\n");
1279 case CLOCK_MONOTONIC_RAW
:
1280 name
= "monotonic_raw\n";
1281 sz
= sizeof("monotonic_raw\n");
1283 case CLOCK_REALTIME_COARSE
:
1284 name
= "realtime_coarse\n";
1285 sz
= sizeof("realtime_coarse\n");
1287 case CLOCK_MONOTONIC_COARSE
:
1288 name
= "monotonic_coarse\n";
1289 sz
= sizeof("monotonic_coarse\n");
1291 case CLOCK_BOOTTIME
:
1292 name
= "boottime\n";
1293 sz
= sizeof("boottime\n");
1297 sz
= sizeof("tai\n");
1303 memcpy(buf
, name
, sz
);
1307 static ssize_t
iio_store_timestamp_clock(struct device
*dev
,
1308 struct device_attribute
*attr
,
1309 const char *buf
, size_t len
)
1314 if (sysfs_streq(buf
, "realtime"))
1315 clk
= CLOCK_REALTIME
;
1316 else if (sysfs_streq(buf
, "monotonic"))
1317 clk
= CLOCK_MONOTONIC
;
1318 else if (sysfs_streq(buf
, "monotonic_raw"))
1319 clk
= CLOCK_MONOTONIC_RAW
;
1320 else if (sysfs_streq(buf
, "realtime_coarse"))
1321 clk
= CLOCK_REALTIME_COARSE
;
1322 else if (sysfs_streq(buf
, "monotonic_coarse"))
1323 clk
= CLOCK_MONOTONIC_COARSE
;
1324 else if (sysfs_streq(buf
, "boottime"))
1325 clk
= CLOCK_BOOTTIME
;
1326 else if (sysfs_streq(buf
, "tai"))
1331 ret
= iio_device_set_clock(dev_to_iio_dev(dev
), clk
);
1338 static DEVICE_ATTR(current_timestamp_clock
, S_IRUGO
| S_IWUSR
,
1339 iio_show_timestamp_clock
, iio_store_timestamp_clock
);
1341 static int iio_device_register_sysfs(struct iio_dev
*indio_dev
)
1343 int i
, ret
= 0, attrcount
, attrn
, attrcount_orig
= 0;
1344 struct iio_dev_attr
*p
;
1345 struct attribute
**attr
, *clk
= NULL
;
1347 /* First count elements in any existing group */
1348 if (indio_dev
->info
->attrs
) {
1349 attr
= indio_dev
->info
->attrs
->attrs
;
1350 while (*attr
++ != NULL
)
1353 attrcount
= attrcount_orig
;
1355 * New channel registration method - relies on the fact a group does
1356 * not need to be initialized if its name is NULL.
1358 if (indio_dev
->channels
)
1359 for (i
= 0; i
< indio_dev
->num_channels
; i
++) {
1360 const struct iio_chan_spec
*chan
=
1361 &indio_dev
->channels
[i
];
1363 if (chan
->type
== IIO_TIMESTAMP
)
1364 clk
= &dev_attr_current_timestamp_clock
.attr
;
1366 ret
= iio_device_add_channel_sysfs(indio_dev
, chan
);
1368 goto error_clear_attrs
;
1372 if (indio_dev
->event_interface
)
1373 clk
= &dev_attr_current_timestamp_clock
.attr
;
1375 if (indio_dev
->name
)
1380 indio_dev
->chan_attr_group
.attrs
= kcalloc(attrcount
+ 1,
1381 sizeof(indio_dev
->chan_attr_group
.attrs
[0]),
1383 if (indio_dev
->chan_attr_group
.attrs
== NULL
) {
1385 goto error_clear_attrs
;
1387 /* Copy across original attributes */
1388 if (indio_dev
->info
->attrs
)
1389 memcpy(indio_dev
->chan_attr_group
.attrs
,
1390 indio_dev
->info
->attrs
->attrs
,
1391 sizeof(indio_dev
->chan_attr_group
.attrs
[0])
1393 attrn
= attrcount_orig
;
1394 /* Add all elements from the list. */
1395 list_for_each_entry(p
, &indio_dev
->channel_attr_list
, l
)
1396 indio_dev
->chan_attr_group
.attrs
[attrn
++] = &p
->dev_attr
.attr
;
1397 if (indio_dev
->name
)
1398 indio_dev
->chan_attr_group
.attrs
[attrn
++] = &dev_attr_name
.attr
;
1400 indio_dev
->chan_attr_group
.attrs
[attrn
++] = clk
;
1402 indio_dev
->groups
[indio_dev
->groupcounter
++] =
1403 &indio_dev
->chan_attr_group
;
1408 iio_free_chan_devattr_list(&indio_dev
->channel_attr_list
);
1413 static void iio_device_unregister_sysfs(struct iio_dev
*indio_dev
)
1416 iio_free_chan_devattr_list(&indio_dev
->channel_attr_list
);
1417 kfree(indio_dev
->chan_attr_group
.attrs
);
1418 indio_dev
->chan_attr_group
.attrs
= NULL
;
1421 static void iio_dev_release(struct device
*device
)
1423 struct iio_dev
*indio_dev
= dev_to_iio_dev(device
);
1424 if (indio_dev
->modes
& INDIO_ALL_TRIGGERED_MODES
)
1425 iio_device_unregister_trigger_consumer(indio_dev
);
1426 iio_device_unregister_eventset(indio_dev
);
1427 iio_device_unregister_sysfs(indio_dev
);
1429 iio_buffer_put(indio_dev
->buffer
);
1431 ida_simple_remove(&iio_ida
, indio_dev
->id
);
1435 struct device_type iio_device_type
= {
1436 .name
= "iio_device",
1437 .release
= iio_dev_release
,
1441 * iio_device_alloc() - allocate an iio_dev from a driver
1442 * @sizeof_priv: Space to allocate for private structure.
1444 struct iio_dev
*iio_device_alloc(int sizeof_priv
)
1446 struct iio_dev
*dev
;
1449 alloc_size
= sizeof(struct iio_dev
);
1451 alloc_size
= ALIGN(alloc_size
, IIO_ALIGN
);
1452 alloc_size
+= sizeof_priv
;
1454 /* ensure 32-byte alignment of whole construct ? */
1455 alloc_size
+= IIO_ALIGN
- 1;
1457 dev
= kzalloc(alloc_size
, GFP_KERNEL
);
1460 dev
->dev
.groups
= dev
->groups
;
1461 dev
->dev
.type
= &iio_device_type
;
1462 dev
->dev
.bus
= &iio_bus_type
;
1463 device_initialize(&dev
->dev
);
1464 dev_set_drvdata(&dev
->dev
, (void *)dev
);
1465 mutex_init(&dev
->mlock
);
1466 mutex_init(&dev
->info_exist_lock
);
1467 INIT_LIST_HEAD(&dev
->channel_attr_list
);
1469 dev
->id
= ida_simple_get(&iio_ida
, 0, 0, GFP_KERNEL
);
1471 /* cannot use a dev_err as the name isn't available */
1472 pr_err("failed to get device id\n");
1476 dev_set_name(&dev
->dev
, "iio:device%d", dev
->id
);
1477 INIT_LIST_HEAD(&dev
->buffer_list
);
1482 EXPORT_SYMBOL(iio_device_alloc
);
1485 * iio_device_free() - free an iio_dev from a driver
1486 * @dev: the iio_dev associated with the device
1488 void iio_device_free(struct iio_dev
*dev
)
1491 put_device(&dev
->dev
);
1493 EXPORT_SYMBOL(iio_device_free
);
1495 static void devm_iio_device_release(struct device
*dev
, void *res
)
1497 iio_device_free(*(struct iio_dev
**)res
);
1500 int devm_iio_device_match(struct device
*dev
, void *res
, void *data
)
1502 struct iio_dev
**r
= res
;
1509 EXPORT_SYMBOL_GPL(devm_iio_device_match
);
1512 * devm_iio_device_alloc - Resource-managed iio_device_alloc()
1513 * @dev: Device to allocate iio_dev for
1514 * @sizeof_priv: Space to allocate for private structure.
1516 * Managed iio_device_alloc. iio_dev allocated with this function is
1517 * automatically freed on driver detach.
1519 * If an iio_dev allocated with this function needs to be freed separately,
1520 * devm_iio_device_free() must be used.
1523 * Pointer to allocated iio_dev on success, NULL on failure.
1525 struct iio_dev
*devm_iio_device_alloc(struct device
*dev
, int sizeof_priv
)
1527 struct iio_dev
**ptr
, *iio_dev
;
1529 ptr
= devres_alloc(devm_iio_device_release
, sizeof(*ptr
),
1534 iio_dev
= iio_device_alloc(sizeof_priv
);
1537 devres_add(dev
, ptr
);
1544 EXPORT_SYMBOL_GPL(devm_iio_device_alloc
);
1547 * devm_iio_device_free - Resource-managed iio_device_free()
1548 * @dev: Device this iio_dev belongs to
1549 * @iio_dev: the iio_dev associated with the device
1551 * Free iio_dev allocated with devm_iio_device_alloc().
1553 void devm_iio_device_free(struct device
*dev
, struct iio_dev
*iio_dev
)
1557 rc
= devres_release(dev
, devm_iio_device_release
,
1558 devm_iio_device_match
, iio_dev
);
1561 EXPORT_SYMBOL_GPL(devm_iio_device_free
);
1564 * iio_chrdev_open() - chrdev file open for buffer access and ioctls
1565 * @inode: Inode structure for identifying the device in the file system
1566 * @filp: File structure for iio device used to keep and later access
1569 * Return: 0 on success or -EBUSY if the device is already opened
1571 static int iio_chrdev_open(struct inode
*inode
, struct file
*filp
)
1573 struct iio_dev
*indio_dev
= container_of(inode
->i_cdev
,
1574 struct iio_dev
, chrdev
);
1576 if (test_and_set_bit(IIO_BUSY_BIT_POS
, &indio_dev
->flags
))
1579 iio_device_get(indio_dev
);
1581 filp
->private_data
= indio_dev
;
1587 * iio_chrdev_release() - chrdev file close buffer access and ioctls
1588 * @inode: Inode structure pointer for the char device
1589 * @filp: File structure pointer for the char device
1591 * Return: 0 for successful release
1593 static int iio_chrdev_release(struct inode
*inode
, struct file
*filp
)
1595 struct iio_dev
*indio_dev
= container_of(inode
->i_cdev
,
1596 struct iio_dev
, chrdev
);
1597 clear_bit(IIO_BUSY_BIT_POS
, &indio_dev
->flags
);
1598 iio_device_put(indio_dev
);
1603 /* Somewhat of a cross file organization violation - ioctls here are actually
1605 static long iio_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
1607 struct iio_dev
*indio_dev
= filp
->private_data
;
1608 int __user
*ip
= (int __user
*)arg
;
1611 if (!indio_dev
->info
)
1614 if (cmd
== IIO_GET_EVENT_FD_IOCTL
) {
1615 fd
= iio_event_getfd(indio_dev
);
1618 if (copy_to_user(ip
, &fd
, sizeof(fd
)))
1625 static const struct file_operations iio_buffer_fileops
= {
1626 .read
= iio_buffer_read_first_n_outer_addr
,
1627 .release
= iio_chrdev_release
,
1628 .open
= iio_chrdev_open
,
1629 .poll
= iio_buffer_poll_addr
,
1630 .owner
= THIS_MODULE
,
1631 .llseek
= noop_llseek
,
1632 .unlocked_ioctl
= iio_ioctl
,
1633 .compat_ioctl
= iio_ioctl
,
1636 static int iio_check_unique_scan_index(struct iio_dev
*indio_dev
)
1639 const struct iio_chan_spec
*channels
= indio_dev
->channels
;
1641 if (!(indio_dev
->modes
& INDIO_ALL_BUFFER_MODES
))
1644 for (i
= 0; i
< indio_dev
->num_channels
- 1; i
++) {
1645 if (channels
[i
].scan_index
< 0)
1647 for (j
= i
+ 1; j
< indio_dev
->num_channels
; j
++)
1648 if (channels
[i
].scan_index
== channels
[j
].scan_index
) {
1649 dev_err(&indio_dev
->dev
,
1650 "Duplicate scan index %d\n",
1651 channels
[i
].scan_index
);
1659 static const struct iio_buffer_setup_ops noop_ring_setup_ops
;
1661 int __iio_device_register(struct iio_dev
*indio_dev
, struct module
*this_mod
)
1665 indio_dev
->driver_module
= this_mod
;
1666 /* If the calling driver did not initialize of_node, do it here */
1667 if (!indio_dev
->dev
.of_node
&& indio_dev
->dev
.parent
)
1668 indio_dev
->dev
.of_node
= indio_dev
->dev
.parent
->of_node
;
1670 ret
= iio_check_unique_scan_index(indio_dev
);
1674 /* configure elements for the chrdev */
1675 indio_dev
->dev
.devt
= MKDEV(MAJOR(iio_devt
), indio_dev
->id
);
1677 ret
= iio_device_register_debugfs(indio_dev
);
1679 dev_err(indio_dev
->dev
.parent
,
1680 "Failed to register debugfs interfaces\n");
1684 ret
= iio_buffer_alloc_sysfs_and_mask(indio_dev
);
1686 dev_err(indio_dev
->dev
.parent
,
1687 "Failed to create buffer sysfs interfaces\n");
1688 goto error_unreg_debugfs
;
1691 ret
= iio_device_register_sysfs(indio_dev
);
1693 dev_err(indio_dev
->dev
.parent
,
1694 "Failed to register sysfs interfaces\n");
1695 goto error_buffer_free_sysfs
;
1697 ret
= iio_device_register_eventset(indio_dev
);
1699 dev_err(indio_dev
->dev
.parent
,
1700 "Failed to register event set\n");
1701 goto error_free_sysfs
;
1703 if (indio_dev
->modes
& INDIO_ALL_TRIGGERED_MODES
)
1704 iio_device_register_trigger_consumer(indio_dev
);
1706 if ((indio_dev
->modes
& INDIO_ALL_BUFFER_MODES
) &&
1707 indio_dev
->setup_ops
== NULL
)
1708 indio_dev
->setup_ops
= &noop_ring_setup_ops
;
1710 cdev_init(&indio_dev
->chrdev
, &iio_buffer_fileops
);
1712 indio_dev
->chrdev
.owner
= this_mod
;
1714 ret
= cdev_device_add(&indio_dev
->chrdev
, &indio_dev
->dev
);
1716 goto error_unreg_eventset
;
1720 error_unreg_eventset
:
1721 iio_device_unregister_eventset(indio_dev
);
1723 iio_device_unregister_sysfs(indio_dev
);
1724 error_buffer_free_sysfs
:
1725 iio_buffer_free_sysfs_and_mask(indio_dev
);
1726 error_unreg_debugfs
:
1727 iio_device_unregister_debugfs(indio_dev
);
1730 EXPORT_SYMBOL(__iio_device_register
);
1733 * iio_device_unregister() - unregister a device from the IIO subsystem
1734 * @indio_dev: Device structure representing the device.
1736 void iio_device_unregister(struct iio_dev
*indio_dev
)
1738 mutex_lock(&indio_dev
->info_exist_lock
);
1740 cdev_device_del(&indio_dev
->chrdev
, &indio_dev
->dev
);
1742 iio_device_unregister_debugfs(indio_dev
);
1744 iio_disable_all_buffers(indio_dev
);
1746 indio_dev
->info
= NULL
;
1748 iio_device_wakeup_eventset(indio_dev
);
1749 iio_buffer_wakeup_poll(indio_dev
);
1751 mutex_unlock(&indio_dev
->info_exist_lock
);
1753 iio_buffer_free_sysfs_and_mask(indio_dev
);
1755 EXPORT_SYMBOL(iio_device_unregister
);
1757 static void devm_iio_device_unreg(struct device
*dev
, void *res
)
1759 iio_device_unregister(*(struct iio_dev
**)res
);
1762 int __devm_iio_device_register(struct device
*dev
, struct iio_dev
*indio_dev
,
1763 struct module
*this_mod
)
1765 struct iio_dev
**ptr
;
1768 ptr
= devres_alloc(devm_iio_device_unreg
, sizeof(*ptr
), GFP_KERNEL
);
1773 ret
= __iio_device_register(indio_dev
, this_mod
);
1775 devres_add(dev
, ptr
);
1781 EXPORT_SYMBOL_GPL(__devm_iio_device_register
);
1784 * devm_iio_device_unregister - Resource-managed iio_device_unregister()
1785 * @dev: Device this iio_dev belongs to
1786 * @indio_dev: the iio_dev associated with the device
1788 * Unregister iio_dev registered with devm_iio_device_register().
1790 void devm_iio_device_unregister(struct device
*dev
, struct iio_dev
*indio_dev
)
1794 rc
= devres_release(dev
, devm_iio_device_unreg
,
1795 devm_iio_device_match
, indio_dev
);
1798 EXPORT_SYMBOL_GPL(devm_iio_device_unregister
);
1801 * iio_device_claim_direct_mode - Keep device in direct mode
1802 * @indio_dev: the iio_dev associated with the device
1804 * If the device is in direct mode it is guaranteed to stay
1805 * that way until iio_device_release_direct_mode() is called.
1807 * Use with iio_device_release_direct_mode()
1809 * Returns: 0 on success, -EBUSY on failure
1811 int iio_device_claim_direct_mode(struct iio_dev
*indio_dev
)
1813 mutex_lock(&indio_dev
->mlock
);
1815 if (iio_buffer_enabled(indio_dev
)) {
1816 mutex_unlock(&indio_dev
->mlock
);
1821 EXPORT_SYMBOL_GPL(iio_device_claim_direct_mode
);
1824 * iio_device_release_direct_mode - releases claim on direct mode
1825 * @indio_dev: the iio_dev associated with the device
1827 * Release the claim. Device is no longer guaranteed to stay
1830 * Use with iio_device_claim_direct_mode()
1832 void iio_device_release_direct_mode(struct iio_dev
*indio_dev
)
1834 mutex_unlock(&indio_dev
->mlock
);
1836 EXPORT_SYMBOL_GPL(iio_device_release_direct_mode
);
1838 subsys_initcall(iio_init
);
1839 module_exit(iio_exit
);
1841 MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>");
1842 MODULE_DESCRIPTION("Industrial I/O core");
1843 MODULE_LICENSE("GPL");