IIO: Move core headers to include/linux/iio
[firefly-linux-kernel-4.4.55.git] / drivers / staging / iio / meter / ade7758_ring.c
1 /*
2  * ADE7758 Poly Phase Multifunction Energy Metering IC driver
3  *
4  * Copyright 2010-2011 Analog Devices Inc.
5  *
6  * Licensed under the GPL-2.
7  */
8 #include <linux/export.h>
9 #include <linux/interrupt.h>
10 #include <linux/kernel.h>
11 #include <linux/spi/spi.h>
12 #include <linux/slab.h>
13 #include <asm/unaligned.h>
14
15 #include <linux/iio/iio.h>
16 #include "../ring_sw.h"
17 #include <linux/iio/trigger_consumer.h>
18 #include "ade7758.h"
19
20 /**
21  * ade7758_spi_read_burst() - read data registers
22  * @dev: device associated with child of actual device (iio_dev or iio_trig)
23  **/
24 static int ade7758_spi_read_burst(struct device *dev)
25 {
26         struct iio_dev *indio_dev = dev_get_drvdata(dev);
27         struct ade7758_state *st = iio_priv(indio_dev);
28         int ret;
29
30         ret = spi_sync(st->us, &st->ring_msg);
31         if (ret)
32                 dev_err(&st->us->dev, "problem when reading WFORM value\n");
33
34         return ret;
35 }
36
37 static int ade7758_write_waveform_type(struct device *dev, unsigned type)
38 {
39         int ret;
40         u8 reg;
41
42         ret = ade7758_spi_read_reg_8(dev,
43                         ADE7758_WAVMODE,
44                         &reg);
45         if (ret)
46                 goto out;
47
48         reg &= ~0x1F;
49         reg |= type & 0x1F;
50
51         ret = ade7758_spi_write_reg_8(dev,
52                         ADE7758_WAVMODE,
53                         reg);
54 out:
55         return ret;
56 }
57
58 /* Whilst this makes a lot of calls to iio_sw_ring functions - it is to device
59  * specific to be rolled into the core.
60  */
61 static irqreturn_t ade7758_trigger_handler(int irq, void *p)
62 {
63         struct iio_poll_func *pf = p;
64         struct iio_dev *indio_dev = pf->indio_dev;
65         struct iio_buffer *ring = indio_dev->buffer;
66         struct ade7758_state *st = iio_priv(indio_dev);
67         s64 dat64[2];
68         u32 *dat32 = (u32 *)dat64;
69
70         if (!bitmap_empty(indio_dev->active_scan_mask, indio_dev->masklength))
71                 if (ade7758_spi_read_burst(&indio_dev->dev) >= 0)
72                         *dat32 = get_unaligned_be32(&st->rx_buf[5]) & 0xFFFFFF;
73
74         /* Guaranteed to be aligned with 8 byte boundary */
75         if (indio_dev->scan_timestamp)
76                 dat64[1] = pf->timestamp;
77
78         ring->access->store_to(ring, (u8 *)dat64, pf->timestamp);
79
80         iio_trigger_notify_done(indio_dev->trig);
81
82         return IRQ_HANDLED;
83 }
84
85 /**
86  * ade7758_ring_preenable() setup the parameters of the ring before enabling
87  *
88  * The complex nature of the setting of the number of bytes per datum is due
89  * to this driver currently ensuring that the timestamp is stored at an 8
90  * byte boundary.
91  **/
92 static int ade7758_ring_preenable(struct iio_dev *indio_dev)
93 {
94         struct ade7758_state *st = iio_priv(indio_dev);
95         unsigned channel;
96         int ret;
97
98         if (!bitmap_empty(indio_dev->active_scan_mask, indio_dev->masklength))
99                 return -EINVAL;
100
101         ret = iio_sw_buffer_preenable(indio_dev);
102         if (ret < 0)
103                 return ret;
104
105         channel = find_first_bit(indio_dev->active_scan_mask,
106                                  indio_dev->masklength);
107
108         ade7758_write_waveform_type(&indio_dev->dev,
109                 st->ade7758_ring_channels[channel].address);
110
111         return 0;
112 }
113
114 static const struct iio_buffer_setup_ops ade7758_ring_setup_ops = {
115         .preenable = &ade7758_ring_preenable,
116         .postenable = &iio_triggered_buffer_postenable,
117         .predisable = &iio_triggered_buffer_predisable,
118 };
119
120 void ade7758_unconfigure_ring(struct iio_dev *indio_dev)
121 {
122         iio_dealloc_pollfunc(indio_dev->pollfunc);
123         iio_sw_rb_free(indio_dev->buffer);
124 }
125
126 int ade7758_configure_ring(struct iio_dev *indio_dev)
127 {
128         struct ade7758_state *st = iio_priv(indio_dev);
129         int ret = 0;
130
131         indio_dev->buffer = iio_sw_rb_allocate(indio_dev);
132         if (!indio_dev->buffer) {
133                 ret = -ENOMEM;
134                 return ret;
135         }
136
137         indio_dev->setup_ops = &ade7758_ring_setup_ops;
138
139         indio_dev->pollfunc = iio_alloc_pollfunc(&iio_pollfunc_store_time,
140                                                  &ade7758_trigger_handler,
141                                                  0,
142                                                  indio_dev,
143                                                  "ade7759_consumer%d",
144                                                  indio_dev->id);
145         if (indio_dev->pollfunc == NULL) {
146                 ret = -ENOMEM;
147                 goto error_iio_sw_rb_free;
148         }
149
150         indio_dev->modes |= INDIO_BUFFER_TRIGGERED;
151
152         st->tx_buf[0] = ADE7758_READ_REG(ADE7758_RSTATUS);
153         st->tx_buf[1] = 0;
154         st->tx_buf[2] = 0;
155         st->tx_buf[3] = 0;
156         st->tx_buf[4] = ADE7758_READ_REG(ADE7758_WFORM);
157         st->tx_buf[5] = 0;
158         st->tx_buf[6] = 0;
159         st->tx_buf[7] = 0;
160
161         /* build spi ring message */
162         st->ring_xfer[0].tx_buf = &st->tx_buf[0];
163         st->ring_xfer[0].len = 1;
164         st->ring_xfer[0].bits_per_word = 8;
165         st->ring_xfer[0].delay_usecs = 4;
166         st->ring_xfer[1].rx_buf = &st->rx_buf[1];
167         st->ring_xfer[1].len = 3;
168         st->ring_xfer[1].bits_per_word = 8;
169         st->ring_xfer[1].cs_change = 1;
170
171         st->ring_xfer[2].tx_buf = &st->tx_buf[4];
172         st->ring_xfer[2].len = 1;
173         st->ring_xfer[2].bits_per_word = 8;
174         st->ring_xfer[2].delay_usecs = 1;
175         st->ring_xfer[3].rx_buf = &st->rx_buf[5];
176         st->ring_xfer[3].len = 3;
177         st->ring_xfer[3].bits_per_word = 8;
178
179         spi_message_init(&st->ring_msg);
180         spi_message_add_tail(&st->ring_xfer[0], &st->ring_msg);
181         spi_message_add_tail(&st->ring_xfer[1], &st->ring_msg);
182         spi_message_add_tail(&st->ring_xfer[2], &st->ring_msg);
183         spi_message_add_tail(&st->ring_xfer[3], &st->ring_msg);
184
185         return 0;
186
187 error_iio_sw_rb_free:
188         iio_sw_rb_free(indio_dev->buffer);
189         return ret;
190 }
191
192 void ade7758_uninitialize_ring(struct iio_dev *indio_dev)
193 {
194         iio_buffer_unregister(indio_dev);
195 }