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