2 * itg3200_buffer.c -- support InvenSense ITG3200
3 * Digital 3-Axis Gyroscope driver
5 * Copyright (c) 2011 Christian Strobel <christian.strobel@iis.fraunhofer.de>
6 * Copyright (c) 2011 Manuel Stahl <manuel.stahl@iis.fraunhofer.de>
7 * Copyright (c) 2012 Thorsten Nowak <thorsten.nowak@iis.fraunhofer.de>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/slab.h>
15 #include <linux/i2c.h>
16 #include <linux/interrupt.h>
18 #include <linux/iio/iio.h>
19 #include <linux/iio/buffer.h>
20 #include <linux/iio/trigger.h>
21 #include <linux/iio/trigger_consumer.h>
22 #include <linux/iio/triggered_buffer.h>
23 #include <linux/iio/gyro/itg3200.h>
26 static int itg3200_read_all_channels(struct i2c_client *i2c, __be16 *buf)
28 u8 tx = 0x80 | ITG3200_REG_TEMP_OUT_H;
29 struct i2c_msg msg[2] = {
38 .flags = i2c->flags | I2C_M_RD,
39 .len = ITG3200_SCAN_ELEMENTS * sizeof(s16),
44 return i2c_transfer(i2c->adapter, msg, 2);
47 static irqreturn_t itg3200_trigger_handler(int irq, void *p)
49 struct iio_poll_func *pf = p;
50 struct iio_dev *indio_dev = pf->indio_dev;
51 struct itg3200 *st = iio_priv(indio_dev);
53 * Ensure correct alignment and padding including for the
54 * timestamp that may be inserted.
57 __be16 buf[ITG3200_SCAN_ELEMENTS];
61 int ret = itg3200_read_all_channels(st->i2c, scan.buf);
65 iio_push_to_buffers_with_timestamp(indio_dev, &scan, pf->timestamp);
67 iio_trigger_notify_done(indio_dev->trig);
73 int itg3200_buffer_configure(struct iio_dev *indio_dev)
75 return iio_triggered_buffer_setup(indio_dev, &iio_pollfunc_store_time,
76 itg3200_trigger_handler, NULL);
79 void itg3200_buffer_unconfigure(struct iio_dev *indio_dev)
81 iio_triggered_buffer_cleanup(indio_dev);
85 static int itg3200_data_rdy_trigger_set_state(struct iio_trigger *trig,
88 struct iio_dev *indio_dev = iio_trigger_get_drvdata(trig);
92 ret = itg3200_read_reg_8(indio_dev, ITG3200_REG_IRQ_CONFIG, &msc);
97 msc |= ITG3200_IRQ_DATA_RDY_ENABLE;
99 msc &= ~ITG3200_IRQ_DATA_RDY_ENABLE;
101 ret = itg3200_write_reg_8(indio_dev, ITG3200_REG_IRQ_CONFIG, msc);
110 static const struct iio_trigger_ops itg3200_trigger_ops = {
111 .owner = THIS_MODULE,
112 .set_trigger_state = &itg3200_data_rdy_trigger_set_state,
115 int itg3200_probe_trigger(struct iio_dev *indio_dev)
118 struct itg3200 *st = iio_priv(indio_dev);
120 st->trig = iio_trigger_alloc("%s-dev%d", indio_dev->name,
125 ret = request_irq(st->i2c->irq,
126 &iio_trigger_generic_data_rdy_poll,
131 goto error_free_trig;
134 st->trig->dev.parent = &st->i2c->dev;
135 st->trig->ops = &itg3200_trigger_ops;
136 iio_trigger_set_drvdata(st->trig, indio_dev);
137 ret = iio_trigger_register(st->trig);
141 /* select default trigger */
142 indio_dev->trig = iio_trigger_get(st->trig);
147 free_irq(st->i2c->irq, st->trig);
149 iio_trigger_free(st->trig);
153 void itg3200_remove_trigger(struct iio_dev *indio_dev)
155 struct itg3200 *st = iio_priv(indio_dev);
157 iio_trigger_unregister(st->trig);
158 free_irq(st->i2c->irq, st->trig);
159 iio_trigger_free(st->trig);