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