2 * Common library for ADIS16XXX devices
4 * Copyright 2012 Analog Devices Inc.
7 * Licensed under the GPL-2 or later.
10 #include <linux/export.h>
11 #include <linux/interrupt.h>
12 #include <linux/mutex.h>
13 #include <linux/kernel.h>
14 #include <linux/spi/spi.h>
15 #include <linux/slab.h>
17 #include <linux/iio/iio.h>
18 #include <linux/iio/buffer.h>
19 #include <linux/iio/trigger_consumer.h>
20 #include <linux/iio/triggered_buffer.h>
21 #include <linux/iio/imu/adis.h>
23 static int adis_update_scan_mode_burst(struct iio_dev *indio_dev,
24 const unsigned long *scan_mask)
26 struct adis *adis = iio_device_get_drvdata(indio_dev);
27 unsigned int burst_length;
30 /* All but the timestamp channel */
31 burst_length = (indio_dev->num_channels - 1) * sizeof(u16);
32 burst_length += adis->burst->extra_len;
34 adis->xfer = kcalloc(2, sizeof(*adis->xfer), GFP_KERNEL);
38 adis->buffer = kzalloc(burst_length + sizeof(u16), GFP_KERNEL);
42 tx = adis->buffer + burst_length;
43 tx[0] = ADIS_READ_REG(adis->burst->reg_cmd);
46 adis->xfer[0].tx_buf = tx;
47 adis->xfer[0].bits_per_word = 8;
48 adis->xfer[0].len = 2;
49 adis->xfer[1].rx_buf = adis->buffer;
50 adis->xfer[1].bits_per_word = 8;
51 adis->xfer[1].len = burst_length;
53 spi_message_init(&adis->msg);
54 spi_message_add_tail(&adis->xfer[0], &adis->msg);
55 spi_message_add_tail(&adis->xfer[1], &adis->msg);
60 int adis_update_scan_mode(struct iio_dev *indio_dev,
61 const unsigned long *scan_mask)
63 struct adis *adis = iio_device_get_drvdata(indio_dev);
64 const struct iio_chan_spec *chan;
65 unsigned int scan_count;
72 if (adis->burst && adis->burst->en)
73 return adis_update_scan_mode_burst(indio_dev, scan_mask);
75 scan_count = indio_dev->scan_bytes / 2;
77 adis->xfer = kcalloc(scan_count + 1, sizeof(*adis->xfer), GFP_KERNEL);
81 adis->buffer = kcalloc(indio_dev->scan_bytes, 2, GFP_KERNEL);
88 spi_message_init(&adis->msg);
90 for (j = 0; j <= scan_count; j++) {
91 adis->xfer[j].bits_per_word = 8;
93 adis->xfer[j].cs_change = 1;
94 adis->xfer[j].len = 2;
95 adis->xfer[j].delay_usecs = adis->data->read_delay;
97 adis->xfer[j].tx_buf = &tx[j];
99 adis->xfer[j].rx_buf = &rx[j - 1];
100 spi_message_add_tail(&adis->xfer[j], &adis->msg);
103 chan = indio_dev->channels;
104 for (i = 0; i < indio_dev->num_channels; i++, chan++) {
105 if (!test_bit(chan->scan_index, scan_mask))
107 if (chan->scan_type.storagebits == 32)
108 *tx++ = cpu_to_be16((chan->address + 2) << 8);
109 *tx++ = cpu_to_be16(chan->address << 8);
114 EXPORT_SYMBOL_GPL(adis_update_scan_mode);
116 static irqreturn_t adis_trigger_handler(int irq, void *p)
118 struct iio_poll_func *pf = p;
119 struct iio_dev *indio_dev = pf->indio_dev;
120 struct adis *adis = iio_device_get_drvdata(indio_dev);
126 if (adis->data->has_paging) {
127 mutex_lock(&adis->txrx_lock);
128 if (adis->current_page != 0) {
129 adis->tx[0] = ADIS_WRITE_REG(ADIS_REG_PAGE_ID);
131 spi_write(adis->spi, adis->tx, 2);
135 ret = spi_sync(adis->spi, &adis->msg);
137 dev_err(&adis->spi->dev, "Failed to read data: %d", ret);
140 if (adis->data->has_paging) {
141 adis->current_page = 0;
142 mutex_unlock(&adis->txrx_lock);
145 iio_push_to_buffers_with_timestamp(indio_dev, adis->buffer,
148 iio_trigger_notify_done(indio_dev->trig);
154 * adis_setup_buffer_and_trigger() - Sets up buffer and trigger for the adis device
155 * @adis: The adis device.
156 * @indio_dev: The IIO device.
157 * @trigger_handler: Optional trigger handler, may be NULL.
159 * Returns 0 on success, a negative error code otherwise.
161 * This function sets up the buffer and trigger for a adis devices. If
162 * 'trigger_handler' is NULL the default trigger handler will be used. The
163 * default trigger handler will simply read the registers assigned to the
164 * currently active channels.
166 * adis_cleanup_buffer_and_trigger() should be called to free the resources
167 * allocated by this function.
169 int adis_setup_buffer_and_trigger(struct adis *adis, struct iio_dev *indio_dev,
170 irqreturn_t (*trigger_handler)(int, void *))
174 if (!trigger_handler)
175 trigger_handler = adis_trigger_handler;
177 ret = iio_triggered_buffer_setup(indio_dev, &iio_pollfunc_store_time,
178 trigger_handler, NULL);
182 if (adis->spi->irq) {
183 ret = adis_probe_trigger(adis, indio_dev);
185 goto error_buffer_cleanup;
189 error_buffer_cleanup:
190 iio_triggered_buffer_cleanup(indio_dev);
193 EXPORT_SYMBOL_GPL(adis_setup_buffer_and_trigger);
196 * adis_cleanup_buffer_and_trigger() - Free buffer and trigger resources
197 * @adis: The adis device.
198 * @indio_dev: The IIO device.
200 * Frees resources allocated by adis_setup_buffer_and_trigger()
202 void adis_cleanup_buffer_and_trigger(struct adis *adis,
203 struct iio_dev *indio_dev)
206 adis_remove_trigger(adis);
209 iio_triggered_buffer_cleanup(indio_dev);
211 EXPORT_SYMBOL_GPL(adis_cleanup_buffer_and_trigger);