]> Pileus Git - ~andy/linux/blob - drivers/staging/iio/adc/ad7780.c
Merge tag 'irqdomain-for-linus' of git://git.secretlab.ca/git/linux-2.6
[~andy/linux] / drivers / staging / iio / adc / ad7780.c
1 /*
2  * AD7780/AD7781 SPI ADC driver
3  *
4  * Copyright 2011 Analog Devices Inc.
5  *
6  * Licensed under the GPL-2.
7  */
8
9 #include <linux/interrupt.h>
10 #include <linux/device.h>
11 #include <linux/kernel.h>
12 #include <linux/slab.h>
13 #include <linux/sysfs.h>
14 #include <linux/spi/spi.h>
15 #include <linux/regulator/consumer.h>
16 #include <linux/err.h>
17 #include <linux/sched.h>
18 #include <linux/gpio.h>
19 #include <linux/module.h>
20
21 #include <linux/iio/iio.h>
22 #include <linux/iio/sysfs.h>
23
24 #include "ad7780.h"
25
26 #define AD7780_RDY      (1 << 7)
27 #define AD7780_FILTER   (1 << 6)
28 #define AD7780_ERR      (1 << 5)
29 #define AD7780_ID1      (1 << 4)
30 #define AD7780_ID0      (1 << 3)
31 #define AD7780_GAIN     (1 << 2)
32 #define AD7780_PAT1     (1 << 1)
33 #define AD7780_PAT0     (1 << 0)
34
35 struct ad7780_chip_info {
36         struct iio_chan_spec            channel;
37 };
38
39 struct ad7780_state {
40         struct spi_device               *spi;
41         const struct ad7780_chip_info   *chip_info;
42         struct regulator                *reg;
43         struct ad7780_platform_data     *pdata;
44         wait_queue_head_t               wq_data_avail;
45         bool                            done;
46         u16                             int_vref_mv;
47         struct spi_transfer             xfer;
48         struct spi_message              msg;
49         /*
50          * DMA (thus cache coherency maintenance) requires the
51          * transfer buffers to live in their own cache lines.
52          */
53         unsigned int                    data ____cacheline_aligned;
54 };
55
56 enum ad7780_supported_device_ids {
57         ID_AD7780,
58         ID_AD7781,
59 };
60
61 static int ad7780_read(struct ad7780_state *st, int *val)
62 {
63         int ret;
64
65         spi_bus_lock(st->spi->master);
66
67         enable_irq(st->spi->irq);
68         st->done = false;
69         gpio_set_value(st->pdata->gpio_pdrst, 1);
70
71         ret = wait_event_interruptible(st->wq_data_avail, st->done);
72         disable_irq_nosync(st->spi->irq);
73         if (ret)
74                 goto out;
75
76         ret = spi_sync_locked(st->spi, &st->msg);
77         *val = be32_to_cpu(st->data);
78 out:
79         gpio_set_value(st->pdata->gpio_pdrst, 0);
80         spi_bus_unlock(st->spi->master);
81
82         return ret;
83 }
84
85 static int ad7780_read_raw(struct iio_dev *indio_dev,
86                            struct iio_chan_spec const *chan,
87                            int *val,
88                            int *val2,
89                            long m)
90 {
91         struct ad7780_state *st = iio_priv(indio_dev);
92         struct iio_chan_spec channel = st->chip_info->channel;
93         int ret, smpl = 0;
94         unsigned long scale_uv;
95
96         switch (m) {
97         case IIO_CHAN_INFO_RAW:
98                 mutex_lock(&indio_dev->mlock);
99                 ret = ad7780_read(st, &smpl);
100                 mutex_unlock(&indio_dev->mlock);
101
102                 if (ret < 0)
103                         return ret;
104
105                 if ((smpl & AD7780_ERR) ||
106                         !((smpl & AD7780_PAT0) && !(smpl & AD7780_PAT1)))
107                         return -EIO;
108
109                 *val = (smpl >> channel.scan_type.shift) &
110                         ((1 << (channel.scan_type.realbits)) - 1);
111                 *val -= (1 << (channel.scan_type.realbits - 1));
112
113                 if (!(smpl & AD7780_GAIN))
114                         *val *= 128;
115
116                 return IIO_VAL_INT;
117         case IIO_CHAN_INFO_SCALE:
118                 scale_uv = (st->int_vref_mv * 100000)
119                         >> (channel.scan_type.realbits - 1);
120                 *val =  scale_uv / 100000;
121                 *val2 = (scale_uv % 100000) * 10;
122                 return IIO_VAL_INT_PLUS_MICRO;
123         }
124         return -EINVAL;
125 }
126
127 static const struct ad7780_chip_info ad7780_chip_info_tbl[] = {
128         [ID_AD7780] = {
129                 .channel = {
130                         .type = IIO_VOLTAGE,
131                         .indexed = 1,
132                         .channel = 0,
133                         .info_mask = IIO_CHAN_INFO_RAW_SEPARATE_BIT |
134                         IIO_CHAN_INFO_SCALE_SHARED_BIT,
135                         .scan_type = {
136                                 .sign = 's',
137                                 .realbits = 24,
138                                 .storagebits = 32,
139                                 .shift = 8,
140                         },
141                 },
142         },
143         [ID_AD7781] = {
144                 .channel = {
145                         .type = IIO_VOLTAGE,
146                         .indexed = 1,
147                         .channel = 0,
148                         .info_mask = IIO_CHAN_INFO_RAW_SEPARATE_BIT |
149                         IIO_CHAN_INFO_SCALE_SHARED_BIT,
150                         .scan_type = {
151                                 .sign = 's',
152                                 .realbits = 20,
153                                 .storagebits = 32,
154                                 .shift = 12,
155                         },
156                 },
157         },
158 };
159
160 /**
161  *  Interrupt handler
162  */
163 static irqreturn_t ad7780_interrupt(int irq, void *dev_id)
164 {
165         struct ad7780_state *st = dev_id;
166
167         st->done = true;
168         wake_up_interruptible(&st->wq_data_avail);
169
170         return IRQ_HANDLED;
171 };
172
173 static const struct iio_info ad7780_info = {
174         .read_raw = &ad7780_read_raw,
175         .driver_module = THIS_MODULE,
176 };
177
178 static int __devinit ad7780_probe(struct spi_device *spi)
179 {
180         struct ad7780_platform_data *pdata = spi->dev.platform_data;
181         struct ad7780_state *st;
182         struct iio_dev *indio_dev;
183         int ret, voltage_uv = 0;
184
185         if (!pdata) {
186                 dev_dbg(&spi->dev, "no platform data?\n");
187                 return -ENODEV;
188         }
189
190         indio_dev = iio_device_alloc(sizeof(*st));
191         if (indio_dev == NULL)
192                 return -ENOMEM;
193
194         st = iio_priv(indio_dev);
195
196         st->reg = regulator_get(&spi->dev, "vcc");
197         if (!IS_ERR(st->reg)) {
198                 ret = regulator_enable(st->reg);
199                 if (ret)
200                         goto error_put_reg;
201
202                 voltage_uv = regulator_get_voltage(st->reg);
203         }
204
205         st->chip_info =
206                 &ad7780_chip_info_tbl[spi_get_device_id(spi)->driver_data];
207
208         st->pdata = pdata;
209
210         if (pdata && pdata->vref_mv)
211                 st->int_vref_mv = pdata->vref_mv;
212         else if (voltage_uv)
213                 st->int_vref_mv = voltage_uv / 1000;
214         else
215                 dev_warn(&spi->dev, "reference voltage unspecified\n");
216
217         spi_set_drvdata(spi, indio_dev);
218         st->spi = spi;
219
220         indio_dev->dev.parent = &spi->dev;
221         indio_dev->name = spi_get_device_id(spi)->name;
222         indio_dev->modes = INDIO_DIRECT_MODE;
223         indio_dev->channels = &st->chip_info->channel;
224         indio_dev->num_channels = 1;
225         indio_dev->info = &ad7780_info;
226
227         init_waitqueue_head(&st->wq_data_avail);
228
229         /* Setup default message */
230
231         st->xfer.rx_buf = &st->data;
232         st->xfer.len = st->chip_info->channel.scan_type.storagebits / 8;
233
234         spi_message_init(&st->msg);
235         spi_message_add_tail(&st->xfer, &st->msg);
236
237         ret = gpio_request_one(st->pdata->gpio_pdrst, GPIOF_OUT_INIT_LOW,
238                                "AD7780 /PDRST");
239         if (ret) {
240                 dev_err(&spi->dev, "failed to request GPIO PDRST\n");
241                 goto error_disable_reg;
242         }
243
244         ret = request_irq(spi->irq, ad7780_interrupt,
245                 IRQF_TRIGGER_FALLING, spi_get_device_id(spi)->name, st);
246         if (ret)
247                 goto error_free_gpio;
248
249         disable_irq(spi->irq);
250
251         ret = iio_device_register(indio_dev);
252         if (ret)
253                 goto error_free_irq;
254
255         return 0;
256
257 error_free_irq:
258         free_irq(spi->irq, st);
259 error_free_gpio:
260         gpio_free(st->pdata->gpio_pdrst);
261 error_disable_reg:
262         if (!IS_ERR(st->reg))
263                 regulator_disable(st->reg);
264 error_put_reg:
265         if (!IS_ERR(st->reg))
266                 regulator_put(st->reg);
267
268         iio_device_free(indio_dev);
269
270         return ret;
271 }
272
273 static int ad7780_remove(struct spi_device *spi)
274 {
275         struct iio_dev *indio_dev = spi_get_drvdata(spi);
276         struct ad7780_state *st = iio_priv(indio_dev);
277
278         iio_device_unregister(indio_dev);
279         free_irq(spi->irq, st);
280         gpio_free(st->pdata->gpio_pdrst);
281         if (!IS_ERR(st->reg)) {
282                 regulator_disable(st->reg);
283                 regulator_put(st->reg);
284         }
285         iio_device_free(indio_dev);
286
287         return 0;
288 }
289
290 static const struct spi_device_id ad7780_id[] = {
291         {"ad7780", ID_AD7780},
292         {"ad7781", ID_AD7781},
293         {}
294 };
295 MODULE_DEVICE_TABLE(spi, ad7780_id);
296
297 static struct spi_driver ad7780_driver = {
298         .driver = {
299                 .name   = "ad7780",
300                 .owner  = THIS_MODULE,
301         },
302         .probe          = ad7780_probe,
303         .remove         = __devexit_p(ad7780_remove),
304         .id_table       = ad7780_id,
305 };
306 module_spi_driver(ad7780_driver);
307
308 MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
309 MODULE_DESCRIPTION("Analog Devices AD7780/1 ADC");
310 MODULE_LICENSE("GPL v2");