blob: d380c7278a26daa9f719202af9fb06e1e66093dc [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
Peter Meerwald99698b42012-08-26 13:43:00 +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",
Jon Brenner21cd1fa2012-05-16 10:46:42 -050067 [IIO_CCT] = "cct",
Lars-Peter Clausenc4f0c692012-11-20 13:36:00 +000068 [IIO_PRESSURE] = "pressure",
Jonathan Cameron1d892712011-05-18 14:40:51 +010069};
70
Jonathan Cameron330c6c52011-09-02 17:14:39 +010071static const char * const iio_modifier_names[] = {
Jonathan Cameron1d892712011-05-18 14:40:51 +010072 [IIO_MOD_X] = "x",
73 [IIO_MOD_Y] = "y",
74 [IIO_MOD_Z] = "z",
Jonathan Cameron8f5879b2012-05-05 10:39:22 +010075 [IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)",
Jonathan Cameroncf82cb82012-05-05 10:56:41 +010076 [IIO_MOD_SUM_SQUARED_X_Y_Z] = "x^2+y^2+z^2",
Jonathan Cameron330c6c52011-09-02 17:14:39 +010077 [IIO_MOD_LIGHT_BOTH] = "both",
78 [IIO_MOD_LIGHT_IR] = "ir",
Jon Brenner21cd1fa2012-05-16 10:46:42 -050079 [IIO_MOD_LIGHT_CLEAR] = "clear",
80 [IIO_MOD_LIGHT_RED] = "red",
81 [IIO_MOD_LIGHT_GREEN] = "green",
82 [IIO_MOD_LIGHT_BLUE] = "blue",
Jonathan Cameron1d892712011-05-18 14:40:51 +010083};
84
85/* relies on pairs of these shared then separate */
86static const char * const iio_chan_info_postfix[] = {
Jonathan Cameron75a973c2012-04-15 17:41:30 +010087 [IIO_CHAN_INFO_RAW] = "raw",
88 [IIO_CHAN_INFO_PROCESSED] = "input",
Jonathan Cameronc8a9f802011-10-26 17:41:36 +010089 [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 Camerondf94aba2011-11-27 11:39:12 +000097 [IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY]
98 = "filter_low_pass_3db_frequency",
Laxman Dewangance85a1c2012-04-13 16:03:31 +053099 [IIO_CHAN_INFO_SAMP_FREQ] = "sampling_frequency",
Michael Hennericha6b12852012-04-27 10:58:34 +0200100 [IIO_CHAN_INFO_FREQUENCY] = "frequency",
101 [IIO_CHAN_INFO_PHASE] = "phase",
Michael Hennerichb65d6212012-05-11 11:36:53 +0200102 [IIO_CHAN_INFO_HARDWAREGAIN] = "hardwaregain",
srinivas pandruvada7c9ab032012-09-05 13:56:00 +0100103 [IIO_CHAN_INFO_HYSTERESIS] = "hysteresis",
Peter Meerwald899d90b2013-09-08 16:20:00 +0100104 [IIO_CHAN_INFO_INT_TIME] = "integration_time",
Jonathan Cameron1d892712011-05-18 14:40:51 +0100105};
106
Jonathan Cameron5fb21c82011-12-05 21:37:10 +0000107const struct iio_chan_spec
108*iio_find_channel_from_si(struct iio_dev *indio_dev, int si)
109{
110 int i;
111
112 for (i = 0; i < indio_dev->num_channels; i++)
113 if (indio_dev->channels[i].scan_index == si)
114 return &indio_dev->channels[i];
115 return NULL;
116}
117
Jonathan Cameron847ec802009-08-18 18:06:19 +0100118/* This turns up an awful lot */
119ssize_t iio_read_const_attr(struct device *dev,
120 struct device_attribute *attr,
121 char *buf)
122{
123 return sprintf(buf, "%s\n", to_iio_const_attr(attr)->string);
124}
125EXPORT_SYMBOL(iio_read_const_attr);
126
Jonathan Cameron847ec802009-08-18 18:06:19 +0100127static int __init iio_init(void)
128{
129 int ret;
130
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100131 /* Register sysfs bus */
132 ret = bus_register(&iio_bus_type);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100133 if (ret < 0) {
134 printk(KERN_ERR
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100135 "%s could not register bus type\n",
Jonathan Cameron847ec802009-08-18 18:06:19 +0100136 __FILE__);
137 goto error_nothing;
138 }
139
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100140 ret = alloc_chrdev_region(&iio_devt, 0, IIO_DEV_MAX, "iio");
141 if (ret < 0) {
142 printk(KERN_ERR "%s: failed to allocate char dev region\n",
143 __FILE__);
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100144 goto error_unregister_bus_type;
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100145 }
Jonathan Cameron847ec802009-08-18 18:06:19 +0100146
Michael Henneriche553f182012-03-01 10:51:03 +0100147 iio_debugfs_dentry = debugfs_create_dir("iio", NULL);
148
Jonathan Cameron847ec802009-08-18 18:06:19 +0100149 return 0;
150
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100151error_unregister_bus_type:
152 bus_unregister(&iio_bus_type);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100153error_nothing:
154 return ret;
155}
156
157static void __exit iio_exit(void)
158{
Jonathan Cameron9aa1a162011-08-12 17:08:50 +0100159 if (iio_devt)
160 unregister_chrdev_region(iio_devt, IIO_DEV_MAX);
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100161 bus_unregister(&iio_bus_type);
Michael Henneriche553f182012-03-01 10:51:03 +0100162 debugfs_remove(iio_debugfs_dentry);
163}
164
165#if defined(CONFIG_DEBUG_FS)
Michael Henneriche553f182012-03-01 10:51:03 +0100166static ssize_t iio_debugfs_read_reg(struct file *file, char __user *userbuf,
167 size_t count, loff_t *ppos)
168{
169 struct iio_dev *indio_dev = file->private_data;
170 char buf[20];
171 unsigned val = 0;
172 ssize_t len;
173 int ret;
174
175 ret = indio_dev->info->debugfs_reg_access(indio_dev,
176 indio_dev->cached_reg_addr,
177 0, &val);
178 if (ret)
179 dev_err(indio_dev->dev.parent, "%s: read failed\n", __func__);
180
181 len = snprintf(buf, sizeof(buf), "0x%X\n", val);
182
183 return simple_read_from_buffer(userbuf, count, ppos, buf, len);
184}
185
186static ssize_t iio_debugfs_write_reg(struct file *file,
187 const char __user *userbuf, size_t count, loff_t *ppos)
188{
189 struct iio_dev *indio_dev = file->private_data;
190 unsigned reg, val;
191 char buf[80];
192 int ret;
193
194 count = min_t(size_t, count, (sizeof(buf)-1));
195 if (copy_from_user(buf, userbuf, count))
196 return -EFAULT;
197
198 buf[count] = 0;
199
200 ret = sscanf(buf, "%i %i", &reg, &val);
201
202 switch (ret) {
203 case 1:
204 indio_dev->cached_reg_addr = reg;
205 break;
206 case 2:
207 indio_dev->cached_reg_addr = reg;
208 ret = indio_dev->info->debugfs_reg_access(indio_dev, reg,
209 val, NULL);
210 if (ret) {
211 dev_err(indio_dev->dev.parent, "%s: write failed\n",
212 __func__);
213 return ret;
214 }
215 break;
216 default:
217 return -EINVAL;
218 }
219
220 return count;
221}
222
223static const struct file_operations iio_debugfs_reg_fops = {
Axel Lin5a28c872012-05-03 09:50:51 +0800224 .open = simple_open,
Michael Henneriche553f182012-03-01 10:51:03 +0100225 .read = iio_debugfs_read_reg,
226 .write = iio_debugfs_write_reg,
227};
228
229static void iio_device_unregister_debugfs(struct iio_dev *indio_dev)
230{
231 debugfs_remove_recursive(indio_dev->debugfs_dentry);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100232}
233
Michael Henneriche553f182012-03-01 10:51:03 +0100234static int iio_device_register_debugfs(struct iio_dev *indio_dev)
235{
236 struct dentry *d;
237
238 if (indio_dev->info->debugfs_reg_access == NULL)
239 return 0;
240
Axel Linabd5a2f2012-05-03 22:56:58 +0800241 if (!iio_debugfs_dentry)
Michael Henneriche553f182012-03-01 10:51:03 +0100242 return 0;
243
244 indio_dev->debugfs_dentry =
245 debugfs_create_dir(dev_name(&indio_dev->dev),
246 iio_debugfs_dentry);
Michael Henneriche553f182012-03-01 10:51:03 +0100247 if (indio_dev->debugfs_dentry == NULL) {
248 dev_warn(indio_dev->dev.parent,
249 "Failed to create debugfs directory\n");
250 return -EFAULT;
251 }
252
253 d = debugfs_create_file("direct_reg_access", 0644,
254 indio_dev->debugfs_dentry,
255 indio_dev, &iio_debugfs_reg_fops);
256 if (!d) {
257 iio_device_unregister_debugfs(indio_dev);
258 return -ENOMEM;
259 }
260
261 return 0;
262}
263#else
264static int iio_device_register_debugfs(struct iio_dev *indio_dev)
265{
266 return 0;
267}
268
269static void iio_device_unregister_debugfs(struct iio_dev *indio_dev)
270{
271}
272#endif /* CONFIG_DEBUG_FS */
273
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100274static ssize_t iio_read_channel_ext_info(struct device *dev,
275 struct device_attribute *attr,
276 char *buf)
277{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200278 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100279 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
280 const struct iio_chan_spec_ext_info *ext_info;
281
282 ext_info = &this_attr->c->ext_info[this_attr->address];
283
Michael Hennerichfc6d1132012-04-27 10:58:36 +0200284 return ext_info->read(indio_dev, ext_info->private, this_attr->c, buf);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100285}
286
287static ssize_t iio_write_channel_ext_info(struct device *dev,
288 struct device_attribute *attr,
289 const char *buf,
290 size_t len)
291{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200292 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100293 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
294 const struct iio_chan_spec_ext_info *ext_info;
295
296 ext_info = &this_attr->c->ext_info[this_attr->address];
297
Michael Hennerichfc6d1132012-04-27 10:58:36 +0200298 return ext_info->write(indio_dev, ext_info->private,
299 this_attr->c, buf, len);
Lars-Peter Clausen4fee7e12012-03-06 20:43:45 +0100300}
301
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200302ssize_t iio_enum_available_read(struct iio_dev *indio_dev,
303 uintptr_t priv, const struct iio_chan_spec *chan, char *buf)
304{
305 const struct iio_enum *e = (const struct iio_enum *)priv;
306 unsigned int i;
307 size_t len = 0;
308
309 if (!e->num_items)
310 return 0;
311
312 for (i = 0; i < e->num_items; ++i)
Lars-Peter Clausen74dcd432012-06-05 18:24:12 +0200313 len += scnprintf(buf + len, PAGE_SIZE - len, "%s ", e->items[i]);
Lars-Peter Clausen5212cc82012-06-04 11:36:11 +0200314
315 /* replace last space with a newline */
316 buf[len - 1] = '\n';
317
318 return len;
319}
320EXPORT_SYMBOL_GPL(iio_enum_available_read);
321
322ssize_t iio_enum_read(struct iio_dev *indio_dev,
323 uintptr_t priv, const struct iio_chan_spec *chan, char *buf)
324{
325 const struct iio_enum *e = (const struct iio_enum *)priv;
326 int i;
327
328 if (!e->get)
329 return -EINVAL;
330
331 i = e->get(indio_dev, chan);
332 if (i < 0)
333 return i;
334 else if (i >= e->num_items)
335 return -EINVAL;
336
337 return sprintf(buf, "%s\n", e->items[i]);
338}
339EXPORT_SYMBOL_GPL(iio_enum_read);
340
341ssize_t iio_enum_write(struct iio_dev *indio_dev,
342 uintptr_t priv, const struct iio_chan_spec *chan, const char *buf,
343 size_t len)
344{
345 const struct iio_enum *e = (const struct iio_enum *)priv;
346 unsigned int i;
347 int ret;
348
349 if (!e->set)
350 return -EINVAL;
351
352 for (i = 0; i < e->num_items; i++) {
353 if (sysfs_streq(buf, e->items[i]))
354 break;
355 }
356
357 if (i == e->num_items)
358 return -EINVAL;
359
360 ret = e->set(indio_dev, chan, i);
361 return ret ? ret : len;
362}
363EXPORT_SYMBOL_GPL(iio_enum_write);
364
Jonathan Cameron1d892712011-05-18 14:40:51 +0100365static ssize_t iio_read_channel_info(struct device *dev,
366 struct device_attribute *attr,
367 char *buf)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100368{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200369 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100370 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Lars-Peter Clausen7985e7c2012-09-14 16:21:00 +0100371 unsigned long long tmp;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100372 int val, val2;
Michael Hennerich67eedba2012-05-11 11:36:52 +0200373 bool scale_db = false;
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100374 int ret = indio_dev->info->read_raw(indio_dev, this_attr->c,
375 &val, &val2, this_attr->address);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100376
Jonathan Cameron1d892712011-05-18 14:40:51 +0100377 if (ret < 0)
378 return ret;
379
Michael Hennerich67eedba2012-05-11 11:36:52 +0200380 switch (ret) {
381 case IIO_VAL_INT:
Jonathan Cameron1d892712011-05-18 14:40:51 +0100382 return sprintf(buf, "%d\n", val);
Michael Hennerich67eedba2012-05-11 11:36:52 +0200383 case IIO_VAL_INT_PLUS_MICRO_DB:
384 scale_db = true;
385 case IIO_VAL_INT_PLUS_MICRO:
Jonathan Cameron1d892712011-05-18 14:40:51 +0100386 if (val2 < 0)
Oleksandr Kravchenkod9a01342013-07-22 12:16:00 +0100387 return sprintf(buf, "-%ld.%06u%s\n", abs(val), -val2,
Michael Hennerich67eedba2012-05-11 11:36:52 +0200388 scale_db ? " dB" : "");
Jonathan Cameron1d892712011-05-18 14:40:51 +0100389 else
Michael Hennerich67eedba2012-05-11 11:36:52 +0200390 return sprintf(buf, "%d.%06u%s\n", val, val2,
391 scale_db ? " dB" : "");
392 case IIO_VAL_INT_PLUS_NANO:
Michael Hennerich71646e22011-06-27 13:07:07 +0100393 if (val2 < 0)
Oleksandr Kravchenkod9a01342013-07-22 12:16:00 +0100394 return sprintf(buf, "-%ld.%09u\n", abs(val), -val2);
Michael Hennerich71646e22011-06-27 13:07:07 +0100395 else
396 return sprintf(buf, "%d.%09u\n", val, val2);
Lars-Peter Clausen7985e7c2012-09-14 16:21:00 +0100397 case IIO_VAL_FRACTIONAL:
398 tmp = div_s64((s64)val * 1000000000LL, val2);
399 val2 = do_div(tmp, 1000000000LL);
400 val = tmp;
401 return sprintf(buf, "%d.%09u\n", val, val2);
Lars-Peter Clausen103d9fb2012-10-16 17:29:00 +0100402 case IIO_VAL_FRACTIONAL_LOG2:
403 tmp = (s64)val * 1000000000LL >> val2;
404 val2 = do_div(tmp, 1000000000LL);
405 val = tmp;
406 return sprintf(buf, "%d.%09u\n", val, val2);
Michael Hennerich67eedba2012-05-11 11:36:52 +0200407 default:
Jonathan Cameron1d892712011-05-18 14:40:51 +0100408 return 0;
Michael Hennerich67eedba2012-05-11 11:36:52 +0200409 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100410}
411
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000412/**
413 * iio_str_to_fixpoint() - Parse a fixed-point number from a string
414 * @str: The string to parse
415 * @fract_mult: Multiplier for the first decimal place, should be a power of 10
416 * @integer: The integer part of the number
417 * @fract: The fractional part of the number
418 *
419 * Returns 0 on success, or a negative error code if the string could not be
420 * parsed.
421 */
422int iio_str_to_fixpoint(const char *str, int fract_mult,
423 int *integer, int *fract)
424{
425 int i = 0, f = 0;
426 bool integer_part = true, negative = false;
427
428 if (str[0] == '-') {
429 negative = true;
430 str++;
431 } else if (str[0] == '+') {
432 str++;
433 }
434
435 while (*str) {
436 if ('0' <= *str && *str <= '9') {
437 if (integer_part) {
438 i = i * 10 + *str - '0';
439 } else {
440 f += fract_mult * (*str - '0');
441 fract_mult /= 10;
442 }
443 } else if (*str == '\n') {
444 if (*(str + 1) == '\0')
445 break;
446 else
447 return -EINVAL;
448 } else if (*str == '.' && integer_part) {
449 integer_part = false;
450 } else {
451 return -EINVAL;
452 }
453 str++;
454 }
455
456 if (negative) {
457 if (i)
458 i = -i;
459 else
460 f = -f;
461 }
462
463 *integer = i;
464 *fract = f;
465
466 return 0;
467}
468EXPORT_SYMBOL_GPL(iio_str_to_fixpoint);
469
Jonathan Cameron1d892712011-05-18 14:40:51 +0100470static ssize_t iio_write_channel_info(struct device *dev,
471 struct device_attribute *attr,
472 const char *buf,
473 size_t len)
474{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200475 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100476 struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000477 int ret, fract_mult = 100000;
478 int integer, fract;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100479
480 /* Assumes decimal - precision based on number of digits */
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100481 if (!indio_dev->info->write_raw)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100482 return -EINVAL;
Michael Hennerich5c04af02011-06-27 13:07:10 +0100483
484 if (indio_dev->info->write_raw_get_fmt)
485 switch (indio_dev->info->write_raw_get_fmt(indio_dev,
486 this_attr->c, this_attr->address)) {
487 case IIO_VAL_INT_PLUS_MICRO:
488 fract_mult = 100000;
489 break;
490 case IIO_VAL_INT_PLUS_NANO:
491 fract_mult = 100000000;
492 break;
493 default:
494 return -EINVAL;
495 }
496
Lars-Peter Clausen6807d722012-11-20 13:36:00 +0000497 ret = iio_str_to_fixpoint(buf, fract_mult, &integer, &fract);
498 if (ret)
499 return ret;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100500
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100501 ret = indio_dev->info->write_raw(indio_dev, this_attr->c,
Michael Hennerich5c04af02011-06-27 13:07:10 +0100502 integer, fract, this_attr->address);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100503 if (ret)
504 return ret;
505
506 return len;
507}
508
Jonathan Camerondf9c1c42011-08-12 17:56:03 +0100509static
Jonathan Cameron1d892712011-05-18 14:40:51 +0100510int __iio_device_attr_init(struct device_attribute *dev_attr,
511 const char *postfix,
512 struct iio_chan_spec const *chan,
513 ssize_t (*readfunc)(struct device *dev,
514 struct device_attribute *attr,
515 char *buf),
516 ssize_t (*writefunc)(struct device *dev,
517 struct device_attribute *attr,
518 const char *buf,
519 size_t len),
Jonathan Cameron37044322013-09-08 14:57:00 +0100520 enum iio_shared_by shared_by)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100521{
Jonathan Cameron37044322013-09-08 14:57:00 +0100522 int ret = 0;
523 char *name_format = NULL;
524 char *full_postfix;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100525 sysfs_attr_init(&dev_attr->attr);
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100526
527 /* Build up postfix of <extend_name>_<modifier>_postfix */
Jonathan Cameron37044322013-09-08 14:57:00 +0100528 if (chan->modified && (shared_by == IIO_SEPARATE)) {
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100529 if (chan->extend_name)
530 full_postfix = kasprintf(GFP_KERNEL, "%s_%s_%s",
531 iio_modifier_names[chan
532 ->channel2],
533 chan->extend_name,
534 postfix);
535 else
536 full_postfix = kasprintf(GFP_KERNEL, "%s_%s",
537 iio_modifier_names[chan
538 ->channel2],
539 postfix);
540 } else {
541 if (chan->extend_name == NULL)
542 full_postfix = kstrdup(postfix, GFP_KERNEL);
543 else
544 full_postfix = kasprintf(GFP_KERNEL,
545 "%s_%s",
546 chan->extend_name,
547 postfix);
548 }
Jonathan Cameron37044322013-09-08 14:57:00 +0100549 if (full_postfix == NULL)
550 return -ENOMEM;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100551
Justin P. Mattock4abf6f82012-02-29 22:00:38 -0800552 if (chan->differential) { /* Differential can not have modifier */
Jonathan Cameron37044322013-09-08 14:57:00 +0100553 switch (shared_by) {
554 case IIO_SHARED_BY_TYPE:
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100555 name_format
556 = kasprintf(GFP_KERNEL, "%s_%s-%s_%s",
557 iio_direction[chan->output],
558 iio_chan_type_name_spec[chan->type],
559 iio_chan_type_name_spec[chan->type],
560 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100561 break;
562 case IIO_SEPARATE:
563 if (!chan->indexed) {
564 WARN_ON("Differential channels must be indexed\n");
565 ret = -EINVAL;
566 goto error_free_full_postfix;
567 }
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100568 name_format
Jonathan Cameron37044322013-09-08 14:57:00 +0100569 = kasprintf(GFP_KERNEL,
570 "%s_%s%d-%s%d_%s",
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100571 iio_direction[chan->output],
572 iio_chan_type_name_spec[chan->type],
573 chan->channel,
574 iio_chan_type_name_spec[chan->type],
575 chan->channel2,
576 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100577 break;
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100578 }
579 } else { /* Single ended */
Jonathan Cameron37044322013-09-08 14:57:00 +0100580 switch (shared_by) {
581 case IIO_SHARED_BY_TYPE:
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100582 name_format
583 = kasprintf(GFP_KERNEL, "%s_%s_%s",
584 iio_direction[chan->output],
585 iio_chan_type_name_spec[chan->type],
586 full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100587 break;
588
589 case IIO_SEPARATE:
590 if (chan->indexed)
591 name_format
592 = kasprintf(GFP_KERNEL, "%s_%s%d_%s",
593 iio_direction[chan->output],
594 iio_chan_type_name_spec[chan->type],
595 chan->channel,
596 full_postfix);
597 else
598 name_format
599 = kasprintf(GFP_KERNEL, "%s_%s_%s",
600 iio_direction[chan->output],
601 iio_chan_type_name_spec[chan->type],
602 full_postfix);
603 break;
604 }
Jonathan Cameronade7ef72011-09-02 17:14:45 +0100605 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100606 if (name_format == NULL) {
607 ret = -ENOMEM;
608 goto error_free_full_postfix;
609 }
610 dev_attr->attr.name = kasprintf(GFP_KERNEL,
611 name_format,
612 chan->channel,
613 chan->channel2);
614 if (dev_attr->attr.name == NULL) {
615 ret = -ENOMEM;
616 goto error_free_name_format;
617 }
618
619 if (readfunc) {
620 dev_attr->attr.mode |= S_IRUGO;
621 dev_attr->show = readfunc;
622 }
623
624 if (writefunc) {
625 dev_attr->attr.mode |= S_IWUSR;
626 dev_attr->store = writefunc;
627 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100628error_free_name_format:
629 kfree(name_format);
630error_free_full_postfix:
631 kfree(full_postfix);
Jonathan Cameron37044322013-09-08 14:57:00 +0100632
Jonathan Cameron847ec802009-08-18 18:06:19 +0100633 return ret;
634}
635
Jonathan Camerondf9c1c42011-08-12 17:56:03 +0100636static void __iio_device_attr_deinit(struct device_attribute *dev_attr)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100637{
638 kfree(dev_attr->attr.name);
639}
640
641int __iio_add_chan_devattr(const char *postfix,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100642 struct iio_chan_spec const *chan,
643 ssize_t (*readfunc)(struct device *dev,
644 struct device_attribute *attr,
645 char *buf),
646 ssize_t (*writefunc)(struct device *dev,
647 struct device_attribute *attr,
648 const char *buf,
649 size_t len),
Jonathan Camerone614a542011-09-02 17:14:41 +0100650 u64 mask,
Jonathan Cameron37044322013-09-08 14:57:00 +0100651 enum iio_shared_by shared_by,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100652 struct device *dev,
653 struct list_head *attr_list)
654{
655 int ret;
656 struct iio_dev_attr *iio_attr, *t;
657
658 iio_attr = kzalloc(sizeof *iio_attr, GFP_KERNEL);
659 if (iio_attr == NULL) {
660 ret = -ENOMEM;
661 goto error_ret;
662 }
663 ret = __iio_device_attr_init(&iio_attr->dev_attr,
664 postfix, chan,
Jonathan Cameron37044322013-09-08 14:57:00 +0100665 readfunc, writefunc, shared_by);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100666 if (ret)
667 goto error_iio_dev_attr_free;
668 iio_attr->c = chan;
669 iio_attr->address = mask;
670 list_for_each_entry(t, attr_list, l)
671 if (strcmp(t->dev_attr.attr.name,
672 iio_attr->dev_attr.attr.name) == 0) {
Jonathan Cameron37044322013-09-08 14:57:00 +0100673 if (shared_by == IIO_SEPARATE)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100674 dev_err(dev, "tried to double register : %s\n",
675 t->dev_attr.attr.name);
676 ret = -EBUSY;
677 goto error_device_attr_deinit;
678 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100679 list_add(&iio_attr->l, attr_list);
680
681 return 0;
682
683error_device_attr_deinit:
684 __iio_device_attr_deinit(&iio_attr->dev_attr);
685error_iio_dev_attr_free:
686 kfree(iio_attr);
687error_ret:
688 return ret;
689}
690
Jonathan Cameron37044322013-09-08 14:57:00 +0100691static int iio_device_add_info_mask_type(struct iio_dev *indio_dev,
692 struct iio_chan_spec const *chan,
693 enum iio_shared_by shared_by,
694 const long *infomask)
695{
696 int i, ret, attrcount = 0;
697
698 for_each_set_bit(i, infomask, sizeof(infomask)*8) {
699 ret = __iio_add_chan_devattr(iio_chan_info_postfix[i],
700 chan,
701 &iio_read_channel_info,
702 &iio_write_channel_info,
703 i,
704 shared_by,
705 &indio_dev->dev,
706 &indio_dev->channel_attr_list);
707 if ((ret == -EBUSY) && (shared_by != IIO_SEPARATE))
708 continue;
709 else if (ret < 0)
710 return ret;
711 attrcount++;
712 }
713
714 return attrcount;
715}
716
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100717static int iio_device_add_channel_sysfs(struct iio_dev *indio_dev,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100718 struct iio_chan_spec const *chan)
719{
Jonathan Cameron5ccb3ad2012-04-15 17:41:16 +0100720 int ret, attrcount = 0;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100721 const struct iio_chan_spec_ext_info *ext_info;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100722
Jonathan Cameron1d892712011-05-18 14:40:51 +0100723 if (chan->channel < 0)
724 return 0;
Jonathan Cameron37044322013-09-08 14:57:00 +0100725 ret = iio_device_add_info_mask_type(indio_dev, chan,
726 IIO_SEPARATE,
727 &chan->info_mask_separate);
728 if (ret < 0)
729 return ret;
730 attrcount += ret;
731
732 ret = iio_device_add_info_mask_type(indio_dev, chan,
733 IIO_SHARED_BY_TYPE,
734 &chan->info_mask_shared_by_type);
735 if (ret < 0)
736 return ret;
737 attrcount += ret;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100738
739 if (chan->ext_info) {
740 unsigned int i = 0;
741 for (ext_info = chan->ext_info; ext_info->name; ext_info++) {
742 ret = __iio_add_chan_devattr(ext_info->name,
743 chan,
744 ext_info->read ?
745 &iio_read_channel_ext_info : NULL,
746 ext_info->write ?
747 &iio_write_channel_ext_info : NULL,
748 i,
749 ext_info->shared,
750 &indio_dev->dev,
751 &indio_dev->channel_attr_list);
752 i++;
753 if (ret == -EBUSY && ext_info->shared)
754 continue;
755
756 if (ret)
Jonathan Cameron37044322013-09-08 14:57:00 +0100757 return ret;
Lars-Peter Clausen5f420b42012-02-21 18:38:12 +0100758
759 attrcount++;
760 }
761 }
762
Jonathan Cameron37044322013-09-08 14:57:00 +0100763 return attrcount;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100764}
765
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100766static void iio_device_remove_and_free_read_attr(struct iio_dev *indio_dev,
Jonathan Cameron1d892712011-05-18 14:40:51 +0100767 struct iio_dev_attr *p)
768{
Jonathan Cameron1d892712011-05-18 14:40:51 +0100769 kfree(p->dev_attr.attr.name);
770 kfree(p);
771}
772
Jonathan Cameron1b732882011-05-18 14:41:43 +0100773static ssize_t iio_show_dev_name(struct device *dev,
774 struct device_attribute *attr,
775 char *buf)
776{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200777 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameron1b732882011-05-18 14:41:43 +0100778 return sprintf(buf, "%s\n", indio_dev->name);
779}
780
781static DEVICE_ATTR(name, S_IRUGO, iio_show_dev_name, NULL);
782
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100783static int iio_device_register_sysfs(struct iio_dev *indio_dev)
Jonathan Cameron1d892712011-05-18 14:40:51 +0100784{
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100785 int i, ret = 0, attrcount, attrn, attrcount_orig = 0;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100786 struct iio_dev_attr *p, *n;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100787 struct attribute **attr;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100788
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100789 /* First count elements in any existing group */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100790 if (indio_dev->info->attrs) {
791 attr = indio_dev->info->attrs->attrs;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100792 while (*attr++ != NULL)
793 attrcount_orig++;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100794 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100795 attrcount = attrcount_orig;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100796 /*
797 * New channel registration method - relies on the fact a group does
Peter Meerwaldd25b3802012-08-26 13:43:00 +0100798 * not need to be initialized if its name is NULL.
Jonathan Cameron1d892712011-05-18 14:40:51 +0100799 */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100800 if (indio_dev->channels)
801 for (i = 0; i < indio_dev->num_channels; i++) {
802 ret = iio_device_add_channel_sysfs(indio_dev,
803 &indio_dev
Jonathan Cameron1d892712011-05-18 14:40:51 +0100804 ->channels[i]);
805 if (ret < 0)
806 goto error_clear_attrs;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100807 attrcount += ret;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100808 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100809
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100810 if (indio_dev->name)
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100811 attrcount++;
812
Thomas Meyerd83fb182011-11-29 22:08:00 +0100813 indio_dev->chan_attr_group.attrs = kcalloc(attrcount + 1,
814 sizeof(indio_dev->chan_attr_group.attrs[0]),
815 GFP_KERNEL);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100816 if (indio_dev->chan_attr_group.attrs == NULL) {
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100817 ret = -ENOMEM;
818 goto error_clear_attrs;
Jonathan Cameron1b732882011-05-18 14:41:43 +0100819 }
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100820 /* Copy across original attributes */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100821 if (indio_dev->info->attrs)
822 memcpy(indio_dev->chan_attr_group.attrs,
823 indio_dev->info->attrs->attrs,
824 sizeof(indio_dev->chan_attr_group.attrs[0])
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100825 *attrcount_orig);
826 attrn = attrcount_orig;
827 /* Add all elements from the list. */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100828 list_for_each_entry(p, &indio_dev->channel_attr_list, l)
829 indio_dev->chan_attr_group.attrs[attrn++] = &p->dev_attr.attr;
830 if (indio_dev->name)
831 indio_dev->chan_attr_group.attrs[attrn++] = &dev_attr_name.attr;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100832
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100833 indio_dev->groups[indio_dev->groupcounter++] =
834 &indio_dev->chan_attr_group;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100835
Jonathan Cameron1d892712011-05-18 14:40:51 +0100836 return 0;
Jonathan Cameron1b732882011-05-18 14:41:43 +0100837
Jonathan Cameron1d892712011-05-18 14:40:51 +0100838error_clear_attrs:
839 list_for_each_entry_safe(p, n,
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100840 &indio_dev->channel_attr_list, l) {
Jonathan Cameron1d892712011-05-18 14:40:51 +0100841 list_del(&p->l);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100842 iio_device_remove_and_free_read_attr(indio_dev, p);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100843 }
Jonathan Cameron1d892712011-05-18 14:40:51 +0100844
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100845 return ret;
Jonathan Cameron1d892712011-05-18 14:40:51 +0100846}
847
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100848static void iio_device_unregister_sysfs(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100849{
Jonathan Cameron1d892712011-05-18 14:40:51 +0100850
851 struct iio_dev_attr *p, *n;
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100852
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100853 list_for_each_entry_safe(p, n, &indio_dev->channel_attr_list, l) {
Jonathan Cameron1d892712011-05-18 14:40:51 +0100854 list_del(&p->l);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100855 iio_device_remove_and_free_read_attr(indio_dev, p);
Jonathan Cameron1d892712011-05-18 14:40:51 +0100856 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100857 kfree(indio_dev->chan_attr_group.attrs);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100858}
859
Jonathan Cameron847ec802009-08-18 18:06:19 +0100860static void iio_dev_release(struct device *device)
861{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200862 struct iio_dev *indio_dev = dev_to_iio_dev(device);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200863 if (indio_dev->chrdev.dev)
864 cdev_del(&indio_dev->chrdev);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100865 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
866 iio_device_unregister_trigger_consumer(indio_dev);
867 iio_device_unregister_eventset(indio_dev);
868 iio_device_unregister_sysfs(indio_dev);
Michael Henneriche553f182012-03-01 10:51:03 +0100869 iio_device_unregister_debugfs(indio_dev);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200870
871 ida_simple_remove(&iio_ida, indio_dev->id);
872 kfree(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100873}
874
Guenter Roeck17d82b42013-02-07 17:09:00 +0000875struct device_type iio_device_type = {
Jonathan Cameron847ec802009-08-18 18:06:19 +0100876 .name = "iio_device",
877 .release = iio_dev_release,
878};
879
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200880struct iio_dev *iio_device_alloc(int sizeof_priv)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100881{
Jonathan Cameron6f7c8ee2011-04-15 18:55:56 +0100882 struct iio_dev *dev;
883 size_t alloc_size;
884
885 alloc_size = sizeof(struct iio_dev);
886 if (sizeof_priv) {
887 alloc_size = ALIGN(alloc_size, IIO_ALIGN);
888 alloc_size += sizeof_priv;
889 }
890 /* ensure 32-byte alignment of whole construct ? */
891 alloc_size += IIO_ALIGN - 1;
892
893 dev = kzalloc(alloc_size, GFP_KERNEL);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100894
895 if (dev) {
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100896 dev->dev.groups = dev->groups;
Guenter Roeck17d82b42013-02-07 17:09:00 +0000897 dev->dev.type = &iio_device_type;
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100898 dev->dev.bus = &iio_bus_type;
Jonathan Cameron847ec802009-08-18 18:06:19 +0100899 device_initialize(&dev->dev);
900 dev_set_drvdata(&dev->dev, (void *)dev);
901 mutex_init(&dev->mlock);
Jonathan Cameronac917a82012-02-15 19:48:00 +0000902 mutex_init(&dev->info_exist_lock);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200903 INIT_LIST_HEAD(&dev->channel_attr_list);
Jonathan Camerona9e39f92011-09-14 13:01:25 +0100904
905 dev->id = ida_simple_get(&iio_ida, 0, 0, GFP_KERNEL);
906 if (dev->id < 0) {
907 /* cannot use a dev_err as the name isn't available */
908 printk(KERN_ERR "Failed to get id\n");
909 kfree(dev);
910 return NULL;
911 }
912 dev_set_name(&dev->dev, "iio:device%d", dev->id);
Jonathan Cameron84b36ce2012-06-30 20:06:00 +0100913 INIT_LIST_HEAD(&dev->buffer_list);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100914 }
915
916 return dev;
917}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200918EXPORT_SYMBOL(iio_device_alloc);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100919
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200920void iio_device_free(struct iio_dev *dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +0100921{
Lars-Peter Clausene407fd62012-06-04 10:41:42 +0200922 if (dev)
923 put_device(&dev->dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100924}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200925EXPORT_SYMBOL(iio_device_free);
Jonathan Cameron847ec802009-08-18 18:06:19 +0100926
Grygorii Strashko9dabaf52013-07-18 11:19:00 +0100927static void devm_iio_device_release(struct device *dev, void *res)
928{
929 iio_device_free(*(struct iio_dev **)res);
930}
931
932static int devm_iio_device_match(struct device *dev, void *res, void *data)
933{
934 struct iio_dev **r = res;
935 if (!r || !*r) {
936 WARN_ON(!r || !*r);
937 return 0;
938 }
939 return *r == data;
940}
941
942struct iio_dev *devm_iio_device_alloc(struct device *dev, int sizeof_priv)
943{
944 struct iio_dev **ptr, *iio_dev;
945
946 ptr = devres_alloc(devm_iio_device_release, sizeof(*ptr),
947 GFP_KERNEL);
948 if (!ptr)
949 return NULL;
950
951 /* use raw alloc_dr for kmalloc caller tracing */
952 iio_dev = iio_device_alloc(sizeof_priv);
953 if (iio_dev) {
954 *ptr = iio_dev;
955 devres_add(dev, ptr);
956 } else {
957 devres_free(ptr);
958 }
959
960 return iio_dev;
961}
962EXPORT_SYMBOL_GPL(devm_iio_device_alloc);
963
964void devm_iio_device_free(struct device *dev, struct iio_dev *iio_dev)
965{
966 int rc;
967
968 rc = devres_release(dev, devm_iio_device_release,
969 devm_iio_device_match, iio_dev);
970 WARN_ON(rc);
971}
972EXPORT_SYMBOL_GPL(devm_iio_device_free);
973
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100974/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100975 * iio_chrdev_open() - chrdev file open for buffer access and ioctls
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100976 **/
977static int iio_chrdev_open(struct inode *inode, struct file *filp)
978{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100979 struct iio_dev *indio_dev = container_of(inode->i_cdev,
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100980 struct iio_dev, chrdev);
Lars-Peter Clausenbb014432011-12-19 15:23:45 +0100981
982 if (test_and_set_bit(IIO_BUSY_BIT_POS, &indio_dev->flags))
983 return -EBUSY;
984
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100985 filp->private_data = indio_dev;
Jonathan Cameron30eb82f2011-09-21 11:16:02 +0100986
Lars-Peter Clausen79335142011-12-19 15:23:49 +0100987 return 0;
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100988}
989
990/**
Jonathan Cameron14555b12011-09-21 11:15:57 +0100991 * iio_chrdev_release() - chrdev file close buffer access and ioctls
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100992 **/
993static int iio_chrdev_release(struct inode *inode, struct file *filp)
994{
Lars-Peter Clausenbb014432011-12-19 15:23:45 +0100995 struct iio_dev *indio_dev = container_of(inode->i_cdev,
996 struct iio_dev, chrdev);
Lars-Peter Clausenbb014432011-12-19 15:23:45 +0100997 clear_bit(IIO_BUSY_BIT_POS, &indio_dev->flags);
Jonathan Cameron1aa04272011-08-30 12:32:47 +0100998 return 0;
999}
1000
1001/* Somewhat of a cross file organization violation - ioctls here are actually
1002 * event related */
1003static long iio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1004{
1005 struct iio_dev *indio_dev = filp->private_data;
1006 int __user *ip = (int __user *)arg;
1007 int fd;
1008
1009 if (cmd == IIO_GET_EVENT_FD_IOCTL) {
1010 fd = iio_event_getfd(indio_dev);
1011 if (copy_to_user(ip, &fd, sizeof(fd)))
1012 return -EFAULT;
1013 return 0;
1014 }
1015 return -EINVAL;
1016}
1017
Jonathan Cameron14555b12011-09-21 11:15:57 +01001018static const struct file_operations iio_buffer_fileops = {
1019 .read = iio_buffer_read_first_n_outer_addr,
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001020 .release = iio_chrdev_release,
1021 .open = iio_chrdev_open,
Jonathan Cameron14555b12011-09-21 11:15:57 +01001022 .poll = iio_buffer_poll_addr,
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001023 .owner = THIS_MODULE,
1024 .llseek = noop_llseek,
1025 .unlocked_ioctl = iio_ioctl,
1026 .compat_ioctl = iio_ioctl,
1027};
1028
Michael Hennerich0f1acee2012-03-01 10:51:04 +01001029static const struct iio_buffer_setup_ops noop_ring_setup_ops;
1030
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001031int iio_device_register(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001032{
1033 int ret;
1034
Guenter Roeck17d82b42013-02-07 17:09:00 +00001035 /* If the calling driver did not initialize of_node, do it here */
1036 if (!indio_dev->dev.of_node && indio_dev->dev.parent)
1037 indio_dev->dev.of_node = indio_dev->dev.parent->of_node;
1038
Jonathan Cameron1aa04272011-08-30 12:32:47 +01001039 /* configure elements for the chrdev */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001040 indio_dev->dev.devt = MKDEV(MAJOR(iio_devt), indio_dev->id);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001041
Michael Henneriche553f182012-03-01 10:51:03 +01001042 ret = iio_device_register_debugfs(indio_dev);
1043 if (ret) {
1044 dev_err(indio_dev->dev.parent,
1045 "Failed to register debugfs interfaces\n");
1046 goto error_ret;
1047 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001048 ret = iio_device_register_sysfs(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001049 if (ret) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001050 dev_err(indio_dev->dev.parent,
Jonathan Cameron847ec802009-08-18 18:06:19 +01001051 "Failed to register sysfs interfaces\n");
Michael Henneriche553f182012-03-01 10:51:03 +01001052 goto error_unreg_debugfs;
Jonathan Cameron847ec802009-08-18 18:06:19 +01001053 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001054 ret = iio_device_register_eventset(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001055 if (ret) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001056 dev_err(indio_dev->dev.parent,
Roel Van Nyenc849d252010-04-29 19:27:31 +02001057 "Failed to register event set\n");
Jonathan Cameron847ec802009-08-18 18:06:19 +01001058 goto error_free_sysfs;
1059 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001060 if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
1061 iio_device_register_trigger_consumer(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001062
Michael Hennerich0f1acee2012-03-01 10:51:04 +01001063 if ((indio_dev->modes & INDIO_ALL_BUFFER_MODES) &&
1064 indio_dev->setup_ops == NULL)
1065 indio_dev->setup_ops = &noop_ring_setup_ops;
1066
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001067 ret = device_add(&indio_dev->dev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001068 if (ret < 0)
1069 goto error_unreg_eventset;
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001070 cdev_init(&indio_dev->chrdev, &iio_buffer_fileops);
1071 indio_dev->chrdev.owner = indio_dev->info->driver_module;
1072 ret = cdev_add(&indio_dev->chrdev, indio_dev->dev.devt, 1);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001073 if (ret < 0)
1074 goto error_del_device;
Jonathan Cameron847ec802009-08-18 18:06:19 +01001075 return 0;
1076
Jonathan Cameron847ec802009-08-18 18:06:19 +01001077error_del_device:
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001078 device_del(&indio_dev->dev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001079error_unreg_eventset:
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001080 iio_device_unregister_eventset(indio_dev);
Jonathan Cameron26d25ae2011-09-02 17:14:40 +01001081error_free_sysfs:
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001082 iio_device_unregister_sysfs(indio_dev);
Michael Henneriche553f182012-03-01 10:51:03 +01001083error_unreg_debugfs:
1084 iio_device_unregister_debugfs(indio_dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001085error_ret:
1086 return ret;
1087}
1088EXPORT_SYMBOL(iio_device_register);
1089
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +01001090void iio_device_unregister(struct iio_dev *indio_dev)
Jonathan Cameron847ec802009-08-18 18:06:19 +01001091{
Jonathan Cameronac917a82012-02-15 19:48:00 +00001092 mutex_lock(&indio_dev->info_exist_lock);
1093 indio_dev->info = NULL;
1094 mutex_unlock(&indio_dev->info_exist_lock);
Lars-Peter Clausene407fd62012-06-04 10:41:42 +02001095 device_del(&indio_dev->dev);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001096}
1097EXPORT_SYMBOL(iio_device_unregister);
Jonathan Cameron847ec802009-08-18 18:06:19 +01001098subsys_initcall(iio_init);
1099module_exit(iio_exit);
1100
Jonathan Cameronc8b95952012-09-02 21:27:56 +01001101MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>");
Jonathan Cameron847ec802009-08-18 18:06:19 +01001102MODULE_DESCRIPTION("Industrial I/O core");
1103MODULE_LICENSE("GPL");