Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 1 | /* The industrial I/O core |
| 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/kernel.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/idr.h> |
| 15 | #include <linux/kdev_t.h> |
| 16 | #include <linux/err.h> |
| 17 | #include <linux/device.h> |
| 18 | #include <linux/fs.h> |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 19 | #include <linux/poll.h> |
Jonathan Cameron | ffc18af | 2009-10-12 19:18:09 +0100 | [diff] [blame] | 20 | #include <linux/sched.h> |
Jeff Mahoney | 4439c93 | 2009-10-12 17:10:34 -0400 | [diff] [blame] | 21 | #include <linux/wait.h> |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 22 | #include <linux/cdev.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 23 | #include <linux/slab.h> |
Jonathan Cameron | 8e7d967 | 2011-08-30 12:32:45 +0100 | [diff] [blame] | 24 | #include <linux/anon_inodes.h> |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 25 | #include <linux/debugfs.h> |
Jonathan Cameron | 06458e2 | 2012-04-25 15:54:58 +0100 | [diff] [blame] | 26 | #include <linux/iio/iio.h> |
Jonathan Cameron | df9c1c4 | 2011-08-12 17:56:03 +0100 | [diff] [blame] | 27 | #include "iio_core.h" |
Jonathan Cameron | 6aea1c3 | 2011-08-24 17:28:38 +0100 | [diff] [blame] | 28 | #include "iio_core_trigger.h" |
Jonathan Cameron | 06458e2 | 2012-04-25 15:54:58 +0100 | [diff] [blame] | 29 | #include <linux/iio/sysfs.h> |
| 30 | #include <linux/iio/events.h> |
Jonathan Cameron | 9dd1cb3 | 2011-08-30 12:41:15 +0100 | [diff] [blame] | 31 | |
Peter Meerwald | 99698b4 | 2012-08-26 13:43:00 +0100 | [diff] [blame] | 32 | /* IDA to assign each registered device a unique id */ |
Jonathan Cameron | b156cf7 | 2010-09-04 17:54:43 +0100 | [diff] [blame] | 33 | static DEFINE_IDA(iio_ida); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 34 | |
Jonathan Cameron | f625cb9 | 2011-08-30 12:32:48 +0100 | [diff] [blame] | 35 | static dev_t iio_devt; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 36 | |
| 37 | #define IIO_DEV_MAX 256 |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 38 | struct bus_type iio_bus_type = { |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 39 | .name = "iio", |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 40 | }; |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 41 | EXPORT_SYMBOL(iio_bus_type); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 42 | |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 43 | static struct dentry *iio_debugfs_dentry; |
| 44 | |
Jonathan Cameron | c6fc806 | 2011-09-02 17:14:34 +0100 | [diff] [blame] | 45 | static const char * const iio_direction[] = { |
| 46 | [0] = "in", |
| 47 | [1] = "out", |
| 48 | }; |
| 49 | |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 50 | static const char * const iio_chan_type_name_spec[] = { |
Jonathan Cameron | c6fc806 | 2011-09-02 17:14:34 +0100 | [diff] [blame] | 51 | [IIO_VOLTAGE] = "voltage", |
Michael Hennerich | faf290e | 2011-05-18 14:42:02 +0100 | [diff] [blame] | 52 | [IIO_CURRENT] = "current", |
| 53 | [IIO_POWER] = "power", |
Bryan Freed | 9bff02f | 2011-07-07 12:01:54 -0700 | [diff] [blame] | 54 | [IIO_ACCEL] = "accel", |
Jonathan Cameron | 41ea040 | 2011-10-05 15:27:59 +0100 | [diff] [blame] | 55 | [IIO_ANGL_VEL] = "anglvel", |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 56 | [IIO_MAGN] = "magn", |
Bryan Freed | 9bff02f | 2011-07-07 12:01:54 -0700 | [diff] [blame] | 57 | [IIO_LIGHT] = "illuminance", |
| 58 | [IIO_INTENSITY] = "intensity", |
Bryan Freed | f09f2c8 | 2011-07-07 12:01:55 -0700 | [diff] [blame] | 59 | [IIO_PROXIMITY] = "proximity", |
Bryan Freed | 9bff02f | 2011-07-07 12:01:54 -0700 | [diff] [blame] | 60 | [IIO_TEMP] = "temp", |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 61 | [IIO_INCLI] = "incli", |
| 62 | [IIO_ROT] = "rot", |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 63 | [IIO_ANGL] = "angl", |
Bryan Freed | 9bff02f | 2011-07-07 12:01:54 -0700 | [diff] [blame] | 64 | [IIO_TIMESTAMP] = "timestamp", |
Jonathan Cameron | 66dbe70 | 2011-09-02 17:14:43 +0100 | [diff] [blame] | 65 | [IIO_CAPACITANCE] = "capacitance", |
Michael Hennerich | a6b1285 | 2012-04-27 10:58:34 +0200 | [diff] [blame] | 66 | [IIO_ALTVOLTAGE] = "altvoltage", |
Jon Brenner | 21cd1fa | 2012-05-16 10:46:42 -0500 | [diff] [blame] | 67 | [IIO_CCT] = "cct", |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 68 | }; |
| 69 | |
Jonathan Cameron | 330c6c5 | 2011-09-02 17:14:39 +0100 | [diff] [blame] | 70 | static const char * const iio_modifier_names[] = { |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 71 | [IIO_MOD_X] = "x", |
| 72 | [IIO_MOD_Y] = "y", |
| 73 | [IIO_MOD_Z] = "z", |
Jonathan Cameron | 8f5879b | 2012-05-05 10:39:22 +0100 | [diff] [blame] | 74 | [IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)", |
Jonathan Cameron | cf82cb8 | 2012-05-05 10:56:41 +0100 | [diff] [blame] | 75 | [IIO_MOD_SUM_SQUARED_X_Y_Z] = "x^2+y^2+z^2", |
Jonathan Cameron | 330c6c5 | 2011-09-02 17:14:39 +0100 | [diff] [blame] | 76 | [IIO_MOD_LIGHT_BOTH] = "both", |
| 77 | [IIO_MOD_LIGHT_IR] = "ir", |
Jon Brenner | 21cd1fa | 2012-05-16 10:46:42 -0500 | [diff] [blame] | 78 | [IIO_MOD_LIGHT_CLEAR] = "clear", |
| 79 | [IIO_MOD_LIGHT_RED] = "red", |
| 80 | [IIO_MOD_LIGHT_GREEN] = "green", |
| 81 | [IIO_MOD_LIGHT_BLUE] = "blue", |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | /* relies on pairs of these shared then separate */ |
| 85 | static const char * const iio_chan_info_postfix[] = { |
Jonathan Cameron | 75a973c | 2012-04-15 17:41:30 +0100 | [diff] [blame] | 86 | [IIO_CHAN_INFO_RAW] = "raw", |
| 87 | [IIO_CHAN_INFO_PROCESSED] = "input", |
Jonathan Cameron | c8a9f80 | 2011-10-26 17:41:36 +0100 | [diff] [blame] | 88 | [IIO_CHAN_INFO_SCALE] = "scale", |
| 89 | [IIO_CHAN_INFO_OFFSET] = "offset", |
| 90 | [IIO_CHAN_INFO_CALIBSCALE] = "calibscale", |
| 91 | [IIO_CHAN_INFO_CALIBBIAS] = "calibbias", |
| 92 | [IIO_CHAN_INFO_PEAK] = "peak_raw", |
| 93 | [IIO_CHAN_INFO_PEAK_SCALE] = "peak_scale", |
| 94 | [IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW] = "quadrature_correction_raw", |
| 95 | [IIO_CHAN_INFO_AVERAGE_RAW] = "mean_raw", |
Jonathan Cameron | df94aba | 2011-11-27 11:39:12 +0000 | [diff] [blame] | 96 | [IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY] |
| 97 | = "filter_low_pass_3db_frequency", |
Laxman Dewangan | ce85a1c | 2012-04-13 16:03:31 +0530 | [diff] [blame] | 98 | [IIO_CHAN_INFO_SAMP_FREQ] = "sampling_frequency", |
Michael Hennerich | a6b1285 | 2012-04-27 10:58:34 +0200 | [diff] [blame] | 99 | [IIO_CHAN_INFO_FREQUENCY] = "frequency", |
| 100 | [IIO_CHAN_INFO_PHASE] = "phase", |
Michael Hennerich | b65d621 | 2012-05-11 11:36:53 +0200 | [diff] [blame] | 101 | [IIO_CHAN_INFO_HARDWAREGAIN] = "hardwaregain", |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 102 | }; |
| 103 | |
Jonathan Cameron | 5fb21c8 | 2011-12-05 21:37:10 +0000 | [diff] [blame] | 104 | const struct iio_chan_spec |
| 105 | *iio_find_channel_from_si(struct iio_dev *indio_dev, int si) |
| 106 | { |
| 107 | int i; |
| 108 | |
| 109 | for (i = 0; i < indio_dev->num_channels; i++) |
| 110 | if (indio_dev->channels[i].scan_index == si) |
| 111 | return &indio_dev->channels[i]; |
| 112 | return NULL; |
| 113 | } |
| 114 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 115 | /* This turns up an awful lot */ |
| 116 | ssize_t iio_read_const_attr(struct device *dev, |
| 117 | struct device_attribute *attr, |
| 118 | char *buf) |
| 119 | { |
| 120 | return sprintf(buf, "%s\n", to_iio_const_attr(attr)->string); |
| 121 | } |
| 122 | EXPORT_SYMBOL(iio_read_const_attr); |
| 123 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 124 | static int __init iio_init(void) |
| 125 | { |
| 126 | int ret; |
| 127 | |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 128 | /* Register sysfs bus */ |
| 129 | ret = bus_register(&iio_bus_type); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 130 | if (ret < 0) { |
| 131 | printk(KERN_ERR |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 132 | "%s could not register bus type\n", |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 133 | __FILE__); |
| 134 | goto error_nothing; |
| 135 | } |
| 136 | |
Jonathan Cameron | 9aa1a16 | 2011-08-12 17:08:50 +0100 | [diff] [blame] | 137 | ret = alloc_chrdev_region(&iio_devt, 0, IIO_DEV_MAX, "iio"); |
| 138 | if (ret < 0) { |
| 139 | printk(KERN_ERR "%s: failed to allocate char dev region\n", |
| 140 | __FILE__); |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 141 | goto error_unregister_bus_type; |
Jonathan Cameron | 9aa1a16 | 2011-08-12 17:08:50 +0100 | [diff] [blame] | 142 | } |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 143 | |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 144 | iio_debugfs_dentry = debugfs_create_dir("iio", NULL); |
| 145 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 146 | return 0; |
| 147 | |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 148 | error_unregister_bus_type: |
| 149 | bus_unregister(&iio_bus_type); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 150 | error_nothing: |
| 151 | return ret; |
| 152 | } |
| 153 | |
| 154 | static void __exit iio_exit(void) |
| 155 | { |
Jonathan Cameron | 9aa1a16 | 2011-08-12 17:08:50 +0100 | [diff] [blame] | 156 | if (iio_devt) |
| 157 | unregister_chrdev_region(iio_devt, IIO_DEV_MAX); |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 158 | bus_unregister(&iio_bus_type); |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 159 | debugfs_remove(iio_debugfs_dentry); |
| 160 | } |
| 161 | |
| 162 | #if defined(CONFIG_DEBUG_FS) |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 163 | static ssize_t iio_debugfs_read_reg(struct file *file, char __user *userbuf, |
| 164 | size_t count, loff_t *ppos) |
| 165 | { |
| 166 | struct iio_dev *indio_dev = file->private_data; |
| 167 | char buf[20]; |
| 168 | unsigned val = 0; |
| 169 | ssize_t len; |
| 170 | int ret; |
| 171 | |
| 172 | ret = indio_dev->info->debugfs_reg_access(indio_dev, |
| 173 | indio_dev->cached_reg_addr, |
| 174 | 0, &val); |
| 175 | if (ret) |
| 176 | dev_err(indio_dev->dev.parent, "%s: read failed\n", __func__); |
| 177 | |
| 178 | len = snprintf(buf, sizeof(buf), "0x%X\n", val); |
| 179 | |
| 180 | return simple_read_from_buffer(userbuf, count, ppos, buf, len); |
| 181 | } |
| 182 | |
| 183 | static ssize_t iio_debugfs_write_reg(struct file *file, |
| 184 | const char __user *userbuf, size_t count, loff_t *ppos) |
| 185 | { |
| 186 | struct iio_dev *indio_dev = file->private_data; |
| 187 | unsigned reg, val; |
| 188 | char buf[80]; |
| 189 | int ret; |
| 190 | |
| 191 | count = min_t(size_t, count, (sizeof(buf)-1)); |
| 192 | if (copy_from_user(buf, userbuf, count)) |
| 193 | return -EFAULT; |
| 194 | |
| 195 | buf[count] = 0; |
| 196 | |
| 197 | ret = sscanf(buf, "%i %i", ®, &val); |
| 198 | |
| 199 | switch (ret) { |
| 200 | case 1: |
| 201 | indio_dev->cached_reg_addr = reg; |
| 202 | break; |
| 203 | case 2: |
| 204 | indio_dev->cached_reg_addr = reg; |
| 205 | ret = indio_dev->info->debugfs_reg_access(indio_dev, reg, |
| 206 | val, NULL); |
| 207 | if (ret) { |
| 208 | dev_err(indio_dev->dev.parent, "%s: write failed\n", |
| 209 | __func__); |
| 210 | return ret; |
| 211 | } |
| 212 | break; |
| 213 | default: |
| 214 | return -EINVAL; |
| 215 | } |
| 216 | |
| 217 | return count; |
| 218 | } |
| 219 | |
| 220 | static const struct file_operations iio_debugfs_reg_fops = { |
Axel Lin | 5a28c87 | 2012-05-03 09:50:51 +0800 | [diff] [blame] | 221 | .open = simple_open, |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 222 | .read = iio_debugfs_read_reg, |
| 223 | .write = iio_debugfs_write_reg, |
| 224 | }; |
| 225 | |
| 226 | static void iio_device_unregister_debugfs(struct iio_dev *indio_dev) |
| 227 | { |
| 228 | debugfs_remove_recursive(indio_dev->debugfs_dentry); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 229 | } |
| 230 | |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 231 | static int iio_device_register_debugfs(struct iio_dev *indio_dev) |
| 232 | { |
| 233 | struct dentry *d; |
| 234 | |
| 235 | if (indio_dev->info->debugfs_reg_access == NULL) |
| 236 | return 0; |
| 237 | |
Axel Lin | abd5a2f | 2012-05-03 22:56:58 +0800 | [diff] [blame] | 238 | if (!iio_debugfs_dentry) |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 239 | return 0; |
| 240 | |
| 241 | indio_dev->debugfs_dentry = |
| 242 | debugfs_create_dir(dev_name(&indio_dev->dev), |
| 243 | iio_debugfs_dentry); |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 244 | if (indio_dev->debugfs_dentry == NULL) { |
| 245 | dev_warn(indio_dev->dev.parent, |
| 246 | "Failed to create debugfs directory\n"); |
| 247 | return -EFAULT; |
| 248 | } |
| 249 | |
| 250 | d = debugfs_create_file("direct_reg_access", 0644, |
| 251 | indio_dev->debugfs_dentry, |
| 252 | indio_dev, &iio_debugfs_reg_fops); |
| 253 | if (!d) { |
| 254 | iio_device_unregister_debugfs(indio_dev); |
| 255 | return -ENOMEM; |
| 256 | } |
| 257 | |
| 258 | return 0; |
| 259 | } |
| 260 | #else |
| 261 | static int iio_device_register_debugfs(struct iio_dev *indio_dev) |
| 262 | { |
| 263 | return 0; |
| 264 | } |
| 265 | |
| 266 | static void iio_device_unregister_debugfs(struct iio_dev *indio_dev) |
| 267 | { |
| 268 | } |
| 269 | #endif /* CONFIG_DEBUG_FS */ |
| 270 | |
Lars-Peter Clausen | 4fee7e1 | 2012-03-06 20:43:45 +0100 | [diff] [blame] | 271 | static ssize_t iio_read_channel_ext_info(struct device *dev, |
| 272 | struct device_attribute *attr, |
| 273 | char *buf) |
| 274 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 275 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Lars-Peter Clausen | 4fee7e1 | 2012-03-06 20:43:45 +0100 | [diff] [blame] | 276 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
| 277 | const struct iio_chan_spec_ext_info *ext_info; |
| 278 | |
| 279 | ext_info = &this_attr->c->ext_info[this_attr->address]; |
| 280 | |
Michael Hennerich | fc6d113 | 2012-04-27 10:58:36 +0200 | [diff] [blame] | 281 | return ext_info->read(indio_dev, ext_info->private, this_attr->c, buf); |
Lars-Peter Clausen | 4fee7e1 | 2012-03-06 20:43:45 +0100 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | static ssize_t iio_write_channel_ext_info(struct device *dev, |
| 285 | struct device_attribute *attr, |
| 286 | const char *buf, |
| 287 | size_t len) |
| 288 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 289 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Lars-Peter Clausen | 4fee7e1 | 2012-03-06 20:43:45 +0100 | [diff] [blame] | 290 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
| 291 | const struct iio_chan_spec_ext_info *ext_info; |
| 292 | |
| 293 | ext_info = &this_attr->c->ext_info[this_attr->address]; |
| 294 | |
Michael Hennerich | fc6d113 | 2012-04-27 10:58:36 +0200 | [diff] [blame] | 295 | return ext_info->write(indio_dev, ext_info->private, |
| 296 | this_attr->c, buf, len); |
Lars-Peter Clausen | 4fee7e1 | 2012-03-06 20:43:45 +0100 | [diff] [blame] | 297 | } |
| 298 | |
Lars-Peter Clausen | 5212cc8 | 2012-06-04 11:36:11 +0200 | [diff] [blame] | 299 | ssize_t iio_enum_available_read(struct iio_dev *indio_dev, |
| 300 | uintptr_t priv, const struct iio_chan_spec *chan, char *buf) |
| 301 | { |
| 302 | const struct iio_enum *e = (const struct iio_enum *)priv; |
| 303 | unsigned int i; |
| 304 | size_t len = 0; |
| 305 | |
| 306 | if (!e->num_items) |
| 307 | return 0; |
| 308 | |
| 309 | for (i = 0; i < e->num_items; ++i) |
Lars-Peter Clausen | 74dcd43 | 2012-06-05 18:24:12 +0200 | [diff] [blame] | 310 | len += scnprintf(buf + len, PAGE_SIZE - len, "%s ", e->items[i]); |
Lars-Peter Clausen | 5212cc8 | 2012-06-04 11:36:11 +0200 | [diff] [blame] | 311 | |
| 312 | /* replace last space with a newline */ |
| 313 | buf[len - 1] = '\n'; |
| 314 | |
| 315 | return len; |
| 316 | } |
| 317 | EXPORT_SYMBOL_GPL(iio_enum_available_read); |
| 318 | |
| 319 | ssize_t iio_enum_read(struct iio_dev *indio_dev, |
| 320 | uintptr_t priv, const struct iio_chan_spec *chan, char *buf) |
| 321 | { |
| 322 | const struct iio_enum *e = (const struct iio_enum *)priv; |
| 323 | int i; |
| 324 | |
| 325 | if (!e->get) |
| 326 | return -EINVAL; |
| 327 | |
| 328 | i = e->get(indio_dev, chan); |
| 329 | if (i < 0) |
| 330 | return i; |
| 331 | else if (i >= e->num_items) |
| 332 | return -EINVAL; |
| 333 | |
| 334 | return sprintf(buf, "%s\n", e->items[i]); |
| 335 | } |
| 336 | EXPORT_SYMBOL_GPL(iio_enum_read); |
| 337 | |
| 338 | ssize_t iio_enum_write(struct iio_dev *indio_dev, |
| 339 | uintptr_t priv, const struct iio_chan_spec *chan, const char *buf, |
| 340 | size_t len) |
| 341 | { |
| 342 | const struct iio_enum *e = (const struct iio_enum *)priv; |
| 343 | unsigned int i; |
| 344 | int ret; |
| 345 | |
| 346 | if (!e->set) |
| 347 | return -EINVAL; |
| 348 | |
| 349 | for (i = 0; i < e->num_items; i++) { |
| 350 | if (sysfs_streq(buf, e->items[i])) |
| 351 | break; |
| 352 | } |
| 353 | |
| 354 | if (i == e->num_items) |
| 355 | return -EINVAL; |
| 356 | |
| 357 | ret = e->set(indio_dev, chan, i); |
| 358 | return ret ? ret : len; |
| 359 | } |
| 360 | EXPORT_SYMBOL_GPL(iio_enum_write); |
| 361 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 362 | static ssize_t iio_read_channel_info(struct device *dev, |
| 363 | struct device_attribute *attr, |
| 364 | char *buf) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 365 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 366 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 367 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
| 368 | int val, val2; |
Michael Hennerich | 67eedba | 2012-05-11 11:36:52 +0200 | [diff] [blame] | 369 | bool scale_db = false; |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 370 | int ret = indio_dev->info->read_raw(indio_dev, this_attr->c, |
| 371 | &val, &val2, this_attr->address); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 372 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 373 | if (ret < 0) |
| 374 | return ret; |
| 375 | |
Michael Hennerich | 67eedba | 2012-05-11 11:36:52 +0200 | [diff] [blame] | 376 | switch (ret) { |
| 377 | case IIO_VAL_INT: |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 378 | return sprintf(buf, "%d\n", val); |
Michael Hennerich | 67eedba | 2012-05-11 11:36:52 +0200 | [diff] [blame] | 379 | case IIO_VAL_INT_PLUS_MICRO_DB: |
| 380 | scale_db = true; |
| 381 | case IIO_VAL_INT_PLUS_MICRO: |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 382 | if (val2 < 0) |
Michael Hennerich | 67eedba | 2012-05-11 11:36:52 +0200 | [diff] [blame] | 383 | return sprintf(buf, "-%d.%06u%s\n", val, -val2, |
| 384 | scale_db ? " dB" : ""); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 385 | else |
Michael Hennerich | 67eedba | 2012-05-11 11:36:52 +0200 | [diff] [blame] | 386 | return sprintf(buf, "%d.%06u%s\n", val, val2, |
| 387 | scale_db ? " dB" : ""); |
| 388 | case IIO_VAL_INT_PLUS_NANO: |
Michael Hennerich | 71646e2 | 2011-06-27 13:07:07 +0100 | [diff] [blame] | 389 | if (val2 < 0) |
| 390 | return sprintf(buf, "-%d.%09u\n", val, -val2); |
| 391 | else |
| 392 | return sprintf(buf, "%d.%09u\n", val, val2); |
Michael Hennerich | 67eedba | 2012-05-11 11:36:52 +0200 | [diff] [blame] | 393 | default: |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 394 | return 0; |
Michael Hennerich | 67eedba | 2012-05-11 11:36:52 +0200 | [diff] [blame] | 395 | } |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | static ssize_t iio_write_channel_info(struct device *dev, |
| 399 | struct device_attribute *attr, |
| 400 | const char *buf, |
| 401 | size_t len) |
| 402 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 403 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 404 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
Michael Hennerich | 5c04af0 | 2011-06-27 13:07:10 +0100 | [diff] [blame] | 405 | int ret, integer = 0, fract = 0, fract_mult = 100000; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 406 | bool integer_part = true, negative = false; |
| 407 | |
| 408 | /* Assumes decimal - precision based on number of digits */ |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 409 | if (!indio_dev->info->write_raw) |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 410 | return -EINVAL; |
Michael Hennerich | 5c04af0 | 2011-06-27 13:07:10 +0100 | [diff] [blame] | 411 | |
| 412 | if (indio_dev->info->write_raw_get_fmt) |
| 413 | switch (indio_dev->info->write_raw_get_fmt(indio_dev, |
| 414 | this_attr->c, this_attr->address)) { |
| 415 | case IIO_VAL_INT_PLUS_MICRO: |
| 416 | fract_mult = 100000; |
| 417 | break; |
| 418 | case IIO_VAL_INT_PLUS_NANO: |
| 419 | fract_mult = 100000000; |
| 420 | break; |
| 421 | default: |
| 422 | return -EINVAL; |
| 423 | } |
| 424 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 425 | if (buf[0] == '-') { |
| 426 | negative = true; |
| 427 | buf++; |
| 428 | } |
Michael Hennerich | 5c04af0 | 2011-06-27 13:07:10 +0100 | [diff] [blame] | 429 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 430 | while (*buf) { |
| 431 | if ('0' <= *buf && *buf <= '9') { |
| 432 | if (integer_part) |
| 433 | integer = integer*10 + *buf - '0'; |
| 434 | else { |
Michael Hennerich | 5c04af0 | 2011-06-27 13:07:10 +0100 | [diff] [blame] | 435 | fract += fract_mult*(*buf - '0'); |
| 436 | if (fract_mult == 1) |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 437 | break; |
Michael Hennerich | 5c04af0 | 2011-06-27 13:07:10 +0100 | [diff] [blame] | 438 | fract_mult /= 10; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 439 | } |
| 440 | } else if (*buf == '\n') { |
| 441 | if (*(buf + 1) == '\0') |
| 442 | break; |
| 443 | else |
| 444 | return -EINVAL; |
| 445 | } else if (*buf == '.') { |
| 446 | integer_part = false; |
| 447 | } else { |
| 448 | return -EINVAL; |
| 449 | } |
| 450 | buf++; |
| 451 | } |
| 452 | if (negative) { |
| 453 | if (integer) |
| 454 | integer = -integer; |
| 455 | else |
Michael Hennerich | 5c04af0 | 2011-06-27 13:07:10 +0100 | [diff] [blame] | 456 | fract = -fract; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 457 | } |
| 458 | |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 459 | ret = indio_dev->info->write_raw(indio_dev, this_attr->c, |
Michael Hennerich | 5c04af0 | 2011-06-27 13:07:10 +0100 | [diff] [blame] | 460 | integer, fract, this_attr->address); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 461 | if (ret) |
| 462 | return ret; |
| 463 | |
| 464 | return len; |
| 465 | } |
| 466 | |
Jonathan Cameron | df9c1c4 | 2011-08-12 17:56:03 +0100 | [diff] [blame] | 467 | static |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 468 | int __iio_device_attr_init(struct device_attribute *dev_attr, |
| 469 | const char *postfix, |
| 470 | struct iio_chan_spec const *chan, |
| 471 | ssize_t (*readfunc)(struct device *dev, |
| 472 | struct device_attribute *attr, |
| 473 | char *buf), |
| 474 | ssize_t (*writefunc)(struct device *dev, |
| 475 | struct device_attribute *attr, |
| 476 | const char *buf, |
| 477 | size_t len), |
| 478 | bool generic) |
| 479 | { |
| 480 | int ret; |
| 481 | char *name_format, *full_postfix; |
| 482 | sysfs_attr_init(&dev_attr->attr); |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 483 | |
| 484 | /* Build up postfix of <extend_name>_<modifier>_postfix */ |
Jonathan Cameron | 0403e0d | 2011-10-26 17:27:42 +0100 | [diff] [blame] | 485 | if (chan->modified && !generic) { |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 486 | if (chan->extend_name) |
| 487 | full_postfix = kasprintf(GFP_KERNEL, "%s_%s_%s", |
| 488 | iio_modifier_names[chan |
| 489 | ->channel2], |
| 490 | chan->extend_name, |
| 491 | postfix); |
| 492 | else |
| 493 | full_postfix = kasprintf(GFP_KERNEL, "%s_%s", |
| 494 | iio_modifier_names[chan |
| 495 | ->channel2], |
| 496 | postfix); |
| 497 | } else { |
| 498 | if (chan->extend_name == NULL) |
| 499 | full_postfix = kstrdup(postfix, GFP_KERNEL); |
| 500 | else |
| 501 | full_postfix = kasprintf(GFP_KERNEL, |
| 502 | "%s_%s", |
| 503 | chan->extend_name, |
| 504 | postfix); |
| 505 | } |
| 506 | if (full_postfix == NULL) { |
| 507 | ret = -ENOMEM; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 508 | goto error_ret; |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 509 | } |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 510 | |
Justin P. Mattock | 4abf6f8 | 2012-02-29 22:00:38 -0800 | [diff] [blame] | 511 | if (chan->differential) { /* Differential can not have modifier */ |
Jonathan Cameron | ade7ef7 | 2011-09-02 17:14:45 +0100 | [diff] [blame] | 512 | if (generic) |
| 513 | name_format |
| 514 | = kasprintf(GFP_KERNEL, "%s_%s-%s_%s", |
| 515 | iio_direction[chan->output], |
| 516 | iio_chan_type_name_spec[chan->type], |
| 517 | iio_chan_type_name_spec[chan->type], |
| 518 | full_postfix); |
| 519 | else if (chan->indexed) |
| 520 | name_format |
| 521 | = kasprintf(GFP_KERNEL, "%s_%s%d-%s%d_%s", |
| 522 | iio_direction[chan->output], |
| 523 | iio_chan_type_name_spec[chan->type], |
| 524 | chan->channel, |
| 525 | iio_chan_type_name_spec[chan->type], |
| 526 | chan->channel2, |
| 527 | full_postfix); |
| 528 | else { |
| 529 | WARN_ON("Differential channels must be indexed\n"); |
| 530 | ret = -EINVAL; |
| 531 | goto error_free_full_postfix; |
| 532 | } |
| 533 | } else { /* Single ended */ |
| 534 | if (generic) |
| 535 | name_format |
| 536 | = kasprintf(GFP_KERNEL, "%s_%s_%s", |
| 537 | iio_direction[chan->output], |
| 538 | iio_chan_type_name_spec[chan->type], |
| 539 | full_postfix); |
| 540 | else if (chan->indexed) |
| 541 | name_format |
| 542 | = kasprintf(GFP_KERNEL, "%s_%s%d_%s", |
| 543 | iio_direction[chan->output], |
| 544 | iio_chan_type_name_spec[chan->type], |
| 545 | chan->channel, |
| 546 | full_postfix); |
| 547 | else |
| 548 | name_format |
| 549 | = kasprintf(GFP_KERNEL, "%s_%s_%s", |
| 550 | iio_direction[chan->output], |
| 551 | iio_chan_type_name_spec[chan->type], |
| 552 | full_postfix); |
| 553 | } |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 554 | if (name_format == NULL) { |
| 555 | ret = -ENOMEM; |
| 556 | goto error_free_full_postfix; |
| 557 | } |
| 558 | dev_attr->attr.name = kasprintf(GFP_KERNEL, |
| 559 | name_format, |
| 560 | chan->channel, |
| 561 | chan->channel2); |
| 562 | if (dev_attr->attr.name == NULL) { |
| 563 | ret = -ENOMEM; |
| 564 | goto error_free_name_format; |
| 565 | } |
| 566 | |
| 567 | if (readfunc) { |
| 568 | dev_attr->attr.mode |= S_IRUGO; |
| 569 | dev_attr->show = readfunc; |
| 570 | } |
| 571 | |
| 572 | if (writefunc) { |
| 573 | dev_attr->attr.mode |= S_IWUSR; |
| 574 | dev_attr->store = writefunc; |
| 575 | } |
| 576 | kfree(name_format); |
| 577 | kfree(full_postfix); |
| 578 | |
| 579 | return 0; |
| 580 | |
| 581 | error_free_name_format: |
| 582 | kfree(name_format); |
| 583 | error_free_full_postfix: |
| 584 | kfree(full_postfix); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 585 | error_ret: |
| 586 | return ret; |
| 587 | } |
| 588 | |
Jonathan Cameron | df9c1c4 | 2011-08-12 17:56:03 +0100 | [diff] [blame] | 589 | static void __iio_device_attr_deinit(struct device_attribute *dev_attr) |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 590 | { |
| 591 | kfree(dev_attr->attr.name); |
| 592 | } |
| 593 | |
| 594 | int __iio_add_chan_devattr(const char *postfix, |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 595 | struct iio_chan_spec const *chan, |
| 596 | ssize_t (*readfunc)(struct device *dev, |
| 597 | struct device_attribute *attr, |
| 598 | char *buf), |
| 599 | ssize_t (*writefunc)(struct device *dev, |
| 600 | struct device_attribute *attr, |
| 601 | const char *buf, |
| 602 | size_t len), |
Jonathan Cameron | e614a54 | 2011-09-02 17:14:41 +0100 | [diff] [blame] | 603 | u64 mask, |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 604 | bool generic, |
| 605 | struct device *dev, |
| 606 | struct list_head *attr_list) |
| 607 | { |
| 608 | int ret; |
| 609 | struct iio_dev_attr *iio_attr, *t; |
| 610 | |
| 611 | iio_attr = kzalloc(sizeof *iio_attr, GFP_KERNEL); |
| 612 | if (iio_attr == NULL) { |
| 613 | ret = -ENOMEM; |
| 614 | goto error_ret; |
| 615 | } |
| 616 | ret = __iio_device_attr_init(&iio_attr->dev_attr, |
| 617 | postfix, chan, |
| 618 | readfunc, writefunc, generic); |
| 619 | if (ret) |
| 620 | goto error_iio_dev_attr_free; |
| 621 | iio_attr->c = chan; |
| 622 | iio_attr->address = mask; |
| 623 | list_for_each_entry(t, attr_list, l) |
| 624 | if (strcmp(t->dev_attr.attr.name, |
| 625 | iio_attr->dev_attr.attr.name) == 0) { |
| 626 | if (!generic) |
| 627 | dev_err(dev, "tried to double register : %s\n", |
| 628 | t->dev_attr.attr.name); |
| 629 | ret = -EBUSY; |
| 630 | goto error_device_attr_deinit; |
| 631 | } |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 632 | list_add(&iio_attr->l, attr_list); |
| 633 | |
| 634 | return 0; |
| 635 | |
| 636 | error_device_attr_deinit: |
| 637 | __iio_device_attr_deinit(&iio_attr->dev_attr); |
| 638 | error_iio_dev_attr_free: |
| 639 | kfree(iio_attr); |
| 640 | error_ret: |
| 641 | return ret; |
| 642 | } |
| 643 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 644 | static int iio_device_add_channel_sysfs(struct iio_dev *indio_dev, |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 645 | struct iio_chan_spec const *chan) |
| 646 | { |
Jonathan Cameron | 5ccb3ad | 2012-04-15 17:41:16 +0100 | [diff] [blame] | 647 | int ret, attrcount = 0; |
Jonathan Cameron | 75a973c | 2012-04-15 17:41:30 +0100 | [diff] [blame] | 648 | int i; |
Lars-Peter Clausen | 5f420b4 | 2012-02-21 18:38:12 +0100 | [diff] [blame] | 649 | const struct iio_chan_spec_ext_info *ext_info; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 650 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 651 | if (chan->channel < 0) |
| 652 | return 0; |
Jonathan Cameron | 75a973c | 2012-04-15 17:41:30 +0100 | [diff] [blame] | 653 | for_each_set_bit(i, &chan->info_mask, sizeof(long)*8) { |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 654 | ret = __iio_add_chan_devattr(iio_chan_info_postfix[i/2], |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 655 | chan, |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 656 | &iio_read_channel_info, |
| 657 | &iio_write_channel_info, |
Jonathan Cameron | c8a9f80 | 2011-10-26 17:41:36 +0100 | [diff] [blame] | 658 | i/2, |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 659 | !(i%2), |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 660 | &indio_dev->dev, |
| 661 | &indio_dev->channel_attr_list); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 662 | if (ret == -EBUSY && (i%2 == 0)) { |
| 663 | ret = 0; |
| 664 | continue; |
| 665 | } |
| 666 | if (ret < 0) |
| 667 | goto error_ret; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 668 | attrcount++; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 669 | } |
Lars-Peter Clausen | 5f420b4 | 2012-02-21 18:38:12 +0100 | [diff] [blame] | 670 | |
| 671 | if (chan->ext_info) { |
| 672 | unsigned int i = 0; |
| 673 | for (ext_info = chan->ext_info; ext_info->name; ext_info++) { |
| 674 | ret = __iio_add_chan_devattr(ext_info->name, |
| 675 | chan, |
| 676 | ext_info->read ? |
| 677 | &iio_read_channel_ext_info : NULL, |
| 678 | ext_info->write ? |
| 679 | &iio_write_channel_ext_info : NULL, |
| 680 | i, |
| 681 | ext_info->shared, |
| 682 | &indio_dev->dev, |
| 683 | &indio_dev->channel_attr_list); |
| 684 | i++; |
| 685 | if (ret == -EBUSY && ext_info->shared) |
| 686 | continue; |
| 687 | |
| 688 | if (ret) |
| 689 | goto error_ret; |
| 690 | |
| 691 | attrcount++; |
| 692 | } |
| 693 | } |
| 694 | |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 695 | ret = attrcount; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 696 | error_ret: |
| 697 | return ret; |
| 698 | } |
| 699 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 700 | static void iio_device_remove_and_free_read_attr(struct iio_dev *indio_dev, |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 701 | struct iio_dev_attr *p) |
| 702 | { |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 703 | kfree(p->dev_attr.attr.name); |
| 704 | kfree(p); |
| 705 | } |
| 706 | |
Jonathan Cameron | 1b73288 | 2011-05-18 14:41:43 +0100 | [diff] [blame] | 707 | static ssize_t iio_show_dev_name(struct device *dev, |
| 708 | struct device_attribute *attr, |
| 709 | char *buf) |
| 710 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 711 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Jonathan Cameron | 1b73288 | 2011-05-18 14:41:43 +0100 | [diff] [blame] | 712 | return sprintf(buf, "%s\n", indio_dev->name); |
| 713 | } |
| 714 | |
| 715 | static DEVICE_ATTR(name, S_IRUGO, iio_show_dev_name, NULL); |
| 716 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 717 | static int iio_device_register_sysfs(struct iio_dev *indio_dev) |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 718 | { |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 719 | int i, ret = 0, attrcount, attrn, attrcount_orig = 0; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 720 | struct iio_dev_attr *p, *n; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 721 | struct attribute **attr; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 722 | |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 723 | /* First count elements in any existing group */ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 724 | if (indio_dev->info->attrs) { |
| 725 | attr = indio_dev->info->attrs->attrs; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 726 | while (*attr++ != NULL) |
| 727 | attrcount_orig++; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 728 | } |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 729 | attrcount = attrcount_orig; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 730 | /* |
| 731 | * New channel registration method - relies on the fact a group does |
Peter Meerwald | d25b380 | 2012-08-26 13:43:00 +0100 | [diff] [blame] | 732 | * not need to be initialized if its name is NULL. |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 733 | */ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 734 | if (indio_dev->channels) |
| 735 | for (i = 0; i < indio_dev->num_channels; i++) { |
| 736 | ret = iio_device_add_channel_sysfs(indio_dev, |
| 737 | &indio_dev |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 738 | ->channels[i]); |
| 739 | if (ret < 0) |
| 740 | goto error_clear_attrs; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 741 | attrcount += ret; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 742 | } |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 743 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 744 | if (indio_dev->name) |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 745 | attrcount++; |
| 746 | |
Thomas Meyer | d83fb18 | 2011-11-29 22:08:00 +0100 | [diff] [blame] | 747 | indio_dev->chan_attr_group.attrs = kcalloc(attrcount + 1, |
| 748 | sizeof(indio_dev->chan_attr_group.attrs[0]), |
| 749 | GFP_KERNEL); |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 750 | if (indio_dev->chan_attr_group.attrs == NULL) { |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 751 | ret = -ENOMEM; |
| 752 | goto error_clear_attrs; |
Jonathan Cameron | 1b73288 | 2011-05-18 14:41:43 +0100 | [diff] [blame] | 753 | } |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 754 | /* Copy across original attributes */ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 755 | if (indio_dev->info->attrs) |
| 756 | memcpy(indio_dev->chan_attr_group.attrs, |
| 757 | indio_dev->info->attrs->attrs, |
| 758 | sizeof(indio_dev->chan_attr_group.attrs[0]) |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 759 | *attrcount_orig); |
| 760 | attrn = attrcount_orig; |
| 761 | /* Add all elements from the list. */ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 762 | list_for_each_entry(p, &indio_dev->channel_attr_list, l) |
| 763 | indio_dev->chan_attr_group.attrs[attrn++] = &p->dev_attr.attr; |
| 764 | if (indio_dev->name) |
| 765 | indio_dev->chan_attr_group.attrs[attrn++] = &dev_attr_name.attr; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 766 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 767 | indio_dev->groups[indio_dev->groupcounter++] = |
| 768 | &indio_dev->chan_attr_group; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 769 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 770 | return 0; |
Jonathan Cameron | 1b73288 | 2011-05-18 14:41:43 +0100 | [diff] [blame] | 771 | |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 772 | error_clear_attrs: |
| 773 | list_for_each_entry_safe(p, n, |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 774 | &indio_dev->channel_attr_list, l) { |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 775 | list_del(&p->l); |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 776 | iio_device_remove_and_free_read_attr(indio_dev, p); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 777 | } |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 778 | |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 779 | return ret; |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 780 | } |
| 781 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 782 | static void iio_device_unregister_sysfs(struct iio_dev *indio_dev) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 783 | { |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 784 | |
| 785 | struct iio_dev_attr *p, *n; |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 786 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 787 | list_for_each_entry_safe(p, n, &indio_dev->channel_attr_list, l) { |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 788 | list_del(&p->l); |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 789 | iio_device_remove_and_free_read_attr(indio_dev, p); |
Jonathan Cameron | 1d89271 | 2011-05-18 14:40:51 +0100 | [diff] [blame] | 790 | } |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 791 | kfree(indio_dev->chan_attr_group.attrs); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 792 | } |
| 793 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 794 | static void iio_dev_release(struct device *device) |
| 795 | { |
Lars-Peter Clausen | e53f5ac | 2012-05-12 15:39:33 +0200 | [diff] [blame] | 796 | struct iio_dev *indio_dev = dev_to_iio_dev(device); |
Lars-Peter Clausen | e407fd6 | 2012-06-04 10:41:42 +0200 | [diff] [blame] | 797 | if (indio_dev->chrdev.dev) |
| 798 | cdev_del(&indio_dev->chrdev); |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 799 | if (indio_dev->modes & INDIO_BUFFER_TRIGGERED) |
| 800 | iio_device_unregister_trigger_consumer(indio_dev); |
| 801 | iio_device_unregister_eventset(indio_dev); |
| 802 | iio_device_unregister_sysfs(indio_dev); |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 803 | iio_device_unregister_debugfs(indio_dev); |
Lars-Peter Clausen | e407fd6 | 2012-06-04 10:41:42 +0200 | [diff] [blame] | 804 | |
| 805 | ida_simple_remove(&iio_ida, indio_dev->id); |
| 806 | kfree(indio_dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 807 | } |
| 808 | |
| 809 | static struct device_type iio_dev_type = { |
| 810 | .name = "iio_device", |
| 811 | .release = iio_dev_release, |
| 812 | }; |
| 813 | |
Lars-Peter Clausen | 7cbb753 | 2012-04-26 13:35:01 +0200 | [diff] [blame] | 814 | struct iio_dev *iio_device_alloc(int sizeof_priv) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 815 | { |
Jonathan Cameron | 6f7c8ee | 2011-04-15 18:55:56 +0100 | [diff] [blame] | 816 | struct iio_dev *dev; |
| 817 | size_t alloc_size; |
| 818 | |
| 819 | alloc_size = sizeof(struct iio_dev); |
| 820 | if (sizeof_priv) { |
| 821 | alloc_size = ALIGN(alloc_size, IIO_ALIGN); |
| 822 | alloc_size += sizeof_priv; |
| 823 | } |
| 824 | /* ensure 32-byte alignment of whole construct ? */ |
| 825 | alloc_size += IIO_ALIGN - 1; |
| 826 | |
| 827 | dev = kzalloc(alloc_size, GFP_KERNEL); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 828 | |
| 829 | if (dev) { |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 830 | dev->dev.groups = dev->groups; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 831 | dev->dev.type = &iio_dev_type; |
Jonathan Cameron | 5aaaeba | 2010-05-04 14:43:00 +0100 | [diff] [blame] | 832 | dev->dev.bus = &iio_bus_type; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 833 | device_initialize(&dev->dev); |
| 834 | dev_set_drvdata(&dev->dev, (void *)dev); |
| 835 | mutex_init(&dev->mlock); |
Jonathan Cameron | ac917a8 | 2012-02-15 19:48:00 +0000 | [diff] [blame] | 836 | mutex_init(&dev->info_exist_lock); |
Lars-Peter Clausen | e407fd6 | 2012-06-04 10:41:42 +0200 | [diff] [blame] | 837 | INIT_LIST_HEAD(&dev->channel_attr_list); |
Jonathan Cameron | a9e39f9 | 2011-09-14 13:01:25 +0100 | [diff] [blame] | 838 | |
| 839 | dev->id = ida_simple_get(&iio_ida, 0, 0, GFP_KERNEL); |
| 840 | if (dev->id < 0) { |
| 841 | /* cannot use a dev_err as the name isn't available */ |
| 842 | printk(KERN_ERR "Failed to get id\n"); |
| 843 | kfree(dev); |
| 844 | return NULL; |
| 845 | } |
| 846 | dev_set_name(&dev->dev, "iio:device%d", dev->id); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 847 | } |
| 848 | |
| 849 | return dev; |
| 850 | } |
Lars-Peter Clausen | 7cbb753 | 2012-04-26 13:35:01 +0200 | [diff] [blame] | 851 | EXPORT_SYMBOL(iio_device_alloc); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 852 | |
Lars-Peter Clausen | 7cbb753 | 2012-04-26 13:35:01 +0200 | [diff] [blame] | 853 | void iio_device_free(struct iio_dev *dev) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 854 | { |
Lars-Peter Clausen | e407fd6 | 2012-06-04 10:41:42 +0200 | [diff] [blame] | 855 | if (dev) |
| 856 | put_device(&dev->dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 857 | } |
Lars-Peter Clausen | 7cbb753 | 2012-04-26 13:35:01 +0200 | [diff] [blame] | 858 | EXPORT_SYMBOL(iio_device_free); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 859 | |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 860 | /** |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 861 | * iio_chrdev_open() - chrdev file open for buffer access and ioctls |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 862 | **/ |
| 863 | static int iio_chrdev_open(struct inode *inode, struct file *filp) |
| 864 | { |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 865 | struct iio_dev *indio_dev = container_of(inode->i_cdev, |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 866 | struct iio_dev, chrdev); |
Lars-Peter Clausen | bb01443 | 2011-12-19 15:23:45 +0100 | [diff] [blame] | 867 | |
| 868 | if (test_and_set_bit(IIO_BUSY_BIT_POS, &indio_dev->flags)) |
| 869 | return -EBUSY; |
| 870 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 871 | filp->private_data = indio_dev; |
Jonathan Cameron | 30eb82f | 2011-09-21 11:16:02 +0100 | [diff] [blame] | 872 | |
Lars-Peter Clausen | 7933514 | 2011-12-19 15:23:49 +0100 | [diff] [blame] | 873 | return 0; |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 874 | } |
| 875 | |
| 876 | /** |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 877 | * iio_chrdev_release() - chrdev file close buffer access and ioctls |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 878 | **/ |
| 879 | static int iio_chrdev_release(struct inode *inode, struct file *filp) |
| 880 | { |
Lars-Peter Clausen | bb01443 | 2011-12-19 15:23:45 +0100 | [diff] [blame] | 881 | struct iio_dev *indio_dev = container_of(inode->i_cdev, |
| 882 | struct iio_dev, chrdev); |
Lars-Peter Clausen | bb01443 | 2011-12-19 15:23:45 +0100 | [diff] [blame] | 883 | clear_bit(IIO_BUSY_BIT_POS, &indio_dev->flags); |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 884 | return 0; |
| 885 | } |
| 886 | |
| 887 | /* Somewhat of a cross file organization violation - ioctls here are actually |
| 888 | * event related */ |
| 889 | static long iio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
| 890 | { |
| 891 | struct iio_dev *indio_dev = filp->private_data; |
| 892 | int __user *ip = (int __user *)arg; |
| 893 | int fd; |
| 894 | |
| 895 | if (cmd == IIO_GET_EVENT_FD_IOCTL) { |
| 896 | fd = iio_event_getfd(indio_dev); |
| 897 | if (copy_to_user(ip, &fd, sizeof(fd))) |
| 898 | return -EFAULT; |
| 899 | return 0; |
| 900 | } |
| 901 | return -EINVAL; |
| 902 | } |
| 903 | |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 904 | static const struct file_operations iio_buffer_fileops = { |
| 905 | .read = iio_buffer_read_first_n_outer_addr, |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 906 | .release = iio_chrdev_release, |
| 907 | .open = iio_chrdev_open, |
Jonathan Cameron | 14555b1 | 2011-09-21 11:15:57 +0100 | [diff] [blame] | 908 | .poll = iio_buffer_poll_addr, |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 909 | .owner = THIS_MODULE, |
| 910 | .llseek = noop_llseek, |
| 911 | .unlocked_ioctl = iio_ioctl, |
| 912 | .compat_ioctl = iio_ioctl, |
| 913 | }; |
| 914 | |
Michael Hennerich | 0f1acee | 2012-03-01 10:51:04 +0100 | [diff] [blame] | 915 | static const struct iio_buffer_setup_ops noop_ring_setup_ops; |
| 916 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 917 | int iio_device_register(struct iio_dev *indio_dev) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 918 | { |
| 919 | int ret; |
| 920 | |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 921 | /* configure elements for the chrdev */ |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 922 | indio_dev->dev.devt = MKDEV(MAJOR(iio_devt), indio_dev->id); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 923 | |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 924 | ret = iio_device_register_debugfs(indio_dev); |
| 925 | if (ret) { |
| 926 | dev_err(indio_dev->dev.parent, |
| 927 | "Failed to register debugfs interfaces\n"); |
| 928 | goto error_ret; |
| 929 | } |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 930 | ret = iio_device_register_sysfs(indio_dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 931 | if (ret) { |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 932 | dev_err(indio_dev->dev.parent, |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 933 | "Failed to register sysfs interfaces\n"); |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 934 | goto error_unreg_debugfs; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 935 | } |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 936 | ret = iio_device_register_eventset(indio_dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 937 | if (ret) { |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 938 | dev_err(indio_dev->dev.parent, |
Roel Van Nyen | c849d25 | 2010-04-29 19:27:31 +0200 | [diff] [blame] | 939 | "Failed to register event set\n"); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 940 | goto error_free_sysfs; |
| 941 | } |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 942 | if (indio_dev->modes & INDIO_BUFFER_TRIGGERED) |
| 943 | iio_device_register_trigger_consumer(indio_dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 944 | |
Michael Hennerich | 0f1acee | 2012-03-01 10:51:04 +0100 | [diff] [blame] | 945 | if ((indio_dev->modes & INDIO_ALL_BUFFER_MODES) && |
| 946 | indio_dev->setup_ops == NULL) |
| 947 | indio_dev->setup_ops = &noop_ring_setup_ops; |
| 948 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 949 | ret = device_add(&indio_dev->dev); |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 950 | if (ret < 0) |
| 951 | goto error_unreg_eventset; |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 952 | cdev_init(&indio_dev->chrdev, &iio_buffer_fileops); |
| 953 | indio_dev->chrdev.owner = indio_dev->info->driver_module; |
| 954 | ret = cdev_add(&indio_dev->chrdev, indio_dev->dev.devt, 1); |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 955 | if (ret < 0) |
| 956 | goto error_del_device; |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 957 | return 0; |
| 958 | |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 959 | error_del_device: |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 960 | device_del(&indio_dev->dev); |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 961 | error_unreg_eventset: |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 962 | iio_device_unregister_eventset(indio_dev); |
Jonathan Cameron | 26d25ae | 2011-09-02 17:14:40 +0100 | [diff] [blame] | 963 | error_free_sysfs: |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 964 | iio_device_unregister_sysfs(indio_dev); |
Michael Hennerich | e553f18 | 2012-03-01 10:51:03 +0100 | [diff] [blame] | 965 | error_unreg_debugfs: |
| 966 | iio_device_unregister_debugfs(indio_dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 967 | error_ret: |
| 968 | return ret; |
| 969 | } |
| 970 | EXPORT_SYMBOL(iio_device_register); |
| 971 | |
Jonathan Cameron | f8c6f4e | 2011-10-06 17:14:35 +0100 | [diff] [blame] | 972 | void iio_device_unregister(struct iio_dev *indio_dev) |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 973 | { |
Jonathan Cameron | ac917a8 | 2012-02-15 19:48:00 +0000 | [diff] [blame] | 974 | mutex_lock(&indio_dev->info_exist_lock); |
| 975 | indio_dev->info = NULL; |
| 976 | mutex_unlock(&indio_dev->info_exist_lock); |
Lars-Peter Clausen | e407fd6 | 2012-06-04 10:41:42 +0200 | [diff] [blame] | 977 | device_del(&indio_dev->dev); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 978 | } |
| 979 | EXPORT_SYMBOL(iio_device_unregister); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 980 | subsys_initcall(iio_init); |
| 981 | module_exit(iio_exit); |
| 982 | |
Jonathan Cameron | c8b9595 | 2012-09-02 21:27:56 +0100 | [diff] [blame^] | 983 | MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>"); |
Jonathan Cameron | 847ec80 | 2009-08-18 18:06:19 +0100 | [diff] [blame] | 984 | MODULE_DESCRIPTION("Industrial I/O core"); |
| 985 | MODULE_LICENSE("GPL"); |