|
@@ -28,6 +28,8 @@
|
|
#include "../iio.h"
|
|
#include "../iio.h"
|
|
#include "../sysfs.h"
|
|
#include "../sysfs.h"
|
|
#include "../ring_generic.h"
|
|
#include "../ring_generic.h"
|
|
|
|
+#include "../ring_sw.h"
|
|
|
|
+
|
|
#include "accel.h"
|
|
#include "accel.h"
|
|
|
|
|
|
#include "lis3l02dq.h"
|
|
#include "lis3l02dq.h"
|
|
@@ -48,7 +50,9 @@ int lis3l02dq_spi_read_reg_8(struct device *dev, u8 reg_address, u8 *val)
|
|
int ret;
|
|
int ret;
|
|
struct spi_message msg;
|
|
struct spi_message msg;
|
|
struct iio_dev *indio_dev = dev_get_drvdata(dev);
|
|
struct iio_dev *indio_dev = dev_get_drvdata(dev);
|
|
- struct lis3l02dq_state *st = iio_dev_get_devdata(indio_dev);
|
|
|
|
|
|
+ struct iio_sw_ring_helper_state *h = iio_dev_get_devdata(indio_dev);
|
|
|
|
+ struct lis3l02dq_state *st = lis3l02dq_h_to_s(h);
|
|
|
|
+
|
|
struct spi_transfer xfer = {
|
|
struct spi_transfer xfer = {
|
|
.tx_buf = st->tx,
|
|
.tx_buf = st->tx,
|
|
.rx_buf = st->rx,
|
|
.rx_buf = st->rx,
|
|
@@ -83,7 +87,9 @@ int lis3l02dq_spi_write_reg_8(struct device *dev,
|
|
int ret;
|
|
int ret;
|
|
struct spi_message msg;
|
|
struct spi_message msg;
|
|
struct iio_dev *indio_dev = dev_get_drvdata(dev);
|
|
struct iio_dev *indio_dev = dev_get_drvdata(dev);
|
|
- struct lis3l02dq_state *st = iio_dev_get_devdata(indio_dev);
|
|
|
|
|
|
+ struct iio_sw_ring_helper_state *h
|
|
|
|
+ = iio_dev_get_devdata(indio_dev);
|
|
|
|
+ struct lis3l02dq_state *st = lis3l02dq_h_to_s(h);
|
|
struct spi_transfer xfer = {
|
|
struct spi_transfer xfer = {
|
|
.tx_buf = st->tx,
|
|
.tx_buf = st->tx,
|
|
.bits_per_word = 8,
|
|
.bits_per_word = 8,
|
|
@@ -117,7 +123,9 @@ static int lis3l02dq_spi_write_reg_s16(struct device *dev,
|
|
int ret;
|
|
int ret;
|
|
struct spi_message msg;
|
|
struct spi_message msg;
|
|
struct iio_dev *indio_dev = dev_get_drvdata(dev);
|
|
struct iio_dev *indio_dev = dev_get_drvdata(dev);
|
|
- struct lis3l02dq_state *st = iio_dev_get_devdata(indio_dev);
|
|
|
|
|
|
+ struct iio_sw_ring_helper_state *h
|
|
|
|
+ = iio_dev_get_devdata(indio_dev);
|
|
|
|
+ struct lis3l02dq_state *st = lis3l02dq_h_to_s(h);
|
|
struct spi_transfer xfers[] = { {
|
|
struct spi_transfer xfers[] = { {
|
|
.tx_buf = st->tx,
|
|
.tx_buf = st->tx,
|
|
.bits_per_word = 8,
|
|
.bits_per_word = 8,
|
|
@@ -159,7 +167,9 @@ static int lis3l02dq_spi_read_reg_s16(struct device *dev,
|
|
{
|
|
{
|
|
struct spi_message msg;
|
|
struct spi_message msg;
|
|
struct iio_dev *indio_dev = dev_get_drvdata(dev);
|
|
struct iio_dev *indio_dev = dev_get_drvdata(dev);
|
|
- struct lis3l02dq_state *st = iio_dev_get_devdata(indio_dev);
|
|
|
|
|
|
+ struct iio_sw_ring_helper_state *h
|
|
|
|
+ = iio_dev_get_devdata(indio_dev);
|
|
|
|
+ struct lis3l02dq_state *st = lis3l02dq_h_to_s(h);
|
|
int ret;
|
|
int ret;
|
|
struct spi_transfer xfers[] = { {
|
|
struct spi_transfer xfers[] = { {
|
|
.tx_buf = st->tx,
|
|
.tx_buf = st->tx,
|
|
@@ -412,7 +422,7 @@ static int lis3l02dq_initial_setup(struct lis3l02dq_state *st)
|
|
|
|
|
|
val = LIS3L02DQ_DEFAULT_CTRL1;
|
|
val = LIS3L02DQ_DEFAULT_CTRL1;
|
|
/* Write suitable defaults to ctrl1 */
|
|
/* Write suitable defaults to ctrl1 */
|
|
- ret = lis3l02dq_spi_write_reg_8(&st->indio_dev->dev,
|
|
|
|
|
|
+ ret = lis3l02dq_spi_write_reg_8(&st->help.indio_dev->dev,
|
|
LIS3L02DQ_REG_CTRL_1_ADDR,
|
|
LIS3L02DQ_REG_CTRL_1_ADDR,
|
|
&val);
|
|
&val);
|
|
if (ret) {
|
|
if (ret) {
|
|
@@ -420,7 +430,7 @@ static int lis3l02dq_initial_setup(struct lis3l02dq_state *st)
|
|
goto err_ret;
|
|
goto err_ret;
|
|
}
|
|
}
|
|
/* Repeat as sometimes doesn't work first time?*/
|
|
/* Repeat as sometimes doesn't work first time?*/
|
|
- ret = lis3l02dq_spi_write_reg_8(&st->indio_dev->dev,
|
|
|
|
|
|
+ ret = lis3l02dq_spi_write_reg_8(&st->help.indio_dev->dev,
|
|
LIS3L02DQ_REG_CTRL_1_ADDR,
|
|
LIS3L02DQ_REG_CTRL_1_ADDR,
|
|
&val);
|
|
&val);
|
|
if (ret) {
|
|
if (ret) {
|
|
@@ -430,17 +440,17 @@ static int lis3l02dq_initial_setup(struct lis3l02dq_state *st)
|
|
|
|
|
|
/* Read back to check this has worked acts as loose test of correct
|
|
/* Read back to check this has worked acts as loose test of correct
|
|
* chip */
|
|
* chip */
|
|
- ret = lis3l02dq_spi_read_reg_8(&st->indio_dev->dev,
|
|
|
|
|
|
+ ret = lis3l02dq_spi_read_reg_8(&st->help.indio_dev->dev,
|
|
LIS3L02DQ_REG_CTRL_1_ADDR,
|
|
LIS3L02DQ_REG_CTRL_1_ADDR,
|
|
&valtest);
|
|
&valtest);
|
|
if (ret || (valtest != val)) {
|
|
if (ret || (valtest != val)) {
|
|
- dev_err(&st->indio_dev->dev, "device not playing ball");
|
|
|
|
|
|
+ dev_err(&st->help.indio_dev->dev, "device not playing ball");
|
|
ret = -EINVAL;
|
|
ret = -EINVAL;
|
|
goto err_ret;
|
|
goto err_ret;
|
|
}
|
|
}
|
|
|
|
|
|
val = LIS3L02DQ_DEFAULT_CTRL2;
|
|
val = LIS3L02DQ_DEFAULT_CTRL2;
|
|
- ret = lis3l02dq_spi_write_reg_8(&st->indio_dev->dev,
|
|
|
|
|
|
+ ret = lis3l02dq_spi_write_reg_8(&st->help.indio_dev->dev,
|
|
LIS3L02DQ_REG_CTRL_2_ADDR,
|
|
LIS3L02DQ_REG_CTRL_2_ADDR,
|
|
&val);
|
|
&val);
|
|
if (ret) {
|
|
if (ret) {
|
|
@@ -449,7 +459,7 @@ static int lis3l02dq_initial_setup(struct lis3l02dq_state *st)
|
|
}
|
|
}
|
|
|
|
|
|
val = LIS3L02DQ_REG_WAKE_UP_CFG_LATCH_SRC;
|
|
val = LIS3L02DQ_REG_WAKE_UP_CFG_LATCH_SRC;
|
|
- ret = lis3l02dq_spi_write_reg_8(&st->indio_dev->dev,
|
|
|
|
|
|
+ ret = lis3l02dq_spi_write_reg_8(&st->help.indio_dev->dev,
|
|
LIS3L02DQ_REG_WAKE_UP_CFG_ADDR,
|
|
LIS3L02DQ_REG_WAKE_UP_CFG_ADDR,
|
|
&val);
|
|
&val);
|
|
if (ret)
|
|
if (ret)
|
|
@@ -595,15 +605,17 @@ error_mutex_unlock:
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
-static int lis3l02dq_thresh_handler_th(struct iio_dev *dev_info,
|
|
|
|
|
|
+static int lis3l02dq_thresh_handler_th(struct iio_dev *indio_dev,
|
|
int index,
|
|
int index,
|
|
s64 timestamp,
|
|
s64 timestamp,
|
|
int no_test)
|
|
int no_test)
|
|
{
|
|
{
|
|
- struct lis3l02dq_state *st = dev_info->dev_data;
|
|
|
|
|
|
+ struct iio_sw_ring_helper_state *h
|
|
|
|
+ = iio_dev_get_devdata(indio_dev);
|
|
|
|
+ struct lis3l02dq_state *st = lis3l02dq_h_to_s(h);
|
|
|
|
|
|
/* Stash the timestamp somewhere convenient for the bh */
|
|
/* Stash the timestamp somewhere convenient for the bh */
|
|
- st->last_timestamp = timestamp;
|
|
|
|
|
|
+ h->last_timestamp = timestamp;
|
|
schedule_work(&st->work_thresh);
|
|
schedule_work(&st->work_thresh);
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
@@ -621,43 +633,43 @@ static void lis3l02dq_thresh_handler_bh_no_check(struct work_struct *work_s)
|
|
|
|
|
|
u8 t;
|
|
u8 t;
|
|
|
|
|
|
- lis3l02dq_spi_read_reg_8(&st->indio_dev->dev,
|
|
|
|
|
|
+ lis3l02dq_spi_read_reg_8(&st->help.indio_dev->dev,
|
|
LIS3L02DQ_REG_WAKE_UP_SRC_ADDR,
|
|
LIS3L02DQ_REG_WAKE_UP_SRC_ADDR,
|
|
&t);
|
|
&t);
|
|
|
|
|
|
if (t & LIS3L02DQ_REG_WAKE_UP_SRC_INTERRUPT_Z_HIGH)
|
|
if (t & LIS3L02DQ_REG_WAKE_UP_SRC_INTERRUPT_Z_HIGH)
|
|
- iio_push_event(st->indio_dev, 0,
|
|
|
|
|
|
+ iio_push_event(st->help.indio_dev, 0,
|
|
IIO_EVENT_CODE_ACCEL_Z_HIGH,
|
|
IIO_EVENT_CODE_ACCEL_Z_HIGH,
|
|
- st->last_timestamp);
|
|
|
|
|
|
+ st->help.last_timestamp);
|
|
|
|
|
|
if (t & LIS3L02DQ_REG_WAKE_UP_SRC_INTERRUPT_Z_LOW)
|
|
if (t & LIS3L02DQ_REG_WAKE_UP_SRC_INTERRUPT_Z_LOW)
|
|
- iio_push_event(st->indio_dev, 0,
|
|
|
|
|
|
+ iio_push_event(st->help.indio_dev, 0,
|
|
IIO_EVENT_CODE_ACCEL_Z_LOW,
|
|
IIO_EVENT_CODE_ACCEL_Z_LOW,
|
|
- st->last_timestamp);
|
|
|
|
|
|
+ st->help.last_timestamp);
|
|
|
|
|
|
if (t & LIS3L02DQ_REG_WAKE_UP_SRC_INTERRUPT_Y_HIGH)
|
|
if (t & LIS3L02DQ_REG_WAKE_UP_SRC_INTERRUPT_Y_HIGH)
|
|
- iio_push_event(st->indio_dev, 0,
|
|
|
|
|
|
+ iio_push_event(st->help.indio_dev, 0,
|
|
IIO_EVENT_CODE_ACCEL_Y_HIGH,
|
|
IIO_EVENT_CODE_ACCEL_Y_HIGH,
|
|
- st->last_timestamp);
|
|
|
|
|
|
+ st->help.last_timestamp);
|
|
|
|
|
|
if (t & LIS3L02DQ_REG_WAKE_UP_SRC_INTERRUPT_Y_LOW)
|
|
if (t & LIS3L02DQ_REG_WAKE_UP_SRC_INTERRUPT_Y_LOW)
|
|
- iio_push_event(st->indio_dev, 0,
|
|
|
|
|
|
+ iio_push_event(st->help.indio_dev, 0,
|
|
IIO_EVENT_CODE_ACCEL_Y_LOW,
|
|
IIO_EVENT_CODE_ACCEL_Y_LOW,
|
|
- st->last_timestamp);
|
|
|
|
|
|
+ st->help.last_timestamp);
|
|
|
|
|
|
if (t & LIS3L02DQ_REG_WAKE_UP_SRC_INTERRUPT_X_HIGH)
|
|
if (t & LIS3L02DQ_REG_WAKE_UP_SRC_INTERRUPT_X_HIGH)
|
|
- iio_push_event(st->indio_dev, 0,
|
|
|
|
|
|
+ iio_push_event(st->help.indio_dev, 0,
|
|
IIO_EVENT_CODE_ACCEL_X_HIGH,
|
|
IIO_EVENT_CODE_ACCEL_X_HIGH,
|
|
- st->last_timestamp);
|
|
|
|
|
|
+ st->help.last_timestamp);
|
|
|
|
|
|
if (t & LIS3L02DQ_REG_WAKE_UP_SRC_INTERRUPT_X_LOW)
|
|
if (t & LIS3L02DQ_REG_WAKE_UP_SRC_INTERRUPT_X_LOW)
|
|
- iio_push_event(st->indio_dev, 0,
|
|
|
|
|
|
+ iio_push_event(st->help.indio_dev, 0,
|
|
IIO_EVENT_CODE_ACCEL_X_LOW,
|
|
IIO_EVENT_CODE_ACCEL_X_LOW,
|
|
- st->last_timestamp);
|
|
|
|
|
|
+ st->help.last_timestamp);
|
|
/* reenable the irq */
|
|
/* reenable the irq */
|
|
enable_irq(st->us->irq);
|
|
enable_irq(st->us->irq);
|
|
/* Ack and allow for new interrupts */
|
|
/* Ack and allow for new interrupts */
|
|
- lis3l02dq_spi_read_reg_8(&st->indio_dev->dev,
|
|
|
|
|
|
+ lis3l02dq_spi_read_reg_8(&st->help.indio_dev->dev,
|
|
LIS3L02DQ_REG_WAKE_UP_ACK_ADDR,
|
|
LIS3L02DQ_REG_WAKE_UP_ACK_ADDR,
|
|
&t);
|
|
&t);
|
|
|
|
|
|
@@ -769,30 +781,30 @@ static int __devinit lis3l02dq_probe(struct spi_device *spi)
|
|
st->us = spi;
|
|
st->us = spi;
|
|
mutex_init(&st->buf_lock);
|
|
mutex_init(&st->buf_lock);
|
|
/* setup the industrialio driver allocated elements */
|
|
/* setup the industrialio driver allocated elements */
|
|
- st->indio_dev = iio_allocate_device();
|
|
|
|
- if (st->indio_dev == NULL) {
|
|
|
|
|
|
+ st->help.indio_dev = iio_allocate_device();
|
|
|
|
+ if (st->help.indio_dev == NULL) {
|
|
ret = -ENOMEM;
|
|
ret = -ENOMEM;
|
|
goto error_free_tx;
|
|
goto error_free_tx;
|
|
}
|
|
}
|
|
|
|
|
|
- st->indio_dev->dev.parent = &spi->dev;
|
|
|
|
- st->indio_dev->num_interrupt_lines = 1;
|
|
|
|
- st->indio_dev->event_attrs = &lis3l02dq_event_attribute_group;
|
|
|
|
- st->indio_dev->attrs = &lis3l02dq_attribute_group;
|
|
|
|
- st->indio_dev->dev_data = (void *)(st);
|
|
|
|
- st->indio_dev->driver_module = THIS_MODULE;
|
|
|
|
- st->indio_dev->modes = INDIO_DIRECT_MODE;
|
|
|
|
|
|
+ st->help.indio_dev->dev.parent = &spi->dev;
|
|
|
|
+ st->help.indio_dev->num_interrupt_lines = 1;
|
|
|
|
+ st->help.indio_dev->event_attrs = &lis3l02dq_event_attribute_group;
|
|
|
|
+ st->help.indio_dev->attrs = &lis3l02dq_attribute_group;
|
|
|
|
+ st->help.indio_dev->dev_data = (void *)(&st->help);
|
|
|
|
+ st->help.indio_dev->driver_module = THIS_MODULE;
|
|
|
|
+ st->help.indio_dev->modes = INDIO_DIRECT_MODE;
|
|
|
|
|
|
- ret = lis3l02dq_configure_ring(st->indio_dev);
|
|
|
|
|
|
+ ret = lis3l02dq_configure_ring(st->help.indio_dev);
|
|
if (ret)
|
|
if (ret)
|
|
goto error_free_dev;
|
|
goto error_free_dev;
|
|
|
|
|
|
- ret = iio_device_register(st->indio_dev);
|
|
|
|
|
|
+ ret = iio_device_register(st->help.indio_dev);
|
|
if (ret)
|
|
if (ret)
|
|
goto error_unreg_ring_funcs;
|
|
goto error_unreg_ring_funcs;
|
|
regdone = 1;
|
|
regdone = 1;
|
|
|
|
|
|
- ret = iio_ring_buffer_register(st->indio_dev->ring, 0);
|
|
|
|
|
|
+ ret = iio_ring_buffer_register(st->help.indio_dev->ring, 0);
|
|
if (ret) {
|
|
if (ret) {
|
|
printk(KERN_ERR "failed to initialize the ring\n");
|
|
printk(KERN_ERR "failed to initialize the ring\n");
|
|
goto error_unreg_ring_funcs;
|
|
goto error_unreg_ring_funcs;
|
|
@@ -801,14 +813,14 @@ static int __devinit lis3l02dq_probe(struct spi_device *spi)
|
|
if (spi->irq && gpio_is_valid(irq_to_gpio(spi->irq)) > 0) {
|
|
if (spi->irq && gpio_is_valid(irq_to_gpio(spi->irq)) > 0) {
|
|
st->inter = 0;
|
|
st->inter = 0;
|
|
ret = iio_register_interrupt_line(spi->irq,
|
|
ret = iio_register_interrupt_line(spi->irq,
|
|
- st->indio_dev,
|
|
|
|
|
|
+ st->help.indio_dev,
|
|
0,
|
|
0,
|
|
IRQF_TRIGGER_RISING,
|
|
IRQF_TRIGGER_RISING,
|
|
"lis3l02dq");
|
|
"lis3l02dq");
|
|
if (ret)
|
|
if (ret)
|
|
goto error_uninitialize_ring;
|
|
goto error_uninitialize_ring;
|
|
|
|
|
|
- ret = lis3l02dq_probe_trigger(st->indio_dev);
|
|
|
|
|
|
+ ret = lis3l02dq_probe_trigger(st->help.indio_dev);
|
|
if (ret)
|
|
if (ret)
|
|
goto error_unregister_line;
|
|
goto error_unregister_line;
|
|
}
|
|
}
|
|
@@ -820,20 +832,20 @@ static int __devinit lis3l02dq_probe(struct spi_device *spi)
|
|
return 0;
|
|
return 0;
|
|
|
|
|
|
error_remove_trigger:
|
|
error_remove_trigger:
|
|
- if (st->indio_dev->modes & INDIO_RING_TRIGGERED)
|
|
|
|
- lis3l02dq_remove_trigger(st->indio_dev);
|
|
|
|
|
|
+ if (st->help.indio_dev->modes & INDIO_RING_TRIGGERED)
|
|
|
|
+ lis3l02dq_remove_trigger(st->help.indio_dev);
|
|
error_unregister_line:
|
|
error_unregister_line:
|
|
- if (st->indio_dev->modes & INDIO_RING_TRIGGERED)
|
|
|
|
- iio_unregister_interrupt_line(st->indio_dev, 0);
|
|
|
|
|
|
+ if (st->help.indio_dev->modes & INDIO_RING_TRIGGERED)
|
|
|
|
+ iio_unregister_interrupt_line(st->help.indio_dev, 0);
|
|
error_uninitialize_ring:
|
|
error_uninitialize_ring:
|
|
- iio_ring_buffer_unregister(st->indio_dev->ring);
|
|
|
|
|
|
+ iio_ring_buffer_unregister(st->help.indio_dev->ring);
|
|
error_unreg_ring_funcs:
|
|
error_unreg_ring_funcs:
|
|
- lis3l02dq_unconfigure_ring(st->indio_dev);
|
|
|
|
|
|
+ lis3l02dq_unconfigure_ring(st->help.indio_dev);
|
|
error_free_dev:
|
|
error_free_dev:
|
|
if (regdone)
|
|
if (regdone)
|
|
- iio_device_unregister(st->indio_dev);
|
|
|
|
|
|
+ iio_device_unregister(st->help.indio_dev);
|
|
else
|
|
else
|
|
- iio_free_device(st->indio_dev);
|
|
|
|
|
|
+ iio_free_device(st->help.indio_dev);
|
|
error_free_tx:
|
|
error_free_tx:
|
|
kfree(st->tx);
|
|
kfree(st->tx);
|
|
error_free_rx:
|
|
error_free_rx:
|
|
@@ -848,7 +860,9 @@ error_ret:
|
|
static int lis3l02dq_stop_device(struct iio_dev *indio_dev)
|
|
static int lis3l02dq_stop_device(struct iio_dev *indio_dev)
|
|
{
|
|
{
|
|
int ret;
|
|
int ret;
|
|
- struct lis3l02dq_state *st = indio_dev->dev_data;
|
|
|
|
|
|
+ struct iio_sw_ring_helper_state *h
|
|
|
|
+ = iio_dev_get_devdata(indio_dev);
|
|
|
|
+ struct lis3l02dq_state *st = lis3l02dq_h_to_s(h);
|
|
u8 val = 0;
|
|
u8 val = 0;
|
|
|
|
|
|
mutex_lock(&indio_dev->mlock);
|
|
mutex_lock(&indio_dev->mlock);
|
|
@@ -875,7 +889,7 @@ static int lis3l02dq_remove(struct spi_device *spi)
|
|
{
|
|
{
|
|
int ret;
|
|
int ret;
|
|
struct lis3l02dq_state *st = spi_get_drvdata(spi);
|
|
struct lis3l02dq_state *st = spi_get_drvdata(spi);
|
|
- struct iio_dev *indio_dev = st->indio_dev;
|
|
|
|
|
|
+ struct iio_dev *indio_dev = st->help.indio_dev;
|
|
|
|
|
|
ret = lis3l02dq_stop_device(indio_dev);
|
|
ret = lis3l02dq_stop_device(indio_dev);
|
|
if (ret)
|
|
if (ret)
|