blob: 1290290adcb583eff5949f37753e5211df8bb883 [file] [log] [blame]
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +01001/* Industrial I/O event handling
2 *
3 * Copyright (c) 2008 Jonathan Cameron
4 *
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.
8 *
9 * Based on elements of hwmon and input subsystems.
10 */
11
12#include <linux/anon_inodes.h>
13#include <linux/device.h>
14#include <linux/fs.h>
15#include <linux/kernel.h>
Lars-Peter Clausen2c001932012-01-03 14:59:39 +010016#include <linux/kfifo.h>
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010017#include <linux/module.h>
Lars-Peter Clausene18045e2012-01-03 14:59:41 +010018#include <linux/poll.h>
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010019#include <linux/sched.h>
20#include <linux/slab.h>
21#include <linux/uaccess.h>
22#include <linux/wait.h>
Jonathan Cameron06458e22012-04-25 15:54:58 +010023#include <linux/iio/iio.h>
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010024#include "iio_core.h"
Jonathan Cameron06458e22012-04-25 15:54:58 +010025#include <linux/iio/sysfs.h>
26#include <linux/iio/events.h>
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010027
28/**
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010029 * struct iio_event_interface - chrdev interface for an event line
30 * @wait: wait queue to allow blocking reads of events
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010031 * @det_events: list of detected events
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010032 * @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
35 */
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;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010044};
45
Sachin Kamata7e57dc2013-10-29 11:39:00 +000046/**
47 * iio_push_event() - try to add event to the list for userspace reading
48 * @indio_dev: IIO device structure
49 * @ev_code: What event
50 * @timestamp: When the event occurred
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +000051 *
52 * Note: The caller must make sure that this function is not running
53 * concurrently for the same indio_dev more than once.
Sachin Kamata7e57dc2013-10-29 11:39:00 +000054 **/
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010055int iio_push_event(struct iio_dev *indio_dev, u64 ev_code, s64 timestamp)
56{
57 struct iio_event_interface *ev_int = indio_dev->event_interface;
Lars-Peter Clausen2c001932012-01-03 14:59:39 +010058 struct iio_event_data ev;
59 int copied;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010060
61 /* Does anyone care? */
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010062 if (test_bit(IIO_BUSY_BIT_POS, &ev_int->flags)) {
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010063
Lars-Peter Clausen2c001932012-01-03 14:59:39 +010064 ev.id = ev_code;
65 ev.timestamp = timestamp;
66
Stefani Seibold498d3192013-11-14 14:32:17 -080067 copied = kfifo_put(&ev_int->det_events, ev);
Lars-Peter Clausen2c001932012-01-03 14:59:39 +010068 if (copied != 0)
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +000069 wake_up_poll(&ev_int->wait, POLLIN);
Lars-Peter Clausen43ba1102012-01-03 14:59:40 +010070 }
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010071
Lars-Peter Clausen2c001932012-01-03 14:59:39 +010072 return 0;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010073}
74EXPORT_SYMBOL(iio_push_event);
75
Lars-Peter Clausene18045e2012-01-03 14:59:41 +010076/**
77 * iio_event_poll() - poll the event queue to find out if it has data
78 */
79static unsigned int iio_event_poll(struct file *filep,
80 struct poll_table_struct *wait)
81{
Lars-Peter Clausencadc2122013-09-18 21:02:00 +010082 struct iio_dev *indio_dev = filep->private_data;
83 struct iio_event_interface *ev_int = indio_dev->event_interface;
Lars-Peter Clausene18045e2012-01-03 14:59:41 +010084 unsigned int events = 0;
85
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +010086 if (!indio_dev->info)
87 return -ENODEV;
88
Lars-Peter Clausene18045e2012-01-03 14:59:41 +010089 poll_wait(filep, &ev_int->wait, wait);
90
Lars-Peter Clausene18045e2012-01-03 14:59:41 +010091 if (!kfifo_is_empty(&ev_int->det_events))
92 events = POLLIN | POLLRDNORM;
Lars-Peter Clausene18045e2012-01-03 14:59:41 +010093
94 return events;
95}
96
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +010097static ssize_t iio_event_chrdev_read(struct file *filep,
98 char __user *buf,
99 size_t count,
100 loff_t *f_ps)
101{
Lars-Peter Clausencadc2122013-09-18 21:02:00 +0100102 struct iio_dev *indio_dev = filep->private_data;
103 struct iio_event_interface *ev_int = indio_dev->event_interface;
Lars-Peter Clausen2c001932012-01-03 14:59:39 +0100104 unsigned int copied;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100105 int ret;
106
Lars-Peter Clausenf18e7a02013-10-04 12:06:00 +0100107 if (!indio_dev->info)
108 return -ENODEV;
109
Lars-Peter Clausen2c001932012-01-03 14:59:39 +0100110 if (count < sizeof(struct iio_event_data))
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100111 return -EINVAL;
112
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000113 do {
114 if (kfifo_is_empty(&ev_int->det_events)) {
115 if (filep->f_flags & O_NONBLOCK)
116 return -EAGAIN;
117
118 ret = wait_event_interruptible(ev_int->wait,
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +0100119 !kfifo_is_empty(&ev_int->det_events) ||
120 indio_dev->info == NULL);
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000121 if (ret)
122 return ret;
123 if (indio_dev->info == NULL)
124 return -ENODEV;
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +0100125 }
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100126
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000127 if (mutex_lock_interruptible(&ev_int->read_lock))
128 return -ERESTARTSYS;
129 ret = kfifo_to_user(&ev_int->det_events, buf, count, &copied);
130 mutex_unlock(&ev_int->read_lock);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100131
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000132 if (ret)
133 return ret;
Lars-Peter Clausen43ba1102012-01-03 14:59:40 +0100134
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000135 /*
136 * If we couldn't read anything from the fifo (a different
137 * thread might have been faster) we either return -EAGAIN if
138 * the file descriptor is non-blocking, otherwise we go back to
139 * sleep and wait for more data to arrive.
140 */
141 if (copied == 0 && (filep->f_flags & O_NONBLOCK))
142 return -EAGAIN;
143
144 } while (copied == 0);
145
146 return copied;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100147}
148
149static int iio_event_chrdev_release(struct inode *inode, struct file *filep)
150{
Lars-Peter Clausencadc2122013-09-18 21:02:00 +0100151 struct iio_dev *indio_dev = filep->private_data;
152 struct iio_event_interface *ev_int = indio_dev->event_interface;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100153
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000154 clear_bit(IIO_BUSY_BIT_POS, &ev_int->flags);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100155
Lars-Peter Clausencadc2122013-09-18 21:02:00 +0100156 iio_device_put(indio_dev);
157
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100158 return 0;
159}
160
161static const struct file_operations iio_event_chrdev_fileops = {
162 .read = iio_event_chrdev_read,
Lars-Peter Clausene18045e2012-01-03 14:59:41 +0100163 .poll = iio_event_poll,
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100164 .release = iio_event_chrdev_release,
165 .owner = THIS_MODULE,
166 .llseek = noop_llseek,
167};
168
169int iio_event_getfd(struct iio_dev *indio_dev)
170{
171 struct iio_event_interface *ev_int = indio_dev->event_interface;
172 int fd;
173
174 if (ev_int == NULL)
175 return -ENODEV;
176
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000177 if (test_and_set_bit(IIO_BUSY_BIT_POS, &ev_int->flags))
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100178 return -EBUSY;
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000179
Lars-Peter Clausencadc2122013-09-18 21:02:00 +0100180 iio_device_get(indio_dev);
181
182 fd = anon_inode_getfd("iio:event", &iio_event_chrdev_fileops,
Greg Kroah-Hartmane2aad1d2013-09-25 08:59:04 -0700183 indio_dev, O_RDONLY | O_CLOEXEC);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100184 if (fd < 0) {
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000185 clear_bit(IIO_BUSY_BIT_POS, &ev_int->flags);
Lars-Peter Clausencadc2122013-09-18 21:02:00 +0100186 iio_device_put(indio_dev);
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000187 } else {
188 kfifo_reset_out(&ev_int->det_events);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100189 }
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000190
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100191 return fd;
192}
193
194static const char * const iio_ev_type_text[] = {
195 [IIO_EV_TYPE_THRESH] = "thresh",
196 [IIO_EV_TYPE_MAG] = "mag",
197 [IIO_EV_TYPE_ROC] = "roc",
198 [IIO_EV_TYPE_THRESH_ADAPTIVE] = "thresh_adaptive",
199 [IIO_EV_TYPE_MAG_ADAPTIVE] = "mag_adaptive",
200};
201
202static const char * const iio_ev_dir_text[] = {
203 [IIO_EV_DIR_EITHER] = "either",
204 [IIO_EV_DIR_RISING] = "rising",
205 [IIO_EV_DIR_FALLING] = "falling"
206};
207
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100208static const char * const iio_ev_info_text[] = {
209 [IIO_EV_INFO_ENABLE] = "en",
210 [IIO_EV_INFO_VALUE] = "value",
Lars-Peter Clausenec6670a2013-10-07 15:11:00 +0100211 [IIO_EV_INFO_HYSTERESIS] = "hysteresis",
Srinivas Pandruvada77a533c2014-08-07 23:29:00 +0100212 [IIO_EV_INFO_PERIOD] = "period",
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100213};
214
215static enum iio_event_direction iio_ev_attr_dir(struct iio_dev_attr *attr)
216{
217 return attr->c->event_spec[attr->address & 0xffff].dir;
218}
219
220static enum iio_event_type iio_ev_attr_type(struct iio_dev_attr *attr)
221{
222 return attr->c->event_spec[attr->address & 0xffff].type;
223}
224
225static enum iio_event_info iio_ev_attr_info(struct iio_dev_attr *attr)
226{
227 return (attr->address >> 16) & 0xffff;
228}
229
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100230static ssize_t iio_ev_state_store(struct device *dev,
231 struct device_attribute *attr,
232 const char *buf,
233 size_t len)
234{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200235 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100236 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
237 int ret;
238 bool val;
239
240 ret = strtobool(buf, &val);
241 if (ret < 0)
242 return ret;
243
Lars-Peter Clausencb955852013-12-07 10:45:00 +0000244 ret = indio_dev->info->write_event_config(indio_dev,
245 this_attr->c, iio_ev_attr_type(this_attr),
246 iio_ev_attr_dir(this_attr), val);
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100247
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100248 return (ret < 0) ? ret : len;
249}
250
251static ssize_t iio_ev_state_show(struct device *dev,
252 struct device_attribute *attr,
253 char *buf)
254{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200255 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100256 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100257 int val;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100258
Lars-Peter Clausencb955852013-12-07 10:45:00 +0000259 val = indio_dev->info->read_event_config(indio_dev,
260 this_attr->c, iio_ev_attr_type(this_attr),
261 iio_ev_attr_dir(this_attr));
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100262 if (val < 0)
263 return val;
264 else
265 return sprintf(buf, "%d\n", val);
266}
267
268static ssize_t iio_ev_value_show(struct device *dev,
269 struct device_attribute *attr,
270 char *buf)
271{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200272 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100273 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100274 int val, val2, val_arr[2];
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100275 int ret;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100276
Lars-Peter Clausencb955852013-12-07 10:45:00 +0000277 ret = indio_dev->info->read_event_value(indio_dev,
278 this_attr->c, iio_ev_attr_type(this_attr),
279 iio_ev_attr_dir(this_attr), iio_ev_attr_info(this_attr),
280 &val, &val2);
281 if (ret < 0)
282 return ret;
Srinivas Pandruvada9fbfb4b2014-04-29 00:51:00 +0100283 val_arr[0] = val;
284 val_arr[1] = val2;
285 return iio_format_value(buf, ret, 2, val_arr);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100286}
287
288static ssize_t iio_ev_value_store(struct device *dev,
289 struct device_attribute *attr,
290 const char *buf,
291 size_t len)
292{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200293 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100294 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100295 int val, val2;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100296 int ret;
297
Lars-Peter Clausencb955852013-12-07 10:45:00 +0000298 if (!indio_dev->info->write_event_value)
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100299 return -EINVAL;
300
Lars-Peter Clausencb955852013-12-07 10:45:00 +0000301 ret = iio_str_to_fixpoint(buf, 100000, &val, &val2);
302 if (ret)
303 return ret;
304 ret = indio_dev->info->write_event_value(indio_dev,
305 this_attr->c, iio_ev_attr_type(this_attr),
306 iio_ev_attr_dir(this_attr), iio_ev_attr_info(this_attr),
307 val, val2);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100308 if (ret < 0)
309 return ret;
310
311 return len;
312}
313
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100314static int iio_device_add_event(struct iio_dev *indio_dev,
315 const struct iio_chan_spec *chan, unsigned int spec_index,
316 enum iio_event_type type, enum iio_event_direction dir,
317 enum iio_shared_by shared_by, const unsigned long *mask)
318{
319 ssize_t (*show)(struct device *, struct device_attribute *, char *);
320 ssize_t (*store)(struct device *, struct device_attribute *,
321 const char *, size_t);
322 unsigned int attrcount = 0;
323 unsigned int i;
324 char *postfix;
325 int ret;
326
Jonathan Cameronef4b4852014-01-03 22:24:00 +0000327 for_each_set_bit(i, mask, sizeof(*mask)*8) {
328 if (i >= ARRAY_SIZE(iio_ev_info_text))
329 return -EINVAL;
Irina Tirdea1843c2f2014-11-10 14:45:31 +0200330 if (dir != IIO_EV_DIR_NONE)
331 postfix = kasprintf(GFP_KERNEL, "%s_%s_%s",
332 iio_ev_type_text[type],
333 iio_ev_dir_text[dir],
334 iio_ev_info_text[i]);
335 else
336 postfix = kasprintf(GFP_KERNEL, "%s_%s",
337 iio_ev_type_text[type],
338 iio_ev_info_text[i]);
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100339 if (postfix == NULL)
340 return -ENOMEM;
341
342 if (i == IIO_EV_INFO_ENABLE) {
343 show = iio_ev_state_show;
344 store = iio_ev_state_store;
345 } else {
346 show = iio_ev_value_show;
347 store = iio_ev_value_store;
348 }
349
350 ret = __iio_add_chan_devattr(postfix, chan, show, store,
351 (i << 16) | spec_index, shared_by, &indio_dev->dev,
352 &indio_dev->event_interface->dev_attr_list);
353 kfree(postfix);
354
Srinivas Pandruvada78b33212014-08-07 22:03:00 +0100355 if ((ret == -EBUSY) && (shared_by != IIO_SEPARATE))
356 continue;
357
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100358 if (ret)
359 return ret;
360
361 attrcount++;
362 }
363
364 return attrcount;
365}
366
Lars-Peter Clausencb955852013-12-07 10:45:00 +0000367static int iio_device_add_event_sysfs(struct iio_dev *indio_dev,
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100368 struct iio_chan_spec const *chan)
369{
370 int ret = 0, i, attrcount = 0;
371 enum iio_event_direction dir;
372 enum iio_event_type type;
373
374 for (i = 0; i < chan->num_event_specs; i++) {
375 type = chan->event_spec[i].type;
376 dir = chan->event_spec[i].dir;
377
378 ret = iio_device_add_event(indio_dev, chan, i, type, dir,
379 IIO_SEPARATE, &chan->event_spec[i].mask_separate);
380 if (ret < 0)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000381 return ret;
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100382 attrcount += ret;
383
384 ret = iio_device_add_event(indio_dev, chan, i, type, dir,
385 IIO_SHARED_BY_TYPE,
386 &chan->event_spec[i].mask_shared_by_type);
387 if (ret < 0)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000388 return ret;
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100389 attrcount += ret;
390
391 ret = iio_device_add_event(indio_dev, chan, i, type, dir,
392 IIO_SHARED_BY_DIR,
393 &chan->event_spec[i].mask_shared_by_dir);
394 if (ret < 0)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000395 return ret;
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100396 attrcount += ret;
397
398 ret = iio_device_add_event(indio_dev, chan, i, type, dir,
399 IIO_SHARED_BY_ALL,
400 &chan->event_spec[i].mask_shared_by_all);
401 if (ret < 0)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000402 return ret;
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100403 attrcount += ret;
404 }
405 ret = attrcount;
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100406 return ret;
407}
408
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100409static inline int __iio_add_event_config_attrs(struct iio_dev *indio_dev)
410{
411 int j, ret, attrcount = 0;
412
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100413 /* Dynically created from the channels array */
414 for (j = 0; j < indio_dev->num_channels; j++) {
415 ret = iio_device_add_event_sysfs(indio_dev,
416 &indio_dev->channels[j]);
417 if (ret < 0)
Julia Lawalle3db9ef2012-10-21 11:52:00 +0100418 return ret;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100419 attrcount += ret;
420 }
421 return attrcount;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100422}
423
424static bool iio_check_for_dynamic_events(struct iio_dev *indio_dev)
425{
426 int j;
427
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100428 for (j = 0; j < indio_dev->num_channels; j++) {
Lars-Peter Clausenb4e3ac02013-10-07 15:11:00 +0100429 if (indio_dev->channels[j].num_event_specs != 0)
430 return true;
431 }
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100432 return false;
433}
434
435static void iio_setup_ev_int(struct iio_event_interface *ev_int)
436{
Lars-Peter Clausen2c001932012-01-03 14:59:39 +0100437 INIT_KFIFO(ev_int->det_events);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100438 init_waitqueue_head(&ev_int->wait);
Lars-Peter Clausenb91acca2014-02-14 18:49:00 +0000439 mutex_init(&ev_int->read_lock);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100440}
441
442static const char *iio_event_group_name = "events";
443int iio_device_register_eventset(struct iio_dev *indio_dev)
444{
445 struct iio_dev_attr *p;
446 int ret = 0, attrcount_orig = 0, attrcount, attrn;
447 struct attribute **attr;
448
449 if (!(indio_dev->info->event_attrs ||
450 iio_check_for_dynamic_events(indio_dev)))
451 return 0;
452
453 indio_dev->event_interface =
454 kzalloc(sizeof(struct iio_event_interface), GFP_KERNEL);
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000455 if (indio_dev->event_interface == NULL)
456 return -ENOMEM;
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100457
Sascha Hauer46b24312012-07-03 10:55:40 +0200458 INIT_LIST_HEAD(&indio_dev->event_interface->dev_attr_list);
459
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100460 iio_setup_ev_int(indio_dev->event_interface);
461 if (indio_dev->info->event_attrs != NULL) {
462 attr = indio_dev->info->event_attrs->attrs;
463 while (*attr++ != NULL)
464 attrcount_orig++;
465 }
466 attrcount = attrcount_orig;
467 if (indio_dev->channels) {
468 ret = __iio_add_event_config_attrs(indio_dev);
469 if (ret < 0)
470 goto error_free_setup_event_lines;
471 attrcount += ret;
472 }
473
474 indio_dev->event_interface->group.name = iio_event_group_name;
475 indio_dev->event_interface->group.attrs = kcalloc(attrcount + 1,
476 sizeof(indio_dev->event_interface->group.attrs[0]),
477 GFP_KERNEL);
478 if (indio_dev->event_interface->group.attrs == NULL) {
479 ret = -ENOMEM;
480 goto error_free_setup_event_lines;
481 }
482 if (indio_dev->info->event_attrs)
483 memcpy(indio_dev->event_interface->group.attrs,
484 indio_dev->info->event_attrs->attrs,
485 sizeof(indio_dev->event_interface->group.attrs[0])
486 *attrcount_orig);
487 attrn = attrcount_orig;
488 /* Add all elements from the list. */
489 list_for_each_entry(p,
490 &indio_dev->event_interface->dev_attr_list,
491 l)
492 indio_dev->event_interface->group.attrs[attrn++] =
493 &p->dev_attr.attr;
494 indio_dev->groups[indio_dev->groupcounter++] =
495 &indio_dev->event_interface->group;
496
497 return 0;
498
499error_free_setup_event_lines:
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100500 iio_free_chan_devattr_list(&indio_dev->event_interface->dev_attr_list);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100501 kfree(indio_dev->event_interface);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100502 return ret;
503}
504
Lars-Peter Clausend2f0a482013-10-04 12:07:00 +0100505/**
506 * iio_device_wakeup_eventset - Wakes up the event waitqueue
507 * @indio_dev: The IIO device
508 *
509 * Wakes up the event waitqueue used for poll() and blocking read().
510 * Should usually be called when the device is unregistered.
511 */
512void iio_device_wakeup_eventset(struct iio_dev *indio_dev)
513{
514 if (indio_dev->event_interface == NULL)
515 return;
516 wake_up(&indio_dev->event_interface->wait);
517}
518
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100519void iio_device_unregister_eventset(struct iio_dev *indio_dev)
520{
521 if (indio_dev->event_interface == NULL)
522 return;
Lars-Peter Clausen84088eb2013-10-07 12:50:00 +0100523 iio_free_chan_devattr_list(&indio_dev->event_interface->dev_attr_list);
Lars-Peter Clausen0a769a92012-01-03 14:59:38 +0100524 kfree(indio_dev->event_interface->group.attrs);
525 kfree(indio_dev->event_interface);
526}