blob: d0732eac0f0aceefefef3e433da9abaf15dae097 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +01002/* Industrial I/O event handling
3 *
4 * Copyright (c) 2008 Jonathan Cameron
5 *
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +01006 * Based on elements of hwmon and input subsystems.
7 */
8
9#include <linux/anon_inodes.h>
10#include <linux/device.h>
11#include <linux/fs.h>
12#include <linux/kernel.h>
Lars-Peter Clausen2c001932012-01-03 14:59:39 +010013#include <linux/kfifo.h>
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010014#include <linux/module.h>
Lars-Peter Clausene18045e2012-01-03 14:59:41 +010015#include <linux/poll.h>
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010016#include <linux/sched.h>
17#include <linux/slab.h>
18#include <linux/uaccess.h>
19#include <linux/wait.h>
Jonathan Cameron06458e22012-04-25 15:54:58 +010020#include <linux/iio/iio.h>
Alexandru Ardeleanfa83c3b2020-06-30 07:57:08 +030021#include <linux/iio/iio-opaque.h>
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010022#include "iio_core.h"
Jonathan Cameron06458e22012-04-25 15:54:58 +010023#include <linux/iio/sysfs.h>
24#include <linux/iio/events.h>
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010025
26/**
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010027 * struct iio_event_interface - chrdev interface for an event line
28 * @wait: wait queue to allow blocking reads of events
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010029 * @det_events: list of detected events
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010030 * @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
Cristina Opriceanaa316c012015-07-24 16:21:50 +030033 * @read_lock: lock to protect kfifo read operations
Alexandru Ardelean8dedcc32020-09-24 11:41:55 +030034 * @ioctl_handler: handler for event ioctl() calls
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010035 */
36struct iio_event_interface {
37 wait_queue_head_t wait;
Lars-Peter Clausen2c001932012-01-03 14:59:39 +010038 DECLARE_KFIFO(det_events, struct iio_event_data, 16);
39
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010040 struct list_head dev_attr_list;
41 unsigned long flags;
42 struct attribute_group group;
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +000043 struct mutex read_lock;
Alexandru Ardelean8dedcc32020-09-24 11:41:55 +030044 struct iio_ioctl_handler ioctl_handler;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010045};
46
Gregor Boiriebc2b7da2016-03-09 19:05:49 +010047bool iio_event_enabled(const struct iio_event_interface *ev_int)
48{
49 return !!test_bit(IIO_BUSY_BIT_POS, &ev_int->flags);
50}
51
Sachin Kamata7e57dc2013-10-29 11:39:00 +000052/**
53 * iio_push_event() - try to add event to the list for userspace reading
54 * @indio_dev: IIO device structure
55 * @ev_code: What event
56 * @timestamp: When the event occurred
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +000057 *
58 * Note: The caller must make sure that this function is not running
59 * concurrently for the same indio_dev more than once.
Lars-Peter Clausen4b1a9382016-09-08 18:49:10 +020060 *
61 * This function may be safely used as soon as a valid reference to iio_dev has
62 * been obtained via iio_device_alloc(), but any events that are submitted
63 * before iio_device_register() has successfully completed will be silently
64 * discarded.
Sachin Kamata7e57dc2013-10-29 11:39:00 +000065 **/
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010066int iio_push_event(struct iio_dev *indio_dev, u64 ev_code, s64 timestamp)
67{
Alexandru Ardeleanfa83c3b2020-06-30 07:57:08 +030068 struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev);
69 struct iio_event_interface *ev_int = iio_dev_opaque->event_interface;
Lars-Peter Clausen2c001932012-01-03 14:59:39 +010070 struct iio_event_data ev;
71 int copied;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010072
Lars-Peter Clausen4b1a9382016-09-08 18:49:10 +020073 if (!ev_int)
74 return 0;
75
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010076 /* Does anyone care? */
Gregor Boiriebc2b7da2016-03-09 19:05:49 +010077 if (iio_event_enabled(ev_int)) {
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010078
Lars-Peter Clausen2c001932012-01-03 14:59:39 +010079 ev.id = ev_code;
80 ev.timestamp = timestamp;
81
Stefani Seibold498d3192013-11-14 14:32:17 -080082 copied = kfifo_put(&ev_int->det_events, ev);
Lars-Peter Clausen2c001932012-01-03 14:59:39 +010083 if (copied != 0)
Linus Torvaldsa9a08842018-02-11 14:34:03 -080084 wake_up_poll(&ev_int->wait, EPOLLIN);
Lars-Peter Clausen43ba1102012-01-03 14:59:40 +010085 }
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010086
Lars-Peter Clausen2c001932012-01-03 14:59:39 +010087 return 0;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010088}
89EXPORT_SYMBOL(iio_push_event);
90
Lars-Peter Clausene18045e2012-01-03 14:59:41 +010091/**
92 * iio_event_poll() - poll the event queue to find out if it has data
Cristina Opriceanaa316c012015-07-24 16:21:50 +030093 * @filep: File structure pointer to identify the device
94 * @wait: Poll table pointer to add the wait queue on
95 *
Linus Torvaldsa9a08842018-02-11 14:34:03 -080096 * Return: (EPOLLIN | EPOLLRDNORM) if data is available for reading
Cristina Opriceanaa316c012015-07-24 16:21:50 +030097 * or a negative error code on failure
Lars-Peter Clausene18045e2012-01-03 14:59:41 +010098 */
Al Viroafc9a422017-07-03 06:39:46 -040099static __poll_t iio_event_poll(struct file *filep,
Lars-Peter Clausene18045e2012-01-03 14:59:41 +0100100 struct poll_table_struct *wait)
101{
Lars-Peter Clausencadc2122013-09-18 21:02:00 +0100102 struct iio_dev *indio_dev = filep->private_data;
Alexandru Ardeleanfa83c3b2020-06-30 07:57:08 +0300103 struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev);
104 struct iio_event_interface *ev_int = iio_dev_opaque->event_interface;
Al Viroafc9a422017-07-03 06:39:46 -0400105 __poll_t events = 0;
Lars-Peter Clausene18045e2012-01-03 14:59:41 +0100106
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +0100107 if (!indio_dev->info)
Cristina Opriceana41d903c2015-08-03 13:00:47 +0300108 return events;
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +0100109
Lars-Peter Clausene18045e2012-01-03 14:59:41 +0100110 poll_wait(filep, &ev_int->wait, wait);
111
Lars-Peter Clausene18045e2012-01-03 14:59:41 +0100112 if (!kfifo_is_empty(&ev_int->det_events))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800113 events = EPOLLIN | EPOLLRDNORM;
Lars-Peter Clausene18045e2012-01-03 14:59:41 +0100114
115 return events;
116}
117
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100118static ssize_t iio_event_chrdev_read(struct file *filep,
119 char __user *buf,
120 size_t count,
121 loff_t *f_ps)
122{
Lars-Peter Clausencadc2122013-09-18 21:02:00 +0100123 struct iio_dev *indio_dev = filep->private_data;
Alexandru Ardeleanfa83c3b2020-06-30 07:57:08 +0300124 struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev);
125 struct iio_event_interface *ev_int = iio_dev_opaque->event_interface;
Lars-Peter Clausen2c001932012-01-03 14:59:39 +0100126 unsigned int copied;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100127 int ret;
128
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +0100129 if (!indio_dev->info)
130 return -ENODEV;
131
Lars-Peter Clausen2c001932012-01-03 14:59:39 +0100132 if (count < sizeof(struct iio_event_data))
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100133 return -EINVAL;
134
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000135 do {
136 if (kfifo_is_empty(&ev_int->det_events)) {
137 if (filep->f_flags & O_NONBLOCK)
138 return -EAGAIN;
139
140 ret = wait_event_interruptible(ev_int->wait,
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +0100141 !kfifo_is_empty(&ev_int->det_events) ||
142 indio_dev->info == NULL);
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000143 if (ret)
144 return ret;
145 if (indio_dev->info == NULL)
146 return -ENODEV;
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +0100147 }
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100148
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000149 if (mutex_lock_interruptible(&ev_int->read_lock))
150 return -ERESTARTSYS;
151 ret = kfifo_to_user(&ev_int->det_events, buf, count, &copied);
152 mutex_unlock(&ev_int->read_lock);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100153
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000154 if (ret)
155 return ret;
Lars-Peter Clausen43ba1102012-01-03 14:59:40 +0100156
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000157 /*
158 * If we couldn't read anything from the fifo (a different
159 * thread might have been faster) we either return -EAGAIN if
160 * the file descriptor is non-blocking, otherwise we go back to
161 * sleep and wait for more data to arrive.
162 */
163 if (copied == 0 && (filep->f_flags & O_NONBLOCK))
164 return -EAGAIN;
165
166 } while (copied == 0);
167
168 return copied;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100169}
170
171static int iio_event_chrdev_release(struct inode *inode, struct file *filep)
172{
Lars-Peter Clausencadc2122013-09-18 21:02:00 +0100173 struct iio_dev *indio_dev = filep->private_data;
Alexandru Ardeleanfa83c3b2020-06-30 07:57:08 +0300174 struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev);
175 struct iio_event_interface *ev_int = iio_dev_opaque->event_interface;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100176
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000177 clear_bit(IIO_BUSY_BIT_POS, &ev_int->flags);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100178
Lars-Peter Clausencadc2122013-09-18 21:02:00 +0100179 iio_device_put(indio_dev);
180
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100181 return 0;
182}
183
184static const struct file_operations iio_event_chrdev_fileops = {
185 .read = iio_event_chrdev_read,
Lars-Peter Clausene18045e2012-01-03 14:59:41 +0100186 .poll = iio_event_poll,
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100187 .release = iio_event_chrdev_release,
188 .owner = THIS_MODULE,
189 .llseek = noop_llseek,
190};
191
Alexandru Ardelean8dedcc32020-09-24 11:41:55 +0300192static int iio_event_getfd(struct iio_dev *indio_dev)
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100193{
Alexandru Ardeleanfa83c3b2020-06-30 07:57:08 +0300194 struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev);
195 struct iio_event_interface *ev_int = iio_dev_opaque->event_interface;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100196 int fd;
197
198 if (ev_int == NULL)
199 return -ENODEV;
200
Gregor Boiriebc2b7da2016-03-09 19:05:49 +0100201 fd = mutex_lock_interruptible(&indio_dev->mlock);
202 if (fd)
203 return fd;
204
205 if (test_and_set_bit(IIO_BUSY_BIT_POS, &ev_int->flags)) {
206 fd = -EBUSY;
207 goto unlock;
208 }
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000209
Lars-Peter Clausencadc2122013-09-18 21:02:00 +0100210 iio_device_get(indio_dev);
211
212 fd = anon_inode_getfd("iio:event", &iio_event_chrdev_fileops,
Greg Kroah-Hartmane2aad1d2013-09-25 08:59:04 -0700213 indio_dev, O_RDONLY | O_CLOEXEC);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100214 if (fd < 0) {
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000215 clear_bit(IIO_BUSY_BIT_POS, &ev_int->flags);
Lars-Peter Clausencadc2122013-09-18 21:02:00 +0100216 iio_device_put(indio_dev);
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000217 } else {
218 kfifo_reset_out(&ev_int->det_events);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100219 }
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000220
Gregor Boiriebc2b7da2016-03-09 19:05:49 +0100221unlock:
222 mutex_unlock(&indio_dev->mlock);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100223 return fd;
224}
225
226static const char * const iio_ev_type_text[] = {
227 [IIO_EV_TYPE_THRESH] = "thresh",
228 [IIO_EV_TYPE_MAG] = "mag",
229 [IIO_EV_TYPE_ROC] = "roc",
230 [IIO_EV_TYPE_THRESH_ADAPTIVE] = "thresh_adaptive",
231 [IIO_EV_TYPE_MAG_ADAPTIVE] = "mag_adaptive",
Irina Tirdea27be8422015-01-11 21:10:11 +0200232 [IIO_EV_TYPE_CHANGE] = "change",
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100233};
234
235static const char * const iio_ev_dir_text[] = {
236 [IIO_EV_DIR_EITHER] = "either",
237 [IIO_EV_DIR_RISING] = "rising",
238 [IIO_EV_DIR_FALLING] = "falling"
239};
240
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100241static const char * const iio_ev_info_text[] = {
242 [IIO_EV_INFO_ENABLE] = "en",
243 [IIO_EV_INFO_VALUE] = "value",
Lars-Peter Clausenec6670a2013-10-07 15:11:00 +0100244 [IIO_EV_INFO_HYSTERESIS] = "hysteresis",
Srinivas Pandruvada77a533c2014-08-07 23:29:00 +0100245 [IIO_EV_INFO_PERIOD] = "period",
Martin Fuzzey3f7f6422015-05-13 12:26:42 +0200246 [IIO_EV_INFO_HIGH_PASS_FILTER_3DB] = "high_pass_filter_3db",
247 [IIO_EV_INFO_LOW_PASS_FILTER_3DB] = "low_pass_filter_3db",
Jonathan Cameron45b77822021-03-14 18:14:57 +0000248 [IIO_EV_INFO_TIMEOUT] = "timeout",
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100249};
250
251static enum iio_event_direction iio_ev_attr_dir(struct iio_dev_attr *attr)
252{
253 return attr->c->event_spec[attr->address & 0xffff].dir;
254}
255
256static enum iio_event_type iio_ev_attr_type(struct iio_dev_attr *attr)
257{
258 return attr->c->event_spec[attr->address & 0xffff].type;
259}
260
261static enum iio_event_info iio_ev_attr_info(struct iio_dev_attr *attr)
262{
263 return (attr->address >> 16) & 0xffff;
264}
265
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100266static ssize_t iio_ev_state_store(struct device *dev,
267 struct device_attribute *attr,
268 const char *buf,
269 size_t len)
270{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200271 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100272 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
273 int ret;
274 bool val;
275
276 ret = strtobool(buf, &val);
277 if (ret < 0)
278 return ret;
279
Lars-Peter Clausencb955852013-12-07 10:45:00 +0000280 ret = indio_dev->info->write_event_config(indio_dev,
281 this_attr->c, iio_ev_attr_type(this_attr),
282 iio_ev_attr_dir(this_attr), val);
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100283
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100284 return (ret < 0) ? ret : len;
285}
286
287static ssize_t iio_ev_state_show(struct device *dev,
288 struct device_attribute *attr,
289 char *buf)
290{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200291 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100292 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100293 int val;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100294
Lars-Peter Clausencb955852013-12-07 10:45:00 +0000295 val = indio_dev->info->read_event_config(indio_dev,
296 this_attr->c, iio_ev_attr_type(this_attr),
297 iio_ev_attr_dir(this_attr));
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100298 if (val < 0)
299 return val;
300 else
Lars-Peter Clausen83ca56b2021-03-20 08:14:02 +0100301 return sysfs_emit(buf, "%d\n", val);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100302}
303
304static ssize_t iio_ev_value_show(struct device *dev,
305 struct device_attribute *attr,
306 char *buf)
307{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200308 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100309 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100310 int val, val2, val_arr[2];
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100311 int ret;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100312
Lars-Peter Clausencb955852013-12-07 10:45:00 +0000313 ret = indio_dev->info->read_event_value(indio_dev,
314 this_attr->c, iio_ev_attr_type(this_attr),
315 iio_ev_attr_dir(this_attr), iio_ev_attr_info(this_attr),
316 &val, &val2);
317 if (ret < 0)
318 return ret;
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100319 val_arr[0] = val;
320 val_arr[1] = val2;
321 return iio_format_value(buf, ret, 2, val_arr);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100322}
323
324static ssize_t iio_ev_value_store(struct device *dev,
325 struct device_attribute *attr,
326 const char *buf,
327 size_t len)
328{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200329 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100330 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100331 int val, val2;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100332 int ret;
333
Lars-Peter Clausencb955852013-12-07 10:45:00 +0000334 if (!indio_dev->info->write_event_value)
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100335 return -EINVAL;
336
Lars-Peter Clausencb955852013-12-07 10:45:00 +0000337 ret = iio_str_to_fixpoint(buf, 100000, &val, &val2);
338 if (ret)
339 return ret;
340 ret = indio_dev->info->write_event_value(indio_dev,
341 this_attr->c, iio_ev_attr_type(this_attr),
342 iio_ev_attr_dir(this_attr), iio_ev_attr_info(this_attr),
343 val, val2);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100344 if (ret < 0)
345 return ret;
346
347 return len;
348}
349
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100350static int iio_device_add_event(struct iio_dev *indio_dev,
351 const struct iio_chan_spec *chan, unsigned int spec_index,
352 enum iio_event_type type, enum iio_event_direction dir,
353 enum iio_shared_by shared_by, const unsigned long *mask)
354{
Alexandru Ardeleanfa83c3b2020-06-30 07:57:08 +0300355 struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev);
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100356 ssize_t (*show)(struct device *, struct device_attribute *, char *);
357 ssize_t (*store)(struct device *, struct device_attribute *,
358 const char *, size_t);
359 unsigned int attrcount = 0;
360 unsigned int i;
361 char *postfix;
362 int ret;
363
Jonathan Cameronef4b4852014-01-03 22:24:00 +0000364 for_each_set_bit(i, mask, sizeof(*mask)*8) {
365 if (i >= ARRAY_SIZE(iio_ev_info_text))
366 return -EINVAL;
Irina Tirdea1843c2f2014-11-10 14:45:31 +0200367 if (dir != IIO_EV_DIR_NONE)
368 postfix = kasprintf(GFP_KERNEL, "%s_%s_%s",
369 iio_ev_type_text[type],
370 iio_ev_dir_text[dir],
371 iio_ev_info_text[i]);
372 else
373 postfix = kasprintf(GFP_KERNEL, "%s_%s",
374 iio_ev_type_text[type],
375 iio_ev_info_text[i]);
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100376 if (postfix == NULL)
377 return -ENOMEM;
378
379 if (i == IIO_EV_INFO_ENABLE) {
380 show = iio_ev_state_show;
381 store = iio_ev_state_store;
382 } else {
383 show = iio_ev_value_show;
384 store = iio_ev_value_store;
385 }
386
387 ret = __iio_add_chan_devattr(postfix, chan, show, store,
388 (i << 16) | spec_index, shared_by, &indio_dev->dev,
Alexandru Ardelean3e3d11b2021-02-15 12:40:32 +0200389 NULL,
Alexandru Ardeleanfa83c3b2020-06-30 07:57:08 +0300390 &iio_dev_opaque->event_interface->dev_attr_list);
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100391 kfree(postfix);
392
Srinivas Pandruvada78b33212014-08-07 22:03:00 +0100393 if ((ret == -EBUSY) && (shared_by != IIO_SEPARATE))
394 continue;
395
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100396 if (ret)
397 return ret;
398
399 attrcount++;
400 }
401
402 return attrcount;
403}
404
Lars-Peter Clausencb955852013-12-07 10:45:00 +0000405static int iio_device_add_event_sysfs(struct iio_dev *indio_dev,
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100406 struct iio_chan_spec const *chan)
407{
408 int ret = 0, i, attrcount = 0;
409 enum iio_event_direction dir;
410 enum iio_event_type type;
411
412 for (i = 0; i < chan->num_event_specs; i++) {
413 type = chan->event_spec[i].type;
414 dir = chan->event_spec[i].dir;
415
416 ret = iio_device_add_event(indio_dev, chan, i, type, dir,
417 IIO_SEPARATE, &chan->event_spec[i].mask_separate);
418 if (ret < 0)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000419 return ret;
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100420 attrcount += ret;
421
422 ret = iio_device_add_event(indio_dev, chan, i, type, dir,
423 IIO_SHARED_BY_TYPE,
424 &chan->event_spec[i].mask_shared_by_type);
425 if (ret < 0)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000426 return ret;
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100427 attrcount += ret;
428
429 ret = iio_device_add_event(indio_dev, chan, i, type, dir,
430 IIO_SHARED_BY_DIR,
431 &chan->event_spec[i].mask_shared_by_dir);
432 if (ret < 0)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000433 return ret;
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100434 attrcount += ret;
435
436 ret = iio_device_add_event(indio_dev, chan, i, type, dir,
437 IIO_SHARED_BY_ALL,
438 &chan->event_spec[i].mask_shared_by_all);
439 if (ret < 0)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000440 return ret;
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100441 attrcount += ret;
442 }
443 ret = attrcount;
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100444 return ret;
445}
446
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100447static inline int __iio_add_event_config_attrs(struct iio_dev *indio_dev)
448{
449 int j, ret, attrcount = 0;
450
Roberta Dobrescu2179aab2015-01-16 00:24:14 +0200451 /* Dynamically created from the channels array */
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100452 for (j = 0; j < indio_dev->num_channels; j++) {
453 ret = iio_device_add_event_sysfs(indio_dev,
454 &indio_dev->channels[j]);
455 if (ret < 0)
Julia Lawalle3db9ef2012-10-21 11:52:00 +0100456 return ret;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100457 attrcount += ret;
458 }
459 return attrcount;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100460}
461
462static bool iio_check_for_dynamic_events(struct iio_dev *indio_dev)
463{
464 int j;
465
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100466 for (j = 0; j < indio_dev->num_channels; j++) {
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100467 if (indio_dev->channels[j].num_event_specs != 0)
468 return true;
469 }
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100470 return false;
471}
472
473static void iio_setup_ev_int(struct iio_event_interface *ev_int)
474{
Lars-Peter Clausen2c001932012-01-03 14:59:39 +0100475 INIT_KFIFO(ev_int->det_events);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100476 init_waitqueue_head(&ev_int->wait);
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000477 mutex_init(&ev_int->read_lock);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100478}
479
Alexandru Ardelean8dedcc32020-09-24 11:41:55 +0300480static long iio_event_ioctl(struct iio_dev *indio_dev, struct file *filp,
481 unsigned int cmd, unsigned long arg)
482{
483 int __user *ip = (int __user *)arg;
484 int fd;
485
486 if (cmd == IIO_GET_EVENT_FD_IOCTL) {
487 fd = iio_event_getfd(indio_dev);
488 if (fd < 0)
489 return fd;
490 if (copy_to_user(ip, &fd, sizeof(fd)))
491 return -EFAULT;
492 return 0;
493 }
494
495 return IIO_IOCTL_UNHANDLED;
496}
497
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100498static const char *iio_event_group_name = "events";
499int iio_device_register_eventset(struct iio_dev *indio_dev)
500{
Alexandru Ardeleanfa83c3b2020-06-30 07:57:08 +0300501 struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev);
Alexandru Ardeleanf2f45a52020-09-21 13:31:55 +0300502 struct iio_event_interface *ev_int;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100503 struct iio_dev_attr *p;
504 int ret = 0, attrcount_orig = 0, attrcount, attrn;
505 struct attribute **attr;
506
507 if (!(indio_dev->info->event_attrs ||
508 iio_check_for_dynamic_events(indio_dev)))
509 return 0;
510
Alexandru Ardeleanf2f45a52020-09-21 13:31:55 +0300511 ev_int = kzalloc(sizeof(struct iio_event_interface), GFP_KERNEL);
512 if (ev_int == NULL)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000513 return -ENOMEM;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100514
Alexandru Ardeleanf2f45a52020-09-21 13:31:55 +0300515 iio_dev_opaque->event_interface = ev_int;
Sascha Hauer46b24312012-07-03 10:55:40 +0200516
Alexandru Ardeleanf2f45a52020-09-21 13:31:55 +0300517 INIT_LIST_HEAD(&ev_int->dev_attr_list);
518
519 iio_setup_ev_int(ev_int);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100520 if (indio_dev->info->event_attrs != NULL) {
521 attr = indio_dev->info->event_attrs->attrs;
522 while (*attr++ != NULL)
523 attrcount_orig++;
524 }
525 attrcount = attrcount_orig;
526 if (indio_dev->channels) {
527 ret = __iio_add_event_config_attrs(indio_dev);
528 if (ret < 0)
529 goto error_free_setup_event_lines;
530 attrcount += ret;
531 }
532
Alexandru Ardeleanf2f45a52020-09-21 13:31:55 +0300533 ev_int->group.name = iio_event_group_name;
534 ev_int->group.attrs = kcalloc(attrcount + 1,
535 sizeof(ev_int->group.attrs[0]),
536 GFP_KERNEL);
537 if (ev_int->group.attrs == NULL) {
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100538 ret = -ENOMEM;
539 goto error_free_setup_event_lines;
540 }
541 if (indio_dev->info->event_attrs)
Alexandru Ardeleanf2f45a52020-09-21 13:31:55 +0300542 memcpy(ev_int->group.attrs,
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100543 indio_dev->info->event_attrs->attrs,
Alexandru Ardeleanf2f45a52020-09-21 13:31:55 +0300544 sizeof(ev_int->group.attrs[0]) * attrcount_orig);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100545 attrn = attrcount_orig;
546 /* Add all elements from the list. */
Alexandru Ardeleanf2f45a52020-09-21 13:31:55 +0300547 list_for_each_entry(p, &ev_int->dev_attr_list, l)
548 ev_int->group.attrs[attrn++] = &p->dev_attr.attr;
Alexandru Ardelean32f17172021-02-15 12:40:29 +0200549
550 ret = iio_device_register_sysfs_group(indio_dev, &ev_int->group);
551 if (ret)
552 goto error_free_setup_event_lines;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100553
Alexandru Ardelean8dedcc32020-09-24 11:41:55 +0300554 ev_int->ioctl_handler.ioctl = iio_event_ioctl;
555 iio_device_ioctl_handler_register(&iio_dev_opaque->indio_dev,
556 &ev_int->ioctl_handler);
557
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100558 return 0;
559
560error_free_setup_event_lines:
Alexandru Ardeleanf2f45a52020-09-21 13:31:55 +0300561 iio_free_chan_devattr_list(&ev_int->dev_attr_list);
562 kfree(ev_int);
Alexandru Ardeleanfa83c3b2020-06-30 07:57:08 +0300563 iio_dev_opaque->event_interface = NULL;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100564 return ret;
565}
566
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +0100567/**
568 * iio_device_wakeup_eventset - Wakes up the event waitqueue
569 * @indio_dev: The IIO device
570 *
571 * Wakes up the event waitqueue used for poll() and blocking read().
572 * Should usually be called when the device is unregistered.
573 */
574void iio_device_wakeup_eventset(struct iio_dev *indio_dev)
575{
Alexandru Ardeleanfa83c3b2020-06-30 07:57:08 +0300576 struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev);
577
578 if (iio_dev_opaque->event_interface == NULL)
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +0100579 return;
Alexandru Ardeleanfa83c3b2020-06-30 07:57:08 +0300580 wake_up(&iio_dev_opaque->event_interface->wait);
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +0100581}
582
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100583void iio_device_unregister_eventset(struct iio_dev *indio_dev)
584{
Alexandru Ardeleanfa83c3b2020-06-30 07:57:08 +0300585 struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev);
Alexandru Ardeleanf2f45a52020-09-21 13:31:55 +0300586 struct iio_event_interface *ev_int = iio_dev_opaque->event_interface;
Alexandru Ardeleanfa83c3b2020-06-30 07:57:08 +0300587
Alexandru Ardeleanf2f45a52020-09-21 13:31:55 +0300588 if (ev_int == NULL)
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100589 return;
Alexandru Ardelean8dedcc32020-09-24 11:41:55 +0300590
591 iio_device_ioctl_handler_unregister(&ev_int->ioctl_handler);
Alexandru Ardeleanf2f45a52020-09-21 13:31:55 +0300592 iio_free_chan_devattr_list(&ev_int->dev_attr_list);
593 kfree(ev_int->group.attrs);
594 kfree(ev_int);
Alexandru Ardeleana3598d12020-09-21 13:31:56 +0300595 iio_dev_opaque->event_interface = NULL;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100596}