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/property.h>
23 #include <linux/sched.h>
24 #include <linux/wait.h>
25 #include <linux/cdev.h>
26 #include <linux/slab.h>
27 #include <linux/anon_inodes.h>
28 #include <linux/debugfs.h>
29 #include <linux/mutex.h>
30 #include <linux/iio/iio.h>
32 #include "iio_core_trigger.h"
33 #include <linux/iio/sysfs.h>
34 #include <linux/iio/events.h>
35 #include <linux/iio/buffer.h>
36 #include <linux/iio/buffer_impl.h>
38 /* IDA to assign each registered device a unique id */
39 static DEFINE_IDA(iio_ida
);
41 static dev_t iio_devt
;
43 #define IIO_DEV_MAX 256
44 struct bus_type iio_bus_type
= {
47 EXPORT_SYMBOL(iio_bus_type
);
49 static struct dentry
*iio_debugfs_dentry
;
51 static const char * const iio_direction
[] = {
56 static const char * const iio_chan_type_name_spec
[] = {
57 [IIO_VOLTAGE
] = "voltage",
58 [IIO_CURRENT
] = "current",
59 [IIO_POWER
] = "power",
60 [IIO_ACCEL
] = "accel",
61 [IIO_ANGL_VEL
] = "anglvel",
63 [IIO_LIGHT
] = "illuminance",
64 [IIO_INTENSITY
] = "intensity",
65 [IIO_PROXIMITY
] = "proximity",
67 [IIO_INCLI
] = "incli",
70 [IIO_TIMESTAMP
] = "timestamp",
71 [IIO_CAPACITANCE
] = "capacitance",
72 [IIO_ALTVOLTAGE
] = "altvoltage",
74 [IIO_PRESSURE
] = "pressure",
75 [IIO_HUMIDITYRELATIVE
] = "humidityrelative",
76 [IIO_ACTIVITY
] = "activity",
77 [IIO_STEPS
] = "steps",
78 [IIO_ENERGY
] = "energy",
79 [IIO_DISTANCE
] = "distance",
80 [IIO_VELOCITY
] = "velocity",
81 [IIO_CONCENTRATION
] = "concentration",
82 [IIO_RESISTANCE
] = "resistance",
84 [IIO_UVINDEX
] = "uvindex",
85 [IIO_ELECTRICALCONDUCTIVITY
] = "electricalconductivity",
86 [IIO_COUNT
] = "count",
87 [IIO_INDEX
] = "index",
88 [IIO_GRAVITY
] = "gravity",
89 [IIO_POSITIONRELATIVE
] = "positionrelative",
90 [IIO_PHASE
] = "phase",
91 [IIO_MASSCONCENTRATION
] = "massconcentration",
94 static const char * const iio_modifier_names
[] = {
98 [IIO_MOD_X_AND_Y
] = "x&y",
99 [IIO_MOD_X_AND_Z
] = "x&z",
100 [IIO_MOD_Y_AND_Z
] = "y&z",
101 [IIO_MOD_X_AND_Y_AND_Z
] = "x&y&z",
102 [IIO_MOD_X_OR_Y
] = "x|y",
103 [IIO_MOD_X_OR_Z
] = "x|z",
104 [IIO_MOD_Y_OR_Z
] = "y|z",
105 [IIO_MOD_X_OR_Y_OR_Z
] = "x|y|z",
106 [IIO_MOD_ROOT_SUM_SQUARED_X_Y
] = "sqrt(x^2+y^2)",
107 [IIO_MOD_SUM_SQUARED_X_Y_Z
] = "x^2+y^2+z^2",
108 [IIO_MOD_LIGHT_BOTH
] = "both",
109 [IIO_MOD_LIGHT_IR
] = "ir",
110 [IIO_MOD_LIGHT_CLEAR
] = "clear",
111 [IIO_MOD_LIGHT_RED
] = "red",
112 [IIO_MOD_LIGHT_GREEN
] = "green",
113 [IIO_MOD_LIGHT_BLUE
] = "blue",
114 [IIO_MOD_LIGHT_UV
] = "uv",
115 [IIO_MOD_LIGHT_DUV
] = "duv",
116 [IIO_MOD_QUATERNION
] = "quaternion",
117 [IIO_MOD_TEMP_AMBIENT
] = "ambient",
118 [IIO_MOD_TEMP_OBJECT
] = "object",
119 [IIO_MOD_NORTH_MAGN
] = "from_north_magnetic",
120 [IIO_MOD_NORTH_TRUE
] = "from_north_true",
121 [IIO_MOD_NORTH_MAGN_TILT_COMP
] = "from_north_magnetic_tilt_comp",
122 [IIO_MOD_NORTH_TRUE_TILT_COMP
] = "from_north_true_tilt_comp",
123 [IIO_MOD_RUNNING
] = "running",
124 [IIO_MOD_JOGGING
] = "jogging",
125 [IIO_MOD_WALKING
] = "walking",
126 [IIO_MOD_STILL
] = "still",
127 [IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z
] = "sqrt(x^2+y^2+z^2)",
130 [IIO_MOD_CO2
] = "co2",
131 [IIO_MOD_VOC
] = "voc",
132 [IIO_MOD_PM1
] = "pm1",
133 [IIO_MOD_PM2P5
] = "pm2p5",
134 [IIO_MOD_PM4
] = "pm4",
135 [IIO_MOD_PM10
] = "pm10",
138 /* relies on pairs of these shared then separate */
139 static const char * const iio_chan_info_postfix
[] = {
140 [IIO_CHAN_INFO_RAW
] = "raw",
141 [IIO_CHAN_INFO_PROCESSED
] = "input",
142 [IIO_CHAN_INFO_SCALE
] = "scale",
143 [IIO_CHAN_INFO_OFFSET
] = "offset",
144 [IIO_CHAN_INFO_CALIBSCALE
] = "calibscale",
145 [IIO_CHAN_INFO_CALIBBIAS
] = "calibbias",
146 [IIO_CHAN_INFO_PEAK
] = "peak_raw",
147 [IIO_CHAN_INFO_PEAK_SCALE
] = "peak_scale",
148 [IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW
] = "quadrature_correction_raw",
149 [IIO_CHAN_INFO_AVERAGE_RAW
] = "mean_raw",
150 [IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY
]
151 = "filter_low_pass_3db_frequency",
152 [IIO_CHAN_INFO_HIGH_PASS_FILTER_3DB_FREQUENCY
]
153 = "filter_high_pass_3db_frequency",
154 [IIO_CHAN_INFO_SAMP_FREQ
] = "sampling_frequency",
155 [IIO_CHAN_INFO_FREQUENCY
] = "frequency",
156 [IIO_CHAN_INFO_PHASE
] = "phase",
157 [IIO_CHAN_INFO_HARDWAREGAIN
] = "hardwaregain",
158 [IIO_CHAN_INFO_HYSTERESIS
] = "hysteresis",
159 [IIO_CHAN_INFO_INT_TIME
] = "integration_time",
160 [IIO_CHAN_INFO_ENABLE
] = "en",
161 [IIO_CHAN_INFO_CALIBHEIGHT
] = "calibheight",
162 [IIO_CHAN_INFO_CALIBWEIGHT
] = "calibweight",
163 [IIO_CHAN_INFO_DEBOUNCE_COUNT
] = "debounce_count",
164 [IIO_CHAN_INFO_DEBOUNCE_TIME
] = "debounce_time",
165 [IIO_CHAN_INFO_CALIBEMISSIVITY
] = "calibemissivity",
166 [IIO_CHAN_INFO_OVERSAMPLING_RATIO
] = "oversampling_ratio",
170 * iio_find_channel_from_si() - get channel from its scan index
172 * @si: scan index to match
174 const struct iio_chan_spec
175 *iio_find_channel_from_si(struct iio_dev
*indio_dev
, int si
)
179 for (i
= 0; i
< indio_dev
->num_channels
; i
++)
180 if (indio_dev
->channels
[i
].scan_index
== si
)
181 return &indio_dev
->channels
[i
];
185 /* This turns up an awful lot */
186 ssize_t
iio_read_const_attr(struct device
*dev
,
187 struct device_attribute
*attr
,
190 return sprintf(buf
, "%s\n", to_iio_const_attr(attr
)->string
);
192 EXPORT_SYMBOL(iio_read_const_attr
);
194 static int iio_device_set_clock(struct iio_dev
*indio_dev
, clockid_t clock_id
)
197 const struct iio_event_interface
*ev_int
= indio_dev
->event_interface
;
199 ret
= mutex_lock_interruptible(&indio_dev
->mlock
);
202 if ((ev_int
&& iio_event_enabled(ev_int
)) ||
203 iio_buffer_enabled(indio_dev
)) {
204 mutex_unlock(&indio_dev
->mlock
);
207 indio_dev
->clock_id
= clock_id
;
208 mutex_unlock(&indio_dev
->mlock
);
214 * iio_get_time_ns() - utility function to get a time stamp for events etc
217 s64
iio_get_time_ns(const struct iio_dev
*indio_dev
)
219 struct timespec64 tp
;
221 switch (iio_device_get_clock(indio_dev
)) {
223 return ktime_get_real_ns();
224 case CLOCK_MONOTONIC
:
225 return ktime_get_ns();
226 case CLOCK_MONOTONIC_RAW
:
227 return ktime_get_raw_ns();
228 case CLOCK_REALTIME_COARSE
:
229 return ktime_to_ns(ktime_get_coarse_real());
230 case CLOCK_MONOTONIC_COARSE
:
231 ktime_get_coarse_ts64(&tp
);
232 return timespec64_to_ns(&tp
);
234 return ktime_get_boot_ns();
236 return ktime_get_tai_ns();
241 EXPORT_SYMBOL(iio_get_time_ns
);
244 * iio_get_time_res() - utility function to get time stamp clock resolution in
248 unsigned int iio_get_time_res(const struct iio_dev
*indio_dev
)
250 switch (iio_device_get_clock(indio_dev
)) {
252 case CLOCK_MONOTONIC
:
253 case CLOCK_MONOTONIC_RAW
:
256 return hrtimer_resolution
;
257 case CLOCK_REALTIME_COARSE
:
258 case CLOCK_MONOTONIC_COARSE
:
264 EXPORT_SYMBOL(iio_get_time_res
);
266 static int __init
iio_init(void)
270 /* Register sysfs bus */
271 ret
= bus_register(&iio_bus_type
);
273 pr_err("could not register bus type\n");
277 ret
= alloc_chrdev_region(&iio_devt
, 0, IIO_DEV_MAX
, "iio");
279 pr_err("failed to allocate char dev region\n");
280 goto error_unregister_bus_type
;
283 iio_debugfs_dentry
= debugfs_create_dir("iio", NULL
);
287 error_unregister_bus_type
:
288 bus_unregister(&iio_bus_type
);
293 static void __exit
iio_exit(void)
296 unregister_chrdev_region(iio_devt
, IIO_DEV_MAX
);
297 bus_unregister(&iio_bus_type
);
298 debugfs_remove(iio_debugfs_dentry
);
301 #if defined(CONFIG_DEBUG_FS)
302 static ssize_t
iio_debugfs_read_reg(struct file
*file
, char __user
*userbuf
,
303 size_t count
, loff_t
*ppos
)
305 struct iio_dev
*indio_dev
= file
->private_data
;
311 ret
= indio_dev
->info
->debugfs_reg_access(indio_dev
,
312 indio_dev
->cached_reg_addr
,
315 dev_err(indio_dev
->dev
.parent
, "%s: read failed\n", __func__
);
319 len
= snprintf(buf
, sizeof(buf
), "0x%X\n", val
);
321 return simple_read_from_buffer(userbuf
, count
, ppos
, buf
, len
);
324 static ssize_t
iio_debugfs_write_reg(struct file
*file
,
325 const char __user
*userbuf
, size_t count
, loff_t
*ppos
)
327 struct iio_dev
*indio_dev
= file
->private_data
;
332 count
= min_t(size_t, count
, (sizeof(buf
)-1));
333 if (copy_from_user(buf
, userbuf
, count
))
338 ret
= sscanf(buf
, "%i %i", ®
, &val
);
342 indio_dev
->cached_reg_addr
= reg
;
345 indio_dev
->cached_reg_addr
= reg
;
346 ret
= indio_dev
->info
->debugfs_reg_access(indio_dev
, reg
,
349 dev_err(indio_dev
->dev
.parent
, "%s: write failed\n",
361 static const struct file_operations iio_debugfs_reg_fops
= {
363 .read
= iio_debugfs_read_reg
,
364 .write
= iio_debugfs_write_reg
,
367 static void iio_device_unregister_debugfs(struct iio_dev
*indio_dev
)
369 debugfs_remove_recursive(indio_dev
->debugfs_dentry
);
372 static int iio_device_register_debugfs(struct iio_dev
*indio_dev
)
376 if (indio_dev
->info
->debugfs_reg_access
== NULL
)
379 if (!iio_debugfs_dentry
)
382 indio_dev
->debugfs_dentry
=
383 debugfs_create_dir(dev_name(&indio_dev
->dev
),
385 if (indio_dev
->debugfs_dentry
== NULL
) {
386 dev_warn(indio_dev
->dev
.parent
,
387 "Failed to create debugfs directory\n");
391 d
= debugfs_create_file("direct_reg_access", 0644,
392 indio_dev
->debugfs_dentry
,
393 indio_dev
, &iio_debugfs_reg_fops
);
395 iio_device_unregister_debugfs(indio_dev
);
402 static int iio_device_register_debugfs(struct iio_dev
*indio_dev
)
407 static void iio_device_unregister_debugfs(struct iio_dev
*indio_dev
)
410 #endif /* CONFIG_DEBUG_FS */
412 static ssize_t
iio_read_channel_ext_info(struct device
*dev
,
413 struct device_attribute
*attr
,
416 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
417 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
418 const struct iio_chan_spec_ext_info
*ext_info
;
420 ext_info
= &this_attr
->c
->ext_info
[this_attr
->address
];
422 return ext_info
->read(indio_dev
, ext_info
->private, this_attr
->c
, buf
);
425 static ssize_t
iio_write_channel_ext_info(struct device
*dev
,
426 struct device_attribute
*attr
,
430 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
431 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
432 const struct iio_chan_spec_ext_info
*ext_info
;
434 ext_info
= &this_attr
->c
->ext_info
[this_attr
->address
];
436 return ext_info
->write(indio_dev
, ext_info
->private,
437 this_attr
->c
, buf
, len
);
440 ssize_t
iio_enum_available_read(struct iio_dev
*indio_dev
,
441 uintptr_t priv
, const struct iio_chan_spec
*chan
, char *buf
)
443 const struct iio_enum
*e
= (const struct iio_enum
*)priv
;
450 for (i
= 0; i
< e
->num_items
; ++i
)
451 len
+= scnprintf(buf
+ len
, PAGE_SIZE
- len
, "%s ", e
->items
[i
]);
453 /* replace last space with a newline */
458 EXPORT_SYMBOL_GPL(iio_enum_available_read
);
460 ssize_t
iio_enum_read(struct iio_dev
*indio_dev
,
461 uintptr_t priv
, const struct iio_chan_spec
*chan
, char *buf
)
463 const struct iio_enum
*e
= (const struct iio_enum
*)priv
;
469 i
= e
->get(indio_dev
, chan
);
472 else if (i
>= e
->num_items
)
475 return snprintf(buf
, PAGE_SIZE
, "%s\n", e
->items
[i
]);
477 EXPORT_SYMBOL_GPL(iio_enum_read
);
479 ssize_t
iio_enum_write(struct iio_dev
*indio_dev
,
480 uintptr_t priv
, const struct iio_chan_spec
*chan
, const char *buf
,
483 const struct iio_enum
*e
= (const struct iio_enum
*)priv
;
489 ret
= __sysfs_match_string(e
->items
, e
->num_items
, buf
);
493 ret
= e
->set(indio_dev
, chan
, ret
);
494 return ret
? ret
: len
;
496 EXPORT_SYMBOL_GPL(iio_enum_write
);
498 static const struct iio_mount_matrix iio_mount_idmatrix
= {
506 static int iio_setup_mount_idmatrix(const struct device
*dev
,
507 struct iio_mount_matrix
*matrix
)
509 *matrix
= iio_mount_idmatrix
;
510 dev_info(dev
, "mounting matrix not found: using identity...\n");
514 ssize_t
iio_show_mount_matrix(struct iio_dev
*indio_dev
, uintptr_t priv
,
515 const struct iio_chan_spec
*chan
, char *buf
)
517 const struct iio_mount_matrix
*mtx
= ((iio_get_mount_matrix_t
*)
518 priv
)(indio_dev
, chan
);
524 mtx
= &iio_mount_idmatrix
;
526 return snprintf(buf
, PAGE_SIZE
, "%s, %s, %s; %s, %s, %s; %s, %s, %s\n",
527 mtx
->rotation
[0], mtx
->rotation
[1], mtx
->rotation
[2],
528 mtx
->rotation
[3], mtx
->rotation
[4], mtx
->rotation
[5],
529 mtx
->rotation
[6], mtx
->rotation
[7], mtx
->rotation
[8]);
531 EXPORT_SYMBOL_GPL(iio_show_mount_matrix
);
534 * iio_read_mount_matrix() - retrieve iio device mounting matrix from
535 * device "mount-matrix" property
536 * @dev: device the mounting matrix property is assigned to
537 * @propname: device specific mounting matrix property name
538 * @matrix: where to store retrieved matrix
540 * If device is assigned no mounting matrix property, a default 3x3 identity
541 * matrix will be filled in.
543 * Return: 0 if success, or a negative error code on failure.
545 int iio_read_mount_matrix(struct device
*dev
, const char *propname
,
546 struct iio_mount_matrix
*matrix
)
548 size_t len
= ARRAY_SIZE(iio_mount_idmatrix
.rotation
);
551 err
= device_property_read_string_array(dev
, propname
,
552 matrix
->rotation
, len
);
557 /* Invalid number of matrix entries. */
561 /* Invalid matrix declaration format. */
564 /* Matrix was not declared at all: fallback to identity. */
565 return iio_setup_mount_idmatrix(dev
, matrix
);
567 EXPORT_SYMBOL(iio_read_mount_matrix
);
569 static ssize_t
__iio_format_value(char *buf
, size_t len
, unsigned int type
,
570 int size
, const int *vals
)
572 unsigned long long tmp
;
574 bool scale_db
= false;
578 return snprintf(buf
, len
, "%d", vals
[0]);
579 case IIO_VAL_INT_PLUS_MICRO_DB
:
582 case IIO_VAL_INT_PLUS_MICRO
:
584 return snprintf(buf
, len
, "-%d.%06u%s", abs(vals
[0]),
585 -vals
[1], scale_db
? " dB" : "");
587 return snprintf(buf
, len
, "%d.%06u%s", vals
[0], vals
[1],
588 scale_db
? " dB" : "");
589 case IIO_VAL_INT_PLUS_NANO
:
591 return snprintf(buf
, len
, "-%d.%09u", abs(vals
[0]),
594 return snprintf(buf
, len
, "%d.%09u", vals
[0], vals
[1]);
595 case IIO_VAL_FRACTIONAL
:
596 tmp
= div_s64((s64
)vals
[0] * 1000000000LL, vals
[1]);
598 tmp0
= (int)div_s64_rem(tmp
, 1000000000, &tmp1
);
599 return snprintf(buf
, len
, "%d.%09u", tmp0
, abs(tmp1
));
600 case IIO_VAL_FRACTIONAL_LOG2
:
601 tmp
= shift_right((s64
)vals
[0] * 1000000000LL, vals
[1]);
602 tmp0
= (int)div_s64_rem(tmp
, 1000000000LL, &tmp1
);
603 return snprintf(buf
, len
, "%d.%09u", tmp0
, abs(tmp1
));
604 case IIO_VAL_INT_MULTIPLE
:
609 for (i
= 0; i
< size
; ++i
) {
610 l
+= snprintf(&buf
[l
], len
- l
, "%d ", vals
[i
]);
622 * iio_format_value() - Formats a IIO value into its string representation
623 * @buf: The buffer to which the formatted value gets written
624 * which is assumed to be big enough (i.e. PAGE_SIZE).
625 * @type: One of the IIO_VAL_* constants. This decides how the val
626 * and val2 parameters are formatted.
627 * @size: Number of IIO value entries contained in vals
628 * @vals: Pointer to the values, exact meaning depends on the
631 * Return: 0 by default, a negative number on failure or the
632 * total number of characters written for a type that belongs
633 * to the IIO_VAL_* constant.
635 ssize_t
iio_format_value(char *buf
, unsigned int type
, int size
, int *vals
)
639 len
= __iio_format_value(buf
, PAGE_SIZE
, type
, size
, vals
);
640 if (len
>= PAGE_SIZE
- 1)
643 return len
+ sprintf(buf
+ len
, "\n");
645 EXPORT_SYMBOL_GPL(iio_format_value
);
647 static ssize_t
iio_read_channel_info(struct device
*dev
,
648 struct device_attribute
*attr
,
651 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
652 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
653 int vals
[INDIO_MAX_RAW_ELEMENTS
];
657 if (indio_dev
->info
->read_raw_multi
)
658 ret
= indio_dev
->info
->read_raw_multi(indio_dev
, this_attr
->c
,
659 INDIO_MAX_RAW_ELEMENTS
,
663 ret
= indio_dev
->info
->read_raw(indio_dev
, this_attr
->c
,
664 &vals
[0], &vals
[1], this_attr
->address
);
669 return iio_format_value(buf
, ret
, val_len
, vals
);
672 static ssize_t
iio_format_avail_list(char *buf
, const int *vals
,
673 int type
, int length
)
680 for (i
= 0; i
< length
; i
++) {
681 len
+= __iio_format_value(buf
+ len
, PAGE_SIZE
- len
,
683 if (len
>= PAGE_SIZE
)
686 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
689 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
691 if (len
>= PAGE_SIZE
)
696 for (i
= 0; i
< length
/ 2; i
++) {
697 len
+= __iio_format_value(buf
+ len
, PAGE_SIZE
- len
,
698 type
, 2, &vals
[i
* 2]);
699 if (len
>= PAGE_SIZE
)
701 if (i
< length
/ 2 - 1)
702 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
705 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
707 if (len
>= PAGE_SIZE
)
715 static ssize_t
iio_format_avail_range(char *buf
, const int *vals
, int type
)
720 len
= snprintf(buf
, PAGE_SIZE
, "[");
723 for (i
= 0; i
< 3; i
++) {
724 len
+= __iio_format_value(buf
+ len
, PAGE_SIZE
- len
,
726 if (len
>= PAGE_SIZE
)
729 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
732 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
734 if (len
>= PAGE_SIZE
)
739 for (i
= 0; i
< 3; i
++) {
740 len
+= __iio_format_value(buf
+ len
, PAGE_SIZE
- len
,
741 type
, 2, &vals
[i
* 2]);
742 if (len
>= PAGE_SIZE
)
745 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
748 len
+= snprintf(buf
+ len
, PAGE_SIZE
- len
,
750 if (len
>= PAGE_SIZE
)
758 static ssize_t
iio_read_channel_info_avail(struct device
*dev
,
759 struct device_attribute
*attr
,
762 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
763 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
769 ret
= indio_dev
->info
->read_avail(indio_dev
, this_attr
->c
,
770 &vals
, &type
, &length
,
777 return iio_format_avail_list(buf
, vals
, type
, length
);
778 case IIO_AVAIL_RANGE
:
779 return iio_format_avail_range(buf
, vals
, type
);
786 * iio_str_to_fixpoint() - Parse a fixed-point number from a string
787 * @str: The string to parse
788 * @fract_mult: Multiplier for the first decimal place, should be a power of 10
789 * @integer: The integer part of the number
790 * @fract: The fractional part of the number
792 * Returns 0 on success, or a negative error code if the string could not be
795 int iio_str_to_fixpoint(const char *str
, int fract_mult
,
796 int *integer
, int *fract
)
799 bool integer_part
= true, negative
= false;
801 if (fract_mult
== 0) {
804 return kstrtoint(str
, 0, integer
);
810 } else if (str
[0] == '+') {
815 if ('0' <= *str
&& *str
<= '9') {
817 i
= i
* 10 + *str
- '0';
819 f
+= fract_mult
* (*str
- '0');
822 } else if (*str
== '\n') {
823 if (*(str
+ 1) == '\0')
827 } else if (*str
== '.' && integer_part
) {
828 integer_part
= false;
847 EXPORT_SYMBOL_GPL(iio_str_to_fixpoint
);
849 static ssize_t
iio_write_channel_info(struct device
*dev
,
850 struct device_attribute
*attr
,
854 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
855 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
856 int ret
, fract_mult
= 100000;
859 /* Assumes decimal - precision based on number of digits */
860 if (!indio_dev
->info
->write_raw
)
863 if (indio_dev
->info
->write_raw_get_fmt
)
864 switch (indio_dev
->info
->write_raw_get_fmt(indio_dev
,
865 this_attr
->c
, this_attr
->address
)) {
869 case IIO_VAL_INT_PLUS_MICRO
:
872 case IIO_VAL_INT_PLUS_NANO
:
873 fract_mult
= 100000000;
879 ret
= iio_str_to_fixpoint(buf
, fract_mult
, &integer
, &fract
);
883 ret
= indio_dev
->info
->write_raw(indio_dev
, this_attr
->c
,
884 integer
, fract
, this_attr
->address
);
892 int __iio_device_attr_init(struct device_attribute
*dev_attr
,
894 struct iio_chan_spec
const *chan
,
895 ssize_t (*readfunc
)(struct device
*dev
,
896 struct device_attribute
*attr
,
898 ssize_t (*writefunc
)(struct device
*dev
,
899 struct device_attribute
*attr
,
902 enum iio_shared_by shared_by
)
907 sysfs_attr_init(&dev_attr
->attr
);
909 /* Build up postfix of <extend_name>_<modifier>_postfix */
910 if (chan
->modified
&& (shared_by
== IIO_SEPARATE
)) {
911 if (chan
->extend_name
)
912 full_postfix
= kasprintf(GFP_KERNEL
, "%s_%s_%s",
913 iio_modifier_names
[chan
918 full_postfix
= kasprintf(GFP_KERNEL
, "%s_%s",
919 iio_modifier_names
[chan
923 if (chan
->extend_name
== NULL
|| shared_by
!= IIO_SEPARATE
)
924 full_postfix
= kstrdup(postfix
, GFP_KERNEL
);
926 full_postfix
= kasprintf(GFP_KERNEL
,
931 if (full_postfix
== NULL
)
934 if (chan
->differential
) { /* Differential can not have modifier */
936 case IIO_SHARED_BY_ALL
:
937 name
= kasprintf(GFP_KERNEL
, "%s", full_postfix
);
939 case IIO_SHARED_BY_DIR
:
940 name
= kasprintf(GFP_KERNEL
, "%s_%s",
941 iio_direction
[chan
->output
],
944 case IIO_SHARED_BY_TYPE
:
945 name
= kasprintf(GFP_KERNEL
, "%s_%s-%s_%s",
946 iio_direction
[chan
->output
],
947 iio_chan_type_name_spec
[chan
->type
],
948 iio_chan_type_name_spec
[chan
->type
],
952 if (!chan
->indexed
) {
953 WARN(1, "Differential channels must be indexed\n");
955 goto error_free_full_postfix
;
957 name
= kasprintf(GFP_KERNEL
,
959 iio_direction
[chan
->output
],
960 iio_chan_type_name_spec
[chan
->type
],
962 iio_chan_type_name_spec
[chan
->type
],
967 } else { /* Single ended */
969 case IIO_SHARED_BY_ALL
:
970 name
= kasprintf(GFP_KERNEL
, "%s", full_postfix
);
972 case IIO_SHARED_BY_DIR
:
973 name
= kasprintf(GFP_KERNEL
, "%s_%s",
974 iio_direction
[chan
->output
],
977 case IIO_SHARED_BY_TYPE
:
978 name
= kasprintf(GFP_KERNEL
, "%s_%s_%s",
979 iio_direction
[chan
->output
],
980 iio_chan_type_name_spec
[chan
->type
],
986 name
= kasprintf(GFP_KERNEL
, "%s_%s%d_%s",
987 iio_direction
[chan
->output
],
988 iio_chan_type_name_spec
[chan
->type
],
992 name
= kasprintf(GFP_KERNEL
, "%s_%s_%s",
993 iio_direction
[chan
->output
],
994 iio_chan_type_name_spec
[chan
->type
],
1001 goto error_free_full_postfix
;
1003 dev_attr
->attr
.name
= name
;
1006 dev_attr
->attr
.mode
|= S_IRUGO
;
1007 dev_attr
->show
= readfunc
;
1011 dev_attr
->attr
.mode
|= S_IWUSR
;
1012 dev_attr
->store
= writefunc
;
1015 error_free_full_postfix
:
1016 kfree(full_postfix
);
1021 static void __iio_device_attr_deinit(struct device_attribute
*dev_attr
)
1023 kfree(dev_attr
->attr
.name
);
1026 int __iio_add_chan_devattr(const char *postfix
,
1027 struct iio_chan_spec
const *chan
,
1028 ssize_t (*readfunc
)(struct device
*dev
,
1029 struct device_attribute
*attr
,
1031 ssize_t (*writefunc
)(struct device
*dev
,
1032 struct device_attribute
*attr
,
1036 enum iio_shared_by shared_by
,
1038 struct list_head
*attr_list
)
1041 struct iio_dev_attr
*iio_attr
, *t
;
1043 iio_attr
= kzalloc(sizeof(*iio_attr
), GFP_KERNEL
);
1044 if (iio_attr
== NULL
)
1046 ret
= __iio_device_attr_init(&iio_attr
->dev_attr
,
1048 readfunc
, writefunc
, shared_by
);
1050 goto error_iio_dev_attr_free
;
1052 iio_attr
->address
= mask
;
1053 list_for_each_entry(t
, attr_list
, l
)
1054 if (strcmp(t
->dev_attr
.attr
.name
,
1055 iio_attr
->dev_attr
.attr
.name
) == 0) {
1056 if (shared_by
== IIO_SEPARATE
)
1057 dev_err(dev
, "tried to double register : %s\n",
1058 t
->dev_attr
.attr
.name
);
1060 goto error_device_attr_deinit
;
1062 list_add(&iio_attr
->l
, attr_list
);
1066 error_device_attr_deinit
:
1067 __iio_device_attr_deinit(&iio_attr
->dev_attr
);
1068 error_iio_dev_attr_free
:
1073 static int iio_device_add_info_mask_type(struct iio_dev
*indio_dev
,
1074 struct iio_chan_spec
const *chan
,
1075 enum iio_shared_by shared_by
,
1076 const long *infomask
)
1078 int i
, ret
, attrcount
= 0;
1080 for_each_set_bit(i
, infomask
, sizeof(*infomask
)*8) {
1081 if (i
>= ARRAY_SIZE(iio_chan_info_postfix
))
1083 ret
= __iio_add_chan_devattr(iio_chan_info_postfix
[i
],
1085 &iio_read_channel_info
,
1086 &iio_write_channel_info
,
1090 &indio_dev
->channel_attr_list
);
1091 if ((ret
== -EBUSY
) && (shared_by
!= IIO_SEPARATE
))
1101 static int iio_device_add_info_mask_type_avail(struct iio_dev
*indio_dev
,
1102 struct iio_chan_spec
const *chan
,
1103 enum iio_shared_by shared_by
,
1104 const long *infomask
)
1106 int i
, ret
, attrcount
= 0;
1107 char *avail_postfix
;
1109 for_each_set_bit(i
, infomask
, sizeof(*infomask
) * 8) {
1110 avail_postfix
= kasprintf(GFP_KERNEL
,
1112 iio_chan_info_postfix
[i
]);
1116 ret
= __iio_add_chan_devattr(avail_postfix
,
1118 &iio_read_channel_info_avail
,
1123 &indio_dev
->channel_attr_list
);
1124 kfree(avail_postfix
);
1125 if ((ret
== -EBUSY
) && (shared_by
!= IIO_SEPARATE
))
1135 static int iio_device_add_channel_sysfs(struct iio_dev
*indio_dev
,
1136 struct iio_chan_spec
const *chan
)
1138 int ret
, attrcount
= 0;
1139 const struct iio_chan_spec_ext_info
*ext_info
;
1141 if (chan
->channel
< 0)
1143 ret
= iio_device_add_info_mask_type(indio_dev
, chan
,
1145 &chan
->info_mask_separate
);
1150 ret
= iio_device_add_info_mask_type_avail(indio_dev
, chan
,
1153 info_mask_separate_available
);
1158 ret
= iio_device_add_info_mask_type(indio_dev
, chan
,
1160 &chan
->info_mask_shared_by_type
);
1165 ret
= iio_device_add_info_mask_type_avail(indio_dev
, chan
,
1168 info_mask_shared_by_type_available
);
1173 ret
= iio_device_add_info_mask_type(indio_dev
, chan
,
1175 &chan
->info_mask_shared_by_dir
);
1180 ret
= iio_device_add_info_mask_type_avail(indio_dev
, chan
,
1182 &chan
->info_mask_shared_by_dir_available
);
1187 ret
= iio_device_add_info_mask_type(indio_dev
, chan
,
1189 &chan
->info_mask_shared_by_all
);
1194 ret
= iio_device_add_info_mask_type_avail(indio_dev
, chan
,
1196 &chan
->info_mask_shared_by_all_available
);
1201 if (chan
->ext_info
) {
1203 for (ext_info
= chan
->ext_info
; ext_info
->name
; ext_info
++) {
1204 ret
= __iio_add_chan_devattr(ext_info
->name
,
1207 &iio_read_channel_ext_info
: NULL
,
1209 &iio_write_channel_ext_info
: NULL
,
1213 &indio_dev
->channel_attr_list
);
1215 if (ret
== -EBUSY
&& ext_info
->shared
)
1229 * iio_free_chan_devattr_list() - Free a list of IIO device attributes
1230 * @attr_list: List of IIO device attributes
1232 * This function frees the memory allocated for each of the IIO device
1233 * attributes in the list.
1235 void iio_free_chan_devattr_list(struct list_head
*attr_list
)
1237 struct iio_dev_attr
*p
, *n
;
1239 list_for_each_entry_safe(p
, n
, attr_list
, l
) {
1240 kfree(p
->dev_attr
.attr
.name
);
1246 static ssize_t
iio_show_dev_name(struct device
*dev
,
1247 struct device_attribute
*attr
,
1250 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
1251 return snprintf(buf
, PAGE_SIZE
, "%s\n", indio_dev
->name
);
1254 static DEVICE_ATTR(name
, S_IRUGO
, iio_show_dev_name
, NULL
);
1256 static ssize_t
iio_show_timestamp_clock(struct device
*dev
,
1257 struct device_attribute
*attr
,
1260 const struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
1261 const clockid_t clk
= iio_device_get_clock(indio_dev
);
1266 case CLOCK_REALTIME
:
1267 name
= "realtime\n";
1268 sz
= sizeof("realtime\n");
1270 case CLOCK_MONOTONIC
:
1271 name
= "monotonic\n";
1272 sz
= sizeof("monotonic\n");
1274 case CLOCK_MONOTONIC_RAW
:
1275 name
= "monotonic_raw\n";
1276 sz
= sizeof("monotonic_raw\n");
1278 case CLOCK_REALTIME_COARSE
:
1279 name
= "realtime_coarse\n";
1280 sz
= sizeof("realtime_coarse\n");
1282 case CLOCK_MONOTONIC_COARSE
:
1283 name
= "monotonic_coarse\n";
1284 sz
= sizeof("monotonic_coarse\n");
1286 case CLOCK_BOOTTIME
:
1287 name
= "boottime\n";
1288 sz
= sizeof("boottime\n");
1292 sz
= sizeof("tai\n");
1298 memcpy(buf
, name
, sz
);
1302 static ssize_t
iio_store_timestamp_clock(struct device
*dev
,
1303 struct device_attribute
*attr
,
1304 const char *buf
, size_t len
)
1309 if (sysfs_streq(buf
, "realtime"))
1310 clk
= CLOCK_REALTIME
;
1311 else if (sysfs_streq(buf
, "monotonic"))
1312 clk
= CLOCK_MONOTONIC
;
1313 else if (sysfs_streq(buf
, "monotonic_raw"))
1314 clk
= CLOCK_MONOTONIC_RAW
;
1315 else if (sysfs_streq(buf
, "realtime_coarse"))
1316 clk
= CLOCK_REALTIME_COARSE
;
1317 else if (sysfs_streq(buf
, "monotonic_coarse"))
1318 clk
= CLOCK_MONOTONIC_COARSE
;
1319 else if (sysfs_streq(buf
, "boottime"))
1320 clk
= CLOCK_BOOTTIME
;
1321 else if (sysfs_streq(buf
, "tai"))
1326 ret
= iio_device_set_clock(dev_to_iio_dev(dev
), clk
);
1333 static DEVICE_ATTR(current_timestamp_clock
, S_IRUGO
| S_IWUSR
,
1334 iio_show_timestamp_clock
, iio_store_timestamp_clock
);
1336 static int iio_device_register_sysfs(struct iio_dev
*indio_dev
)
1338 int i
, ret
= 0, attrcount
, attrn
, attrcount_orig
= 0;
1339 struct iio_dev_attr
*p
;
1340 struct attribute
**attr
, *clk
= NULL
;
1342 /* First count elements in any existing group */
1343 if (indio_dev
->info
->attrs
) {
1344 attr
= indio_dev
->info
->attrs
->attrs
;
1345 while (*attr
++ != NULL
)
1348 attrcount
= attrcount_orig
;
1350 * New channel registration method - relies on the fact a group does
1351 * not need to be initialized if its name is NULL.
1353 if (indio_dev
->channels
)
1354 for (i
= 0; i
< indio_dev
->num_channels
; i
++) {
1355 const struct iio_chan_spec
*chan
=
1356 &indio_dev
->channels
[i
];
1358 if (chan
->type
== IIO_TIMESTAMP
)
1359 clk
= &dev_attr_current_timestamp_clock
.attr
;
1361 ret
= iio_device_add_channel_sysfs(indio_dev
, chan
);
1363 goto error_clear_attrs
;
1367 if (indio_dev
->event_interface
)
1368 clk
= &dev_attr_current_timestamp_clock
.attr
;
1370 if (indio_dev
->name
)
1375 indio_dev
->chan_attr_group
.attrs
= kcalloc(attrcount
+ 1,
1376 sizeof(indio_dev
->chan_attr_group
.attrs
[0]),
1378 if (indio_dev
->chan_attr_group
.attrs
== NULL
) {
1380 goto error_clear_attrs
;
1382 /* Copy across original attributes */
1383 if (indio_dev
->info
->attrs
)
1384 memcpy(indio_dev
->chan_attr_group
.attrs
,
1385 indio_dev
->info
->attrs
->attrs
,
1386 sizeof(indio_dev
->chan_attr_group
.attrs
[0])
1388 attrn
= attrcount_orig
;
1389 /* Add all elements from the list. */
1390 list_for_each_entry(p
, &indio_dev
->channel_attr_list
, l
)
1391 indio_dev
->chan_attr_group
.attrs
[attrn
++] = &p
->dev_attr
.attr
;
1392 if (indio_dev
->name
)
1393 indio_dev
->chan_attr_group
.attrs
[attrn
++] = &dev_attr_name
.attr
;
1395 indio_dev
->chan_attr_group
.attrs
[attrn
++] = clk
;
1397 indio_dev
->groups
[indio_dev
->groupcounter
++] =
1398 &indio_dev
->chan_attr_group
;
1403 iio_free_chan_devattr_list(&indio_dev
->channel_attr_list
);
1408 static void iio_device_unregister_sysfs(struct iio_dev
*indio_dev
)
1411 iio_free_chan_devattr_list(&indio_dev
->channel_attr_list
);
1412 kfree(indio_dev
->chan_attr_group
.attrs
);
1413 indio_dev
->chan_attr_group
.attrs
= NULL
;
1416 static void iio_dev_release(struct device
*device
)
1418 struct iio_dev
*indio_dev
= dev_to_iio_dev(device
);
1419 if (indio_dev
->modes
& INDIO_ALL_TRIGGERED_MODES
)
1420 iio_device_unregister_trigger_consumer(indio_dev
);
1421 iio_device_unregister_eventset(indio_dev
);
1422 iio_device_unregister_sysfs(indio_dev
);
1424 iio_buffer_put(indio_dev
->buffer
);
1426 ida_simple_remove(&iio_ida
, indio_dev
->id
);
1430 struct device_type iio_device_type
= {
1431 .name
= "iio_device",
1432 .release
= iio_dev_release
,
1436 * iio_device_alloc() - allocate an iio_dev from a driver
1437 * @sizeof_priv: Space to allocate for private structure.
1439 struct iio_dev
*iio_device_alloc(int sizeof_priv
)
1441 struct iio_dev
*dev
;
1444 alloc_size
= sizeof(struct iio_dev
);
1446 alloc_size
= ALIGN(alloc_size
, IIO_ALIGN
);
1447 alloc_size
+= sizeof_priv
;
1449 /* ensure 32-byte alignment of whole construct ? */
1450 alloc_size
+= IIO_ALIGN
- 1;
1452 dev
= kzalloc(alloc_size
, GFP_KERNEL
);
1455 dev
->dev
.groups
= dev
->groups
;
1456 dev
->dev
.type
= &iio_device_type
;
1457 dev
->dev
.bus
= &iio_bus_type
;
1458 device_initialize(&dev
->dev
);
1459 dev_set_drvdata(&dev
->dev
, (void *)dev
);
1460 mutex_init(&dev
->mlock
);
1461 mutex_init(&dev
->info_exist_lock
);
1462 INIT_LIST_HEAD(&dev
->channel_attr_list
);
1464 dev
->id
= ida_simple_get(&iio_ida
, 0, 0, GFP_KERNEL
);
1466 /* cannot use a dev_err as the name isn't available */
1467 pr_err("failed to get device id\n");
1471 dev_set_name(&dev
->dev
, "iio:device%d", dev
->id
);
1472 INIT_LIST_HEAD(&dev
->buffer_list
);
1477 EXPORT_SYMBOL(iio_device_alloc
);
1480 * iio_device_free() - free an iio_dev from a driver
1481 * @dev: the iio_dev associated with the device
1483 void iio_device_free(struct iio_dev
*dev
)
1486 put_device(&dev
->dev
);
1488 EXPORT_SYMBOL(iio_device_free
);
1490 static void devm_iio_device_release(struct device
*dev
, void *res
)
1492 iio_device_free(*(struct iio_dev
**)res
);
1495 int devm_iio_device_match(struct device
*dev
, void *res
, void *data
)
1497 struct iio_dev
**r
= res
;
1504 EXPORT_SYMBOL_GPL(devm_iio_device_match
);
1507 * devm_iio_device_alloc - Resource-managed iio_device_alloc()
1508 * @dev: Device to allocate iio_dev for
1509 * @sizeof_priv: Space to allocate for private structure.
1511 * Managed iio_device_alloc. iio_dev allocated with this function is
1512 * automatically freed on driver detach.
1514 * If an iio_dev allocated with this function needs to be freed separately,
1515 * devm_iio_device_free() must be used.
1518 * Pointer to allocated iio_dev on success, NULL on failure.
1520 struct iio_dev
*devm_iio_device_alloc(struct device
*dev
, int sizeof_priv
)
1522 struct iio_dev
**ptr
, *iio_dev
;
1524 ptr
= devres_alloc(devm_iio_device_release
, sizeof(*ptr
),
1529 iio_dev
= iio_device_alloc(sizeof_priv
);
1532 devres_add(dev
, ptr
);
1539 EXPORT_SYMBOL_GPL(devm_iio_device_alloc
);
1542 * devm_iio_device_free - Resource-managed iio_device_free()
1543 * @dev: Device this iio_dev belongs to
1544 * @iio_dev: the iio_dev associated with the device
1546 * Free iio_dev allocated with devm_iio_device_alloc().
1548 void devm_iio_device_free(struct device
*dev
, struct iio_dev
*iio_dev
)
1552 rc
= devres_release(dev
, devm_iio_device_release
,
1553 devm_iio_device_match
, iio_dev
);
1556 EXPORT_SYMBOL_GPL(devm_iio_device_free
);
1559 * iio_chrdev_open() - chrdev file open for buffer access and ioctls
1560 * @inode: Inode structure for identifying the device in the file system
1561 * @filp: File structure for iio device used to keep and later access
1564 * Return: 0 on success or -EBUSY if the device is already opened
1566 static int iio_chrdev_open(struct inode
*inode
, struct file
*filp
)
1568 struct iio_dev
*indio_dev
= container_of(inode
->i_cdev
,
1569 struct iio_dev
, chrdev
);
1571 if (test_and_set_bit(IIO_BUSY_BIT_POS
, &indio_dev
->flags
))
1574 iio_device_get(indio_dev
);
1576 filp
->private_data
= indio_dev
;
1582 * iio_chrdev_release() - chrdev file close buffer access and ioctls
1583 * @inode: Inode structure pointer for the char device
1584 * @filp: File structure pointer for the char device
1586 * Return: 0 for successful release
1588 static int iio_chrdev_release(struct inode
*inode
, struct file
*filp
)
1590 struct iio_dev
*indio_dev
= container_of(inode
->i_cdev
,
1591 struct iio_dev
, chrdev
);
1592 clear_bit(IIO_BUSY_BIT_POS
, &indio_dev
->flags
);
1593 iio_device_put(indio_dev
);
1598 /* Somewhat of a cross file organization violation - ioctls here are actually
1600 static long iio_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
1602 struct iio_dev
*indio_dev
= filp
->private_data
;
1603 int __user
*ip
= (int __user
*)arg
;
1606 if (!indio_dev
->info
)
1609 if (cmd
== IIO_GET_EVENT_FD_IOCTL
) {
1610 fd
= iio_event_getfd(indio_dev
);
1613 if (copy_to_user(ip
, &fd
, sizeof(fd
)))
1620 static const struct file_operations iio_buffer_fileops
= {
1621 .read
= iio_buffer_read_first_n_outer_addr
,
1622 .release
= iio_chrdev_release
,
1623 .open
= iio_chrdev_open
,
1624 .poll
= iio_buffer_poll_addr
,
1625 .owner
= THIS_MODULE
,
1626 .llseek
= noop_llseek
,
1627 .unlocked_ioctl
= iio_ioctl
,
1628 .compat_ioctl
= iio_ioctl
,
1631 static int iio_check_unique_scan_index(struct iio_dev
*indio_dev
)
1634 const struct iio_chan_spec
*channels
= indio_dev
->channels
;
1636 if (!(indio_dev
->modes
& INDIO_ALL_BUFFER_MODES
))
1639 for (i
= 0; i
< indio_dev
->num_channels
- 1; i
++) {
1640 if (channels
[i
].scan_index
< 0)
1642 for (j
= i
+ 1; j
< indio_dev
->num_channels
; j
++)
1643 if (channels
[i
].scan_index
== channels
[j
].scan_index
) {
1644 dev_err(&indio_dev
->dev
,
1645 "Duplicate scan index %d\n",
1646 channels
[i
].scan_index
);
1654 static const struct iio_buffer_setup_ops noop_ring_setup_ops
;
1656 int __iio_device_register(struct iio_dev
*indio_dev
, struct module
*this_mod
)
1660 indio_dev
->driver_module
= this_mod
;
1661 /* If the calling driver did not initialize of_node, do it here */
1662 if (!indio_dev
->dev
.of_node
&& indio_dev
->dev
.parent
)
1663 indio_dev
->dev
.of_node
= indio_dev
->dev
.parent
->of_node
;
1665 ret
= iio_check_unique_scan_index(indio_dev
);
1669 if (!indio_dev
->info
)
1672 /* configure elements for the chrdev */
1673 indio_dev
->dev
.devt
= MKDEV(MAJOR(iio_devt
), indio_dev
->id
);
1675 ret
= iio_device_register_debugfs(indio_dev
);
1677 dev_err(indio_dev
->dev
.parent
,
1678 "Failed to register debugfs interfaces\n");
1682 ret
= iio_buffer_alloc_sysfs_and_mask(indio_dev
);
1684 dev_err(indio_dev
->dev
.parent
,
1685 "Failed to create buffer sysfs interfaces\n");
1686 goto error_unreg_debugfs
;
1689 ret
= iio_device_register_sysfs(indio_dev
);
1691 dev_err(indio_dev
->dev
.parent
,
1692 "Failed to register sysfs interfaces\n");
1693 goto error_buffer_free_sysfs
;
1695 ret
= iio_device_register_eventset(indio_dev
);
1697 dev_err(indio_dev
->dev
.parent
,
1698 "Failed to register event set\n");
1699 goto error_free_sysfs
;
1701 if (indio_dev
->modes
& INDIO_ALL_TRIGGERED_MODES
)
1702 iio_device_register_trigger_consumer(indio_dev
);
1704 if ((indio_dev
->modes
& INDIO_ALL_BUFFER_MODES
) &&
1705 indio_dev
->setup_ops
== NULL
)
1706 indio_dev
->setup_ops
= &noop_ring_setup_ops
;
1708 cdev_init(&indio_dev
->chrdev
, &iio_buffer_fileops
);
1710 indio_dev
->chrdev
.owner
= this_mod
;
1712 ret
= cdev_device_add(&indio_dev
->chrdev
, &indio_dev
->dev
);
1714 goto error_unreg_eventset
;
1718 error_unreg_eventset
:
1719 iio_device_unregister_eventset(indio_dev
);
1721 iio_device_unregister_sysfs(indio_dev
);
1722 error_buffer_free_sysfs
:
1723 iio_buffer_free_sysfs_and_mask(indio_dev
);
1724 error_unreg_debugfs
:
1725 iio_device_unregister_debugfs(indio_dev
);
1728 EXPORT_SYMBOL(__iio_device_register
);
1731 * iio_device_unregister() - unregister a device from the IIO subsystem
1732 * @indio_dev: Device structure representing the device.
1734 void iio_device_unregister(struct iio_dev
*indio_dev
)
1736 cdev_device_del(&indio_dev
->chrdev
, &indio_dev
->dev
);
1738 mutex_lock(&indio_dev
->info_exist_lock
);
1740 iio_device_unregister_debugfs(indio_dev
);
1742 iio_disable_all_buffers(indio_dev
);
1744 indio_dev
->info
= NULL
;
1746 iio_device_wakeup_eventset(indio_dev
);
1747 iio_buffer_wakeup_poll(indio_dev
);
1749 mutex_unlock(&indio_dev
->info_exist_lock
);
1751 iio_buffer_free_sysfs_and_mask(indio_dev
);
1753 EXPORT_SYMBOL(iio_device_unregister
);
1755 static void devm_iio_device_unreg(struct device
*dev
, void *res
)
1757 iio_device_unregister(*(struct iio_dev
**)res
);
1760 int __devm_iio_device_register(struct device
*dev
, struct iio_dev
*indio_dev
,
1761 struct module
*this_mod
)
1763 struct iio_dev
**ptr
;
1766 ptr
= devres_alloc(devm_iio_device_unreg
, sizeof(*ptr
), GFP_KERNEL
);
1771 ret
= __iio_device_register(indio_dev
, this_mod
);
1773 devres_add(dev
, ptr
);
1779 EXPORT_SYMBOL_GPL(__devm_iio_device_register
);
1782 * devm_iio_device_unregister - Resource-managed iio_device_unregister()
1783 * @dev: Device this iio_dev belongs to
1784 * @indio_dev: the iio_dev associated with the device
1786 * Unregister iio_dev registered with devm_iio_device_register().
1788 void devm_iio_device_unregister(struct device
*dev
, struct iio_dev
*indio_dev
)
1792 rc
= devres_release(dev
, devm_iio_device_unreg
,
1793 devm_iio_device_match
, indio_dev
);
1796 EXPORT_SYMBOL_GPL(devm_iio_device_unregister
);
1799 * iio_device_claim_direct_mode - Keep device in direct mode
1800 * @indio_dev: the iio_dev associated with the device
1802 * If the device is in direct mode it is guaranteed to stay
1803 * that way until iio_device_release_direct_mode() is called.
1805 * Use with iio_device_release_direct_mode()
1807 * Returns: 0 on success, -EBUSY on failure
1809 int iio_device_claim_direct_mode(struct iio_dev
*indio_dev
)
1811 mutex_lock(&indio_dev
->mlock
);
1813 if (iio_buffer_enabled(indio_dev
)) {
1814 mutex_unlock(&indio_dev
->mlock
);
1819 EXPORT_SYMBOL_GPL(iio_device_claim_direct_mode
);
1822 * iio_device_release_direct_mode - releases claim on direct mode
1823 * @indio_dev: the iio_dev associated with the device
1825 * Release the claim. Device is no longer guaranteed to stay
1828 * Use with iio_device_claim_direct_mode()
1830 void iio_device_release_direct_mode(struct iio_dev
*indio_dev
)
1832 mutex_unlock(&indio_dev
->mlock
);
1834 EXPORT_SYMBOL_GPL(iio_device_release_direct_mode
);
1836 subsys_initcall(iio_init
);
1837 module_exit(iio_exit
);
1839 MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>");
1840 MODULE_DESCRIPTION("Industrial I/O core");
1841 MODULE_LICENSE("GPL");