1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Industrial I/O event handling
4 * Copyright (c) 2008 Jonathan Cameron
6 * Based on elements of hwmon and input subsystems.
9 #include <linux/anon_inodes.h>
10 #include <linux/device.h>
12 #include <linux/kernel.h>
13 #include <linux/kfifo.h>
14 #include <linux/module.h>
15 #include <linux/poll.h>
16 #include <linux/sched.h>
17 #include <linux/slab.h>
18 #include <linux/uaccess.h>
19 #include <linux/wait.h>
20 #include <linux/iio/iio.h>
21 #include <linux/iio/iio-opaque.h>
23 #include <linux/iio/sysfs.h>
24 #include <linux/iio/events.h>
27 * struct iio_event_interface - chrdev interface for an event line
28 * @wait: wait queue to allow blocking reads of events
29 * @det_events: list of detected events
30 * @dev_attr_list: list of event interface sysfs attribute
31 * @flags: file operations related flags including busy flag.
32 * @group: event interface sysfs attribute group
33 * @read_lock: lock to protect kfifo read operations
35 struct iio_event_interface
{
36 wait_queue_head_t wait
;
37 DECLARE_KFIFO(det_events
, struct iio_event_data
, 16);
39 struct list_head dev_attr_list
;
41 struct attribute_group group
;
42 struct mutex read_lock
;
45 bool iio_event_enabled(const struct iio_event_interface
*ev_int
)
47 return !!test_bit(IIO_BUSY_BIT_POS
, &ev_int
->flags
);
51 * iio_push_event() - try to add event to the list for userspace reading
52 * @indio_dev: IIO device structure
53 * @ev_code: What event
54 * @timestamp: When the event occurred
56 * Note: The caller must make sure that this function is not running
57 * concurrently for the same indio_dev more than once.
59 * This function may be safely used as soon as a valid reference to iio_dev has
60 * been obtained via iio_device_alloc(), but any events that are submitted
61 * before iio_device_register() has successfully completed will be silently
64 int iio_push_event(struct iio_dev
*indio_dev
, u64 ev_code
, s64 timestamp
)
66 struct iio_dev_opaque
*iio_dev_opaque
= to_iio_dev_opaque(indio_dev
);
67 struct iio_event_interface
*ev_int
= iio_dev_opaque
->event_interface
;
68 struct iio_event_data ev
;
74 /* Does anyone care? */
75 if (iio_event_enabled(ev_int
)) {
78 ev
.timestamp
= timestamp
;
80 copied
= kfifo_put(&ev_int
->det_events
, ev
);
82 wake_up_poll(&ev_int
->wait
, EPOLLIN
);
87 EXPORT_SYMBOL(iio_push_event
);
90 * iio_event_poll() - poll the event queue to find out if it has data
91 * @filep: File structure pointer to identify the device
92 * @wait: Poll table pointer to add the wait queue on
94 * Return: (EPOLLIN | EPOLLRDNORM) if data is available for reading
95 * or a negative error code on failure
97 static __poll_t
iio_event_poll(struct file
*filep
,
98 struct poll_table_struct
*wait
)
100 struct iio_dev
*indio_dev
= filep
->private_data
;
101 struct iio_dev_opaque
*iio_dev_opaque
= to_iio_dev_opaque(indio_dev
);
102 struct iio_event_interface
*ev_int
= iio_dev_opaque
->event_interface
;
105 if (!indio_dev
->info
)
108 poll_wait(filep
, &ev_int
->wait
, wait
);
110 if (!kfifo_is_empty(&ev_int
->det_events
))
111 events
= EPOLLIN
| EPOLLRDNORM
;
116 static ssize_t
iio_event_chrdev_read(struct file
*filep
,
121 struct iio_dev
*indio_dev
= filep
->private_data
;
122 struct iio_dev_opaque
*iio_dev_opaque
= to_iio_dev_opaque(indio_dev
);
123 struct iio_event_interface
*ev_int
= iio_dev_opaque
->event_interface
;
127 if (!indio_dev
->info
)
130 if (count
< sizeof(struct iio_event_data
))
134 if (kfifo_is_empty(&ev_int
->det_events
)) {
135 if (filep
->f_flags
& O_NONBLOCK
)
138 ret
= wait_event_interruptible(ev_int
->wait
,
139 !kfifo_is_empty(&ev_int
->det_events
) ||
140 indio_dev
->info
== NULL
);
143 if (indio_dev
->info
== NULL
)
147 if (mutex_lock_interruptible(&ev_int
->read_lock
))
149 ret
= kfifo_to_user(&ev_int
->det_events
, buf
, count
, &copied
);
150 mutex_unlock(&ev_int
->read_lock
);
156 * If we couldn't read anything from the fifo (a different
157 * thread might have been faster) we either return -EAGAIN if
158 * the file descriptor is non-blocking, otherwise we go back to
159 * sleep and wait for more data to arrive.
161 if (copied
== 0 && (filep
->f_flags
& O_NONBLOCK
))
164 } while (copied
== 0);
169 static int iio_event_chrdev_release(struct inode
*inode
, struct file
*filep
)
171 struct iio_dev
*indio_dev
= filep
->private_data
;
172 struct iio_dev_opaque
*iio_dev_opaque
= to_iio_dev_opaque(indio_dev
);
173 struct iio_event_interface
*ev_int
= iio_dev_opaque
->event_interface
;
175 clear_bit(IIO_BUSY_BIT_POS
, &ev_int
->flags
);
177 iio_device_put(indio_dev
);
182 static const struct file_operations iio_event_chrdev_fileops
= {
183 .read
= iio_event_chrdev_read
,
184 .poll
= iio_event_poll
,
185 .release
= iio_event_chrdev_release
,
186 .owner
= THIS_MODULE
,
187 .llseek
= noop_llseek
,
190 int iio_event_getfd(struct iio_dev
*indio_dev
)
192 struct iio_dev_opaque
*iio_dev_opaque
= to_iio_dev_opaque(indio_dev
);
193 struct iio_event_interface
*ev_int
= iio_dev_opaque
->event_interface
;
199 fd
= mutex_lock_interruptible(&indio_dev
->mlock
);
203 if (test_and_set_bit(IIO_BUSY_BIT_POS
, &ev_int
->flags
)) {
208 iio_device_get(indio_dev
);
210 fd
= anon_inode_getfd("iio:event", &iio_event_chrdev_fileops
,
211 indio_dev
, O_RDONLY
| O_CLOEXEC
);
213 clear_bit(IIO_BUSY_BIT_POS
, &ev_int
->flags
);
214 iio_device_put(indio_dev
);
216 kfifo_reset_out(&ev_int
->det_events
);
220 mutex_unlock(&indio_dev
->mlock
);
224 static const char * const iio_ev_type_text
[] = {
225 [IIO_EV_TYPE_THRESH
] = "thresh",
226 [IIO_EV_TYPE_MAG
] = "mag",
227 [IIO_EV_TYPE_ROC
] = "roc",
228 [IIO_EV_TYPE_THRESH_ADAPTIVE
] = "thresh_adaptive",
229 [IIO_EV_TYPE_MAG_ADAPTIVE
] = "mag_adaptive",
230 [IIO_EV_TYPE_CHANGE
] = "change",
233 static const char * const iio_ev_dir_text
[] = {
234 [IIO_EV_DIR_EITHER
] = "either",
235 [IIO_EV_DIR_RISING
] = "rising",
236 [IIO_EV_DIR_FALLING
] = "falling"
239 static const char * const iio_ev_info_text
[] = {
240 [IIO_EV_INFO_ENABLE
] = "en",
241 [IIO_EV_INFO_VALUE
] = "value",
242 [IIO_EV_INFO_HYSTERESIS
] = "hysteresis",
243 [IIO_EV_INFO_PERIOD
] = "period",
244 [IIO_EV_INFO_HIGH_PASS_FILTER_3DB
] = "high_pass_filter_3db",
245 [IIO_EV_INFO_LOW_PASS_FILTER_3DB
] = "low_pass_filter_3db",
248 static enum iio_event_direction
iio_ev_attr_dir(struct iio_dev_attr
*attr
)
250 return attr
->c
->event_spec
[attr
->address
& 0xffff].dir
;
253 static enum iio_event_type
iio_ev_attr_type(struct iio_dev_attr
*attr
)
255 return attr
->c
->event_spec
[attr
->address
& 0xffff].type
;
258 static enum iio_event_info
iio_ev_attr_info(struct iio_dev_attr
*attr
)
260 return (attr
->address
>> 16) & 0xffff;
263 static ssize_t
iio_ev_state_store(struct device
*dev
,
264 struct device_attribute
*attr
,
268 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
269 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
273 ret
= strtobool(buf
, &val
);
277 ret
= indio_dev
->info
->write_event_config(indio_dev
,
278 this_attr
->c
, iio_ev_attr_type(this_attr
),
279 iio_ev_attr_dir(this_attr
), val
);
281 return (ret
< 0) ? ret
: len
;
284 static ssize_t
iio_ev_state_show(struct device
*dev
,
285 struct device_attribute
*attr
,
288 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
289 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
292 val
= indio_dev
->info
->read_event_config(indio_dev
,
293 this_attr
->c
, iio_ev_attr_type(this_attr
),
294 iio_ev_attr_dir(this_attr
));
298 return sprintf(buf
, "%d\n", val
);
301 static ssize_t
iio_ev_value_show(struct device
*dev
,
302 struct device_attribute
*attr
,
305 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
306 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
307 int val
, val2
, val_arr
[2];
310 ret
= indio_dev
->info
->read_event_value(indio_dev
,
311 this_attr
->c
, iio_ev_attr_type(this_attr
),
312 iio_ev_attr_dir(this_attr
), iio_ev_attr_info(this_attr
),
318 return iio_format_value(buf
, ret
, 2, val_arr
);
321 static ssize_t
iio_ev_value_store(struct device
*dev
,
322 struct device_attribute
*attr
,
326 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
327 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
331 if (!indio_dev
->info
->write_event_value
)
334 ret
= iio_str_to_fixpoint(buf
, 100000, &val
, &val2
);
337 ret
= indio_dev
->info
->write_event_value(indio_dev
,
338 this_attr
->c
, iio_ev_attr_type(this_attr
),
339 iio_ev_attr_dir(this_attr
), iio_ev_attr_info(this_attr
),
347 static int iio_device_add_event(struct iio_dev
*indio_dev
,
348 const struct iio_chan_spec
*chan
, unsigned int spec_index
,
349 enum iio_event_type type
, enum iio_event_direction dir
,
350 enum iio_shared_by shared_by
, const unsigned long *mask
)
352 struct iio_dev_opaque
*iio_dev_opaque
= to_iio_dev_opaque(indio_dev
);
353 ssize_t (*show
)(struct device
*, struct device_attribute
*, char *);
354 ssize_t (*store
)(struct device
*, struct device_attribute
*,
355 const char *, size_t);
356 unsigned int attrcount
= 0;
361 for_each_set_bit(i
, mask
, sizeof(*mask
)*8) {
362 if (i
>= ARRAY_SIZE(iio_ev_info_text
))
364 if (dir
!= IIO_EV_DIR_NONE
)
365 postfix
= kasprintf(GFP_KERNEL
, "%s_%s_%s",
366 iio_ev_type_text
[type
],
367 iio_ev_dir_text
[dir
],
368 iio_ev_info_text
[i
]);
370 postfix
= kasprintf(GFP_KERNEL
, "%s_%s",
371 iio_ev_type_text
[type
],
372 iio_ev_info_text
[i
]);
376 if (i
== IIO_EV_INFO_ENABLE
) {
377 show
= iio_ev_state_show
;
378 store
= iio_ev_state_store
;
380 show
= iio_ev_value_show
;
381 store
= iio_ev_value_store
;
384 ret
= __iio_add_chan_devattr(postfix
, chan
, show
, store
,
385 (i
<< 16) | spec_index
, shared_by
, &indio_dev
->dev
,
386 &iio_dev_opaque
->event_interface
->dev_attr_list
);
389 if ((ret
== -EBUSY
) && (shared_by
!= IIO_SEPARATE
))
401 static int iio_device_add_event_sysfs(struct iio_dev
*indio_dev
,
402 struct iio_chan_spec
const *chan
)
404 int ret
= 0, i
, attrcount
= 0;
405 enum iio_event_direction dir
;
406 enum iio_event_type type
;
408 for (i
= 0; i
< chan
->num_event_specs
; i
++) {
409 type
= chan
->event_spec
[i
].type
;
410 dir
= chan
->event_spec
[i
].dir
;
412 ret
= iio_device_add_event(indio_dev
, chan
, i
, type
, dir
,
413 IIO_SEPARATE
, &chan
->event_spec
[i
].mask_separate
);
418 ret
= iio_device_add_event(indio_dev
, chan
, i
, type
, dir
,
420 &chan
->event_spec
[i
].mask_shared_by_type
);
425 ret
= iio_device_add_event(indio_dev
, chan
, i
, type
, dir
,
427 &chan
->event_spec
[i
].mask_shared_by_dir
);
432 ret
= iio_device_add_event(indio_dev
, chan
, i
, type
, dir
,
434 &chan
->event_spec
[i
].mask_shared_by_all
);
443 static inline int __iio_add_event_config_attrs(struct iio_dev
*indio_dev
)
445 int j
, ret
, attrcount
= 0;
447 /* Dynamically created from the channels array */
448 for (j
= 0; j
< indio_dev
->num_channels
; j
++) {
449 ret
= iio_device_add_event_sysfs(indio_dev
,
450 &indio_dev
->channels
[j
]);
458 static bool iio_check_for_dynamic_events(struct iio_dev
*indio_dev
)
462 for (j
= 0; j
< indio_dev
->num_channels
; j
++) {
463 if (indio_dev
->channels
[j
].num_event_specs
!= 0)
469 static void iio_setup_ev_int(struct iio_event_interface
*ev_int
)
471 INIT_KFIFO(ev_int
->det_events
);
472 init_waitqueue_head(&ev_int
->wait
);
473 mutex_init(&ev_int
->read_lock
);
476 static const char *iio_event_group_name
= "events";
477 int iio_device_register_eventset(struct iio_dev
*indio_dev
)
479 struct iio_dev_opaque
*iio_dev_opaque
= to_iio_dev_opaque(indio_dev
);
480 struct iio_dev_attr
*p
;
481 int ret
= 0, attrcount_orig
= 0, attrcount
, attrn
;
482 struct attribute
**attr
;
484 if (!(indio_dev
->info
->event_attrs
||
485 iio_check_for_dynamic_events(indio_dev
)))
488 iio_dev_opaque
->event_interface
=
489 kzalloc(sizeof(struct iio_event_interface
), GFP_KERNEL
);
490 if (iio_dev_opaque
->event_interface
== NULL
)
493 INIT_LIST_HEAD(&iio_dev_opaque
->event_interface
->dev_attr_list
);
495 iio_setup_ev_int(iio_dev_opaque
->event_interface
);
496 if (indio_dev
->info
->event_attrs
!= NULL
) {
497 attr
= indio_dev
->info
->event_attrs
->attrs
;
498 while (*attr
++ != NULL
)
501 attrcount
= attrcount_orig
;
502 if (indio_dev
->channels
) {
503 ret
= __iio_add_event_config_attrs(indio_dev
);
505 goto error_free_setup_event_lines
;
509 iio_dev_opaque
->event_interface
->group
.name
= iio_event_group_name
;
510 iio_dev_opaque
->event_interface
->group
.attrs
= kcalloc(attrcount
+ 1,
511 sizeof(iio_dev_opaque
->event_interface
->group
.attrs
[0]),
513 if (iio_dev_opaque
->event_interface
->group
.attrs
== NULL
) {
515 goto error_free_setup_event_lines
;
517 if (indio_dev
->info
->event_attrs
)
518 memcpy(iio_dev_opaque
->event_interface
->group
.attrs
,
519 indio_dev
->info
->event_attrs
->attrs
,
520 sizeof(iio_dev_opaque
->event_interface
->group
.attrs
[0])
522 attrn
= attrcount_orig
;
523 /* Add all elements from the list. */
524 list_for_each_entry(p
,
525 &iio_dev_opaque
->event_interface
->dev_attr_list
,
527 iio_dev_opaque
->event_interface
->group
.attrs
[attrn
++] =
529 indio_dev
->groups
[indio_dev
->groupcounter
++] =
530 &iio_dev_opaque
->event_interface
->group
;
534 error_free_setup_event_lines
:
535 iio_free_chan_devattr_list(&iio_dev_opaque
->event_interface
->dev_attr_list
);
536 kfree(iio_dev_opaque
->event_interface
);
537 iio_dev_opaque
->event_interface
= NULL
;
542 * iio_device_wakeup_eventset - Wakes up the event waitqueue
543 * @indio_dev: The IIO device
545 * Wakes up the event waitqueue used for poll() and blocking read().
546 * Should usually be called when the device is unregistered.
548 void iio_device_wakeup_eventset(struct iio_dev
*indio_dev
)
550 struct iio_dev_opaque
*iio_dev_opaque
= to_iio_dev_opaque(indio_dev
);
552 if (iio_dev_opaque
->event_interface
== NULL
)
554 wake_up(&iio_dev_opaque
->event_interface
->wait
);
557 void iio_device_unregister_eventset(struct iio_dev
*indio_dev
)
559 struct iio_dev_opaque
*iio_dev_opaque
= to_iio_dev_opaque(indio_dev
);
561 if (iio_dev_opaque
->event_interface
== NULL
)
563 iio_free_chan_devattr_list(&iio_dev_opaque
->event_interface
->dev_attr_list
);
564 kfree(iio_dev_opaque
->event_interface
->group
.attrs
);
565 kfree(iio_dev_opaque
->event_interface
);