Re: [PATCH v5 4/5] iio: common: ssp_sensors: Add sensorhub accelerometer sensor
On 28/01/15 14:05, Karol Wrona wrote: > This patch adds accelerometer iio driver which uses sensorhub as data > provider. > > Signed-off-by: Karol Wrona > Acked-by: Kyungmin Park Applied > --- > drivers/iio/accel/Makefile |1 + > drivers/iio/accel/ssp_accel_sensor.c | 169 > ++ > 2 files changed, 170 insertions(+) > create mode 100644 drivers/iio/accel/ssp_accel_sensor.c > > diff --git a/drivers/iio/accel/Makefile b/drivers/iio/accel/Makefile > index de5b9cb..69c64b6 100644 > --- a/drivers/iio/accel/Makefile > +++ b/drivers/iio/accel/Makefile > @@ -10,6 +10,7 @@ obj-$(CONFIG_KXCJK1013) += kxcjk-1013.o > obj-$(CONFIG_KXSD9) += kxsd9.o > obj-$(CONFIG_MMA8452)+= mma8452.o > obj-$(CONFIG_MMA9551)+= mma9551.o > +obj-$(CONFIG_IIO_SSP_SENSORS_COMMONS) += ssp_accel_sensor.o > > obj-$(CONFIG_IIO_ST_ACCEL_3AXIS) += st_accel.o > st_accel-y := st_accel_core.o > diff --git a/drivers/iio/accel/ssp_accel_sensor.c > b/drivers/iio/accel/ssp_accel_sensor.c > new file mode 100644 > index 000..4ae05fc > --- /dev/null > +++ b/drivers/iio/accel/ssp_accel_sensor.c > @@ -0,0 +1,169 @@ > +/* > + * Copyright (C) 2014, Samsung Electronics Co. Ltd. All Rights Reserved. > + * > + * This program is free software; you can redistribute it and/or modify > + * it under the terms of the GNU General Public License as published by > + * the Free Software Foundation; either version 2 of the License, or > + * (at your option) any later version. > + * > + * This program is distributed in the hope that it will be useful, > + * but WITHOUT ANY WARRANTY; without even the implied warranty of > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > + * GNU General Public License for more details. > + * > + */ > + > +#include > +#include > +#include > +#include > +#include > +#include > +#include "../common/ssp_sensors/ssp_iio_sensor.h" > + > +#define SSP_CHANNEL_COUNT 3 > + > +#define SSP_ACCEL_NAME "ssp-accelerometer" > +static const char ssp_accel_device_name[] = SSP_ACCEL_NAME; > + > +enum ssp_accel_3d_channel { > + SSP_CHANNEL_SCAN_INDEX_X, > + SSP_CHANNEL_SCAN_INDEX_Y, > + SSP_CHANNEL_SCAN_INDEX_Z, > + SSP_CHANNEL_SCAN_INDEX_TIME, > +}; > + > +static int ssp_accel_read_raw(struct iio_dev *indio_dev, > + struct iio_chan_spec const *chan, int *val, > + int *val2, long mask) > +{ > + u32 t; > + struct ssp_data *data = dev_get_drvdata(indio_dev->dev.parent->parent); > + > + switch (mask) { > + case IIO_CHAN_INFO_SAMP_FREQ: > + t = ssp_get_sensor_delay(data, SSP_ACCELEROMETER_SENSOR); > + ssp_convert_to_freq(t, val, val2); > + return IIO_VAL_INT_PLUS_MICRO; > + default: > + break; > + } > + > + return -EINVAL; > +} > + > +static int ssp_accel_write_raw(struct iio_dev *indio_dev, > +struct iio_chan_spec const *chan, int val, > +int val2, long mask) > +{ > + int ret; > + struct ssp_data *data = dev_get_drvdata(indio_dev->dev.parent->parent); > + > + switch (mask) { > + case IIO_CHAN_INFO_SAMP_FREQ: > + ret = ssp_convert_to_time(val, val2); > + ret = ssp_change_delay(data, SSP_ACCELEROMETER_SENSOR, ret); > + if (ret < 0) > + dev_err(&indio_dev->dev, "accel sensor enable fail\n"); > + > + return ret; > + default: > + break; > + } > + > + return -EINVAL; > +} > + > +static struct iio_info ssp_accel_iio_info = { > + .read_raw = &ssp_accel_read_raw, > + .write_raw = &ssp_accel_write_raw, > +}; > + > +static const unsigned long ssp_accel_scan_mask[] = { 0x7, 0, }; > + > +static const struct iio_chan_spec ssp_acc_channels[] = { > + SSP_CHANNEL_AG(IIO_ACCEL, IIO_MOD_X, SSP_CHANNEL_SCAN_INDEX_X), > + SSP_CHANNEL_AG(IIO_ACCEL, IIO_MOD_Y, SSP_CHANNEL_SCAN_INDEX_Y), > + SSP_CHANNEL_AG(IIO_ACCEL, IIO_MOD_Z, SSP_CHANNEL_SCAN_INDEX_Z), > + SSP_CHAN_TIMESTAMP(SSP_CHANNEL_SCAN_INDEX_TIME), > +}; > + > +static int ssp_process_accel_data(struct iio_dev *indio_dev, void *buf, > + int64_t timestamp) > +{ > + return ssp_common_process_data(indio_dev, buf, SSP_ACCELEROMETER_SIZE, > +timestamp); > +} > + > +static const struct iio_buffer_setup_ops ssp_accel_buffer_ops = { > + .postenable = &ssp_common_buffer_postenable, > + .postdisable = &ssp_common_buffer_postdisable, > +}; > + > +static int ssp_accel_probe(struct platform_device *pdev) > +{ > + int ret; > + struct iio_dev *indio_dev; > + struct ssp_sensor_data *spd; > + struct iio_buffer *buffer; > + > + indio_dev = devm_iio_device_alloc(&pdev->dev, sizeof(*spd)); > + if (!indio_dev) > + return -ENOMEM; > + > + spd = iio_priv(indio_dev); > + > + spd->process_data = ss
[PATCH v5 4/5] iio: common: ssp_sensors: Add sensorhub accelerometer sensor
This patch adds accelerometer iio driver which uses sensorhub as data provider. Signed-off-by: Karol Wrona Acked-by: Kyungmin Park --- drivers/iio/accel/Makefile |1 + drivers/iio/accel/ssp_accel_sensor.c | 169 ++ 2 files changed, 170 insertions(+) create mode 100644 drivers/iio/accel/ssp_accel_sensor.c diff --git a/drivers/iio/accel/Makefile b/drivers/iio/accel/Makefile index de5b9cb..69c64b6 100644 --- a/drivers/iio/accel/Makefile +++ b/drivers/iio/accel/Makefile @@ -10,6 +10,7 @@ obj-$(CONFIG_KXCJK1013) += kxcjk-1013.o obj-$(CONFIG_KXSD9)+= kxsd9.o obj-$(CONFIG_MMA8452) += mma8452.o obj-$(CONFIG_MMA9551) += mma9551.o +obj-$(CONFIG_IIO_SSP_SENSORS_COMMONS) += ssp_accel_sensor.o obj-$(CONFIG_IIO_ST_ACCEL_3AXIS) += st_accel.o st_accel-y := st_accel_core.o diff --git a/drivers/iio/accel/ssp_accel_sensor.c b/drivers/iio/accel/ssp_accel_sensor.c new file mode 100644 index 000..4ae05fc --- /dev/null +++ b/drivers/iio/accel/ssp_accel_sensor.c @@ -0,0 +1,169 @@ +/* + * Copyright (C) 2014, Samsung Electronics Co. Ltd. All Rights Reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + */ + +#include +#include +#include +#include +#include +#include +#include "../common/ssp_sensors/ssp_iio_sensor.h" + +#define SSP_CHANNEL_COUNT 3 + +#define SSP_ACCEL_NAME "ssp-accelerometer" +static const char ssp_accel_device_name[] = SSP_ACCEL_NAME; + +enum ssp_accel_3d_channel { + SSP_CHANNEL_SCAN_INDEX_X, + SSP_CHANNEL_SCAN_INDEX_Y, + SSP_CHANNEL_SCAN_INDEX_Z, + SSP_CHANNEL_SCAN_INDEX_TIME, +}; + +static int ssp_accel_read_raw(struct iio_dev *indio_dev, + struct iio_chan_spec const *chan, int *val, + int *val2, long mask) +{ + u32 t; + struct ssp_data *data = dev_get_drvdata(indio_dev->dev.parent->parent); + + switch (mask) { + case IIO_CHAN_INFO_SAMP_FREQ: + t = ssp_get_sensor_delay(data, SSP_ACCELEROMETER_SENSOR); + ssp_convert_to_freq(t, val, val2); + return IIO_VAL_INT_PLUS_MICRO; + default: + break; + } + + return -EINVAL; +} + +static int ssp_accel_write_raw(struct iio_dev *indio_dev, + struct iio_chan_spec const *chan, int val, + int val2, long mask) +{ + int ret; + struct ssp_data *data = dev_get_drvdata(indio_dev->dev.parent->parent); + + switch (mask) { + case IIO_CHAN_INFO_SAMP_FREQ: + ret = ssp_convert_to_time(val, val2); + ret = ssp_change_delay(data, SSP_ACCELEROMETER_SENSOR, ret); + if (ret < 0) + dev_err(&indio_dev->dev, "accel sensor enable fail\n"); + + return ret; + default: + break; + } + + return -EINVAL; +} + +static struct iio_info ssp_accel_iio_info = { + .read_raw = &ssp_accel_read_raw, + .write_raw = &ssp_accel_write_raw, +}; + +static const unsigned long ssp_accel_scan_mask[] = { 0x7, 0, }; + +static const struct iio_chan_spec ssp_acc_channels[] = { + SSP_CHANNEL_AG(IIO_ACCEL, IIO_MOD_X, SSP_CHANNEL_SCAN_INDEX_X), + SSP_CHANNEL_AG(IIO_ACCEL, IIO_MOD_Y, SSP_CHANNEL_SCAN_INDEX_Y), + SSP_CHANNEL_AG(IIO_ACCEL, IIO_MOD_Z, SSP_CHANNEL_SCAN_INDEX_Z), + SSP_CHAN_TIMESTAMP(SSP_CHANNEL_SCAN_INDEX_TIME), +}; + +static int ssp_process_accel_data(struct iio_dev *indio_dev, void *buf, + int64_t timestamp) +{ + return ssp_common_process_data(indio_dev, buf, SSP_ACCELEROMETER_SIZE, + timestamp); +} + +static const struct iio_buffer_setup_ops ssp_accel_buffer_ops = { + .postenable = &ssp_common_buffer_postenable, + .postdisable = &ssp_common_buffer_postdisable, +}; + +static int ssp_accel_probe(struct platform_device *pdev) +{ + int ret; + struct iio_dev *indio_dev; + struct ssp_sensor_data *spd; + struct iio_buffer *buffer; + + indio_dev = devm_iio_device_alloc(&pdev->dev, sizeof(*spd)); + if (!indio_dev) + return -ENOMEM; + + spd = iio_priv(indio_dev); + + spd->process_data = ssp_process_accel_data; + spd->type = SSP_ACCELEROMETER_SENSOR; + + indio_dev->name = ssp_accel_device_name; + indio_dev->dev.parent = &pdev->dev; + indio_dev->dev.of_node = pdev->dev.of_node; + indio_dev->info = &ssp_a