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