blob: e42749ec5c3cb79fb85409fdcf49f6b952906d69 [file] [log] [blame]
Jonathan Cameron847ec802009-08-18 18:06:19 +01001/* 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 Cameron847ec802009-08-18 18:06:19 +010019#include <linux/poll.h>
Jonathan Cameronffc18af2009-10-12 19:18:09 +010020#include <linux/sched.h>
Jeff Mahoney4439c932009-10-12 17:10:34 -040021#include <linux/wait.h>
Jonathan Cameron847ec802009-08-18 18:06:19 +010022#include <linux/cdev.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Jonathan Cameron8e7d9672011-08-30 12:32:45 +010024#include <linux/anon_inodes.h>
Michael Henneriche553f182012-03-01 10:51:03 +010025#include <linux/debugfs.h>
Jonathan Cameron06458e22012-04-25 15:54:58 +010026#include <linux/iio/iio.h>
Jonathan Camerondf9c1c42011-08-12 17:56:03 +010027#include "iio_core.h"
Jonathan Cameron6aea1c32011-08-24 17:28:38 +010028#include "iio_core_trigger.h"
Jonathan Cameron06458e22012-04-25 15:54:58 +010029#include <linux/iio/sysfs.h>
30#include <linux/iio/events.h>
Jonathan Cameron9dd1cb32011-08-30 12:41:15 +010031
Jonathan Cameron47c24fd2011-08-30 12:41:07 +010032/* IDA to assign each registered device a unique id*/
Jonathan Cameronb156cf72010-09-04 17:54:43 +010033static DEFINE_IDA(iio_ida);
Jonathan Cameron847ec802009-08-18 18:06:19 +010034
Jonathan Cameronf625cb92011-08-30 12:32:48 +010035static dev_t iio_devt;
Jonathan Cameron847ec802009-08-18 18:06:19 +010036
37#define IIO_DEV_MAX 256
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +010038struct bus_type iio_bus_type = {
Jonathan Cameron847ec802009-08-18 18:06:19 +010039 .name = "iio",
Jonathan Cameron847ec802009-08-18 18:06:19 +010040};
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +010041EXPORT_SYMBOL(iio_bus_type);
Jonathan Cameron847ec802009-08-18 18:06:19 +010042
Michael Henneriche553f182012-03-01 10:51:03 +010043static struct dentry *iio_debugfs_dentry;
44
Jonathan Cameronc6fc8062011-09-02 17:14:34 +010045static const char * const iio_direction[] = {
46 [0] = "in",
47 [1] = "out",
48};
49
Jonathan Cameronade7ef72011-09-02 17:14:45 +010050static const char * const iio_chan_type_name_spec[] = {
Jonathan Cameronc6fc8062011-09-02 17:14:34 +010051 [IIO_VOLTAGE] = "voltage",
Michael Hennerichfaf290e2011-05-18 14:42:02 +010052 [IIO_CURRENT] = "current",
53 [IIO_POWER] = "power",
Bryan Freed9bff02f2011-07-07 12:01:54 -070054 [IIO_ACCEL] = "accel",
Jonathan Cameron41ea0402011-10-05 15:27:59 +010055 [IIO_ANGL_VEL] = "anglvel",
Jonathan Cameron1d892712011-05-18 14:40:51 +010056 [IIO_MAGN] = "magn",
Bryan Freed9bff02f2011-07-07 12:01:54 -070057 [IIO_LIGHT] = "illuminance",
58 [IIO_INTENSITY] = "intensity",
Bryan Freedf09f2c82011-07-07 12:01:55 -070059 [IIO_PROXIMITY] = "proximity",
Bryan Freed9bff02f2011-07-07 12:01:54 -070060 [IIO_TEMP] = "temp",
Jonathan Cameron1d892712011-05-18 14:40:51 +010061 [IIO_INCLI] = "incli",
62 [IIO_ROT] = "rot",
Jonathan Cameron1d892712011-05-18 14:40:51 +010063 [IIO_ANGL] = "angl",
Bryan Freed9bff02f2011-07-07 12:01:54 -070064 [IIO_TIMESTAMP] = "timestamp",
Jonathan Cameron66dbe702011-09-02 17:14:43 +010065 [IIO_CAPACITANCE] = "capacitance",
Michael Hennericha6b12852012-04-27 10:58:34 +020066 [IIO_ALTVOLTAGE] = "altvoltage",
Jonathan Cameron1d892712011-05-18 14:40:51 +010067};
68
Jonathan Cameron330c6c52011-09-02 17:14:39 +010069static const char * const iio_modifier_names[] = {
Jonathan Cameron1d892712011-05-18 14:40:51 +010070 [IIO_MOD_X] = "x",
71 [IIO_MOD_Y] = "y",
72 [IIO_MOD_Z] = "z",
Jonathan Cameron8f5879b2012-05-05 10:39:22 +010073 [IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)",
Jonathan Cameron330c6c52011-09-02 17:14:39 +010074 [IIO_MOD_LIGHT_BOTH] = "both",
75 [IIO_MOD_LIGHT_IR] = "ir",
Jonathan Cameron1d892712011-05-18 14:40:51 +010076};
77
78/* relies on pairs of these shared then separate */
79static const char * const iio_chan_info_postfix[] = {
Jonathan Cameron75a973c2012-04-15 17:41:30 +010080 [IIO_CHAN_INFO_RAW] = "raw",
81 [IIO_CHAN_INFO_PROCESSED] = "input",
Jonathan Cameronc8a9f802011-10-26 17:41:36 +010082 [IIO_CHAN_INFO_SCALE] = "scale",
83 [IIO_CHAN_INFO_OFFSET] = "offset",
84 [IIO_CHAN_INFO_CALIBSCALE] = "calibscale",
85 [IIO_CHAN_INFO_CALIBBIAS] = "calibbias",
86 [IIO_CHAN_INFO_PEAK] = "peak_raw",
87 [IIO_CHAN_INFO_PEAK_SCALE] = "peak_scale",
88 [IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW] = "quadrature_correction_raw",
89 [IIO_CHAN_INFO_AVERAGE_RAW] = "mean_raw",
Jonathan Camerondf94aba2011-11-27 11:39:12 +000090 [IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY]
91 = "filter_low_pass_3db_frequency",
Laxman Dewangance85a1c2012-04-13 16:03:31 +053092 [IIO_CHAN_INFO_SAMP_FREQ] = "sampling_frequency",
Michael Hennericha6b12852012-04-27 10:58:34 +020093 [IIO_CHAN_INFO_FREQUENCY] = "frequency",
94 [IIO_CHAN_INFO_PHASE] = "phase",
Michael Hennerichb65d6212012-05-11 11:36:53 +020095 [IIO_CHAN_INFO_HARDWAREGAIN] = "hardwaregain",
Jonathan Cameron1d892712011-05-18 14:40:51 +010096};
97
Jonathan Cameron5fb21c82011-12-05 21:37:10 +000098const struct iio_chan_spec
99*iio_find_channel_from_si(struct iio_dev *indio_dev, int si)
100{
101 int i;
102
103 for (i = 0; i < indio_dev->num_channels; i++)
104 if (indio_dev->channels[i].scan_index == si)
105 return &indio_dev->channels[i];
106 return NULL;
107}
108
Jonathan Cameron847ec802009-08-18 18:06:19 +0100109/* This turns up an awful lot */
110ssize_t iio_read_const_attr(struct device *dev,
111 struct device_attribute *attr,
112 char *buf)
113{
114 return sprintf(buf, "%s\n", to_iio_const_attr(attr)->string);
115}
116EXPORT_SYMBOL(iio_read_const_attr);
117
Jonathan Cameron847ec802009-08-18 18:06:19 +0100118static int __init iio_init(void)
119{
120 int ret;
121
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100122 /* Register sysfs bus */
123 ret = bus_register(&iio_bus_type);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100124 if (ret < 0) {
125 printk(KERN_ERR
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100126 "%s could not register bus type\n",
Jonathan Cameron847ec802009-08-18 18:06:19 +0100127 __FILE__);
128 goto error_nothing;
129 }
130
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100131 ret = alloc_chrdev_region(&iio_devt, 0, IIO_DEV_MAX, "iio");
132 if (ret < 0) {
133 printk(KERN_ERR "%s: failed to allocate char dev region\n",
134 __FILE__);
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100135 goto error_unregister_bus_type;
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100136 }
Jonathan Cameron847ec802009-08-18 18:06:19 +0100137
Michael Henneriche553f182012-03-01 10:51:03 +0100138 iio_debugfs_dentry = debugfs_create_dir("iio", NULL);
139
Jonathan Cameron847ec802009-08-18 18:06:19 +0100140 return 0;
141
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100142error_unregister_bus_type:
143 bus_unregister(&iio_bus_type);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100144error_nothing:
145 return ret;
146}
147
148static void __exit iio_exit(void)
149{
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100150 if (iio_devt)
151 unregister_chrdev_region(iio_devt, IIO_DEV_MAX);
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100152 bus_unregister(&iio_bus_type);
Michael Henneriche553f182012-03-01 10:51:03 +0100153 debugfs_remove(iio_debugfs_dentry);
154}
155
156#if defined(CONFIG_DEBUG_FS)
Michael Henneriche553f182012-03-01 10:51:03 +0100157static ssize_t iio_debugfs_read_reg(struct file *file, char __user *userbuf,
158 size_t count, loff_t *ppos)
159{
160 struct iio_dev *indio_dev = file->private_data;
161 char buf[20];
162 unsigned val = 0;
163 ssize_t len;
164 int ret;
165
166 ret = indio_dev->info->debugfs_reg_access(indio_dev,
167 indio_dev->cached_reg_addr,
168 0, &val);
169 if (ret)
170 dev_err(indio_dev->dev.parent, "%s: read failed\n", __func__);
171
172 len = snprintf(buf, sizeof(buf), "0x%X\n", val);
173
174 return simple_read_from_buffer(userbuf, count, ppos, buf, len);
175}
176
177static ssize_t iio_debugfs_write_reg(struct file *file,
178 const char __user *userbuf, size_t count, loff_t *ppos)
179{
180 struct iio_dev *indio_dev = file->private_data;
181 unsigned reg, val;
182 char buf[80];
183 int ret;
184
185 count = min_t(size_t, count, (sizeof(buf)-1));
186 if (copy_from_user(buf, userbuf, count))
187 return -EFAULT;
188
189 buf[count] = 0;
190
191 ret = sscanf(buf, "%i %i", &reg, &val);
192
193 switch (ret) {
194 case 1:
195 indio_dev->cached_reg_addr = reg;
196 break;
197 case 2:
198 indio_dev->cached_reg_addr = reg;
199 ret = indio_dev->info->debugfs_reg_access(indio_dev, reg,
200 val, NULL);
201 if (ret) {
202 dev_err(indio_dev->dev.parent, "%s: write failed\n",
203 __func__);
204 return ret;
205 }
206 break;
207 default:
208 return -EINVAL;
209 }
210
211 return count;
212}
213
214static const struct file_operations iio_debugfs_reg_fops = {
Axel Lin5a28c872012-05-03 09:50:51 +0800215 .open = simple_open,
Michael Henneriche553f182012-03-01 10:51:03 +0100216 .read = iio_debugfs_read_reg,
217 .write = iio_debugfs_write_reg,
218};
219
220static void iio_device_unregister_debugfs(struct iio_dev *indio_dev)
221{
222 debugfs_remove_recursive(indio_dev->debugfs_dentry);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100223}
224
Michael Henneriche553f182012-03-01 10:51:03 +0100225static int iio_device_register_debugfs(struct iio_dev *indio_dev)
226{
227 struct dentry *d;
228
229 if (indio_dev->info->debugfs_reg_access == NULL)
230 return 0;
231
Axel Linabd5a2f2012-05-03 22:56:58 +0800232 if (!iio_debugfs_dentry)
Michael Henneriche553f182012-03-01 10:51:03 +0100233 return 0;
234
235 indio_dev->debugfs_dentry =
236 debugfs_create_dir(dev_name(&indio_dev->dev),
237 iio_debugfs_dentry);
Michael Henneriche553f182012-03-01 10:51:03 +0100238 if (indio_dev->debugfs_dentry == NULL) {
239 dev_warn(indio_dev->dev.parent,
240 "Failed to create debugfs directory\n");
241 return -EFAULT;
242 }
243
244 d = debugfs_create_file("direct_reg_access", 0644,
245 indio_dev->debugfs_dentry,
246 indio_dev, &iio_debugfs_reg_fops);
247 if (!d) {
248 iio_device_unregister_debugfs(indio_dev);
249 return -ENOMEM;
250 }
251
252 return 0;
253}
254#else
255static int iio_device_register_debugfs(struct iio_dev *indio_dev)
256{
257 return 0;
258}
259
260static void iio_device_unregister_debugfs(struct iio_dev *indio_dev)
261{
262}
263#endif /* CONFIG_DEBUG_FS */
264
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100265static ssize_t iio_read_channel_ext_info(struct device *dev,
266 struct device_attribute *attr,
267 char *buf)
268{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200269 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100270 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
271 const struct iio_chan_spec_ext_info *ext_info;
272
273 ext_info = &this_attr->c->ext_info[this_attr->address];
274
Michael Hennerichfc6d1132012-04-27 10:58:36 +0200275 return ext_info->read(indio_dev, ext_info->private, this_attr->c, buf);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100276}
277
278static ssize_t iio_write_channel_ext_info(struct device *dev,
279 struct device_attribute *attr,
280 const char *buf,
281 size_t len)
282{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200283 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100284 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
285 const struct iio_chan_spec_ext_info *ext_info;
286
287 ext_info = &this_attr->c->ext_info[this_attr->address];
288
Michael Hennerichfc6d1132012-04-27 10:58:36 +0200289 return ext_info->write(indio_dev, ext_info->private,
290 this_attr->c, buf, len);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100291}
292
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200293ssize_t iio_enum_available_read(struct iio_dev *indio_dev,
294 uintptr_t priv, const struct iio_chan_spec *chan, char *buf)
295{
296 const struct iio_enum *e = (const struct iio_enum *)priv;
297 unsigned int i;
298 size_t len = 0;
299
300 if (!e->num_items)
301 return 0;
302
303 for (i = 0; i < e->num_items; ++i)
Lars-Peter Clausen74dcd432012-06-05 18:24:12 +0200304 len += scnprintf(buf + len, PAGE_SIZE - len, "%s ", e->items[i]);
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200305
306 /* replace last space with a newline */
307 buf[len - 1] = '\n';
308
309 return len;
310}
311EXPORT_SYMBOL_GPL(iio_enum_available_read);
312
313ssize_t iio_enum_read(struct iio_dev *indio_dev,
314 uintptr_t priv, const struct iio_chan_spec *chan, char *buf)
315{
316 const struct iio_enum *e = (const struct iio_enum *)priv;
317 int i;
318
319 if (!e->get)
320 return -EINVAL;
321
322 i = e->get(indio_dev, chan);
323 if (i < 0)
324 return i;
325 else if (i >= e->num_items)
326 return -EINVAL;
327
328 return sprintf(buf, "%s\n", e->items[i]);
329}
330EXPORT_SYMBOL_GPL(iio_enum_read);
331
332ssize_t iio_enum_write(struct iio_dev *indio_dev,
333 uintptr_t priv, const struct iio_chan_spec *chan, const char *buf,
334 size_t len)
335{
336 const struct iio_enum *e = (const struct iio_enum *)priv;
337 unsigned int i;
338 int ret;
339
340 if (!e->set)
341 return -EINVAL;
342
343 for (i = 0; i < e->num_items; i++) {
344 if (sysfs_streq(buf, e->items[i]))
345 break;
346 }
347
348 if (i == e->num_items)
349 return -EINVAL;
350
351 ret = e->set(indio_dev, chan, i);
352 return ret ? ret : len;
353}
354EXPORT_SYMBOL_GPL(iio_enum_write);
355
Jonathan Cameron1d892712011-05-18 14:40:51 +0100356static ssize_t iio_read_channel_info(struct device *dev,
357 struct device_attribute *attr,
358 char *buf)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100359{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200360 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100361 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
362 int val, val2;
Michael Hennerich67eedba2012-05-11 11:36:52 +0200363 bool scale_db = false;
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100364 int ret = indio_dev->info->read_raw(indio_dev, this_attr->c,
365 &val, &val2, this_attr->address);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100366
Jonathan Cameron1d892712011-05-18 14:40:51 +0100367 if (ret < 0)
368 return ret;
369
Michael Hennerich67eedba2012-05-11 11:36:52 +0200370 switch (ret) {
371 case IIO_VAL_INT:
Jonathan Cameron1d892712011-05-18 14:40:51 +0100372 return sprintf(buf, "%d\n", val);
Michael Hennerich67eedba2012-05-11 11:36:52 +0200373 case IIO_VAL_INT_PLUS_MICRO_DB:
374 scale_db = true;
375 case IIO_VAL_INT_PLUS_MICRO:
Jonathan Cameron1d892712011-05-18 14:40:51 +0100376 if (val2 < 0)
Michael Hennerich67eedba2012-05-11 11:36:52 +0200377 return sprintf(buf, "-%d.%06u%s\n", val, -val2,
378 scale_db ? " dB" : "");
Jonathan Cameron1d892712011-05-18 14:40:51 +0100379 else
Michael Hennerich67eedba2012-05-11 11:36:52 +0200380 return sprintf(buf, "%d.%06u%s\n", val, val2,
381 scale_db ? " dB" : "");
382 case IIO_VAL_INT_PLUS_NANO:
Michael Hennerich71646e22011-06-27 13:07:07 +0100383 if (val2 < 0)
384 return sprintf(buf, "-%d.%09u\n", val, -val2);
385 else
386 return sprintf(buf, "%d.%09u\n", val, val2);
Michael Hennerich67eedba2012-05-11 11:36:52 +0200387 default:
Jonathan Cameron1d892712011-05-18 14:40:51 +0100388 return 0;
Michael Hennerich67eedba2012-05-11 11:36:52 +0200389 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100390}
391
392static ssize_t iio_write_channel_info(struct device *dev,
393 struct device_attribute *attr,
394 const char *buf,
395 size_t len)
396{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200397 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100398 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Michael Hennerich5c04af02011-06-27 13:07:10 +0100399 int ret, integer = 0, fract = 0, fract_mult = 100000;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100400 bool integer_part = true, negative = false;
401
402 /* Assumes decimal - precision based on number of digits */
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100403 if (!indio_dev->info->write_raw)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100404 return -EINVAL;
Michael Hennerich5c04af02011-06-27 13:07:10 +0100405
406 if (indio_dev->info->write_raw_get_fmt)
407 switch (indio_dev->info->write_raw_get_fmt(indio_dev,
408 this_attr->c, this_attr->address)) {
409 case IIO_VAL_INT_PLUS_MICRO:
410 fract_mult = 100000;
411 break;
412 case IIO_VAL_INT_PLUS_NANO:
413 fract_mult = 100000000;
414 break;
415 default:
416 return -EINVAL;
417 }
418
Jonathan Cameron1d892712011-05-18 14:40:51 +0100419 if (buf[0] == '-') {
420 negative = true;
421 buf++;
422 }
Michael Hennerich5c04af02011-06-27 13:07:10 +0100423
Jonathan Cameron1d892712011-05-18 14:40:51 +0100424 while (*buf) {
425 if ('0' <= *buf && *buf <= '9') {
426 if (integer_part)
427 integer = integer*10 + *buf - '0';
428 else {
Michael Hennerich5c04af02011-06-27 13:07:10 +0100429 fract += fract_mult*(*buf - '0');
430 if (fract_mult == 1)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100431 break;
Michael Hennerich5c04af02011-06-27 13:07:10 +0100432 fract_mult /= 10;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100433 }
434 } else if (*buf == '\n') {
435 if (*(buf + 1) == '\0')
436 break;
437 else
438 return -EINVAL;
439 } else if (*buf == '.') {
440 integer_part = false;
441 } else {
442 return -EINVAL;
443 }
444 buf++;
445 }
446 if (negative) {
447 if (integer)
448 integer = -integer;
449 else
Michael Hennerich5c04af02011-06-27 13:07:10 +0100450 fract = -fract;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100451 }
452
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100453 ret = indio_dev->info->write_raw(indio_dev, this_attr->c,
Michael Hennerich5c04af02011-06-27 13:07:10 +0100454 integer, fract, this_attr->address);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100455 if (ret)
456 return ret;
457
458 return len;
459}
460
Jonathan Camerondf9c1c42011-08-12 17:56:03 +0100461static
Jonathan Cameron1d892712011-05-18 14:40:51 +0100462int __iio_device_attr_init(struct device_attribute *dev_attr,
463 const char *postfix,
464 struct iio_chan_spec const *chan,
465 ssize_t (*readfunc)(struct device *dev,
466 struct device_attribute *attr,
467 char *buf),
468 ssize_t (*writefunc)(struct device *dev,
469 struct device_attribute *attr,
470 const char *buf,
471 size_t len),
472 bool generic)
473{
474 int ret;
475 char *name_format, *full_postfix;
476 sysfs_attr_init(&dev_attr->attr);
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100477
478 /* Build up postfix of <extend_name>_<modifier>_postfix */
Jonathan Cameron0403e0d2011-10-26 17:27:42 +0100479 if (chan->modified && !generic) {
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100480 if (chan->extend_name)
481 full_postfix = kasprintf(GFP_KERNEL, "%s_%s_%s",
482 iio_modifier_names[chan
483 ->channel2],
484 chan->extend_name,
485 postfix);
486 else
487 full_postfix = kasprintf(GFP_KERNEL, "%s_%s",
488 iio_modifier_names[chan
489 ->channel2],
490 postfix);
491 } else {
492 if (chan->extend_name == NULL)
493 full_postfix = kstrdup(postfix, GFP_KERNEL);
494 else
495 full_postfix = kasprintf(GFP_KERNEL,
496 "%s_%s",
497 chan->extend_name,
498 postfix);
499 }
500 if (full_postfix == NULL) {
501 ret = -ENOMEM;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100502 goto error_ret;
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100503 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100504
Justin P. Mattock4abf6f82012-02-29 22:00:38 -0800505 if (chan->differential) { /* Differential can not have modifier */
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100506 if (generic)
507 name_format
508 = kasprintf(GFP_KERNEL, "%s_%s-%s_%s",
509 iio_direction[chan->output],
510 iio_chan_type_name_spec[chan->type],
511 iio_chan_type_name_spec[chan->type],
512 full_postfix);
513 else if (chan->indexed)
514 name_format
515 = kasprintf(GFP_KERNEL, "%s_%s%d-%s%d_%s",
516 iio_direction[chan->output],
517 iio_chan_type_name_spec[chan->type],
518 chan->channel,
519 iio_chan_type_name_spec[chan->type],
520 chan->channel2,
521 full_postfix);
522 else {
523 WARN_ON("Differential channels must be indexed\n");
524 ret = -EINVAL;
525 goto error_free_full_postfix;
526 }
527 } else { /* Single ended */
528 if (generic)
529 name_format
530 = kasprintf(GFP_KERNEL, "%s_%s_%s",
531 iio_direction[chan->output],
532 iio_chan_type_name_spec[chan->type],
533 full_postfix);
534 else if (chan->indexed)
535 name_format
536 = kasprintf(GFP_KERNEL, "%s_%s%d_%s",
537 iio_direction[chan->output],
538 iio_chan_type_name_spec[chan->type],
539 chan->channel,
540 full_postfix);
541 else
542 name_format
543 = kasprintf(GFP_KERNEL, "%s_%s_%s",
544 iio_direction[chan->output],
545 iio_chan_type_name_spec[chan->type],
546 full_postfix);
547 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100548 if (name_format == NULL) {
549 ret = -ENOMEM;
550 goto error_free_full_postfix;
551 }
552 dev_attr->attr.name = kasprintf(GFP_KERNEL,
553 name_format,
554 chan->channel,
555 chan->channel2);
556 if (dev_attr->attr.name == NULL) {
557 ret = -ENOMEM;
558 goto error_free_name_format;
559 }
560
561 if (readfunc) {
562 dev_attr->attr.mode |= S_IRUGO;
563 dev_attr->show = readfunc;
564 }
565
566 if (writefunc) {
567 dev_attr->attr.mode |= S_IWUSR;
568 dev_attr->store = writefunc;
569 }
570 kfree(name_format);
571 kfree(full_postfix);
572
573 return 0;
574
575error_free_name_format:
576 kfree(name_format);
577error_free_full_postfix:
578 kfree(full_postfix);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100579error_ret:
580 return ret;
581}
582
Jonathan Camerondf9c1c42011-08-12 17:56:03 +0100583static void __iio_device_attr_deinit(struct device_attribute *dev_attr)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100584{
585 kfree(dev_attr->attr.name);
586}
587
588int __iio_add_chan_devattr(const char *postfix,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100589 struct iio_chan_spec const *chan,
590 ssize_t (*readfunc)(struct device *dev,
591 struct device_attribute *attr,
592 char *buf),
593 ssize_t (*writefunc)(struct device *dev,
594 struct device_attribute *attr,
595 const char *buf,
596 size_t len),
Jonathan Camerone614a542011-09-02 17:14:41 +0100597 u64 mask,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100598 bool generic,
599 struct device *dev,
600 struct list_head *attr_list)
601{
602 int ret;
603 struct iio_dev_attr *iio_attr, *t;
604
605 iio_attr = kzalloc(sizeof *iio_attr, GFP_KERNEL);
606 if (iio_attr == NULL) {
607 ret = -ENOMEM;
608 goto error_ret;
609 }
610 ret = __iio_device_attr_init(&iio_attr->dev_attr,
611 postfix, chan,
612 readfunc, writefunc, generic);
613 if (ret)
614 goto error_iio_dev_attr_free;
615 iio_attr->c = chan;
616 iio_attr->address = mask;
617 list_for_each_entry(t, attr_list, l)
618 if (strcmp(t->dev_attr.attr.name,
619 iio_attr->dev_attr.attr.name) == 0) {
620 if (!generic)
621 dev_err(dev, "tried to double register : %s\n",
622 t->dev_attr.attr.name);
623 ret = -EBUSY;
624 goto error_device_attr_deinit;
625 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100626 list_add(&iio_attr->l, attr_list);
627
628 return 0;
629
630error_device_attr_deinit:
631 __iio_device_attr_deinit(&iio_attr->dev_attr);
632error_iio_dev_attr_free:
633 kfree(iio_attr);
634error_ret:
635 return ret;
636}
637
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100638static int iio_device_add_channel_sysfs(struct iio_dev *indio_dev,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100639 struct iio_chan_spec const *chan)
640{
Jonathan Cameron5ccb3ad2012-04-15 17:41:16 +0100641 int ret, attrcount = 0;
Jonathan Cameron75a973c2012-04-15 17:41:30 +0100642 int i;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100643 const struct iio_chan_spec_ext_info *ext_info;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100644
Jonathan Cameron1d892712011-05-18 14:40:51 +0100645 if (chan->channel < 0)
646 return 0;
Jonathan Cameron75a973c2012-04-15 17:41:30 +0100647 for_each_set_bit(i, &chan->info_mask, sizeof(long)*8) {
Jonathan Cameron1d892712011-05-18 14:40:51 +0100648 ret = __iio_add_chan_devattr(iio_chan_info_postfix[i/2],
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100649 chan,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100650 &iio_read_channel_info,
651 &iio_write_channel_info,
Jonathan Cameronc8a9f802011-10-26 17:41:36 +0100652 i/2,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100653 !(i%2),
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100654 &indio_dev->dev,
655 &indio_dev->channel_attr_list);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100656 if (ret == -EBUSY && (i%2 == 0)) {
657 ret = 0;
658 continue;
659 }
660 if (ret < 0)
661 goto error_ret;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100662 attrcount++;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100663 }
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100664
665 if (chan->ext_info) {
666 unsigned int i = 0;
667 for (ext_info = chan->ext_info; ext_info->name; ext_info++) {
668 ret = __iio_add_chan_devattr(ext_info->name,
669 chan,
670 ext_info->read ?
671 &iio_read_channel_ext_info : NULL,
672 ext_info->write ?
673 &iio_write_channel_ext_info : NULL,
674 i,
675 ext_info->shared,
676 &indio_dev->dev,
677 &indio_dev->channel_attr_list);
678 i++;
679 if (ret == -EBUSY && ext_info->shared)
680 continue;
681
682 if (ret)
683 goto error_ret;
684
685 attrcount++;
686 }
687 }
688
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100689 ret = attrcount;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100690error_ret:
691 return ret;
692}
693
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100694static void iio_device_remove_and_free_read_attr(struct iio_dev *indio_dev,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100695 struct iio_dev_attr *p)
696{
Jonathan Cameron1d892712011-05-18 14:40:51 +0100697 kfree(p->dev_attr.attr.name);
698 kfree(p);
699}
700
Jonathan Cameron1b732882011-05-18 14:41:43 +0100701static ssize_t iio_show_dev_name(struct device *dev,
702 struct device_attribute *attr,
703 char *buf)
704{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200705 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron1b732882011-05-18 14:41:43 +0100706 return sprintf(buf, "%s\n", indio_dev->name);
707}
708
709static DEVICE_ATTR(name, S_IRUGO, iio_show_dev_name, NULL);
710
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100711static int iio_device_register_sysfs(struct iio_dev *indio_dev)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100712{
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100713 int i, ret = 0, attrcount, attrn, attrcount_orig = 0;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100714 struct iio_dev_attr *p, *n;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100715 struct attribute **attr;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100716
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100717 /* First count elements in any existing group */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100718 if (indio_dev->info->attrs) {
719 attr = indio_dev->info->attrs->attrs;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100720 while (*attr++ != NULL)
721 attrcount_orig++;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100722 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100723 attrcount = attrcount_orig;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100724 /*
725 * New channel registration method - relies on the fact a group does
Justin P. Mattock4abf6f82012-02-29 22:00:38 -0800726 * not need to be initialized if it is name is NULL.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100727 */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100728 if (indio_dev->channels)
729 for (i = 0; i < indio_dev->num_channels; i++) {
730 ret = iio_device_add_channel_sysfs(indio_dev,
731 &indio_dev
Jonathan Cameron1d892712011-05-18 14:40:51 +0100732 ->channels[i]);
733 if (ret < 0)
734 goto error_clear_attrs;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100735 attrcount += ret;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100736 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100737
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100738 if (indio_dev->name)
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100739 attrcount++;
740
Thomas Meyerd83fb182011-11-29 22:08:00 +0100741 indio_dev->chan_attr_group.attrs = kcalloc(attrcount + 1,
742 sizeof(indio_dev->chan_attr_group.attrs[0]),
743 GFP_KERNEL);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100744 if (indio_dev->chan_attr_group.attrs == NULL) {
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100745 ret = -ENOMEM;
746 goto error_clear_attrs;
Jonathan Cameron1b732882011-05-18 14:41:43 +0100747 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100748 /* Copy across original attributes */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100749 if (indio_dev->info->attrs)
750 memcpy(indio_dev->chan_attr_group.attrs,
751 indio_dev->info->attrs->attrs,
752 sizeof(indio_dev->chan_attr_group.attrs[0])
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100753 *attrcount_orig);
754 attrn = attrcount_orig;
755 /* Add all elements from the list. */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100756 list_for_each_entry(p, &indio_dev->channel_attr_list, l)
757 indio_dev->chan_attr_group.attrs[attrn++] = &p->dev_attr.attr;
758 if (indio_dev->name)
759 indio_dev->chan_attr_group.attrs[attrn++] = &dev_attr_name.attr;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100760
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100761 indio_dev->groups[indio_dev->groupcounter++] =
762 &indio_dev->chan_attr_group;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100763
Jonathan Cameron1d892712011-05-18 14:40:51 +0100764 return 0;
Jonathan Cameron1b732882011-05-18 14:41:43 +0100765
Jonathan Cameron1d892712011-05-18 14:40:51 +0100766error_clear_attrs:
767 list_for_each_entry_safe(p, n,
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100768 &indio_dev->channel_attr_list, l) {
Jonathan Cameron1d892712011-05-18 14:40:51 +0100769 list_del(&p->l);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100770 iio_device_remove_and_free_read_attr(indio_dev, p);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100771 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100772
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100773 return ret;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100774}
775
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100776static void iio_device_unregister_sysfs(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100777{
Jonathan Cameron1d892712011-05-18 14:40:51 +0100778
779 struct iio_dev_attr *p, *n;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100780
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100781 list_for_each_entry_safe(p, n, &indio_dev->channel_attr_list, l) {
Jonathan Cameron1d892712011-05-18 14:40:51 +0100782 list_del(&p->l);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100783 iio_device_remove_and_free_read_attr(indio_dev, p);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100784 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100785 kfree(indio_dev->chan_attr_group.attrs);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100786}
787
Jonathan Cameron847ec802009-08-18 18:06:19 +0100788static void iio_dev_release(struct device *device)
789{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200790 struct iio_dev *indio_dev = dev_to_iio_dev(device);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200791 if (indio_dev->chrdev.dev)
792 cdev_del(&indio_dev->chrdev);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100793 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
794 iio_device_unregister_trigger_consumer(indio_dev);
795 iio_device_unregister_eventset(indio_dev);
796 iio_device_unregister_sysfs(indio_dev);
Michael Henneriche553f182012-03-01 10:51:03 +0100797 iio_device_unregister_debugfs(indio_dev);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200798
799 ida_simple_remove(&iio_ida, indio_dev->id);
800 kfree(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100801}
802
803static struct device_type iio_dev_type = {
804 .name = "iio_device",
805 .release = iio_dev_release,
806};
807
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200808struct iio_dev *iio_device_alloc(int sizeof_priv)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100809{
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100810 struct iio_dev *dev;
811 size_t alloc_size;
812
813 alloc_size = sizeof(struct iio_dev);
814 if (sizeof_priv) {
815 alloc_size = ALIGN(alloc_size, IIO_ALIGN);
816 alloc_size += sizeof_priv;
817 }
818 /* ensure 32-byte alignment of whole construct ? */
819 alloc_size += IIO_ALIGN - 1;
820
821 dev = kzalloc(alloc_size, GFP_KERNEL);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100822
823 if (dev) {
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100824 dev->dev.groups = dev->groups;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100825 dev->dev.type = &iio_dev_type;
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100826 dev->dev.bus = &iio_bus_type;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100827 device_initialize(&dev->dev);
828 dev_set_drvdata(&dev->dev, (void *)dev);
829 mutex_init(&dev->mlock);
Jonathan Cameronac917a82012-02-15 19:48:00 +0000830 mutex_init(&dev->info_exist_lock);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200831 INIT_LIST_HEAD(&dev->channel_attr_list);
Jonathan Camerona9e39f92011-09-14 13:01:25 +0100832
833 dev->id = ida_simple_get(&iio_ida, 0, 0, GFP_KERNEL);
834 if (dev->id < 0) {
835 /* cannot use a dev_err as the name isn't available */
836 printk(KERN_ERR "Failed to get id\n");
837 kfree(dev);
838 return NULL;
839 }
840 dev_set_name(&dev->dev, "iio:device%d", dev->id);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100841 }
842
843 return dev;
844}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200845EXPORT_SYMBOL(iio_device_alloc);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100846
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200847void iio_device_free(struct iio_dev *dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100848{
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200849 if (dev)
850 put_device(&dev->dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100851}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200852EXPORT_SYMBOL(iio_device_free);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100853
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100854/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100855 * iio_chrdev_open() - chrdev file open for buffer access and ioctls
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100856 **/
857static int iio_chrdev_open(struct inode *inode, struct file *filp)
858{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100859 struct iio_dev *indio_dev = container_of(inode->i_cdev,
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100860 struct iio_dev, chrdev);
Lars-Peter Clausenbb014432011-12-19 15:23:45 +0100861
862 if (test_and_set_bit(IIO_BUSY_BIT_POS, &indio_dev->flags))
863 return -EBUSY;
864
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100865 filp->private_data = indio_dev;
Jonathan Cameron30eb82f2011-09-21 11:16:02 +0100866
Lars-Peter Clausen79335142011-12-19 15:23:49 +0100867 return 0;
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100868}
869
870/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100871 * iio_chrdev_release() - chrdev file close buffer access and ioctls
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100872 **/
873static int iio_chrdev_release(struct inode *inode, struct file *filp)
874{
Lars-Peter Clausenbb014432011-12-19 15:23:45 +0100875 struct iio_dev *indio_dev = container_of(inode->i_cdev,
876 struct iio_dev, chrdev);
Lars-Peter Clausenbb014432011-12-19 15:23:45 +0100877 clear_bit(IIO_BUSY_BIT_POS, &indio_dev->flags);
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100878 return 0;
879}
880
881/* Somewhat of a cross file organization violation - ioctls here are actually
882 * event related */
883static long iio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
884{
885 struct iio_dev *indio_dev = filp->private_data;
886 int __user *ip = (int __user *)arg;
887 int fd;
888
889 if (cmd == IIO_GET_EVENT_FD_IOCTL) {
890 fd = iio_event_getfd(indio_dev);
891 if (copy_to_user(ip, &fd, sizeof(fd)))
892 return -EFAULT;
893 return 0;
894 }
895 return -EINVAL;
896}
897
Jonathan Cameron14555b12011-09-21 11:15:57 +0100898static const struct file_operations iio_buffer_fileops = {
899 .read = iio_buffer_read_first_n_outer_addr,
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100900 .release = iio_chrdev_release,
901 .open = iio_chrdev_open,
Jonathan Cameron14555b12011-09-21 11:15:57 +0100902 .poll = iio_buffer_poll_addr,
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100903 .owner = THIS_MODULE,
904 .llseek = noop_llseek,
905 .unlocked_ioctl = iio_ioctl,
906 .compat_ioctl = iio_ioctl,
907};
908
Michael Hennerich0f1acee2012-03-01 10:51:04 +0100909static const struct iio_buffer_setup_ops noop_ring_setup_ops;
910
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100911int iio_device_register(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100912{
913 int ret;
914
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100915 /* configure elements for the chrdev */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100916 indio_dev->dev.devt = MKDEV(MAJOR(iio_devt), indio_dev->id);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100917
Michael Henneriche553f182012-03-01 10:51:03 +0100918 ret = iio_device_register_debugfs(indio_dev);
919 if (ret) {
920 dev_err(indio_dev->dev.parent,
921 "Failed to register debugfs interfaces\n");
922 goto error_ret;
923 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100924 ret = iio_device_register_sysfs(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100925 if (ret) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100926 dev_err(indio_dev->dev.parent,
Jonathan Cameron847ec802009-08-18 18:06:19 +0100927 "Failed to register sysfs interfaces\n");
Michael Henneriche553f182012-03-01 10:51:03 +0100928 goto error_unreg_debugfs;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100929 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100930 ret = iio_device_register_eventset(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100931 if (ret) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100932 dev_err(indio_dev->dev.parent,
Roel Van Nyenc849d252010-04-29 19:27:31 +0200933 "Failed to register event set\n");
Jonathan Cameron847ec802009-08-18 18:06:19 +0100934 goto error_free_sysfs;
935 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100936 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
937 iio_device_register_trigger_consumer(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100938
Michael Hennerich0f1acee2012-03-01 10:51:04 +0100939 if ((indio_dev->modes & INDIO_ALL_BUFFER_MODES) &&
940 indio_dev->setup_ops == NULL)
941 indio_dev->setup_ops = &noop_ring_setup_ops;
942
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100943 ret = device_add(&indio_dev->dev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100944 if (ret < 0)
945 goto error_unreg_eventset;
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100946 cdev_init(&indio_dev->chrdev, &iio_buffer_fileops);
947 indio_dev->chrdev.owner = indio_dev->info->driver_module;
948 ret = cdev_add(&indio_dev->chrdev, indio_dev->dev.devt, 1);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100949 if (ret < 0)
950 goto error_del_device;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100951 return 0;
952
Jonathan Cameron847ec802009-08-18 18:06:19 +0100953error_del_device:
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100954 device_del(&indio_dev->dev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100955error_unreg_eventset:
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100956 iio_device_unregister_eventset(indio_dev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100957error_free_sysfs:
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100958 iio_device_unregister_sysfs(indio_dev);
Michael Henneriche553f182012-03-01 10:51:03 +0100959error_unreg_debugfs:
960 iio_device_unregister_debugfs(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100961error_ret:
962 return ret;
963}
964EXPORT_SYMBOL(iio_device_register);
965
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100966void iio_device_unregister(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100967{
Jonathan Cameronac917a82012-02-15 19:48:00 +0000968 mutex_lock(&indio_dev->info_exist_lock);
969 indio_dev->info = NULL;
970 mutex_unlock(&indio_dev->info_exist_lock);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200971 device_del(&indio_dev->dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100972}
973EXPORT_SYMBOL(iio_device_unregister);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100974subsys_initcall(iio_init);
975module_exit(iio_exit);
976
977MODULE_AUTHOR("Jonathan Cameron <jic23@cam.ac.uk>");
978MODULE_DESCRIPTION("Industrial I/O core");
979MODULE_LICENSE("GPL");