Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 1 | /* 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 Clausen | 2c00193 | 2012-01-03 14:59:39 +0100 | [diff] [blame] | 16 | #include <linux/kfifo.h> |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 17 | #include <linux/module.h> |
Lars-Peter Clausen | e18045e | 2012-01-03 14:59:41 +0100 | [diff] [blame] | 18 | #include <linux/poll.h> |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 19 | #include <linux/sched.h> |
| 20 | #include <linux/slab.h> |
| 21 | #include <linux/uaccess.h> |
| 22 | #include <linux/wait.h> |
Jonathan Cameron | 06458e2 | 2012-04-25 15:54:58 +0100 | [diff] [blame] | 23 | #include <linux/iio/iio.h> |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 24 | #include "iio_core.h" |
Jonathan Cameron | 06458e2 | 2012-04-25 15:54:58 +0100 | [diff] [blame] | 25 | #include <linux/iio/sysfs.h> |
| 26 | #include <linux/iio/events.h> |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 27 | |
| 28 | /** |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 29 | * struct iio_event_interface - chrdev interface for an event line |
| 30 | * @wait: wait queue to allow blocking reads of events |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 31 | * @det_events: list of detected events |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 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 |
Cristina Opriceana | a316c01 | 2015-07-24 16:21:50 +0300 | [diff] [blame] | 35 | * @read_lock: lock to protect kfifo read operations |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 36 | */ |
| 37 | struct iio_event_interface { |
| 38 | wait_queue_head_t wait; |
Lars-Peter Clausen | 2c00193 | 2012-01-03 14:59:39 +0100 | [diff] [blame] | 39 | DECLARE_KFIFO(det_events, struct iio_event_data, 16); |
| 40 | |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 41 | struct list_head dev_attr_list; |
| 42 | unsigned long flags; |
| 43 | struct attribute_group group; |
Lars-Peter Clausen | b91acca | 2014-02-14 18:49:00 +0000 | [diff] [blame] | 44 | struct mutex read_lock; |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 45 | }; |
| 46 | |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 47 | bool 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 Kamat | a7e57dc | 2013-10-29 11:39:00 +0000 | [diff] [blame] | 52 | /** |
| 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 Clausen | b91acca | 2014-02-14 18:49:00 +0000 | [diff] [blame] | 57 | * |
| 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 Clausen | 4b1a938 | 2016-09-08 18:49:10 +0200 | [diff] [blame] | 60 | * |
| 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 Kamat | a7e57dc | 2013-10-29 11:39:00 +0000 | [diff] [blame] | 65 | **/ |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 66 | int iio_push_event(struct iio_dev *indio_dev, u64 ev_code, s64 timestamp) |
| 67 | { |
| 68 | struct iio_event_interface *ev_int = indio_dev->event_interface; |
Lars-Peter Clausen | 2c00193 | 2012-01-03 14:59:39 +0100 | [diff] [blame] | 69 | struct iio_event_data ev; |
| 70 | int copied; |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 71 | |
Lars-Peter Clausen | 4b1a938 | 2016-09-08 18:49:10 +0200 | [diff] [blame] | 72 | if (!ev_int) |
| 73 | return 0; |
| 74 | |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 75 | /* Does anyone care? */ |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 76 | if (iio_event_enabled(ev_int)) { |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 77 | |
Lars-Peter Clausen | 2c00193 | 2012-01-03 14:59:39 +0100 | [diff] [blame] | 78 | ev.id = ev_code; |
| 79 | ev.timestamp = timestamp; |
| 80 | |
Stefani Seibold | 498d319 | 2013-11-14 14:32:17 -0800 | [diff] [blame] | 81 | copied = kfifo_put(&ev_int->det_events, ev); |
Lars-Peter Clausen | 2c00193 | 2012-01-03 14:59:39 +0100 | [diff] [blame] | 82 | if (copied != 0) |
Lars-Peter Clausen | b91acca | 2014-02-14 18:49:00 +0000 | [diff] [blame] | 83 | wake_up_poll(&ev_int->wait, POLLIN); |
Lars-Peter Clausen | 43ba110 | 2012-01-03 14:59:40 +0100 | [diff] [blame] | 84 | } |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 85 | |
Lars-Peter Clausen | 2c00193 | 2012-01-03 14:59:39 +0100 | [diff] [blame] | 86 | return 0; |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 87 | } |
| 88 | EXPORT_SYMBOL(iio_push_event); |
| 89 | |
Lars-Peter Clausen | e18045e | 2012-01-03 14:59:41 +0100 | [diff] [blame] | 90 | /** |
| 91 | * iio_event_poll() - poll the event queue to find out if it has data |
Cristina Opriceana | a316c01 | 2015-07-24 16:21:50 +0300 | [diff] [blame] | 92 | * @filep: File structure pointer to identify the device |
| 93 | * @wait: Poll table pointer to add the wait queue on |
| 94 | * |
| 95 | * Return: (POLLIN | POLLRDNORM) if data is available for reading |
| 96 | * or a negative error code on failure |
Lars-Peter Clausen | e18045e | 2012-01-03 14:59:41 +0100 | [diff] [blame] | 97 | */ |
| 98 | static unsigned int iio_event_poll(struct file *filep, |
| 99 | struct poll_table_struct *wait) |
| 100 | { |
Lars-Peter Clausen | cadc212 | 2013-09-18 21:02:00 +0100 | [diff] [blame] | 101 | struct iio_dev *indio_dev = filep->private_data; |
| 102 | struct iio_event_interface *ev_int = indio_dev->event_interface; |
Lars-Peter Clausen | e18045e | 2012-01-03 14:59:41 +0100 | [diff] [blame] | 103 | unsigned int events = 0; |
| 104 | |
Lars-Peter Clausen | f18e7a0 | 2013-10-04 12:06:00 +0100 | [diff] [blame] | 105 | if (!indio_dev->info) |
Cristina Opriceana | 41d903c | 2015-08-03 13:00:47 +0300 | [diff] [blame] | 106 | return events; |
Lars-Peter Clausen | f18e7a0 | 2013-10-04 12:06:00 +0100 | [diff] [blame] | 107 | |
Lars-Peter Clausen | e18045e | 2012-01-03 14:59:41 +0100 | [diff] [blame] | 108 | poll_wait(filep, &ev_int->wait, wait); |
| 109 | |
Lars-Peter Clausen | e18045e | 2012-01-03 14:59:41 +0100 | [diff] [blame] | 110 | if (!kfifo_is_empty(&ev_int->det_events)) |
| 111 | events = POLLIN | POLLRDNORM; |
Lars-Peter Clausen | e18045e | 2012-01-03 14:59:41 +0100 | [diff] [blame] | 112 | |
| 113 | return events; |
| 114 | } |
| 115 | |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 116 | static ssize_t iio_event_chrdev_read(struct file *filep, |
| 117 | char __user *buf, |
| 118 | size_t count, |
| 119 | loff_t *f_ps) |
| 120 | { |
Lars-Peter Clausen | cadc212 | 2013-09-18 21:02:00 +0100 | [diff] [blame] | 121 | struct iio_dev *indio_dev = filep->private_data; |
| 122 | struct iio_event_interface *ev_int = indio_dev->event_interface; |
Lars-Peter Clausen | 2c00193 | 2012-01-03 14:59:39 +0100 | [diff] [blame] | 123 | unsigned int copied; |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 124 | int ret; |
| 125 | |
Lars-Peter Clausen | f18e7a0 | 2013-10-04 12:06:00 +0100 | [diff] [blame] | 126 | if (!indio_dev->info) |
| 127 | return -ENODEV; |
| 128 | |
Lars-Peter Clausen | 2c00193 | 2012-01-03 14:59:39 +0100 | [diff] [blame] | 129 | if (count < sizeof(struct iio_event_data)) |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 130 | return -EINVAL; |
| 131 | |
Lars-Peter Clausen | b91acca | 2014-02-14 18:49:00 +0000 | [diff] [blame] | 132 | do { |
| 133 | if (kfifo_is_empty(&ev_int->det_events)) { |
| 134 | if (filep->f_flags & O_NONBLOCK) |
| 135 | return -EAGAIN; |
| 136 | |
| 137 | ret = wait_event_interruptible(ev_int->wait, |
Lars-Peter Clausen | d2f0a48 | 2013-10-04 12:07:00 +0100 | [diff] [blame] | 138 | !kfifo_is_empty(&ev_int->det_events) || |
| 139 | indio_dev->info == NULL); |
Lars-Peter Clausen | b91acca | 2014-02-14 18:49:00 +0000 | [diff] [blame] | 140 | if (ret) |
| 141 | return ret; |
| 142 | if (indio_dev->info == NULL) |
| 143 | return -ENODEV; |
Lars-Peter Clausen | d2f0a48 | 2013-10-04 12:07:00 +0100 | [diff] [blame] | 144 | } |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 145 | |
Lars-Peter Clausen | b91acca | 2014-02-14 18:49:00 +0000 | [diff] [blame] | 146 | if (mutex_lock_interruptible(&ev_int->read_lock)) |
| 147 | return -ERESTARTSYS; |
| 148 | ret = kfifo_to_user(&ev_int->det_events, buf, count, &copied); |
| 149 | mutex_unlock(&ev_int->read_lock); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 150 | |
Lars-Peter Clausen | b91acca | 2014-02-14 18:49:00 +0000 | [diff] [blame] | 151 | if (ret) |
| 152 | return ret; |
Lars-Peter Clausen | 43ba110 | 2012-01-03 14:59:40 +0100 | [diff] [blame] | 153 | |
Lars-Peter Clausen | b91acca | 2014-02-14 18:49:00 +0000 | [diff] [blame] | 154 | /* |
| 155 | * If we couldn't read anything from the fifo (a different |
| 156 | * thread might have been faster) we either return -EAGAIN if |
| 157 | * the file descriptor is non-blocking, otherwise we go back to |
| 158 | * sleep and wait for more data to arrive. |
| 159 | */ |
| 160 | if (copied == 0 && (filep->f_flags & O_NONBLOCK)) |
| 161 | return -EAGAIN; |
| 162 | |
| 163 | } while (copied == 0); |
| 164 | |
| 165 | return copied; |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | static int iio_event_chrdev_release(struct inode *inode, struct file *filep) |
| 169 | { |
Lars-Peter Clausen | cadc212 | 2013-09-18 21:02:00 +0100 | [diff] [blame] | 170 | struct iio_dev *indio_dev = filep->private_data; |
| 171 | struct iio_event_interface *ev_int = indio_dev->event_interface; |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 172 | |
Lars-Peter Clausen | b91acca | 2014-02-14 18:49:00 +0000 | [diff] [blame] | 173 | clear_bit(IIO_BUSY_BIT_POS, &ev_int->flags); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 174 | |
Lars-Peter Clausen | cadc212 | 2013-09-18 21:02:00 +0100 | [diff] [blame] | 175 | iio_device_put(indio_dev); |
| 176 | |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 177 | return 0; |
| 178 | } |
| 179 | |
| 180 | static const struct file_operations iio_event_chrdev_fileops = { |
| 181 | .read = iio_event_chrdev_read, |
Lars-Peter Clausen | e18045e | 2012-01-03 14:59:41 +0100 | [diff] [blame] | 182 | .poll = iio_event_poll, |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 183 | .release = iio_event_chrdev_release, |
| 184 | .owner = THIS_MODULE, |
| 185 | .llseek = noop_llseek, |
| 186 | }; |
| 187 | |
| 188 | int iio_event_getfd(struct iio_dev *indio_dev) |
| 189 | { |
| 190 | struct iio_event_interface *ev_int = indio_dev->event_interface; |
| 191 | int fd; |
| 192 | |
| 193 | if (ev_int == NULL) |
| 194 | return -ENODEV; |
| 195 | |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 196 | fd = mutex_lock_interruptible(&indio_dev->mlock); |
| 197 | if (fd) |
| 198 | return fd; |
| 199 | |
| 200 | if (test_and_set_bit(IIO_BUSY_BIT_POS, &ev_int->flags)) { |
| 201 | fd = -EBUSY; |
| 202 | goto unlock; |
| 203 | } |
Lars-Peter Clausen | b91acca | 2014-02-14 18:49:00 +0000 | [diff] [blame] | 204 | |
Lars-Peter Clausen | cadc212 | 2013-09-18 21:02:00 +0100 | [diff] [blame] | 205 | iio_device_get(indio_dev); |
| 206 | |
| 207 | fd = anon_inode_getfd("iio:event", &iio_event_chrdev_fileops, |
Greg Kroah-Hartman | e2aad1d | 2013-09-25 08:59:04 -0700 | [diff] [blame] | 208 | indio_dev, O_RDONLY | O_CLOEXEC); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 209 | if (fd < 0) { |
Lars-Peter Clausen | b91acca | 2014-02-14 18:49:00 +0000 | [diff] [blame] | 210 | clear_bit(IIO_BUSY_BIT_POS, &ev_int->flags); |
Lars-Peter Clausen | cadc212 | 2013-09-18 21:02:00 +0100 | [diff] [blame] | 211 | iio_device_put(indio_dev); |
Lars-Peter Clausen | b91acca | 2014-02-14 18:49:00 +0000 | [diff] [blame] | 212 | } else { |
| 213 | kfifo_reset_out(&ev_int->det_events); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 214 | } |
Lars-Peter Clausen | b91acca | 2014-02-14 18:49:00 +0000 | [diff] [blame] | 215 | |
Gregor Boirie | bc2b7da | 2016-03-09 19:05:49 +0100 | [diff] [blame] | 216 | unlock: |
| 217 | mutex_unlock(&indio_dev->mlock); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 218 | return fd; |
| 219 | } |
| 220 | |
| 221 | static const char * const iio_ev_type_text[] = { |
| 222 | [IIO_EV_TYPE_THRESH] = "thresh", |
| 223 | [IIO_EV_TYPE_MAG] = "mag", |
| 224 | [IIO_EV_TYPE_ROC] = "roc", |
| 225 | [IIO_EV_TYPE_THRESH_ADAPTIVE] = "thresh_adaptive", |
| 226 | [IIO_EV_TYPE_MAG_ADAPTIVE] = "mag_adaptive", |
Irina Tirdea | 27be842 | 2015-01-11 21:10:11 +0200 | [diff] [blame] | 227 | [IIO_EV_TYPE_CHANGE] = "change", |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 228 | }; |
| 229 | |
| 230 | static const char * const iio_ev_dir_text[] = { |
| 231 | [IIO_EV_DIR_EITHER] = "either", |
| 232 | [IIO_EV_DIR_RISING] = "rising", |
| 233 | [IIO_EV_DIR_FALLING] = "falling" |
| 234 | }; |
| 235 | |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 236 | static const char * const iio_ev_info_text[] = { |
| 237 | [IIO_EV_INFO_ENABLE] = "en", |
| 238 | [IIO_EV_INFO_VALUE] = "value", |
Lars-Peter Clausen | ec6670a | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 239 | [IIO_EV_INFO_HYSTERESIS] = "hysteresis", |
Srinivas Pandruvada | 77a533c | 2014-08-07 23:29:00 +0100 | [diff] [blame] | 240 | [IIO_EV_INFO_PERIOD] = "period", |
Martin Fuzzey | 3f7f642 | 2015-05-13 12:26:42 +0200 | [diff] [blame] | 241 | [IIO_EV_INFO_HIGH_PASS_FILTER_3DB] = "high_pass_filter_3db", |
| 242 | [IIO_EV_INFO_LOW_PASS_FILTER_3DB] = "low_pass_filter_3db", |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 243 | }; |
| 244 | |
| 245 | static enum iio_event_direction iio_ev_attr_dir(struct iio_dev_attr *attr) |
| 246 | { |
| 247 | return attr->c->event_spec[attr->address & 0xffff].dir; |
| 248 | } |
| 249 | |
| 250 | static enum iio_event_type iio_ev_attr_type(struct iio_dev_attr *attr) |
| 251 | { |
| 252 | return attr->c->event_spec[attr->address & 0xffff].type; |
| 253 | } |
| 254 | |
| 255 | static enum iio_event_info iio_ev_attr_info(struct iio_dev_attr *attr) |
| 256 | { |
| 257 | return (attr->address >> 16) & 0xffff; |
| 258 | } |
| 259 | |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 260 | static ssize_t iio_ev_state_store(struct device *dev, |
| 261 | struct device_attribute *attr, |
| 262 | const char *buf, |
| 263 | size_t len) |
| 264 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 265 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 266 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
| 267 | int ret; |
| 268 | bool val; |
| 269 | |
| 270 | ret = strtobool(buf, &val); |
| 271 | if (ret < 0) |
| 272 | return ret; |
| 273 | |
Lars-Peter Clausen | cb95585 | 2013-12-07 10:45:00 +0000 | [diff] [blame] | 274 | ret = indio_dev->info->write_event_config(indio_dev, |
| 275 | this_attr->c, iio_ev_attr_type(this_attr), |
| 276 | iio_ev_attr_dir(this_attr), val); |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 277 | |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 278 | return (ret < 0) ? ret : len; |
| 279 | } |
| 280 | |
| 281 | static ssize_t iio_ev_state_show(struct device *dev, |
| 282 | struct device_attribute *attr, |
| 283 | char *buf) |
| 284 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 285 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 286 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 287 | int val; |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 288 | |
Lars-Peter Clausen | cb95585 | 2013-12-07 10:45:00 +0000 | [diff] [blame] | 289 | val = indio_dev->info->read_event_config(indio_dev, |
| 290 | this_attr->c, iio_ev_attr_type(this_attr), |
| 291 | iio_ev_attr_dir(this_attr)); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 292 | if (val < 0) |
| 293 | return val; |
| 294 | else |
| 295 | return sprintf(buf, "%d\n", val); |
| 296 | } |
| 297 | |
| 298 | static ssize_t iio_ev_value_show(struct device *dev, |
| 299 | struct device_attribute *attr, |
| 300 | char *buf) |
| 301 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 302 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 303 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
Srinivas Pandruvada | 9fbfb4b | 2014-04-29 00:51:00 +0100 | [diff] [blame] | 304 | int val, val2, val_arr[2]; |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 305 | int ret; |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 306 | |
Lars-Peter Clausen | cb95585 | 2013-12-07 10:45:00 +0000 | [diff] [blame] | 307 | ret = indio_dev->info->read_event_value(indio_dev, |
| 308 | this_attr->c, iio_ev_attr_type(this_attr), |
| 309 | iio_ev_attr_dir(this_attr), iio_ev_attr_info(this_attr), |
| 310 | &val, &val2); |
| 311 | if (ret < 0) |
| 312 | return ret; |
Srinivas Pandruvada | 9fbfb4b | 2014-04-29 00:51:00 +0100 | [diff] [blame] | 313 | val_arr[0] = val; |
| 314 | val_arr[1] = val2; |
| 315 | return iio_format_value(buf, ret, 2, val_arr); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | static ssize_t iio_ev_value_store(struct device *dev, |
| 319 | struct device_attribute *attr, |
| 320 | const char *buf, |
| 321 | size_t len) |
| 322 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 323 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 324 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 325 | int val, val2; |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 326 | int ret; |
| 327 | |
Lars-Peter Clausen | cb95585 | 2013-12-07 10:45:00 +0000 | [diff] [blame] | 328 | if (!indio_dev->info->write_event_value) |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 329 | return -EINVAL; |
| 330 | |
Lars-Peter Clausen | cb95585 | 2013-12-07 10:45:00 +0000 | [diff] [blame] | 331 | ret = iio_str_to_fixpoint(buf, 100000, &val, &val2); |
| 332 | if (ret) |
| 333 | return ret; |
| 334 | ret = indio_dev->info->write_event_value(indio_dev, |
| 335 | this_attr->c, iio_ev_attr_type(this_attr), |
| 336 | iio_ev_attr_dir(this_attr), iio_ev_attr_info(this_attr), |
| 337 | val, val2); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 338 | if (ret < 0) |
| 339 | return ret; |
| 340 | |
| 341 | return len; |
| 342 | } |
| 343 | |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 344 | static int iio_device_add_event(struct iio_dev *indio_dev, |
| 345 | const struct iio_chan_spec *chan, unsigned int spec_index, |
| 346 | enum iio_event_type type, enum iio_event_direction dir, |
| 347 | enum iio_shared_by shared_by, const unsigned long *mask) |
| 348 | { |
| 349 | ssize_t (*show)(struct device *, struct device_attribute *, char *); |
| 350 | ssize_t (*store)(struct device *, struct device_attribute *, |
| 351 | const char *, size_t); |
| 352 | unsigned int attrcount = 0; |
| 353 | unsigned int i; |
| 354 | char *postfix; |
| 355 | int ret; |
| 356 | |
Jonathan Cameron | ef4b485 | 2014-01-03 22:24:00 +0000 | [diff] [blame] | 357 | for_each_set_bit(i, mask, sizeof(*mask)*8) { |
| 358 | if (i >= ARRAY_SIZE(iio_ev_info_text)) |
| 359 | return -EINVAL; |
Irina Tirdea | 1843c2f | 2014-11-10 14:45:31 +0200 | [diff] [blame] | 360 | if (dir != IIO_EV_DIR_NONE) |
| 361 | postfix = kasprintf(GFP_KERNEL, "%s_%s_%s", |
| 362 | iio_ev_type_text[type], |
| 363 | iio_ev_dir_text[dir], |
| 364 | iio_ev_info_text[i]); |
| 365 | else |
| 366 | postfix = kasprintf(GFP_KERNEL, "%s_%s", |
| 367 | iio_ev_type_text[type], |
| 368 | iio_ev_info_text[i]); |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 369 | if (postfix == NULL) |
| 370 | return -ENOMEM; |
| 371 | |
| 372 | if (i == IIO_EV_INFO_ENABLE) { |
| 373 | show = iio_ev_state_show; |
| 374 | store = iio_ev_state_store; |
| 375 | } else { |
| 376 | show = iio_ev_value_show; |
| 377 | store = iio_ev_value_store; |
| 378 | } |
| 379 | |
| 380 | ret = __iio_add_chan_devattr(postfix, chan, show, store, |
| 381 | (i << 16) | spec_index, shared_by, &indio_dev->dev, |
| 382 | &indio_dev->event_interface->dev_attr_list); |
| 383 | kfree(postfix); |
| 384 | |
Srinivas Pandruvada | 78b3321 | 2014-08-07 22:03:00 +0100 | [diff] [blame] | 385 | if ((ret == -EBUSY) && (shared_by != IIO_SEPARATE)) |
| 386 | continue; |
| 387 | |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 388 | if (ret) |
| 389 | return ret; |
| 390 | |
| 391 | attrcount++; |
| 392 | } |
| 393 | |
| 394 | return attrcount; |
| 395 | } |
| 396 | |
Lars-Peter Clausen | cb95585 | 2013-12-07 10:45:00 +0000 | [diff] [blame] | 397 | static int iio_device_add_event_sysfs(struct iio_dev *indio_dev, |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 398 | struct iio_chan_spec const *chan) |
| 399 | { |
| 400 | int ret = 0, i, attrcount = 0; |
| 401 | enum iio_event_direction dir; |
| 402 | enum iio_event_type type; |
| 403 | |
| 404 | for (i = 0; i < chan->num_event_specs; i++) { |
| 405 | type = chan->event_spec[i].type; |
| 406 | dir = chan->event_spec[i].dir; |
| 407 | |
| 408 | ret = iio_device_add_event(indio_dev, chan, i, type, dir, |
| 409 | IIO_SEPARATE, &chan->event_spec[i].mask_separate); |
| 410 | if (ret < 0) |
Hartmut Knaack | 92825ff | 2014-02-16 11:53:00 +0000 | [diff] [blame] | 411 | return ret; |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 412 | attrcount += ret; |
| 413 | |
| 414 | ret = iio_device_add_event(indio_dev, chan, i, type, dir, |
| 415 | IIO_SHARED_BY_TYPE, |
| 416 | &chan->event_spec[i].mask_shared_by_type); |
| 417 | if (ret < 0) |
Hartmut Knaack | 92825ff | 2014-02-16 11:53:00 +0000 | [diff] [blame] | 418 | return ret; |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 419 | attrcount += ret; |
| 420 | |
| 421 | ret = iio_device_add_event(indio_dev, chan, i, type, dir, |
| 422 | IIO_SHARED_BY_DIR, |
| 423 | &chan->event_spec[i].mask_shared_by_dir); |
| 424 | if (ret < 0) |
Hartmut Knaack | 92825ff | 2014-02-16 11:53:00 +0000 | [diff] [blame] | 425 | return ret; |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 426 | attrcount += ret; |
| 427 | |
| 428 | ret = iio_device_add_event(indio_dev, chan, i, type, dir, |
| 429 | IIO_SHARED_BY_ALL, |
| 430 | &chan->event_spec[i].mask_shared_by_all); |
| 431 | if (ret < 0) |
Hartmut Knaack | 92825ff | 2014-02-16 11:53:00 +0000 | [diff] [blame] | 432 | return ret; |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 433 | attrcount += ret; |
| 434 | } |
| 435 | ret = attrcount; |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 436 | return ret; |
| 437 | } |
| 438 | |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 439 | static inline int __iio_add_event_config_attrs(struct iio_dev *indio_dev) |
| 440 | { |
| 441 | int j, ret, attrcount = 0; |
| 442 | |
Roberta Dobrescu | 2179aab | 2015-01-16 00:24:14 +0200 | [diff] [blame] | 443 | /* Dynamically created from the channels array */ |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 444 | for (j = 0; j < indio_dev->num_channels; j++) { |
| 445 | ret = iio_device_add_event_sysfs(indio_dev, |
| 446 | &indio_dev->channels[j]); |
| 447 | if (ret < 0) |
Julia Lawall | e3db9ef | 2012-10-21 11:52:00 +0100 | [diff] [blame] | 448 | return ret; |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 449 | attrcount += ret; |
| 450 | } |
| 451 | return attrcount; |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | static bool iio_check_for_dynamic_events(struct iio_dev *indio_dev) |
| 455 | { |
| 456 | int j; |
| 457 | |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 458 | for (j = 0; j < indio_dev->num_channels; j++) { |
Lars-Peter Clausen | b4e3ac0 | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 459 | if (indio_dev->channels[j].num_event_specs != 0) |
| 460 | return true; |
| 461 | } |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 462 | return false; |
| 463 | } |
| 464 | |
| 465 | static void iio_setup_ev_int(struct iio_event_interface *ev_int) |
| 466 | { |
Lars-Peter Clausen | 2c00193 | 2012-01-03 14:59:39 +0100 | [diff] [blame] | 467 | INIT_KFIFO(ev_int->det_events); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 468 | init_waitqueue_head(&ev_int->wait); |
Lars-Peter Clausen | b91acca | 2014-02-14 18:49:00 +0000 | [diff] [blame] | 469 | mutex_init(&ev_int->read_lock); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 470 | } |
| 471 | |
| 472 | static const char *iio_event_group_name = "events"; |
| 473 | int iio_device_register_eventset(struct iio_dev *indio_dev) |
| 474 | { |
| 475 | struct iio_dev_attr *p; |
| 476 | int ret = 0, attrcount_orig = 0, attrcount, attrn; |
| 477 | struct attribute **attr; |
| 478 | |
| 479 | if (!(indio_dev->info->event_attrs || |
| 480 | iio_check_for_dynamic_events(indio_dev))) |
| 481 | return 0; |
| 482 | |
| 483 | indio_dev->event_interface = |
| 484 | kzalloc(sizeof(struct iio_event_interface), GFP_KERNEL); |
Hartmut Knaack | 92825ff | 2014-02-16 11:53:00 +0000 | [diff] [blame] | 485 | if (indio_dev->event_interface == NULL) |
| 486 | return -ENOMEM; |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 487 | |
Sascha Hauer | 46b2431 | 2012-07-03 10:55:40 +0200 | [diff] [blame] | 488 | INIT_LIST_HEAD(&indio_dev->event_interface->dev_attr_list); |
| 489 | |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 490 | iio_setup_ev_int(indio_dev->event_interface); |
| 491 | if (indio_dev->info->event_attrs != NULL) { |
| 492 | attr = indio_dev->info->event_attrs->attrs; |
| 493 | while (*attr++ != NULL) |
| 494 | attrcount_orig++; |
| 495 | } |
| 496 | attrcount = attrcount_orig; |
| 497 | if (indio_dev->channels) { |
| 498 | ret = __iio_add_event_config_attrs(indio_dev); |
| 499 | if (ret < 0) |
| 500 | goto error_free_setup_event_lines; |
| 501 | attrcount += ret; |
| 502 | } |
| 503 | |
| 504 | indio_dev->event_interface->group.name = iio_event_group_name; |
| 505 | indio_dev->event_interface->group.attrs = kcalloc(attrcount + 1, |
| 506 | sizeof(indio_dev->event_interface->group.attrs[0]), |
| 507 | GFP_KERNEL); |
| 508 | if (indio_dev->event_interface->group.attrs == NULL) { |
| 509 | ret = -ENOMEM; |
| 510 | goto error_free_setup_event_lines; |
| 511 | } |
| 512 | if (indio_dev->info->event_attrs) |
| 513 | memcpy(indio_dev->event_interface->group.attrs, |
| 514 | indio_dev->info->event_attrs->attrs, |
| 515 | sizeof(indio_dev->event_interface->group.attrs[0]) |
| 516 | *attrcount_orig); |
| 517 | attrn = attrcount_orig; |
| 518 | /* Add all elements from the list. */ |
| 519 | list_for_each_entry(p, |
| 520 | &indio_dev->event_interface->dev_attr_list, |
| 521 | l) |
| 522 | indio_dev->event_interface->group.attrs[attrn++] = |
| 523 | &p->dev_attr.attr; |
| 524 | indio_dev->groups[indio_dev->groupcounter++] = |
| 525 | &indio_dev->event_interface->group; |
| 526 | |
| 527 | return 0; |
| 528 | |
| 529 | error_free_setup_event_lines: |
Lars-Peter Clausen | 84088eb | 2013-10-07 12:50:00 +0100 | [diff] [blame] | 530 | iio_free_chan_devattr_list(&indio_dev->event_interface->dev_attr_list); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 531 | kfree(indio_dev->event_interface); |
Martin Fuzzey | c1b03ab | 2015-02-19 15:17:44 +0100 | [diff] [blame] | 532 | indio_dev->event_interface = NULL; |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 533 | return ret; |
| 534 | } |
| 535 | |
Lars-Peter Clausen | d2f0a48 | 2013-10-04 12:07:00 +0100 | [diff] [blame] | 536 | /** |
| 537 | * iio_device_wakeup_eventset - Wakes up the event waitqueue |
| 538 | * @indio_dev: The IIO device |
| 539 | * |
| 540 | * Wakes up the event waitqueue used for poll() and blocking read(). |
| 541 | * Should usually be called when the device is unregistered. |
| 542 | */ |
| 543 | void iio_device_wakeup_eventset(struct iio_dev *indio_dev) |
| 544 | { |
| 545 | if (indio_dev->event_interface == NULL) |
| 546 | return; |
| 547 | wake_up(&indio_dev->event_interface->wait); |
| 548 | } |
| 549 | |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 550 | void iio_device_unregister_eventset(struct iio_dev *indio_dev) |
| 551 | { |
| 552 | if (indio_dev->event_interface == NULL) |
| 553 | return; |
Lars-Peter Clausen | 84088eb | 2013-10-07 12:50:00 +0100 | [diff] [blame] | 554 | iio_free_chan_devattr_list(&indio_dev->event_interface->dev_attr_list); |
Lars-Peter Clausen | 0a769a9 | 2012-01-03 14:59:38 +0100 | [diff] [blame] | 555 | kfree(indio_dev->event_interface->group.attrs); |
| 556 | kfree(indio_dev->event_interface); |
| 557 | } |