2009-08-18 17:06:19 +00:00
|
|
|
/* The industrial I/O core
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008 Jonathan Cameron
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
|
|
* the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* Based on elements of hwmon and input subsystems.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/idr.h>
|
|
|
|
#include <linux/kdev_t.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/poll.h>
|
2009-10-12 18:18:09 +00:00
|
|
|
#include <linux/sched.h>
|
2009-10-12 21:10:34 +00:00
|
|
|
#include <linux/wait.h>
|
2009-08-18 17:06:19 +00:00
|
|
|
#include <linux/cdev.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2011-08-30 11:32:45 +00:00
|
|
|
#include <linux/anon_inodes.h>
|
2012-03-01 09:51:03 +00:00
|
|
|
#include <linux/debugfs.h>
|
2012-04-25 14:54:58 +00:00
|
|
|
#include <linux/iio/iio.h>
|
2011-08-12 16:56:03 +00:00
|
|
|
#include "iio_core.h"
|
2011-08-24 16:28:38 +00:00
|
|
|
#include "iio_core_trigger.h"
|
2012-04-25 14:54:58 +00:00
|
|
|
#include <linux/iio/sysfs.h>
|
|
|
|
#include <linux/iio/events.h>
|
2011-08-30 11:41:15 +00:00
|
|
|
|
2012-08-26 12:43:00 +00:00
|
|
|
/* IDA to assign each registered device a unique id */
|
2010-09-04 16:54:43 +00:00
|
|
|
static DEFINE_IDA(iio_ida);
|
2009-08-18 17:06:19 +00:00
|
|
|
|
2011-08-30 11:32:48 +00:00
|
|
|
static dev_t iio_devt;
|
2009-08-18 17:06:19 +00:00
|
|
|
|
|
|
|
#define IIO_DEV_MAX 256
|
2010-05-04 13:43:00 +00:00
|
|
|
struct bus_type iio_bus_type = {
|
2009-08-18 17:06:19 +00:00
|
|
|
.name = "iio",
|
|
|
|
};
|
2010-05-04 13:43:00 +00:00
|
|
|
EXPORT_SYMBOL(iio_bus_type);
|
2009-08-18 17:06:19 +00:00
|
|
|
|
2012-03-01 09:51:03 +00:00
|
|
|
static struct dentry *iio_debugfs_dentry;
|
|
|
|
|
2011-09-02 16:14:34 +00:00
|
|
|
static const char * const iio_direction[] = {
|
|
|
|
[0] = "in",
|
|
|
|
[1] = "out",
|
|
|
|
};
|
|
|
|
|
2011-09-02 16:14:45 +00:00
|
|
|
static const char * const iio_chan_type_name_spec[] = {
|
2011-09-02 16:14:34 +00:00
|
|
|
[IIO_VOLTAGE] = "voltage",
|
2011-05-18 13:42:02 +00:00
|
|
|
[IIO_CURRENT] = "current",
|
|
|
|
[IIO_POWER] = "power",
|
2011-07-07 19:01:54 +00:00
|
|
|
[IIO_ACCEL] = "accel",
|
2011-10-05 14:27:59 +00:00
|
|
|
[IIO_ANGL_VEL] = "anglvel",
|
2011-05-18 13:40:51 +00:00
|
|
|
[IIO_MAGN] = "magn",
|
2011-07-07 19:01:54 +00:00
|
|
|
[IIO_LIGHT] = "illuminance",
|
|
|
|
[IIO_INTENSITY] = "intensity",
|
2011-07-07 19:01:55 +00:00
|
|
|
[IIO_PROXIMITY] = "proximity",
|
2011-07-07 19:01:54 +00:00
|
|
|
[IIO_TEMP] = "temp",
|
2011-05-18 13:40:51 +00:00
|
|
|
[IIO_INCLI] = "incli",
|
|
|
|
[IIO_ROT] = "rot",
|
|
|
|
[IIO_ANGL] = "angl",
|
2011-07-07 19:01:54 +00:00
|
|
|
[IIO_TIMESTAMP] = "timestamp",
|
2011-09-02 16:14:43 +00:00
|
|
|
[IIO_CAPACITANCE] = "capacitance",
|
2012-04-27 08:58:34 +00:00
|
|
|
[IIO_ALTVOLTAGE] = "altvoltage",
|
2012-05-16 15:46:42 +00:00
|
|
|
[IIO_CCT] = "cct",
|
2012-11-20 13:36:00 +00:00
|
|
|
[IIO_PRESSURE] = "pressure",
|
2011-05-18 13:40:51 +00:00
|
|
|
};
|
|
|
|
|
2011-09-02 16:14:39 +00:00
|
|
|
static const char * const iio_modifier_names[] = {
|
2011-05-18 13:40:51 +00:00
|
|
|
[IIO_MOD_X] = "x",
|
|
|
|
[IIO_MOD_Y] = "y",
|
|
|
|
[IIO_MOD_Z] = "z",
|
2012-05-05 09:39:22 +00:00
|
|
|
[IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)",
|
2012-05-05 09:56:41 +00:00
|
|
|
[IIO_MOD_SUM_SQUARED_X_Y_Z] = "x^2+y^2+z^2",
|
2011-09-02 16:14:39 +00:00
|
|
|
[IIO_MOD_LIGHT_BOTH] = "both",
|
|
|
|
[IIO_MOD_LIGHT_IR] = "ir",
|
2012-05-16 15:46:42 +00:00
|
|
|
[IIO_MOD_LIGHT_CLEAR] = "clear",
|
|
|
|
[IIO_MOD_LIGHT_RED] = "red",
|
|
|
|
[IIO_MOD_LIGHT_GREEN] = "green",
|
|
|
|
[IIO_MOD_LIGHT_BLUE] = "blue",
|
2011-05-18 13:40:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* relies on pairs of these shared then separate */
|
|
|
|
static const char * const iio_chan_info_postfix[] = {
|
2012-04-15 16:41:30 +00:00
|
|
|
[IIO_CHAN_INFO_RAW] = "raw",
|
|
|
|
[IIO_CHAN_INFO_PROCESSED] = "input",
|
2011-10-26 16:41:36 +00:00
|
|
|
[IIO_CHAN_INFO_SCALE] = "scale",
|
|
|
|
[IIO_CHAN_INFO_OFFSET] = "offset",
|
|
|
|
[IIO_CHAN_INFO_CALIBSCALE] = "calibscale",
|
|
|
|
[IIO_CHAN_INFO_CALIBBIAS] = "calibbias",
|
|
|
|
[IIO_CHAN_INFO_PEAK] = "peak_raw",
|
|
|
|
[IIO_CHAN_INFO_PEAK_SCALE] = "peak_scale",
|
|
|
|
[IIO_CHAN_INFO_QUADRATURE_CORRECTION_RAW] = "quadrature_correction_raw",
|
|
|
|
[IIO_CHAN_INFO_AVERAGE_RAW] = "mean_raw",
|
2011-11-27 11:39:12 +00:00
|
|
|
[IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY]
|
|
|
|
= "filter_low_pass_3db_frequency",
|
2012-04-13 10:33:31 +00:00
|
|
|
[IIO_CHAN_INFO_SAMP_FREQ] = "sampling_frequency",
|
2012-04-27 08:58:34 +00:00
|
|
|
[IIO_CHAN_INFO_FREQUENCY] = "frequency",
|
|
|
|
[IIO_CHAN_INFO_PHASE] = "phase",
|
2012-05-11 09:36:53 +00:00
|
|
|
[IIO_CHAN_INFO_HARDWAREGAIN] = "hardwaregain",
|
2012-09-05 12:56:00 +00:00
|
|
|
[IIO_CHAN_INFO_HYSTERESIS] = "hysteresis",
|
2011-05-18 13:40:51 +00:00
|
|
|
};
|
|
|
|
|
2011-12-05 21:37:10 +00:00
|
|
|
const struct iio_chan_spec
|
|
|
|
*iio_find_channel_from_si(struct iio_dev *indio_dev, int si)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < indio_dev->num_channels; i++)
|
|
|
|
if (indio_dev->channels[i].scan_index == si)
|
|
|
|
return &indio_dev->channels[i];
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-08-18 17:06:19 +00:00
|
|
|
/* This turns up an awful lot */
|
|
|
|
ssize_t iio_read_const_attr(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
|
|
|
{
|
|
|
|
return sprintf(buf, "%s\n", to_iio_const_attr(attr)->string);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(iio_read_const_attr);
|
|
|
|
|
|
|
|
static int __init iio_init(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2010-05-04 13:43:00 +00:00
|
|
|
/* Register sysfs bus */
|
|
|
|
ret = bus_register(&iio_bus_type);
|
2009-08-18 17:06:19 +00:00
|
|
|
if (ret < 0) {
|
|
|
|
printk(KERN_ERR
|
2010-05-04 13:43:00 +00:00
|
|
|
"%s could not register bus type\n",
|
2009-08-18 17:06:19 +00:00
|
|
|
__FILE__);
|
|
|
|
goto error_nothing;
|
|
|
|
}
|
|
|
|
|
2011-08-12 16:08:50 +00:00
|
|
|
ret = alloc_chrdev_region(&iio_devt, 0, IIO_DEV_MAX, "iio");
|
|
|
|
if (ret < 0) {
|
|
|
|
printk(KERN_ERR "%s: failed to allocate char dev region\n",
|
|
|
|
__FILE__);
|
2010-05-04 13:43:00 +00:00
|
|
|
goto error_unregister_bus_type;
|
2011-08-12 16:08:50 +00:00
|
|
|
}
|
2009-08-18 17:06:19 +00:00
|
|
|
|
2012-03-01 09:51:03 +00:00
|
|
|
iio_debugfs_dentry = debugfs_create_dir("iio", NULL);
|
|
|
|
|
2009-08-18 17:06:19 +00:00
|
|
|
return 0;
|
|
|
|
|
2010-05-04 13:43:00 +00:00
|
|
|
error_unregister_bus_type:
|
|
|
|
bus_unregister(&iio_bus_type);
|
2009-08-18 17:06:19 +00:00
|
|
|
error_nothing:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit iio_exit(void)
|
|
|
|
{
|
2011-08-12 16:08:50 +00:00
|
|
|
if (iio_devt)
|
|
|
|
unregister_chrdev_region(iio_devt, IIO_DEV_MAX);
|
2010-05-04 13:43:00 +00:00
|
|
|
bus_unregister(&iio_bus_type);
|
2012-03-01 09:51:03 +00:00
|
|
|
debugfs_remove(iio_debugfs_dentry);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CONFIG_DEBUG_FS)
|
|
|
|
static ssize_t iio_debugfs_read_reg(struct file *file, char __user *userbuf,
|
|
|
|
size_t count, loff_t *ppos)
|
|
|
|
{
|
|
|
|
struct iio_dev *indio_dev = file->private_data;
|
|
|
|
char buf[20];
|
|
|
|
unsigned val = 0;
|
|
|
|
ssize_t len;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = indio_dev->info->debugfs_reg_access(indio_dev,
|
|
|
|
indio_dev->cached_reg_addr,
|
|
|
|
0, &val);
|
|
|
|
if (ret)
|
|
|
|
dev_err(indio_dev->dev.parent, "%s: read failed\n", __func__);
|
|
|
|
|
|
|
|
len = snprintf(buf, sizeof(buf), "0x%X\n", val);
|
|
|
|
|
|
|
|
return simple_read_from_buffer(userbuf, count, ppos, buf, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t iio_debugfs_write_reg(struct file *file,
|
|
|
|
const char __user *userbuf, size_t count, loff_t *ppos)
|
|
|
|
{
|
|
|
|
struct iio_dev *indio_dev = file->private_data;
|
|
|
|
unsigned reg, val;
|
|
|
|
char buf[80];
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
count = min_t(size_t, count, (sizeof(buf)-1));
|
|
|
|
if (copy_from_user(buf, userbuf, count))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
buf[count] = 0;
|
|
|
|
|
|
|
|
ret = sscanf(buf, "%i %i", ®, &val);
|
|
|
|
|
|
|
|
switch (ret) {
|
|
|
|
case 1:
|
|
|
|
indio_dev->cached_reg_addr = reg;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
indio_dev->cached_reg_addr = reg;
|
|
|
|
ret = indio_dev->info->debugfs_reg_access(indio_dev, reg,
|
|
|
|
val, NULL);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(indio_dev->dev.parent, "%s: write failed\n",
|
|
|
|
__func__);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations iio_debugfs_reg_fops = {
|
2012-05-03 01:50:51 +00:00
|
|
|
.open = simple_open,
|
2012-03-01 09:51:03 +00:00
|
|
|
.read = iio_debugfs_read_reg,
|
|
|
|
.write = iio_debugfs_write_reg,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void iio_device_unregister_debugfs(struct iio_dev *indio_dev)
|
|
|
|
{
|
|
|
|
debugfs_remove_recursive(indio_dev->debugfs_dentry);
|
2009-08-18 17:06:19 +00:00
|
|
|
}
|
|
|
|
|
2012-03-01 09:51:03 +00:00
|
|
|
static int iio_device_register_debugfs(struct iio_dev *indio_dev)
|
|
|
|
{
|
|
|
|
struct dentry *d;
|
|
|
|
|
|
|
|
if (indio_dev->info->debugfs_reg_access == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2012-05-03 14:56:58 +00:00
|
|
|
if (!iio_debugfs_dentry)
|
2012-03-01 09:51:03 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
indio_dev->debugfs_dentry =
|
|
|
|
debugfs_create_dir(dev_name(&indio_dev->dev),
|
|
|
|
iio_debugfs_dentry);
|
|
|
|
if (indio_dev->debugfs_dentry == NULL) {
|
|
|
|
dev_warn(indio_dev->dev.parent,
|
|
|
|
"Failed to create debugfs directory\n");
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
d = debugfs_create_file("direct_reg_access", 0644,
|
|
|
|
indio_dev->debugfs_dentry,
|
|
|
|
indio_dev, &iio_debugfs_reg_fops);
|
|
|
|
if (!d) {
|
|
|
|
iio_device_unregister_debugfs(indio_dev);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static int iio_device_register_debugfs(struct iio_dev *indio_dev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void iio_device_unregister_debugfs(struct iio_dev *indio_dev)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_DEBUG_FS */
|
|
|
|
|
2012-03-06 19:43:45 +00:00
|
|
|
static ssize_t iio_read_channel_ext_info(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
|
|
|
{
|
2012-05-12 13:39:33 +00:00
|
|
|
struct iio_dev *indio_dev = dev_to_iio_dev(dev);
|
2012-03-06 19:43:45 +00:00
|
|
|
struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
|
|
|
|
const struct iio_chan_spec_ext_info *ext_info;
|
|
|
|
|
|
|
|
ext_info = &this_attr->c->ext_info[this_attr->address];
|
|
|
|
|
2012-04-27 08:58:36 +00:00
|
|
|
return ext_info->read(indio_dev, ext_info->private, this_attr->c, buf);
|
2012-03-06 19:43:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t iio_write_channel_ext_info(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
const char *buf,
|
|
|
|
size_t len)
|
|
|
|
{
|
2012-05-12 13:39:33 +00:00
|
|
|
struct iio_dev *indio_dev = dev_to_iio_dev(dev);
|
2012-03-06 19:43:45 +00:00
|
|
|
struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
|
|
|
|
const struct iio_chan_spec_ext_info *ext_info;
|
|
|
|
|
|
|
|
ext_info = &this_attr->c->ext_info[this_attr->address];
|
|
|
|
|
2012-04-27 08:58:36 +00:00
|
|
|
return ext_info->write(indio_dev, ext_info->private,
|
|
|
|
this_attr->c, buf, len);
|
2012-03-06 19:43:45 +00:00
|
|
|
}
|
|
|
|
|
2012-06-04 09:36:11 +00:00
|
|
|
ssize_t iio_enum_available_read(struct iio_dev *indio_dev,
|
|
|
|
uintptr_t priv, const struct iio_chan_spec *chan, char *buf)
|
|
|
|
{
|
|
|
|
const struct iio_enum *e = (const struct iio_enum *)priv;
|
|
|
|
unsigned int i;
|
|
|
|
size_t len = 0;
|
|
|
|
|
|
|
|
if (!e->num_items)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 0; i < e->num_items; ++i)
|
2012-06-05 16:24:12 +00:00
|
|
|
len += scnprintf(buf + len, PAGE_SIZE - len, "%s ", e->items[i]);
|
2012-06-04 09:36:11 +00:00
|
|
|
|
|
|
|
/* replace last space with a newline */
|
|
|
|
buf[len - 1] = '\n';
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(iio_enum_available_read);
|
|
|
|
|
|
|
|
ssize_t iio_enum_read(struct iio_dev *indio_dev,
|
|
|
|
uintptr_t priv, const struct iio_chan_spec *chan, char *buf)
|
|
|
|
{
|
|
|
|
const struct iio_enum *e = (const struct iio_enum *)priv;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!e->get)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
i = e->get(indio_dev, chan);
|
|
|
|
if (i < 0)
|
|
|
|
return i;
|
|
|
|
else if (i >= e->num_items)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
return sprintf(buf, "%s\n", e->items[i]);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(iio_enum_read);
|
|
|
|
|
|
|
|
ssize_t iio_enum_write(struct iio_dev *indio_dev,
|
|
|
|
uintptr_t priv, const struct iio_chan_spec *chan, const char *buf,
|
|
|
|
size_t len)
|
|
|
|
{
|
|
|
|
const struct iio_enum *e = (const struct iio_enum *)priv;
|
|
|
|
unsigned int i;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!e->set)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
for (i = 0; i < e->num_items; i++) {
|
|
|
|
if (sysfs_streq(buf, e->items[i]))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == e->num_items)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
ret = e->set(indio_dev, chan, i);
|
|
|
|
return ret ? ret : len;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(iio_enum_write);
|
|
|
|
|
2011-05-18 13:40:51 +00:00
|
|
|
static ssize_t iio_read_channel_info(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
2009-08-18 17:06:19 +00:00
|
|
|
{
|
2012-05-12 13:39:33 +00:00
|
|
|
struct iio_dev *indio_dev = dev_to_iio_dev(dev);
|
2011-05-18 13:40:51 +00:00
|
|
|
struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
|
2012-09-14 15:21:00 +00:00
|
|
|
unsigned long long tmp;
|
2011-05-18 13:40:51 +00:00
|
|
|
int val, val2;
|
2012-05-11 09:36:52 +00:00
|
|
|
bool scale_db = false;
|
2011-05-18 13:42:37 +00:00
|
|
|
int ret = indio_dev->info->read_raw(indio_dev, this_attr->c,
|
|
|
|
&val, &val2, this_attr->address);
|
2011-05-18 13:40:51 +00:00
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2009-08-18 17:06:19 +00:00
|
|
|
|
2012-05-11 09:36:52 +00:00
|
|
|
switch (ret) {
|
|
|
|
case IIO_VAL_INT:
|
2011-05-18 13:40:51 +00:00
|
|
|
return sprintf(buf, "%d\n", val);
|
2012-05-11 09:36:52 +00:00
|
|
|
case IIO_VAL_INT_PLUS_MICRO_DB:
|
|
|
|
scale_db = true;
|
|
|
|
case IIO_VAL_INT_PLUS_MICRO:
|
2011-05-18 13:40:51 +00:00
|
|
|
if (val2 < 0)
|
2012-05-11 09:36:52 +00:00
|
|
|
return sprintf(buf, "-%d.%06u%s\n", val, -val2,
|
|
|
|
scale_db ? " dB" : "");
|
2011-05-18 13:40:51 +00:00
|
|
|
else
|
2012-05-11 09:36:52 +00:00
|
|
|
return sprintf(buf, "%d.%06u%s\n", val, val2,
|
|
|
|
scale_db ? " dB" : "");
|
|
|
|
case IIO_VAL_INT_PLUS_NANO:
|
2011-06-27 12:07:07 +00:00
|
|
|
if (val2 < 0)
|
|
|
|
return sprintf(buf, "-%d.%09u\n", val, -val2);
|
|
|
|
else
|
|
|
|
return sprintf(buf, "%d.%09u\n", val, val2);
|
2012-09-14 15:21:00 +00:00
|
|
|
case IIO_VAL_FRACTIONAL:
|
|
|
|
tmp = div_s64((s64)val * 1000000000LL, val2);
|
|
|
|
val2 = do_div(tmp, 1000000000LL);
|
|
|
|
val = tmp;
|
|
|
|
return sprintf(buf, "%d.%09u\n", val, val2);
|
2012-10-16 16:29:00 +00:00
|
|
|
case IIO_VAL_FRACTIONAL_LOG2:
|
|
|
|
tmp = (s64)val * 1000000000LL >> val2;
|
|
|
|
val2 = do_div(tmp, 1000000000LL);
|
|
|
|
val = tmp;
|
|
|
|
return sprintf(buf, "%d.%09u\n", val, val2);
|
2012-05-11 09:36:52 +00:00
|
|
|
default:
|
2011-05-18 13:40:51 +00:00
|
|
|
return 0;
|
2012-05-11 09:36:52 +00:00
|
|
|
}
|
2011-05-18 13:40:51 +00:00
|
|
|
}
|
|
|
|
|
2012-11-20 13:36:00 +00:00
|
|
|
/**
|
|
|
|
* iio_str_to_fixpoint() - Parse a fixed-point number from a string
|
|
|
|
* @str: The string to parse
|
|
|
|
* @fract_mult: Multiplier for the first decimal place, should be a power of 10
|
|
|
|
* @integer: The integer part of the number
|
|
|
|
* @fract: The fractional part of the number
|
|
|
|
*
|
|
|
|
* Returns 0 on success, or a negative error code if the string could not be
|
|
|
|
* parsed.
|
|
|
|
*/
|
|
|
|
int iio_str_to_fixpoint(const char *str, int fract_mult,
|
|
|
|
int *integer, int *fract)
|
|
|
|
{
|
|
|
|
int i = 0, f = 0;
|
|
|
|
bool integer_part = true, negative = false;
|
|
|
|
|
|
|
|
if (str[0] == '-') {
|
|
|
|
negative = true;
|
|
|
|
str++;
|
|
|
|
} else if (str[0] == '+') {
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (*str) {
|
|
|
|
if ('0' <= *str && *str <= '9') {
|
|
|
|
if (integer_part) {
|
|
|
|
i = i * 10 + *str - '0';
|
|
|
|
} else {
|
|
|
|
f += fract_mult * (*str - '0');
|
|
|
|
fract_mult /= 10;
|
|
|
|
}
|
|
|
|
} else if (*str == '\n') {
|
|
|
|
if (*(str + 1) == '\0')
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
return -EINVAL;
|
|
|
|
} else if (*str == '.' && integer_part) {
|
|
|
|
integer_part = false;
|
|
|
|
} else {
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (negative) {
|
|
|
|
if (i)
|
|
|
|
i = -i;
|
|
|
|
else
|
|
|
|
f = -f;
|
|
|
|
}
|
|
|
|
|
|
|
|
*integer = i;
|
|
|
|
*fract = f;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(iio_str_to_fixpoint);
|
|
|
|
|
2011-05-18 13:40:51 +00:00
|
|
|
static ssize_t iio_write_channel_info(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
const char *buf,
|
|
|
|
size_t len)
|
|
|
|
{
|
2012-05-12 13:39:33 +00:00
|
|
|
struct iio_dev *indio_dev = dev_to_iio_dev(dev);
|
2011-05-18 13:40:51 +00:00
|
|
|
struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
|
2012-11-20 13:36:00 +00:00
|
|
|
int ret, fract_mult = 100000;
|
|
|
|
int integer, fract;
|
2011-05-18 13:40:51 +00:00
|
|
|
|
|
|
|
/* Assumes decimal - precision based on number of digits */
|
2011-05-18 13:42:37 +00:00
|
|
|
if (!indio_dev->info->write_raw)
|
2011-05-18 13:40:51 +00:00
|
|
|
return -EINVAL;
|
2011-06-27 12:07:10 +00:00
|
|
|
|
|
|
|
if (indio_dev->info->write_raw_get_fmt)
|
|
|
|
switch (indio_dev->info->write_raw_get_fmt(indio_dev,
|
|
|
|
this_attr->c, this_attr->address)) {
|
|
|
|
case IIO_VAL_INT_PLUS_MICRO:
|
|
|
|
fract_mult = 100000;
|
|
|
|
break;
|
|
|
|
case IIO_VAL_INT_PLUS_NANO:
|
|
|
|
fract_mult = 100000000;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2012-11-20 13:36:00 +00:00
|
|
|
ret = iio_str_to_fixpoint(buf, fract_mult, &integer, &fract);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2011-05-18 13:40:51 +00:00
|
|
|
|
2011-05-18 13:42:37 +00:00
|
|
|
ret = indio_dev->info->write_raw(indio_dev, this_attr->c,
|
2011-06-27 12:07:10 +00:00
|
|
|
integer, fract, this_attr->address);
|
2011-05-18 13:40:51 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2011-08-12 16:56:03 +00:00
|
|
|
static
|
2011-05-18 13:40:51 +00:00
|
|
|
int __iio_device_attr_init(struct device_attribute *dev_attr,
|
|
|
|
const char *postfix,
|
|
|
|
struct iio_chan_spec const *chan,
|
|
|
|
ssize_t (*readfunc)(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf),
|
|
|
|
ssize_t (*writefunc)(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
const char *buf,
|
|
|
|
size_t len),
|
|
|
|
bool generic)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
char *name_format, *full_postfix;
|
|
|
|
sysfs_attr_init(&dev_attr->attr);
|
|
|
|
|
2011-09-02 16:14:45 +00:00
|
|
|
/* Build up postfix of <extend_name>_<modifier>_postfix */
|
2011-10-26 16:27:42 +00:00
|
|
|
if (chan->modified && !generic) {
|
2011-09-02 16:14:45 +00:00
|
|
|
if (chan->extend_name)
|
|
|
|
full_postfix = kasprintf(GFP_KERNEL, "%s_%s_%s",
|
|
|
|
iio_modifier_names[chan
|
|
|
|
->channel2],
|
|
|
|
chan->extend_name,
|
|
|
|
postfix);
|
|
|
|
else
|
|
|
|
full_postfix = kasprintf(GFP_KERNEL, "%s_%s",
|
|
|
|
iio_modifier_names[chan
|
|
|
|
->channel2],
|
|
|
|
postfix);
|
|
|
|
} else {
|
|
|
|
if (chan->extend_name == NULL)
|
|
|
|
full_postfix = kstrdup(postfix, GFP_KERNEL);
|
|
|
|
else
|
|
|
|
full_postfix = kasprintf(GFP_KERNEL,
|
|
|
|
"%s_%s",
|
|
|
|
chan->extend_name,
|
|
|
|
postfix);
|
|
|
|
}
|
|
|
|
if (full_postfix == NULL) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto error_ret;
|
|
|
|
}
|
2011-05-18 13:40:51 +00:00
|
|
|
|
2012-03-01 06:00:38 +00:00
|
|
|
if (chan->differential) { /* Differential can not have modifier */
|
2011-09-02 16:14:45 +00:00
|
|
|
if (generic)
|
|
|
|
name_format
|
|
|
|
= kasprintf(GFP_KERNEL, "%s_%s-%s_%s",
|
|
|
|
iio_direction[chan->output],
|
|
|
|
iio_chan_type_name_spec[chan->type],
|
|
|
|
iio_chan_type_name_spec[chan->type],
|
|
|
|
full_postfix);
|
|
|
|
else if (chan->indexed)
|
|
|
|
name_format
|
|
|
|
= kasprintf(GFP_KERNEL, "%s_%s%d-%s%d_%s",
|
|
|
|
iio_direction[chan->output],
|
|
|
|
iio_chan_type_name_spec[chan->type],
|
|
|
|
chan->channel,
|
|
|
|
iio_chan_type_name_spec[chan->type],
|
|
|
|
chan->channel2,
|
|
|
|
full_postfix);
|
|
|
|
else {
|
|
|
|
WARN_ON("Differential channels must be indexed\n");
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto error_free_full_postfix;
|
|
|
|
}
|
|
|
|
} else { /* Single ended */
|
|
|
|
if (generic)
|
|
|
|
name_format
|
|
|
|
= kasprintf(GFP_KERNEL, "%s_%s_%s",
|
|
|
|
iio_direction[chan->output],
|
|
|
|
iio_chan_type_name_spec[chan->type],
|
|
|
|
full_postfix);
|
|
|
|
else if (chan->indexed)
|
|
|
|
name_format
|
|
|
|
= kasprintf(GFP_KERNEL, "%s_%s%d_%s",
|
|
|
|
iio_direction[chan->output],
|
|
|
|
iio_chan_type_name_spec[chan->type],
|
|
|
|
chan->channel,
|
|
|
|
full_postfix);
|
|
|
|
else
|
|
|
|
name_format
|
|
|
|
= kasprintf(GFP_KERNEL, "%s_%s_%s",
|
|
|
|
iio_direction[chan->output],
|
|
|
|
iio_chan_type_name_spec[chan->type],
|
|
|
|
full_postfix);
|
|
|
|
}
|
2011-05-18 13:40:51 +00:00
|
|
|
if (name_format == NULL) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto error_free_full_postfix;
|
|
|
|
}
|
|
|
|
dev_attr->attr.name = kasprintf(GFP_KERNEL,
|
|
|
|
name_format,
|
|
|
|
chan->channel,
|
|
|
|
chan->channel2);
|
|
|
|
if (dev_attr->attr.name == NULL) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto error_free_name_format;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (readfunc) {
|
|
|
|
dev_attr->attr.mode |= S_IRUGO;
|
|
|
|
dev_attr->show = readfunc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (writefunc) {
|
|
|
|
dev_attr->attr.mode |= S_IWUSR;
|
|
|
|
dev_attr->store = writefunc;
|
|
|
|
}
|
|
|
|
kfree(name_format);
|
|
|
|
kfree(full_postfix);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
error_free_name_format:
|
|
|
|
kfree(name_format);
|
|
|
|
error_free_full_postfix:
|
|
|
|
kfree(full_postfix);
|
|
|
|
error_ret:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-12 16:56:03 +00:00
|
|
|
static void __iio_device_attr_deinit(struct device_attribute *dev_attr)
|
2011-05-18 13:40:51 +00:00
|
|
|
{
|
|
|
|
kfree(dev_attr->attr.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
int __iio_add_chan_devattr(const char *postfix,
|
|
|
|
struct iio_chan_spec const *chan,
|
|
|
|
ssize_t (*readfunc)(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf),
|
|
|
|
ssize_t (*writefunc)(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
const char *buf,
|
|
|
|
size_t len),
|
2011-09-02 16:14:41 +00:00
|
|
|
u64 mask,
|
2011-05-18 13:40:51 +00:00
|
|
|
bool generic,
|
|
|
|
struct device *dev,
|
|
|
|
struct list_head *attr_list)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct iio_dev_attr *iio_attr, *t;
|
|
|
|
|
|
|
|
iio_attr = kzalloc(sizeof *iio_attr, GFP_KERNEL);
|
|
|
|
if (iio_attr == NULL) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto error_ret;
|
|
|
|
}
|
|
|
|
ret = __iio_device_attr_init(&iio_attr->dev_attr,
|
|
|
|
postfix, chan,
|
|
|
|
readfunc, writefunc, generic);
|
|
|
|
if (ret)
|
|
|
|
goto error_iio_dev_attr_free;
|
|
|
|
iio_attr->c = chan;
|
|
|
|
iio_attr->address = mask;
|
|
|
|
list_for_each_entry(t, attr_list, l)
|
|
|
|
if (strcmp(t->dev_attr.attr.name,
|
|
|
|
iio_attr->dev_attr.attr.name) == 0) {
|
|
|
|
if (!generic)
|
|
|
|
dev_err(dev, "tried to double register : %s\n",
|
|
|
|
t->dev_attr.attr.name);
|
|
|
|
ret = -EBUSY;
|
|
|
|
goto error_device_attr_deinit;
|
|
|
|
}
|
|
|
|
list_add(&iio_attr->l, attr_list);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
error_device_attr_deinit:
|
|
|
|
__iio_device_attr_deinit(&iio_attr->dev_attr);
|
|
|
|
error_iio_dev_attr_free:
|
|
|
|
kfree(iio_attr);
|
|
|
|
error_ret:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-10-06 16:14:35 +00:00
|
|
|
static int iio_device_add_channel_sysfs(struct iio_dev *indio_dev,
|
2011-05-18 13:40:51 +00:00
|
|
|
struct iio_chan_spec const *chan)
|
|
|
|
{
|
2012-04-15 16:41:16 +00:00
|
|
|
int ret, attrcount = 0;
|
2012-04-15 16:41:30 +00:00
|
|
|
int i;
|
2012-02-21 17:38:12 +00:00
|
|
|
const struct iio_chan_spec_ext_info *ext_info;
|
2011-05-18 13:40:51 +00:00
|
|
|
|
|
|
|
if (chan->channel < 0)
|
|
|
|
return 0;
|
2013-02-19 21:10:30 +00:00
|
|
|
for_each_set_bit(i, &chan->info_mask_separate, sizeof(long)*8) {
|
|
|
|
ret = __iio_add_chan_devattr(iio_chan_info_postfix[i],
|
|
|
|
chan,
|
|
|
|
&iio_read_channel_info,
|
|
|
|
&iio_write_channel_info,
|
|
|
|
i,
|
|
|
|
0,
|
|
|
|
&indio_dev->dev,
|
|
|
|
&indio_dev->channel_attr_list);
|
|
|
|
if (ret < 0)
|
|
|
|
goto error_ret;
|
|
|
|
attrcount++;
|
|
|
|
}
|
|
|
|
for_each_set_bit(i, &chan->info_mask_shared_by_type, sizeof(long)*8) {
|
|
|
|
ret = __iio_add_chan_devattr(iio_chan_info_postfix[i],
|
|
|
|
chan,
|
|
|
|
&iio_read_channel_info,
|
|
|
|
&iio_write_channel_info,
|
|
|
|
i,
|
|
|
|
1,
|
|
|
|
&indio_dev->dev,
|
|
|
|
&indio_dev->channel_attr_list);
|
|
|
|
if (ret == -EBUSY) {
|
|
|
|
ret = 0;
|
|
|
|
continue;
|
|
|
|
} else if (ret < 0) {
|
|
|
|
goto error_ret;
|
|
|
|
}
|
|
|
|
attrcount++;
|
|
|
|
}
|
2012-02-21 17:38:12 +00:00
|
|
|
|
|
|
|
if (chan->ext_info) {
|
|
|
|
unsigned int i = 0;
|
|
|
|
for (ext_info = chan->ext_info; ext_info->name; ext_info++) {
|
|
|
|
ret = __iio_add_chan_devattr(ext_info->name,
|
|
|
|
chan,
|
|
|
|
ext_info->read ?
|
|
|
|
&iio_read_channel_ext_info : NULL,
|
|
|
|
ext_info->write ?
|
|
|
|
&iio_write_channel_ext_info : NULL,
|
|
|
|
i,
|
|
|
|
ext_info->shared,
|
|
|
|
&indio_dev->dev,
|
|
|
|
&indio_dev->channel_attr_list);
|
|
|
|
i++;
|
|
|
|
if (ret == -EBUSY && ext_info->shared)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
goto error_ret;
|
|
|
|
|
|
|
|
attrcount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-02 16:14:40 +00:00
|
|
|
ret = attrcount;
|
2011-05-18 13:40:51 +00:00
|
|
|
error_ret:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-10-06 16:14:35 +00:00
|
|
|
static void iio_device_remove_and_free_read_attr(struct iio_dev *indio_dev,
|
2011-05-18 13:40:51 +00:00
|
|
|
struct iio_dev_attr *p)
|
|
|
|
{
|
|
|
|
kfree(p->dev_attr.attr.name);
|
|
|
|
kfree(p);
|
|
|
|
}
|
|
|
|
|
2011-05-18 13:41:43 +00:00
|
|
|
static ssize_t iio_show_dev_name(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
|
|
|
{
|
2012-05-12 13:39:33 +00:00
|
|
|
struct iio_dev *indio_dev = dev_to_iio_dev(dev);
|
2011-05-18 13:41:43 +00:00
|
|
|
return sprintf(buf, "%s\n", indio_dev->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static DEVICE_ATTR(name, S_IRUGO, iio_show_dev_name, NULL);
|
|
|
|
|
2011-10-06 16:14:35 +00:00
|
|
|
static int iio_device_register_sysfs(struct iio_dev *indio_dev)
|
2011-05-18 13:40:51 +00:00
|
|
|
{
|
2011-09-02 16:14:40 +00:00
|
|
|
int i, ret = 0, attrcount, attrn, attrcount_orig = 0;
|
2011-05-18 13:40:51 +00:00
|
|
|
struct iio_dev_attr *p, *n;
|
2011-09-02 16:14:40 +00:00
|
|
|
struct attribute **attr;
|
2011-05-18 13:40:51 +00:00
|
|
|
|
2011-09-02 16:14:40 +00:00
|
|
|
/* First count elements in any existing group */
|
2011-10-06 16:14:35 +00:00
|
|
|
if (indio_dev->info->attrs) {
|
|
|
|
attr = indio_dev->info->attrs->attrs;
|
2011-09-02 16:14:40 +00:00
|
|
|
while (*attr++ != NULL)
|
|
|
|
attrcount_orig++;
|
2009-08-18 17:06:19 +00:00
|
|
|
}
|
2011-09-02 16:14:40 +00:00
|
|
|
attrcount = attrcount_orig;
|
2011-05-18 13:40:51 +00:00
|
|
|
/*
|
|
|
|
* New channel registration method - relies on the fact a group does
|
2012-08-26 12:43:00 +00:00
|
|
|
* not need to be initialized if its name is NULL.
|
2011-05-18 13:40:51 +00:00
|
|
|
*/
|
2011-10-06 16:14:35 +00:00
|
|
|
if (indio_dev->channels)
|
|
|
|
for (i = 0; i < indio_dev->num_channels; i++) {
|
|
|
|
ret = iio_device_add_channel_sysfs(indio_dev,
|
|
|
|
&indio_dev
|
2011-05-18 13:40:51 +00:00
|
|
|
->channels[i]);
|
|
|
|
if (ret < 0)
|
|
|
|
goto error_clear_attrs;
|
2011-09-02 16:14:40 +00:00
|
|
|
attrcount += ret;
|
2011-05-18 13:40:51 +00:00
|
|
|
}
|
2011-09-02 16:14:40 +00:00
|
|
|
|
2011-10-06 16:14:35 +00:00
|
|
|
if (indio_dev->name)
|
2011-09-02 16:14:40 +00:00
|
|
|
attrcount++;
|
|
|
|
|
2011-11-29 21:08:00 +00:00
|
|
|
indio_dev->chan_attr_group.attrs = kcalloc(attrcount + 1,
|
|
|
|
sizeof(indio_dev->chan_attr_group.attrs[0]),
|
|
|
|
GFP_KERNEL);
|
2011-10-06 16:14:35 +00:00
|
|
|
if (indio_dev->chan_attr_group.attrs == NULL) {
|
2011-09-02 16:14:40 +00:00
|
|
|
ret = -ENOMEM;
|
|
|
|
goto error_clear_attrs;
|
2011-05-18 13:41:43 +00:00
|
|
|
}
|
2011-09-02 16:14:40 +00:00
|
|
|
/* Copy across original attributes */
|
2011-10-06 16:14:35 +00:00
|
|
|
if (indio_dev->info->attrs)
|
|
|
|
memcpy(indio_dev->chan_attr_group.attrs,
|
|
|
|
indio_dev->info->attrs->attrs,
|
|
|
|
sizeof(indio_dev->chan_attr_group.attrs[0])
|
2011-09-02 16:14:40 +00:00
|
|
|
*attrcount_orig);
|
|
|
|
attrn = attrcount_orig;
|
|
|
|
/* Add all elements from the list. */
|
2011-10-06 16:14:35 +00:00
|
|
|
list_for_each_entry(p, &indio_dev->channel_attr_list, l)
|
|
|
|
indio_dev->chan_attr_group.attrs[attrn++] = &p->dev_attr.attr;
|
|
|
|
if (indio_dev->name)
|
|
|
|
indio_dev->chan_attr_group.attrs[attrn++] = &dev_attr_name.attr;
|
2011-09-02 16:14:40 +00:00
|
|
|
|
2011-10-06 16:14:35 +00:00
|
|
|
indio_dev->groups[indio_dev->groupcounter++] =
|
|
|
|
&indio_dev->chan_attr_group;
|
2011-09-02 16:14:40 +00:00
|
|
|
|
2011-05-18 13:40:51 +00:00
|
|
|
return 0;
|
2011-05-18 13:41:43 +00:00
|
|
|
|
2011-05-18 13:40:51 +00:00
|
|
|
error_clear_attrs:
|
|
|
|
list_for_each_entry_safe(p, n,
|
2011-10-06 16:14:35 +00:00
|
|
|
&indio_dev->channel_attr_list, l) {
|
2011-05-18 13:40:51 +00:00
|
|
|
list_del(&p->l);
|
2011-10-06 16:14:35 +00:00
|
|
|
iio_device_remove_and_free_read_attr(indio_dev, p);
|
2011-05-18 13:40:51 +00:00
|
|
|
}
|
|
|
|
|
2011-09-02 16:14:40 +00:00
|
|
|
return ret;
|
2009-08-18 17:06:19 +00:00
|
|
|
}
|
|
|
|
|
2011-10-06 16:14:35 +00:00
|
|
|
static void iio_device_unregister_sysfs(struct iio_dev *indio_dev)
|
2009-08-18 17:06:19 +00:00
|
|
|
{
|
2011-05-18 13:40:51 +00:00
|
|
|
|
|
|
|
struct iio_dev_attr *p, *n;
|
2011-09-02 16:14:40 +00:00
|
|
|
|
2011-10-06 16:14:35 +00:00
|
|
|
list_for_each_entry_safe(p, n, &indio_dev->channel_attr_list, l) {
|
2011-05-18 13:40:51 +00:00
|
|
|
list_del(&p->l);
|
2011-10-06 16:14:35 +00:00
|
|
|
iio_device_remove_and_free_read_attr(indio_dev, p);
|
2011-05-18 13:40:51 +00:00
|
|
|
}
|
2011-10-06 16:14:35 +00:00
|
|
|
kfree(indio_dev->chan_attr_group.attrs);
|
2009-08-18 17:06:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void iio_dev_release(struct device *device)
|
|
|
|
{
|
2012-05-12 13:39:33 +00:00
|
|
|
struct iio_dev *indio_dev = dev_to_iio_dev(device);
|
2012-06-04 08:41:42 +00:00
|
|
|
if (indio_dev->chrdev.dev)
|
|
|
|
cdev_del(&indio_dev->chrdev);
|
2011-10-06 16:14:35 +00:00
|
|
|
if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
|
|
|
|
iio_device_unregister_trigger_consumer(indio_dev);
|
|
|
|
iio_device_unregister_eventset(indio_dev);
|
|
|
|
iio_device_unregister_sysfs(indio_dev);
|
2012-03-01 09:51:03 +00:00
|
|
|
iio_device_unregister_debugfs(indio_dev);
|
2012-06-04 08:41:42 +00:00
|
|
|
|
|
|
|
ida_simple_remove(&iio_ida, indio_dev->id);
|
|
|
|
kfree(indio_dev);
|
2009-08-18 17:06:19 +00:00
|
|
|
}
|
|
|
|
|
2013-02-07 17:09:00 +00:00
|
|
|
struct device_type iio_device_type = {
|
2009-08-18 17:06:19 +00:00
|
|
|
.name = "iio_device",
|
|
|
|
.release = iio_dev_release,
|
|
|
|
};
|
|
|
|
|
2012-04-26 11:35:01 +00:00
|
|
|
struct iio_dev *iio_device_alloc(int sizeof_priv)
|
2009-08-18 17:06:19 +00:00
|
|
|
{
|
2011-04-15 17:55:56 +00:00
|
|
|
struct iio_dev *dev;
|
|
|
|
size_t alloc_size;
|
|
|
|
|
|
|
|
alloc_size = sizeof(struct iio_dev);
|
|
|
|
if (sizeof_priv) {
|
|
|
|
alloc_size = ALIGN(alloc_size, IIO_ALIGN);
|
|
|
|
alloc_size += sizeof_priv;
|
|
|
|
}
|
|
|
|
/* ensure 32-byte alignment of whole construct ? */
|
|
|
|
alloc_size += IIO_ALIGN - 1;
|
|
|
|
|
|
|
|
dev = kzalloc(alloc_size, GFP_KERNEL);
|
2009-08-18 17:06:19 +00:00
|
|
|
|
|
|
|
if (dev) {
|
2011-09-02 16:14:40 +00:00
|
|
|
dev->dev.groups = dev->groups;
|
2013-02-07 17:09:00 +00:00
|
|
|
dev->dev.type = &iio_device_type;
|
2010-05-04 13:43:00 +00:00
|
|
|
dev->dev.bus = &iio_bus_type;
|
2009-08-18 17:06:19 +00:00
|
|
|
device_initialize(&dev->dev);
|
|
|
|
dev_set_drvdata(&dev->dev, (void *)dev);
|
|
|
|
mutex_init(&dev->mlock);
|
2012-02-15 19:48:00 +00:00
|
|
|
mutex_init(&dev->info_exist_lock);
|
2012-06-04 08:41:42 +00:00
|
|
|
INIT_LIST_HEAD(&dev->channel_attr_list);
|
2011-09-14 12:01:25 +00:00
|
|
|
|
|
|
|
dev->id = ida_simple_get(&iio_ida, 0, 0, GFP_KERNEL);
|
|
|
|
if (dev->id < 0) {
|
|
|
|
/* cannot use a dev_err as the name isn't available */
|
|
|
|
printk(KERN_ERR "Failed to get id\n");
|
|
|
|
kfree(dev);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
dev_set_name(&dev->dev, "iio:device%d", dev->id);
|
2012-06-30 19:06:00 +00:00
|
|
|
INIT_LIST_HEAD(&dev->buffer_list);
|
2009-08-18 17:06:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return dev;
|
|
|
|
}
|
2012-04-26 11:35:01 +00:00
|
|
|
EXPORT_SYMBOL(iio_device_alloc);
|
2009-08-18 17:06:19 +00:00
|
|
|
|
2012-04-26 11:35:01 +00:00
|
|
|
void iio_device_free(struct iio_dev *dev)
|
2009-08-18 17:06:19 +00:00
|
|
|
{
|
2012-06-04 08:41:42 +00:00
|
|
|
if (dev)
|
|
|
|
put_device(&dev->dev);
|
2009-08-18 17:06:19 +00:00
|
|
|
}
|
2012-04-26 11:35:01 +00:00
|
|
|
EXPORT_SYMBOL(iio_device_free);
|
2009-08-18 17:06:19 +00:00
|
|
|
|
2011-08-30 11:32:47 +00:00
|
|
|
/**
|
2011-09-21 10:15:57 +00:00
|
|
|
* iio_chrdev_open() - chrdev file open for buffer access and ioctls
|
2011-08-30 11:32:47 +00:00
|
|
|
**/
|
|
|
|
static int iio_chrdev_open(struct inode *inode, struct file *filp)
|
|
|
|
{
|
2011-10-06 16:14:35 +00:00
|
|
|
struct iio_dev *indio_dev = container_of(inode->i_cdev,
|
2011-08-30 11:32:47 +00:00
|
|
|
struct iio_dev, chrdev);
|
2011-12-19 14:23:45 +00:00
|
|
|
|
|
|
|
if (test_and_set_bit(IIO_BUSY_BIT_POS, &indio_dev->flags))
|
|
|
|
return -EBUSY;
|
|
|
|
|
2011-10-06 16:14:35 +00:00
|
|
|
filp->private_data = indio_dev;
|
2011-09-21 10:16:02 +00:00
|
|
|
|
2011-12-19 14:23:49 +00:00
|
|
|
return 0;
|
2011-08-30 11:32:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-09-21 10:15:57 +00:00
|
|
|
* iio_chrdev_release() - chrdev file close buffer access and ioctls
|
2011-08-30 11:32:47 +00:00
|
|
|
**/
|
|
|
|
static int iio_chrdev_release(struct inode *inode, struct file *filp)
|
|
|
|
{
|
2011-12-19 14:23:45 +00:00
|
|
|
struct iio_dev *indio_dev = container_of(inode->i_cdev,
|
|
|
|
struct iio_dev, chrdev);
|
|
|
|
clear_bit(IIO_BUSY_BIT_POS, &indio_dev->flags);
|
2011-08-30 11:32:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Somewhat of a cross file organization violation - ioctls here are actually
|
|
|
|
* event related */
|
|
|
|
static long iio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
|
|
|
|
{
|
|
|
|
struct iio_dev *indio_dev = filp->private_data;
|
|
|
|
int __user *ip = (int __user *)arg;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
if (cmd == IIO_GET_EVENT_FD_IOCTL) {
|
|
|
|
fd = iio_event_getfd(indio_dev);
|
|
|
|
if (copy_to_user(ip, &fd, sizeof(fd)))
|
|
|
|
return -EFAULT;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2011-09-21 10:15:57 +00:00
|
|
|
static const struct file_operations iio_buffer_fileops = {
|
|
|
|
.read = iio_buffer_read_first_n_outer_addr,
|
2011-08-30 11:32:47 +00:00
|
|
|
.release = iio_chrdev_release,
|
|
|
|
.open = iio_chrdev_open,
|
2011-09-21 10:15:57 +00:00
|
|
|
.poll = iio_buffer_poll_addr,
|
2011-08-30 11:32:47 +00:00
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.llseek = noop_llseek,
|
|
|
|
.unlocked_ioctl = iio_ioctl,
|
|
|
|
.compat_ioctl = iio_ioctl,
|
|
|
|
};
|
|
|
|
|
2012-03-01 09:51:04 +00:00
|
|
|
static const struct iio_buffer_setup_ops noop_ring_setup_ops;
|
|
|
|
|
2011-10-06 16:14:35 +00:00
|
|
|
int iio_device_register(struct iio_dev *indio_dev)
|
2009-08-18 17:06:19 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2013-02-07 17:09:00 +00:00
|
|
|
/* If the calling driver did not initialize of_node, do it here */
|
|
|
|
if (!indio_dev->dev.of_node && indio_dev->dev.parent)
|
|
|
|
indio_dev->dev.of_node = indio_dev->dev.parent->of_node;
|
|
|
|
|
2011-08-30 11:32:47 +00:00
|
|
|
/* configure elements for the chrdev */
|
2011-10-06 16:14:35 +00:00
|
|
|
indio_dev->dev.devt = MKDEV(MAJOR(iio_devt), indio_dev->id);
|
2009-08-18 17:06:19 +00:00
|
|
|
|
2012-03-01 09:51:03 +00:00
|
|
|
ret = iio_device_register_debugfs(indio_dev);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(indio_dev->dev.parent,
|
|
|
|
"Failed to register debugfs interfaces\n");
|
|
|
|
goto error_ret;
|
|
|
|
}
|
2011-10-06 16:14:35 +00:00
|
|
|
ret = iio_device_register_sysfs(indio_dev);
|
2009-08-18 17:06:19 +00:00
|
|
|
if (ret) {
|
2011-10-06 16:14:35 +00:00
|
|
|
dev_err(indio_dev->dev.parent,
|
2009-08-18 17:06:19 +00:00
|
|
|
"Failed to register sysfs interfaces\n");
|
2012-03-01 09:51:03 +00:00
|
|
|
goto error_unreg_debugfs;
|
2009-08-18 17:06:19 +00:00
|
|
|
}
|
2011-10-06 16:14:35 +00:00
|
|
|
ret = iio_device_register_eventset(indio_dev);
|
2009-08-18 17:06:19 +00:00
|
|
|
if (ret) {
|
2011-10-06 16:14:35 +00:00
|
|
|
dev_err(indio_dev->dev.parent,
|
2010-04-29 17:27:31 +00:00
|
|
|
"Failed to register event set\n");
|
2009-08-18 17:06:19 +00:00
|
|
|
goto error_free_sysfs;
|
|
|
|
}
|
2011-10-06 16:14:35 +00:00
|
|
|
if (indio_dev->modes & INDIO_BUFFER_TRIGGERED)
|
|
|
|
iio_device_register_trigger_consumer(indio_dev);
|
2009-08-18 17:06:19 +00:00
|
|
|
|
2012-03-01 09:51:04 +00:00
|
|
|
if ((indio_dev->modes & INDIO_ALL_BUFFER_MODES) &&
|
|
|
|
indio_dev->setup_ops == NULL)
|
|
|
|
indio_dev->setup_ops = &noop_ring_setup_ops;
|
|
|
|
|
2011-10-06 16:14:35 +00:00
|
|
|
ret = device_add(&indio_dev->dev);
|
2011-09-02 16:14:40 +00:00
|
|
|
if (ret < 0)
|
|
|
|
goto error_unreg_eventset;
|
2011-10-06 16:14:35 +00:00
|
|
|
cdev_init(&indio_dev->chrdev, &iio_buffer_fileops);
|
|
|
|
indio_dev->chrdev.owner = indio_dev->info->driver_module;
|
|
|
|
ret = cdev_add(&indio_dev->chrdev, indio_dev->dev.devt, 1);
|
2011-09-02 16:14:40 +00:00
|
|
|
if (ret < 0)
|
|
|
|
goto error_del_device;
|
2009-08-18 17:06:19 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
error_del_device:
|
2011-10-06 16:14:35 +00:00
|
|
|
device_del(&indio_dev->dev);
|
2011-09-02 16:14:40 +00:00
|
|
|
error_unreg_eventset:
|
2011-10-06 16:14:35 +00:00
|
|
|
iio_device_unregister_eventset(indio_dev);
|
2011-09-02 16:14:40 +00:00
|
|
|
error_free_sysfs:
|
2011-10-06 16:14:35 +00:00
|
|
|
iio_device_unregister_sysfs(indio_dev);
|
2012-03-01 09:51:03 +00:00
|
|
|
error_unreg_debugfs:
|
|
|
|
iio_device_unregister_debugfs(indio_dev);
|
2009-08-18 17:06:19 +00:00
|
|
|
error_ret:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(iio_device_register);
|
|
|
|
|
2011-10-06 16:14:35 +00:00
|
|
|
void iio_device_unregister(struct iio_dev *indio_dev)
|
2009-08-18 17:06:19 +00:00
|
|
|
{
|
2012-02-15 19:48:00 +00:00
|
|
|
mutex_lock(&indio_dev->info_exist_lock);
|
|
|
|
indio_dev->info = NULL;
|
|
|
|
mutex_unlock(&indio_dev->info_exist_lock);
|
2012-06-04 08:41:42 +00:00
|
|
|
device_del(&indio_dev->dev);
|
2009-08-18 17:06:19 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(iio_device_unregister);
|
|
|
|
subsys_initcall(iio_init);
|
|
|
|
module_exit(iio_exit);
|
|
|
|
|
2012-09-02 20:27:56 +00:00
|
|
|
MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>");
|
2009-08-18 17:06:19 +00:00
|
|
|
MODULE_DESCRIPTION("Industrial I/O core");
|
|
|
|
MODULE_LICENSE("GPL");
|