1 /* Industrial I/O event handling
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 #include <linux/anon_inodes.h>
13 #include <linux/device.h>
15 #include <linux/kernel.h>
16 #include <linux/kfifo.h>
17 #include <linux/module.h>
18 #include <linux/poll.h>
19 #include <linux/sched.h>
20 #include <linux/slab.h>
21 #include <linux/uaccess.h>
22 #include <linux/wait.h>
23 #include <linux/iio/iio.h>
25 #include <linux/iio/sysfs.h>
26 #include <linux/iio/events.h>
29 * struct iio_event_interface - chrdev interface for an event line
30 * @wait: wait queue to allow blocking reads of events
31 * @det_events: list of detected events
32 * @dev_attr_list: list of event interface sysfs attribute
33 * @flags: file operations related flags including busy flag.
34 * @group: event interface sysfs attribute group
36 struct iio_event_interface
{
37 wait_queue_head_t wait
;
38 DECLARE_KFIFO(det_events
, struct iio_event_data
, 16);
40 struct list_head dev_attr_list
;
42 struct attribute_group group
;
45 int iio_push_event(struct iio_dev
*indio_dev
, u64 ev_code
, s64 timestamp
)
47 struct iio_event_interface
*ev_int
= indio_dev
->event_interface
;
48 struct iio_event_data ev
;
51 /* Does anyone care? */
52 spin_lock(&ev_int
->wait
.lock
);
53 if (test_bit(IIO_BUSY_BIT_POS
, &ev_int
->flags
)) {
56 ev
.timestamp
= timestamp
;
58 copied
= kfifo_put(&ev_int
->det_events
, &ev
);
60 wake_up_locked_poll(&ev_int
->wait
, POLLIN
);
62 spin_unlock(&ev_int
->wait
.lock
);
66 EXPORT_SYMBOL(iio_push_event
);
69 * iio_event_poll() - poll the event queue to find out if it has data
71 static unsigned int iio_event_poll(struct file
*filep
,
72 struct poll_table_struct
*wait
)
74 struct iio_event_interface
*ev_int
= filep
->private_data
;
75 unsigned int events
= 0;
77 poll_wait(filep
, &ev_int
->wait
, wait
);
79 spin_lock(&ev_int
->wait
.lock
);
80 if (!kfifo_is_empty(&ev_int
->det_events
))
81 events
= POLLIN
| POLLRDNORM
;
82 spin_unlock(&ev_int
->wait
.lock
);
87 static ssize_t
iio_event_chrdev_read(struct file
*filep
,
92 struct iio_event_interface
*ev_int
= filep
->private_data
;
96 if (count
< sizeof(struct iio_event_data
))
99 spin_lock(&ev_int
->wait
.lock
);
100 if (kfifo_is_empty(&ev_int
->det_events
)) {
101 if (filep
->f_flags
& O_NONBLOCK
) {
105 /* Blocking on device; waiting for something to be there */
106 ret
= wait_event_interruptible_locked(ev_int
->wait
,
107 !kfifo_is_empty(&ev_int
->det_events
));
110 /* Single access device so no one else can get the data */
113 ret
= kfifo_to_user(&ev_int
->det_events
, buf
, count
, &copied
);
116 spin_unlock(&ev_int
->wait
.lock
);
118 return ret
? ret
: copied
;
121 static int iio_event_chrdev_release(struct inode
*inode
, struct file
*filep
)
123 struct iio_event_interface
*ev_int
= filep
->private_data
;
125 spin_lock(&ev_int
->wait
.lock
);
126 __clear_bit(IIO_BUSY_BIT_POS
, &ev_int
->flags
);
128 * In order to maintain a clean state for reopening,
129 * clear out any awaiting events. The mask will prevent
130 * any new __iio_push_event calls running.
132 kfifo_reset_out(&ev_int
->det_events
);
133 spin_unlock(&ev_int
->wait
.lock
);
138 static const struct file_operations iio_event_chrdev_fileops
= {
139 .read
= iio_event_chrdev_read
,
140 .poll
= iio_event_poll
,
141 .release
= iio_event_chrdev_release
,
142 .owner
= THIS_MODULE
,
143 .llseek
= noop_llseek
,
146 int iio_event_getfd(struct iio_dev
*indio_dev
)
148 struct iio_event_interface
*ev_int
= indio_dev
->event_interface
;
154 spin_lock(&ev_int
->wait
.lock
);
155 if (__test_and_set_bit(IIO_BUSY_BIT_POS
, &ev_int
->flags
)) {
156 spin_unlock(&ev_int
->wait
.lock
);
159 spin_unlock(&ev_int
->wait
.lock
);
160 fd
= anon_inode_getfd("iio:event",
161 &iio_event_chrdev_fileops
, ev_int
, O_RDONLY
);
163 spin_lock(&ev_int
->wait
.lock
);
164 __clear_bit(IIO_BUSY_BIT_POS
, &ev_int
->flags
);
165 spin_unlock(&ev_int
->wait
.lock
);
170 static const char * const iio_ev_type_text
[] = {
171 [IIO_EV_TYPE_THRESH
] = "thresh",
172 [IIO_EV_TYPE_MAG
] = "mag",
173 [IIO_EV_TYPE_ROC
] = "roc",
174 [IIO_EV_TYPE_THRESH_ADAPTIVE
] = "thresh_adaptive",
175 [IIO_EV_TYPE_MAG_ADAPTIVE
] = "mag_adaptive",
178 static const char * const iio_ev_dir_text
[] = {
179 [IIO_EV_DIR_EITHER
] = "either",
180 [IIO_EV_DIR_RISING
] = "rising",
181 [IIO_EV_DIR_FALLING
] = "falling"
184 static ssize_t
iio_ev_state_store(struct device
*dev
,
185 struct device_attribute
*attr
,
189 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
190 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
194 ret
= strtobool(buf
, &val
);
198 ret
= indio_dev
->info
->write_event_config(indio_dev
,
201 return (ret
< 0) ? ret
: len
;
204 static ssize_t
iio_ev_state_show(struct device
*dev
,
205 struct device_attribute
*attr
,
208 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
209 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
210 int val
= indio_dev
->info
->read_event_config(indio_dev
,
216 return sprintf(buf
, "%d\n", val
);
219 static ssize_t
iio_ev_value_show(struct device
*dev
,
220 struct device_attribute
*attr
,
223 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
224 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
227 ret
= indio_dev
->info
->read_event_value(indio_dev
,
228 this_attr
->address
, &val
);
232 return sprintf(buf
, "%d\n", val
);
235 static ssize_t
iio_ev_value_store(struct device
*dev
,
236 struct device_attribute
*attr
,
240 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
241 struct iio_dev_attr
*this_attr
= to_iio_dev_attr(attr
);
245 if (!indio_dev
->info
->write_event_value
)
248 ret
= strict_strtoul(buf
, 10, &val
);
252 ret
= indio_dev
->info
->write_event_value(indio_dev
, this_attr
->address
,
260 static int iio_device_add_event_sysfs(struct iio_dev
*indio_dev
,
261 struct iio_chan_spec
const *chan
)
263 int ret
= 0, i
, attrcount
= 0;
266 if (!chan
->event_mask
)
269 for_each_set_bit(i
, &chan
->event_mask
, sizeof(chan
->event_mask
)*8) {
270 postfix
= kasprintf(GFP_KERNEL
, "%s_%s_en",
271 iio_ev_type_text
[i
/IIO_EV_DIR_MAX
],
272 iio_ev_dir_text
[i
%IIO_EV_DIR_MAX
]);
273 if (postfix
== NULL
) {
278 mask
= IIO_MOD_EVENT_CODE(chan
->type
, 0, chan
->channel
,
281 else if (chan
->differential
)
282 mask
= IIO_EVENT_CODE(chan
->type
,
290 mask
= IIO_UNMOD_EVENT_CODE(chan
->type
,
295 ret
= __iio_add_chan_devattr(postfix
,
302 &indio_dev
->event_interface
->
308 postfix
= kasprintf(GFP_KERNEL
, "%s_%s_value",
309 iio_ev_type_text
[i
/IIO_EV_DIR_MAX
],
310 iio_ev_dir_text
[i
%IIO_EV_DIR_MAX
]);
311 if (postfix
== NULL
) {
315 ret
= __iio_add_chan_devattr(postfix
, chan
,
321 &indio_dev
->event_interface
->
333 static inline void __iio_remove_event_config_attrs(struct iio_dev
*indio_dev
)
335 struct iio_dev_attr
*p
, *n
;
336 list_for_each_entry_safe(p
, n
,
337 &indio_dev
->event_interface
->
339 kfree(p
->dev_attr
.attr
.name
);
344 static inline int __iio_add_event_config_attrs(struct iio_dev
*indio_dev
)
346 int j
, ret
, attrcount
= 0;
348 INIT_LIST_HEAD(&indio_dev
->event_interface
->dev_attr_list
);
349 /* Dynically created from the channels array */
350 for (j
= 0; j
< indio_dev
->num_channels
; j
++) {
351 ret
= iio_device_add_event_sysfs(indio_dev
,
352 &indio_dev
->channels
[j
]);
354 goto error_clear_attrs
;
360 __iio_remove_event_config_attrs(indio_dev
);
365 static bool iio_check_for_dynamic_events(struct iio_dev
*indio_dev
)
369 for (j
= 0; j
< indio_dev
->num_channels
; j
++)
370 if (indio_dev
->channels
[j
].event_mask
!= 0)
375 static void iio_setup_ev_int(struct iio_event_interface
*ev_int
)
377 INIT_KFIFO(ev_int
->det_events
);
378 init_waitqueue_head(&ev_int
->wait
);
381 static const char *iio_event_group_name
= "events";
382 int iio_device_register_eventset(struct iio_dev
*indio_dev
)
384 struct iio_dev_attr
*p
;
385 int ret
= 0, attrcount_orig
= 0, attrcount
, attrn
;
386 struct attribute
**attr
;
388 if (!(indio_dev
->info
->event_attrs
||
389 iio_check_for_dynamic_events(indio_dev
)))
392 indio_dev
->event_interface
=
393 kzalloc(sizeof(struct iio_event_interface
), GFP_KERNEL
);
394 if (indio_dev
->event_interface
== NULL
) {
399 iio_setup_ev_int(indio_dev
->event_interface
);
400 if (indio_dev
->info
->event_attrs
!= NULL
) {
401 attr
= indio_dev
->info
->event_attrs
->attrs
;
402 while (*attr
++ != NULL
)
405 attrcount
= attrcount_orig
;
406 if (indio_dev
->channels
) {
407 ret
= __iio_add_event_config_attrs(indio_dev
);
409 goto error_free_setup_event_lines
;
413 indio_dev
->event_interface
->group
.name
= iio_event_group_name
;
414 indio_dev
->event_interface
->group
.attrs
= kcalloc(attrcount
+ 1,
415 sizeof(indio_dev
->event_interface
->group
.attrs
[0]),
417 if (indio_dev
->event_interface
->group
.attrs
== NULL
) {
419 goto error_free_setup_event_lines
;
421 if (indio_dev
->info
->event_attrs
)
422 memcpy(indio_dev
->event_interface
->group
.attrs
,
423 indio_dev
->info
->event_attrs
->attrs
,
424 sizeof(indio_dev
->event_interface
->group
.attrs
[0])
426 attrn
= attrcount_orig
;
427 /* Add all elements from the list. */
428 list_for_each_entry(p
,
429 &indio_dev
->event_interface
->dev_attr_list
,
431 indio_dev
->event_interface
->group
.attrs
[attrn
++] =
433 indio_dev
->groups
[indio_dev
->groupcounter
++] =
434 &indio_dev
->event_interface
->group
;
438 error_free_setup_event_lines
:
439 __iio_remove_event_config_attrs(indio_dev
);
440 kfree(indio_dev
->event_interface
);
446 void iio_device_unregister_eventset(struct iio_dev
*indio_dev
)
448 if (indio_dev
->event_interface
== NULL
)
450 __iio_remove_event_config_attrs(indio_dev
);
451 kfree(indio_dev
->event_interface
->group
.attrs
);
452 kfree(indio_dev
->event_interface
);