iio: accel: kxsd9: Fix scaling bug
[pandora-kernel.git] / drivers / staging / iio / imu / adis16400_ring.c
1 #include <linux/interrupt.h>
2 #include <linux/mutex.h>
3 #include <linux/kernel.h>
4 #include <linux/spi/spi.h>
5 #include <linux/slab.h>
6 #include <linux/bitops.h>
7 #include <linux/export.h>
8
9 #include "../iio.h"
10 #include "../ring_sw.h"
11 #include "../trigger_consumer.h"
12 #include "adis16400.h"
13
14 /**
15  * adis16400_spi_read_burst() - read all data registers
16  * @dev: device associated with child of actual device (iio_dev or iio_trig)
17  * @rx: somewhere to pass back the value read (min size is 24 bytes)
18  **/
19 static int adis16400_spi_read_burst(struct device *dev, u8 *rx)
20 {
21         struct spi_message msg;
22         struct iio_dev *indio_dev = dev_get_drvdata(dev);
23         struct adis16400_state *st = iio_priv(indio_dev);
24         u32 old_speed_hz = st->us->max_speed_hz;
25         int ret;
26
27         struct spi_transfer xfers[] = {
28                 {
29                         .tx_buf = st->tx,
30                         .bits_per_word = 8,
31                         .len = 2,
32                 }, {
33                         .rx_buf = rx,
34                         .bits_per_word = 8,
35                         .len = 24,
36                 },
37         };
38
39         mutex_lock(&st->buf_lock);
40         st->tx[0] = ADIS16400_READ_REG(ADIS16400_GLOB_CMD);
41         st->tx[1] = 0;
42
43         spi_message_init(&msg);
44         spi_message_add_tail(&xfers[0], &msg);
45         spi_message_add_tail(&xfers[1], &msg);
46
47         st->us->max_speed_hz = min(ADIS16400_SPI_BURST, old_speed_hz);
48         spi_setup(st->us);
49
50         ret = spi_sync(st->us, &msg);
51         if (ret)
52                 dev_err(&st->us->dev, "problem when burst reading");
53
54         st->us->max_speed_hz = old_speed_hz;
55         spi_setup(st->us);
56         mutex_unlock(&st->buf_lock);
57         return ret;
58 }
59
60 static const u16 read_all_tx_array[] = {
61         cpu_to_be16(ADIS16400_READ_REG(ADIS16400_SUPPLY_OUT)),
62         cpu_to_be16(ADIS16400_READ_REG(ADIS16400_XGYRO_OUT)),
63         cpu_to_be16(ADIS16400_READ_REG(ADIS16400_YGYRO_OUT)),
64         cpu_to_be16(ADIS16400_READ_REG(ADIS16400_ZGYRO_OUT)),
65         cpu_to_be16(ADIS16400_READ_REG(ADIS16400_XACCL_OUT)),
66         cpu_to_be16(ADIS16400_READ_REG(ADIS16400_YACCL_OUT)),
67         cpu_to_be16(ADIS16400_READ_REG(ADIS16400_ZACCL_OUT)),
68         cpu_to_be16(ADIS16400_READ_REG(ADIS16350_XTEMP_OUT)),
69         cpu_to_be16(ADIS16400_READ_REG(ADIS16350_YTEMP_OUT)),
70         cpu_to_be16(ADIS16400_READ_REG(ADIS16350_ZTEMP_OUT)),
71         cpu_to_be16(ADIS16400_READ_REG(ADIS16400_AUX_ADC)),
72 };
73
74 static int adis16350_spi_read_all(struct device *dev, u8 *rx)
75 {
76         struct iio_dev *indio_dev = dev_get_drvdata(dev);
77         struct adis16400_state *st = iio_priv(indio_dev);
78
79         struct spi_message msg;
80         int i, j = 0, ret;
81         struct spi_transfer *xfers;
82
83         xfers = kzalloc(sizeof(*xfers)*indio_dev->buffer->scan_count + 1,
84                         GFP_KERNEL);
85         if (xfers == NULL)
86                 return -ENOMEM;
87
88         for (i = 0; i < ARRAY_SIZE(read_all_tx_array); i++)
89                 if (test_bit(i, indio_dev->buffer->scan_mask)) {
90                         xfers[j].tx_buf = &read_all_tx_array[i];
91                         xfers[j].bits_per_word = 16;
92                         xfers[j].len = 2;
93                         xfers[j + 1].rx_buf = rx + j*2;
94                         j++;
95                 }
96         xfers[j].bits_per_word = 16;
97         xfers[j].len = 2;
98
99         spi_message_init(&msg);
100         for (j = 0; j < indio_dev->buffer->scan_count + 1; j++)
101                 spi_message_add_tail(&xfers[j], &msg);
102
103         ret = spi_sync(st->us, &msg);
104         kfree(xfers);
105
106         return ret;
107 }
108
109 /* Whilst this makes a lot of calls to iio_sw_ring functions - it is to device
110  * specific to be rolled into the core.
111  */
112 static irqreturn_t adis16400_trigger_handler(int irq, void *p)
113 {
114         struct iio_poll_func *pf = p;
115         struct iio_dev *indio_dev = pf->indio_dev;
116         struct adis16400_state *st = iio_priv(indio_dev);
117         struct iio_buffer *ring = indio_dev->buffer;
118         int i = 0, j, ret = 0;
119         s16 *data;
120         size_t datasize = ring->access->get_bytes_per_datum(ring);
121         /* Asumption that long is enough for maximum channels */
122         unsigned long mask = *ring->scan_mask;
123
124         data = kmalloc(datasize , GFP_KERNEL);
125         if (data == NULL) {
126                 dev_err(&st->us->dev, "memory alloc failed in ring bh");
127                 return -ENOMEM;
128         }
129
130         if (ring->scan_count) {
131                 if (st->variant->flags & ADIS16400_NO_BURST) {
132                         ret = adis16350_spi_read_all(&indio_dev->dev, st->rx);
133                         if (ret < 0)
134                                 goto err;
135                         for (; i < ring->scan_count; i++)
136                                 data[i] = *(s16 *)(st->rx + i*2);
137                 } else {
138                         ret = adis16400_spi_read_burst(&indio_dev->dev, st->rx);
139                         if (ret < 0)
140                                 goto err;
141                         for (; i < indio_dev->buffer->scan_count; i++) {
142                                 j = __ffs(mask);
143                                 mask &= ~(1 << j);
144                                 data[i] = be16_to_cpup(
145                                         (__be16 *)&(st->rx[j*2]));
146                         }
147                 }
148         }
149         /* Guaranteed to be aligned with 8 byte boundary */
150         if (ring->scan_timestamp)
151                 *((s64 *)(data + ((i + 3)/4)*4)) = pf->timestamp;
152         ring->access->store_to(indio_dev->buffer, (u8 *) data, pf->timestamp);
153
154         iio_trigger_notify_done(indio_dev->trig);
155
156         kfree(data);
157         return IRQ_HANDLED;
158
159 err:
160         kfree(data);
161         return ret;
162 }
163
164 void adis16400_unconfigure_ring(struct iio_dev *indio_dev)
165 {
166         iio_dealloc_pollfunc(indio_dev->pollfunc);
167         iio_sw_rb_free(indio_dev->buffer);
168 }
169
170 static const struct iio_buffer_setup_ops adis16400_ring_setup_ops = {
171         .preenable = &iio_sw_buffer_preenable,
172         .postenable = &iio_triggered_buffer_postenable,
173         .predisable = &iio_triggered_buffer_predisable,
174 };
175
176 int adis16400_configure_ring(struct iio_dev *indio_dev)
177 {
178         int ret = 0;
179         struct iio_buffer *ring;
180
181         ring = iio_sw_rb_allocate(indio_dev);
182         if (!ring) {
183                 ret = -ENOMEM;
184                 return ret;
185         }
186         indio_dev->buffer = ring;
187         /* Effectively select the ring buffer implementation */
188         ring->access = &ring_sw_access_funcs;
189         ring->bpe = 2;
190         ring->scan_timestamp = true;
191         ring->setup_ops = &adis16400_ring_setup_ops;
192         ring->owner = THIS_MODULE;
193
194         indio_dev->pollfunc = iio_alloc_pollfunc(&iio_pollfunc_store_time,
195                                                  &adis16400_trigger_handler,
196                                                  IRQF_ONESHOT,
197                                                  indio_dev,
198                                                  "%s_consumer%d",
199                                                  indio_dev->name,
200                                                  indio_dev->id);
201         if (indio_dev->pollfunc == NULL) {
202                 ret = -ENOMEM;
203                 goto error_iio_sw_rb_free;
204         }
205
206         indio_dev->modes |= INDIO_BUFFER_TRIGGERED;
207         return 0;
208 error_iio_sw_rb_free:
209         iio_sw_rb_free(indio_dev->buffer);
210         return ret;
211 }