Merge branch 'for-linus' of git://git.kernel.dk/linux-block
[linux-2.6-block.git] / drivers / iio / adc / ad7793.c
CommitLineData
88bc3054 1/*
8c29ecd3 2 * AD7785/AD7792/AD7793/AD7794/AD7795 SPI ADC driver
88bc3054 3 *
f316983f 4 * Copyright 2011-2012 Analog Devices Inc.
88bc3054
MH
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/delay.h>
45296236 19#include <linux/module.h>
88bc3054 20
06458e27
JC
21#include <linux/iio/iio.h>
22#include <linux/iio/sysfs.h>
23#include <linux/iio/buffer.h>
06458e27
JC
24#include <linux/iio/trigger.h>
25#include <linux/iio/trigger_consumer.h>
82796edc 26#include <linux/iio/triggered_buffer.h>
1abec6ac 27#include <linux/iio/adc/ad_sigma_delta.h>
f87f1a23 28#include <linux/platform_data/ad7793.h>
88bc3054 29
891c8bce
LPC
30/* Registers */
31#define AD7793_REG_COMM 0 /* Communications Register (WO, 8-bit) */
32#define AD7793_REG_STAT 0 /* Status Register (RO, 8-bit) */
33#define AD7793_REG_MODE 1 /* Mode Register (RW, 16-bit */
34#define AD7793_REG_CONF 2 /* Configuration Register (RW, 16-bit) */
35#define AD7793_REG_DATA 3 /* Data Register (RO, 16-/24-bit) */
36#define AD7793_REG_ID 4 /* ID Register (RO, 8-bit) */
37#define AD7793_REG_IO 5 /* IO Register (RO, 8-bit) */
38#define AD7793_REG_OFFSET 6 /* Offset Register (RW, 16-bit
39 * (AD7792)/24-bit (AD7793)) */
40#define AD7793_REG_FULLSALE 7 /* Full-Scale Register
41 * (RW, 16-bit (AD7792)/24-bit (AD7793)) */
42
43/* Communications Register Bit Designations (AD7793_REG_COMM) */
44#define AD7793_COMM_WEN (1 << 7) /* Write Enable */
45#define AD7793_COMM_WRITE (0 << 6) /* Write Operation */
46#define AD7793_COMM_READ (1 << 6) /* Read Operation */
47#define AD7793_COMM_ADDR(x) (((x) & 0x7) << 3) /* Register Address */
48#define AD7793_COMM_CREAD (1 << 2) /* Continuous Read of Data Register */
49
50/* Status Register Bit Designations (AD7793_REG_STAT) */
51#define AD7793_STAT_RDY (1 << 7) /* Ready */
52#define AD7793_STAT_ERR (1 << 6) /* Error (Overrange, Underrange) */
53#define AD7793_STAT_CH3 (1 << 2) /* Channel 3 */
54#define AD7793_STAT_CH2 (1 << 1) /* Channel 2 */
55#define AD7793_STAT_CH1 (1 << 0) /* Channel 1 */
56
57/* Mode Register Bit Designations (AD7793_REG_MODE) */
58#define AD7793_MODE_SEL(x) (((x) & 0x7) << 13) /* Operation Mode Select */
59#define AD7793_MODE_SEL_MASK (0x7 << 13) /* Operation Mode Select mask */
60#define AD7793_MODE_CLKSRC(x) (((x) & 0x3) << 6) /* ADC Clock Source Select */
61#define AD7793_MODE_RATE(x) ((x) & 0xF) /* Filter Update Rate Select */
62
63#define AD7793_MODE_CONT 0 /* Continuous Conversion Mode */
64#define AD7793_MODE_SINGLE 1 /* Single Conversion Mode */
65#define AD7793_MODE_IDLE 2 /* Idle Mode */
66#define AD7793_MODE_PWRDN 3 /* Power-Down Mode */
67#define AD7793_MODE_CAL_INT_ZERO 4 /* Internal Zero-Scale Calibration */
68#define AD7793_MODE_CAL_INT_FULL 5 /* Internal Full-Scale Calibration */
69#define AD7793_MODE_CAL_SYS_ZERO 6 /* System Zero-Scale Calibration */
70#define AD7793_MODE_CAL_SYS_FULL 7 /* System Full-Scale Calibration */
71
72#define AD7793_CLK_INT 0 /* Internal 64 kHz Clock not
73 * available at the CLK pin */
74#define AD7793_CLK_INT_CO 1 /* Internal 64 kHz Clock available
75 * at the CLK pin */
76#define AD7793_CLK_EXT 2 /* External 64 kHz Clock */
77#define AD7793_CLK_EXT_DIV2 3 /* External Clock divided by 2 */
78
79/* Configuration Register Bit Designations (AD7793_REG_CONF) */
80#define AD7793_CONF_VBIAS(x) (((x) & 0x3) << 14) /* Bias Voltage
81 * Generator Enable */
82#define AD7793_CONF_BO_EN (1 << 13) /* Burnout Current Enable */
83#define AD7793_CONF_UNIPOLAR (1 << 12) /* Unipolar/Bipolar Enable */
84#define AD7793_CONF_BOOST (1 << 11) /* Boost Enable */
85#define AD7793_CONF_GAIN(x) (((x) & 0x7) << 8) /* Gain Select */
86#define AD7793_CONF_REFSEL(x) ((x) << 6) /* INT/EXT Reference Select */
87#define AD7793_CONF_BUF (1 << 4) /* Buffered Mode Enable */
88#define AD7793_CONF_CHAN(x) ((x) & 0xf) /* Channel select */
89#define AD7793_CONF_CHAN_MASK 0xf /* Channel select mask */
90
91#define AD7793_CH_AIN1P_AIN1M 0 /* AIN1(+) - AIN1(-) */
92#define AD7793_CH_AIN2P_AIN2M 1 /* AIN2(+) - AIN2(-) */
93#define AD7793_CH_AIN3P_AIN3M 2 /* AIN3(+) - AIN3(-) */
94#define AD7793_CH_AIN1M_AIN1M 3 /* AIN1(-) - AIN1(-) */
95#define AD7793_CH_TEMP 6 /* Temp Sensor */
96#define AD7793_CH_AVDD_MONITOR 7 /* AVDD Monitor */
97
98#define AD7795_CH_AIN4P_AIN4M 4 /* AIN4(+) - AIN4(-) */
99#define AD7795_CH_AIN5P_AIN5M 5 /* AIN5(+) - AIN5(-) */
100#define AD7795_CH_AIN6P_AIN6M 6 /* AIN6(+) - AIN6(-) */
101#define AD7795_CH_AIN1M_AIN1M 8 /* AIN1(-) - AIN1(-) */
102
103/* ID Register Bit Designations (AD7793_REG_ID) */
785171fd 104#define AD7785_ID 0x3
891c8bce
LPC
105#define AD7792_ID 0xA
106#define AD7793_ID 0xB
e786cc26 107#define AD7794_ID 0xF
891c8bce 108#define AD7795_ID 0xF
fd1a8b91
LPC
109#define AD7796_ID 0xA
110#define AD7797_ID 0xB
2edb769d
LPC
111#define AD7798_ID 0x8
112#define AD7799_ID 0x9
891c8bce
LPC
113#define AD7793_ID_MASK 0xF
114
115/* IO (Excitation Current Sources) Register Bit Designations (AD7793_REG_IO) */
116#define AD7793_IO_IEXC1_IOUT1_IEXC2_IOUT2 0 /* IEXC1 connect to IOUT1,
117 * IEXC2 connect to IOUT2 */
118#define AD7793_IO_IEXC1_IOUT2_IEXC2_IOUT1 1 /* IEXC1 connect to IOUT2,
119 * IEXC2 connect to IOUT1 */
120#define AD7793_IO_IEXC1_IEXC2_IOUT1 2 /* Both current sources
121 * IEXC1,2 connect to IOUT1 */
122#define AD7793_IO_IEXC1_IEXC2_IOUT2 3 /* Both current sources
123 * IEXC1,2 connect to IOUT2 */
124
125#define AD7793_IO_IXCEN_10uA (1 << 0) /* Excitation Current 10uA */
126#define AD7793_IO_IXCEN_210uA (2 << 0) /* Excitation Current 210uA */
127#define AD7793_IO_IXCEN_1mA (3 << 0) /* Excitation Current 1mA */
128
88bc3054
MH
129/* NOTE:
130 * The AD7792/AD7793 features a dual use data out ready DOUT/RDY output.
131 * In order to avoid contentions on the SPI bus, it's therefore necessary
132 * to use spi bus locking.
133 *
134 * The DOUT/RDY output must also be wired to an interrupt capable GPIO.
135 */
136
2edb769d
LPC
137#define AD7793_FLAG_HAS_CLKSEL BIT(0)
138#define AD7793_FLAG_HAS_REFSEL BIT(1)
139#define AD7793_FLAG_HAS_VBIAS BIT(2)
140#define AD7793_HAS_EXITATION_CURRENT BIT(3)
fd1a8b91
LPC
141#define AD7793_FLAG_HAS_GAIN BIT(4)
142#define AD7793_FLAG_HAS_BUFFER BIT(5)
2edb769d 143
88bc3054 144struct ad7793_chip_info {
e786cc26 145 unsigned int id;
525e643e
LPC
146 const struct iio_chan_spec *channels;
147 unsigned int num_channels;
2edb769d 148 unsigned int flags;
fd1a8b91
LPC
149
150 const struct iio_info *iio_info;
151 const u16 *sample_freq_avail;
88bc3054
MH
152};
153
154struct ad7793_state {
88bc3054
MH
155 const struct ad7793_chip_info *chip_info;
156 struct regulator *reg;
88bc3054
MH
157 u16 int_vref_mv;
158 u16 mode;
159 u16 conf;
160 u32 scale_avail[8][2];
8c2c6ba6 161
1abec6ac
LPC
162 struct ad_sigma_delta sd;
163
88bc3054
MH
164};
165
166enum ad7793_supported_device_ids {
8c29ecd3 167 ID_AD7785,
88bc3054
MH
168 ID_AD7792,
169 ID_AD7793,
525e643e
LPC
170 ID_AD7794,
171 ID_AD7795,
fd1a8b91
LPC
172 ID_AD7796,
173 ID_AD7797,
2edb769d
LPC
174 ID_AD7798,
175 ID_AD7799,
88bc3054
MH
176};
177
1abec6ac 178static struct ad7793_state *ad_sigma_delta_to_ad7793(struct ad_sigma_delta *sd)
88bc3054 179{
1abec6ac 180 return container_of(sd, struct ad7793_state, sd);
88bc3054
MH
181}
182
1abec6ac 183static int ad7793_set_channel(struct ad_sigma_delta *sd, unsigned int channel)
88bc3054 184{
1abec6ac 185 struct ad7793_state *st = ad_sigma_delta_to_ad7793(sd);
88bc3054 186
1abec6ac
LPC
187 st->conf &= ~AD7793_CONF_CHAN_MASK;
188 st->conf |= AD7793_CONF_CHAN(channel);
88bc3054 189
1abec6ac 190 return ad_sd_write_reg(&st->sd, AD7793_REG_CONF, 2, st->conf);
88bc3054
MH
191}
192
1abec6ac
LPC
193static int ad7793_set_mode(struct ad_sigma_delta *sd,
194 enum ad_sigma_delta_mode mode)
88bc3054 195{
1abec6ac 196 struct ad7793_state *st = ad_sigma_delta_to_ad7793(sd);
88bc3054 197
1abec6ac
LPC
198 st->mode &= ~AD7793_MODE_SEL_MASK;
199 st->mode |= AD7793_MODE_SEL(mode);
88bc3054 200
1abec6ac 201 return ad_sd_write_reg(&st->sd, AD7793_REG_MODE, 2, st->mode);
88bc3054
MH
202}
203
1abec6ac
LPC
204static const struct ad_sigma_delta_info ad7793_sigma_delta_info = {
205 .set_channel = ad7793_set_channel,
206 .set_mode = ad7793_set_mode,
207 .has_registers = true,
208 .addr_shift = 3,
209 .read_mask = BIT(6),
210};
88bc3054 211
1abec6ac 212static const struct ad_sd_calib_data ad7793_calib_arr[6] = {
88bc3054
MH
213 {AD7793_MODE_CAL_INT_ZERO, AD7793_CH_AIN1P_AIN1M},
214 {AD7793_MODE_CAL_INT_FULL, AD7793_CH_AIN1P_AIN1M},
215 {AD7793_MODE_CAL_INT_ZERO, AD7793_CH_AIN2P_AIN2M},
216 {AD7793_MODE_CAL_INT_FULL, AD7793_CH_AIN2P_AIN2M},
217 {AD7793_MODE_CAL_INT_ZERO, AD7793_CH_AIN3P_AIN3M},
218 {AD7793_MODE_CAL_INT_FULL, AD7793_CH_AIN3P_AIN3M}
219};
220
221static int ad7793_calibrate_all(struct ad7793_state *st)
222{
1abec6ac
LPC
223 return ad_sd_calibrate_all(&st->sd, ad7793_calib_arr,
224 ARRAY_SIZE(ad7793_calib_arr));
88bc3054
MH
225}
226
2edb769d
LPC
227static int ad7793_check_platform_data(struct ad7793_state *st,
228 const struct ad7793_platform_data *pdata)
229{
230 if ((pdata->current_source_direction == AD7793_IEXEC1_IEXEC2_IOUT1 ||
231 pdata->current_source_direction == AD7793_IEXEC1_IEXEC2_IOUT2) &&
232 ((pdata->exitation_current != AD7793_IX_10uA) &&
233 (pdata->exitation_current != AD7793_IX_210uA)))
234 return -EINVAL;
235
236 if (!(st->chip_info->flags & AD7793_FLAG_HAS_CLKSEL) &&
237 pdata->clock_src != AD7793_CLK_SRC_INT)
238 return -EINVAL;
239
240 if (!(st->chip_info->flags & AD7793_FLAG_HAS_REFSEL) &&
241 pdata->refsel != AD7793_REFSEL_REFIN1)
242 return -EINVAL;
243
244 if (!(st->chip_info->flags & AD7793_FLAG_HAS_VBIAS) &&
245 pdata->bias_voltage != AD7793_BIAS_VOLTAGE_DISABLED)
246 return -EINVAL;
247
248 if (!(st->chip_info->flags & AD7793_HAS_EXITATION_CURRENT) &&
249 pdata->exitation_current != AD7793_IX_DISABLED)
250 return -EINVAL;
251
252 return 0;
253}
254
1abec6ac 255static int ad7793_setup(struct iio_dev *indio_dev,
dd2c1013
LPC
256 const struct ad7793_platform_data *pdata,
257 unsigned int vref_mv)
88bc3054 258{
1abec6ac 259 struct ad7793_state *st = iio_priv(indio_dev);
88bc3054
MH
260 int i, ret = -1;
261 unsigned long long scale_uv;
262 u32 id;
263
2edb769d
LPC
264 ret = ad7793_check_platform_data(st, pdata);
265 if (ret)
266 return ret;
d21f30c9 267
88bc3054 268 /* reset the serial interface */
1abec6ac 269 ret = spi_write(st->sd.spi, (u8 *)&ret, sizeof(ret));
88bc3054
MH
270 if (ret < 0)
271 goto out;
3e4334f2 272 usleep_range(500, 2000); /* Wait for at least 500us */
88bc3054
MH
273
274 /* write/read test for device presence */
1abec6ac 275 ret = ad_sd_read_reg(&st->sd, AD7793_REG_ID, 1, &id);
88bc3054
MH
276 if (ret)
277 goto out;
278
279 id &= AD7793_ID_MASK;
280
e786cc26 281 if (id != st->chip_info->id) {
1abec6ac 282 dev_err(&st->sd.spi->dev, "device ID query failed\n");
88bc3054
MH
283 goto out;
284 }
285
d21f30c9 286 st->mode = AD7793_MODE_RATE(1);
2edb769d
LPC
287 st->conf = 0;
288
289 if (st->chip_info->flags & AD7793_FLAG_HAS_CLKSEL)
290 st->mode |= AD7793_MODE_CLKSRC(pdata->clock_src);
291 if (st->chip_info->flags & AD7793_FLAG_HAS_REFSEL)
292 st->conf |= AD7793_CONF_REFSEL(pdata->refsel);
293 if (st->chip_info->flags & AD7793_FLAG_HAS_VBIAS)
294 st->conf |= AD7793_CONF_VBIAS(pdata->bias_voltage);
fd1a8b91 295 if (pdata->buffered || !(st->chip_info->flags & AD7793_FLAG_HAS_BUFFER))
d21f30c9 296 st->conf |= AD7793_CONF_BUF;
2edb769d
LPC
297 if (pdata->boost_enable &&
298 (st->chip_info->flags & AD7793_FLAG_HAS_VBIAS))
d21f30c9
LPC
299 st->conf |= AD7793_CONF_BOOST;
300 if (pdata->burnout_current)
301 st->conf |= AD7793_CONF_BO_EN;
302 if (pdata->unipolar)
303 st->conf |= AD7793_CONF_UNIPOLAR;
88bc3054 304
fd1a8b91
LPC
305 if (!(st->chip_info->flags & AD7793_FLAG_HAS_GAIN))
306 st->conf |= AD7793_CONF_GAIN(7);
307
1abec6ac 308 ret = ad7793_set_mode(&st->sd, AD_SD_MODE_IDLE);
88bc3054
MH
309 if (ret)
310 goto out;
311
1abec6ac 312 ret = ad7793_set_channel(&st->sd, 0);
88bc3054
MH
313 if (ret)
314 goto out;
315
2edb769d
LPC
316 if (st->chip_info->flags & AD7793_HAS_EXITATION_CURRENT) {
317 ret = ad_sd_write_reg(&st->sd, AD7793_REG_IO, 1,
318 pdata->exitation_current |
319 (pdata->current_source_direction << 2));
320 if (ret)
321 goto out;
322 }
88bc3054
MH
323
324 ret = ad7793_calibrate_all(st);
325 if (ret)
326 goto out;
327
328 /* Populate available ADC input ranges */
329 for (i = 0; i < ARRAY_SIZE(st->scale_avail); i++) {
dd2c1013 330 scale_uv = ((u64)vref_mv * 100000000)
525e643e 331 >> (st->chip_info->channels[0].scan_type.realbits -
88bc3054
MH
332 (!!(st->conf & AD7793_CONF_UNIPOLAR) ? 0 : 1));
333 scale_uv >>= i;
334
335 st->scale_avail[i][1] = do_div(scale_uv, 100000000) * 10;
336 st->scale_avail[i][0] = scale_uv;
337 }
338
339 return 0;
340out:
1abec6ac 341 dev_err(&st->sd.spi->dev, "setup failed\n");
88bc3054
MH
342 return ret;
343}
344
fd1a8b91
LPC
345static const u16 ad7793_sample_freq_avail[16] = {0, 470, 242, 123, 62, 50, 39,
346 33, 19, 17, 16, 12, 10, 8, 6, 4};
347
348static const u16 ad7797_sample_freq_avail[16] = {0, 0, 0, 123, 62, 50, 0,
349 33, 0, 17, 16, 12, 10, 8, 6, 4};
88bc3054
MH
350
351static ssize_t ad7793_read_frequency(struct device *dev,
352 struct device_attribute *attr,
353 char *buf)
354{
62c51839 355 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
88bc3054
MH
356 struct ad7793_state *st = iio_priv(indio_dev);
357
358 return sprintf(buf, "%d\n",
fd1a8b91 359 st->chip_info->sample_freq_avail[AD7793_MODE_RATE(st->mode)]);
88bc3054
MH
360}
361
362static ssize_t ad7793_write_frequency(struct device *dev,
363 struct device_attribute *attr,
364 const char *buf,
365 size_t len)
366{
62c51839 367 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
88bc3054
MH
368 struct ad7793_state *st = iio_priv(indio_dev);
369 long lval;
370 int i, ret;
371
372 mutex_lock(&indio_dev->mlock);
14555b14 373 if (iio_buffer_enabled(indio_dev)) {
88bc3054
MH
374 mutex_unlock(&indio_dev->mlock);
375 return -EBUSY;
376 }
377 mutex_unlock(&indio_dev->mlock);
378
fe2e0d52 379 ret = kstrtol(buf, 10, &lval);
88bc3054
MH
380 if (ret)
381 return ret;
382
fd1a8b91
LPC
383 if (lval == 0)
384 return -EINVAL;
385
88bc3054
MH
386 ret = -EINVAL;
387
fd1a8b91
LPC
388 for (i = 0; i < 16; i++)
389 if (lval == st->chip_info->sample_freq_avail[i]) {
88bc3054
MH
390 mutex_lock(&indio_dev->mlock);
391 st->mode &= ~AD7793_MODE_RATE(-1);
392 st->mode |= AD7793_MODE_RATE(i);
1abec6ac 393 ad_sd_write_reg(&st->sd, AD7793_REG_MODE,
88bc3054
MH
394 sizeof(st->mode), st->mode);
395 mutex_unlock(&indio_dev->mlock);
396 ret = 0;
397 }
398
399 return ret ? ret : len;
400}
401
402static IIO_DEV_ATTR_SAMP_FREQ(S_IWUSR | S_IRUGO,
403 ad7793_read_frequency,
404 ad7793_write_frequency);
405
406static IIO_CONST_ATTR_SAMP_FREQ_AVAIL(
407 "470 242 123 62 50 39 33 19 17 16 12 10 8 6 4");
408
fd1a8b91
LPC
409static IIO_CONST_ATTR_NAMED(sampling_frequency_available_ad7797,
410 sampling_frequency_available, "123 62 50 33 17 16 12 10 8 6 4");
411
88bc3054
MH
412static ssize_t ad7793_show_scale_available(struct device *dev,
413 struct device_attribute *attr, char *buf)
414{
62c51839 415 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
88bc3054
MH
416 struct ad7793_state *st = iio_priv(indio_dev);
417 int i, len = 0;
418
419 for (i = 0; i < ARRAY_SIZE(st->scale_avail); i++)
420 len += sprintf(buf + len, "%d.%09u ", st->scale_avail[i][0],
421 st->scale_avail[i][1]);
422
423 len += sprintf(buf + len, "\n");
424
425 return len;
426}
427
08ca3b78
LPC
428static IIO_DEVICE_ATTR_NAMED(in_m_in_scale_available,
429 in_voltage-voltage_scale_available, S_IRUGO,
430 ad7793_show_scale_available, NULL, 0);
88bc3054
MH
431
432static struct attribute *ad7793_attributes[] = {
433 &iio_dev_attr_sampling_frequency.dev_attr.attr,
434 &iio_const_attr_sampling_frequency_available.dev_attr.attr,
435 &iio_dev_attr_in_m_in_scale_available.dev_attr.attr,
436 NULL
437};
438
439static const struct attribute_group ad7793_attribute_group = {
440 .attrs = ad7793_attributes,
441};
442
fd1a8b91
LPC
443static struct attribute *ad7797_attributes[] = {
444 &iio_dev_attr_sampling_frequency.dev_attr.attr,
445 &iio_const_attr_sampling_frequency_available_ad7797.dev_attr.attr,
446 NULL
447};
448
449static const struct attribute_group ad7797_attribute_group = {
450 .attrs = ad7797_attributes,
451};
452
88bc3054
MH
453static int ad7793_read_raw(struct iio_dev *indio_dev,
454 struct iio_chan_spec const *chan,
455 int *val,
456 int *val2,
457 long m)
458{
459 struct ad7793_state *st = iio_priv(indio_dev);
1abec6ac 460 int ret;
88bc3054
MH
461 unsigned long long scale_uv;
462 bool unipolar = !!(st->conf & AD7793_CONF_UNIPOLAR);
463
464 switch (m) {
b11f98ff 465 case IIO_CHAN_INFO_RAW:
1abec6ac 466 ret = ad_sigma_delta_single_conversion(indio_dev, chan, val);
88bc3054
MH
467 if (ret < 0)
468 return ret;
469
88bc3054
MH
470 return IIO_VAL_INT;
471
c8a9f805 472 case IIO_CHAN_INFO_SCALE:
88bc3054 473 switch (chan->type) {
6835cb6b 474 case IIO_VOLTAGE:
c8a9f805
JC
475 if (chan->differential) {
476 *val = st->
477 scale_avail[(st->conf >> 8) & 0x7][0];
478 *val2 = st->
479 scale_avail[(st->conf >> 8) & 0x7][1];
480 return IIO_VAL_INT_PLUS_NANO;
481 } else {
482 /* 1170mV / 2^23 * 6 */
24b27fa1 483 scale_uv = (1170ULL * 1000000000ULL * 6ULL);
c8a9f805 484 }
88bc3054
MH
485 break;
486 case IIO_TEMP:
2a9e0662 487 /* 1170mV / 0.81 mV/C / 2^23 */
e4ac7283 488 scale_uv = 1444444444444444ULL;
88bc3054
MH
489 break;
490 default:
491 return -EINVAL;
492 }
493
2a9e0662
LPC
494 scale_uv >>= (chan->scan_type.realbits - (unipolar ? 0 : 1));
495 *val = 0;
496 *val2 = scale_uv;
88bc3054 497 return IIO_VAL_INT_PLUS_NANO;
680f8ea0
LPC
498 case IIO_CHAN_INFO_OFFSET:
499 if (!unipolar)
2a9e0662 500 *val = -(1 << (chan->scan_type.realbits - 1));
680f8ea0
LPC
501 else
502 *val = 0;
2a9e0662
LPC
503
504 /* Kelvin to Celsius */
505 if (chan->type == IIO_TEMP) {
506 unsigned long long offset;
507 unsigned int shift;
508
509 shift = chan->scan_type.realbits - (unipolar ? 0 : 1);
510 offset = 273ULL << shift;
511 do_div(offset, 1444);
512 *val -= offset;
513 }
680f8ea0 514 return IIO_VAL_INT;
88bc3054
MH
515 }
516 return -EINVAL;
517}
518
519static int ad7793_write_raw(struct iio_dev *indio_dev,
520 struct iio_chan_spec const *chan,
521 int val,
522 int val2,
523 long mask)
524{
525 struct ad7793_state *st = iio_priv(indio_dev);
526 int ret, i;
527 unsigned int tmp;
528
529 mutex_lock(&indio_dev->mlock);
14555b14 530 if (iio_buffer_enabled(indio_dev)) {
88bc3054
MH
531 mutex_unlock(&indio_dev->mlock);
532 return -EBUSY;
533 }
534
535 switch (mask) {
c8a9f805 536 case IIO_CHAN_INFO_SCALE:
88bc3054
MH
537 ret = -EINVAL;
538 for (i = 0; i < ARRAY_SIZE(st->scale_avail); i++)
539 if (val2 == st->scale_avail[i][1]) {
1abec6ac 540 ret = 0;
88bc3054
MH
541 tmp = st->conf;
542 st->conf &= ~AD7793_CONF_GAIN(-1);
543 st->conf |= AD7793_CONF_GAIN(i);
544
1abec6ac
LPC
545 if (tmp == st->conf)
546 break;
547
548 ad_sd_write_reg(&st->sd, AD7793_REG_CONF,
549 sizeof(st->conf), st->conf);
550 ad7793_calibrate_all(st);
551 break;
88bc3054 552 }
421afe58 553 break;
88bc3054
MH
554 default:
555 ret = -EINVAL;
556 }
557
558 mutex_unlock(&indio_dev->mlock);
559 return ret;
560}
561
88bc3054
MH
562static int ad7793_write_raw_get_fmt(struct iio_dev *indio_dev,
563 struct iio_chan_spec const *chan,
564 long mask)
565{
566 return IIO_VAL_INT_PLUS_NANO;
567}
568
569static const struct iio_info ad7793_info = {
570 .read_raw = &ad7793_read_raw,
571 .write_raw = &ad7793_write_raw,
572 .write_raw_get_fmt = &ad7793_write_raw_get_fmt,
573 .attrs = &ad7793_attribute_group,
1abec6ac 574 .validate_trigger = ad_sd_validate_trigger,
88bc3054
MH
575 .driver_module = THIS_MODULE,
576};
577
fd1a8b91
LPC
578static const struct iio_info ad7797_info = {
579 .read_raw = &ad7793_read_raw,
580 .write_raw = &ad7793_write_raw,
581 .write_raw_get_fmt = &ad7793_write_raw_get_fmt,
582 .attrs = &ad7793_attribute_group,
583 .validate_trigger = ad_sd_validate_trigger,
584 .driver_module = THIS_MODULE,
585};
586
8c29ecd3 587#define DECLARE_AD7793_CHANNELS(_name, _b, _sb, _s) \
525e643e 588const struct iio_chan_spec _name##_channels[] = { \
8c29ecd3
LPC
589 AD_SD_DIFF_CHANNEL(0, 0, 0, AD7793_CH_AIN1P_AIN1M, (_b), (_sb), (_s)), \
590 AD_SD_DIFF_CHANNEL(1, 1, 1, AD7793_CH_AIN2P_AIN2M, (_b), (_sb), (_s)), \
591 AD_SD_DIFF_CHANNEL(2, 2, 2, AD7793_CH_AIN3P_AIN3M, (_b), (_sb), (_s)), \
592 AD_SD_SHORTED_CHANNEL(3, 0, AD7793_CH_AIN1M_AIN1M, (_b), (_sb), (_s)), \
593 AD_SD_TEMP_CHANNEL(4, AD7793_CH_TEMP, (_b), (_sb), (_s)), \
594 AD_SD_SUPPLY_CHANNEL(5, 3, AD7793_CH_AVDD_MONITOR, (_b), (_sb), (_s)), \
525e643e
LPC
595 IIO_CHAN_SOFT_TIMESTAMP(6), \
596}
597
598#define DECLARE_AD7795_CHANNELS(_name, _b, _sb) \
599const struct iio_chan_spec _name##_channels[] = { \
600 AD_SD_DIFF_CHANNEL(0, 0, 0, AD7793_CH_AIN1P_AIN1M, (_b), (_sb), 0), \
601 AD_SD_DIFF_CHANNEL(1, 1, 1, AD7793_CH_AIN2P_AIN2M, (_b), (_sb), 0), \
602 AD_SD_DIFF_CHANNEL(2, 2, 2, AD7793_CH_AIN3P_AIN3M, (_b), (_sb), 0), \
603 AD_SD_DIFF_CHANNEL(3, 3, 3, AD7795_CH_AIN4P_AIN4M, (_b), (_sb), 0), \
604 AD_SD_DIFF_CHANNEL(4, 4, 4, AD7795_CH_AIN5P_AIN5M, (_b), (_sb), 0), \
605 AD_SD_DIFF_CHANNEL(5, 5, 5, AD7795_CH_AIN6P_AIN6M, (_b), (_sb), 0), \
606 AD_SD_SHORTED_CHANNEL(6, 0, AD7795_CH_AIN1M_AIN1M, (_b), (_sb), 0), \
607 AD_SD_TEMP_CHANNEL(7, AD7793_CH_TEMP, (_b), (_sb), 0), \
608 AD_SD_SUPPLY_CHANNEL(8, 3, AD7793_CH_AVDD_MONITOR, (_b), (_sb), 0), \
609 IIO_CHAN_SOFT_TIMESTAMP(9), \
610}
611
fd1a8b91
LPC
612#define DECLARE_AD7797_CHANNELS(_name, _b, _sb) \
613const struct iio_chan_spec _name##_channels[] = { \
614 AD_SD_DIFF_CHANNEL(0, 0, 0, AD7793_CH_AIN1P_AIN1M, (_b), (_sb), 0), \
615 AD_SD_SHORTED_CHANNEL(1, 0, AD7793_CH_AIN1M_AIN1M, (_b), (_sb), 0), \
616 AD_SD_TEMP_CHANNEL(2, AD7793_CH_TEMP, (_b), (_sb), 0), \
617 AD_SD_SUPPLY_CHANNEL(3, 3, AD7793_CH_AVDD_MONITOR, (_b), (_sb), 0), \
618 IIO_CHAN_SOFT_TIMESTAMP(4), \
619}
620
2edb769d
LPC
621#define DECLARE_AD7799_CHANNELS(_name, _b, _sb) \
622const struct iio_chan_spec _name##_channels[] = { \
623 AD_SD_DIFF_CHANNEL(0, 0, 0, AD7793_CH_AIN1P_AIN1M, (_b), (_sb), 0), \
624 AD_SD_DIFF_CHANNEL(1, 1, 1, AD7793_CH_AIN2P_AIN2M, (_b), (_sb), 0), \
625 AD_SD_DIFF_CHANNEL(2, 2, 2, AD7793_CH_AIN3P_AIN3M, (_b), (_sb), 0), \
626 AD_SD_SHORTED_CHANNEL(3, 0, AD7793_CH_AIN1M_AIN1M, (_b), (_sb), 0), \
627 AD_SD_SUPPLY_CHANNEL(4, 3, AD7793_CH_AVDD_MONITOR, (_b), (_sb), 0), \
628 IIO_CHAN_SOFT_TIMESTAMP(5), \
629}
630
8c29ecd3
LPC
631static DECLARE_AD7793_CHANNELS(ad7785, 20, 32, 4);
632static DECLARE_AD7793_CHANNELS(ad7792, 16, 32, 0);
633static DECLARE_AD7793_CHANNELS(ad7793, 24, 32, 0);
525e643e
LPC
634static DECLARE_AD7795_CHANNELS(ad7794, 16, 32);
635static DECLARE_AD7795_CHANNELS(ad7795, 24, 32);
fd1a8b91
LPC
636static DECLARE_AD7797_CHANNELS(ad7796, 16, 16);
637static DECLARE_AD7797_CHANNELS(ad7797, 24, 32);
2edb769d
LPC
638static DECLARE_AD7799_CHANNELS(ad7798, 16, 16);
639static DECLARE_AD7799_CHANNELS(ad7799, 24, 32);
525e643e 640
88bc3054 641static const struct ad7793_chip_info ad7793_chip_info_tbl[] = {
8c29ecd3 642 [ID_AD7785] = {
e786cc26 643 .id = AD7785_ID,
8c29ecd3
LPC
644 .channels = ad7785_channels,
645 .num_channels = ARRAY_SIZE(ad7785_channels),
fd1a8b91
LPC
646 .iio_info = &ad7793_info,
647 .sample_freq_avail = ad7793_sample_freq_avail,
2edb769d
LPC
648 .flags = AD7793_FLAG_HAS_CLKSEL |
649 AD7793_FLAG_HAS_REFSEL |
650 AD7793_FLAG_HAS_VBIAS |
fd1a8b91
LPC
651 AD7793_HAS_EXITATION_CURRENT |
652 AD7793_FLAG_HAS_GAIN |
653 AD7793_FLAG_HAS_BUFFER,
8c29ecd3 654 },
525e643e 655 [ID_AD7792] = {
e786cc26 656 .id = AD7792_ID,
525e643e
LPC
657 .channels = ad7792_channels,
658 .num_channels = ARRAY_SIZE(ad7792_channels),
fd1a8b91
LPC
659 .iio_info = &ad7793_info,
660 .sample_freq_avail = ad7793_sample_freq_avail,
2edb769d
LPC
661 .flags = AD7793_FLAG_HAS_CLKSEL |
662 AD7793_FLAG_HAS_REFSEL |
663 AD7793_FLAG_HAS_VBIAS |
fd1a8b91
LPC
664 AD7793_HAS_EXITATION_CURRENT |
665 AD7793_FLAG_HAS_GAIN |
666 AD7793_FLAG_HAS_BUFFER,
525e643e 667 },
88bc3054 668 [ID_AD7793] = {
e786cc26 669 .id = AD7793_ID,
525e643e
LPC
670 .channels = ad7793_channels,
671 .num_channels = ARRAY_SIZE(ad7793_channels),
fd1a8b91
LPC
672 .iio_info = &ad7793_info,
673 .sample_freq_avail = ad7793_sample_freq_avail,
2edb769d
LPC
674 .flags = AD7793_FLAG_HAS_CLKSEL |
675 AD7793_FLAG_HAS_REFSEL |
676 AD7793_FLAG_HAS_VBIAS |
fd1a8b91
LPC
677 AD7793_HAS_EXITATION_CURRENT |
678 AD7793_FLAG_HAS_GAIN |
679 AD7793_FLAG_HAS_BUFFER,
88bc3054 680 },
525e643e 681 [ID_AD7794] = {
e786cc26 682 .id = AD7794_ID,
525e643e
LPC
683 .channels = ad7794_channels,
684 .num_channels = ARRAY_SIZE(ad7794_channels),
fd1a8b91
LPC
685 .iio_info = &ad7793_info,
686 .sample_freq_avail = ad7793_sample_freq_avail,
2edb769d
LPC
687 .flags = AD7793_FLAG_HAS_CLKSEL |
688 AD7793_FLAG_HAS_REFSEL |
689 AD7793_FLAG_HAS_VBIAS |
fd1a8b91
LPC
690 AD7793_HAS_EXITATION_CURRENT |
691 AD7793_FLAG_HAS_GAIN |
692 AD7793_FLAG_HAS_BUFFER,
525e643e
LPC
693 },
694 [ID_AD7795] = {
e786cc26 695 .id = AD7795_ID,
525e643e
LPC
696 .channels = ad7795_channels,
697 .num_channels = ARRAY_SIZE(ad7795_channels),
fd1a8b91
LPC
698 .iio_info = &ad7793_info,
699 .sample_freq_avail = ad7793_sample_freq_avail,
2edb769d
LPC
700 .flags = AD7793_FLAG_HAS_CLKSEL |
701 AD7793_FLAG_HAS_REFSEL |
702 AD7793_FLAG_HAS_VBIAS |
fd1a8b91
LPC
703 AD7793_HAS_EXITATION_CURRENT |
704 AD7793_FLAG_HAS_GAIN |
705 AD7793_FLAG_HAS_BUFFER,
706 },
707 [ID_AD7796] = {
708 .id = AD7796_ID,
709 .channels = ad7796_channels,
710 .num_channels = ARRAY_SIZE(ad7796_channels),
711 .iio_info = &ad7797_info,
712 .sample_freq_avail = ad7797_sample_freq_avail,
713 .flags = AD7793_FLAG_HAS_CLKSEL,
714 },
715 [ID_AD7797] = {
716 .id = AD7797_ID,
717 .channels = ad7797_channels,
718 .num_channels = ARRAY_SIZE(ad7797_channels),
719 .iio_info = &ad7797_info,
720 .sample_freq_avail = ad7797_sample_freq_avail,
721 .flags = AD7793_FLAG_HAS_CLKSEL,
2edb769d
LPC
722 },
723 [ID_AD7798] = {
724 .id = AD7798_ID,
725 .channels = ad7798_channels,
726 .num_channels = ARRAY_SIZE(ad7798_channels),
fd1a8b91
LPC
727 .iio_info = &ad7793_info,
728 .sample_freq_avail = ad7793_sample_freq_avail,
729 .flags = AD7793_FLAG_HAS_GAIN |
730 AD7793_FLAG_HAS_BUFFER,
2edb769d
LPC
731 },
732 [ID_AD7799] = {
733 .id = AD7799_ID,
734 .channels = ad7799_channels,
735 .num_channels = ARRAY_SIZE(ad7799_channels),
fd1a8b91
LPC
736 .iio_info = &ad7793_info,
737 .sample_freq_avail = ad7793_sample_freq_avail,
738 .flags = AD7793_FLAG_HAS_GAIN |
739 AD7793_FLAG_HAS_BUFFER,
88bc3054
MH
740 },
741};
742
4ae1c61f 743static int ad7793_probe(struct spi_device *spi)
88bc3054 744{
c8c194d5 745 const struct ad7793_platform_data *pdata = spi->dev.platform_data;
88bc3054
MH
746 struct ad7793_state *st;
747 struct iio_dev *indio_dev;
dd2c1013 748 int ret, vref_mv = 0;
88bc3054
MH
749
750 if (!pdata) {
751 dev_err(&spi->dev, "no platform data?\n");
752 return -ENODEV;
753 }
754
755 if (!spi->irq) {
756 dev_err(&spi->dev, "no IRQ?\n");
757 return -ENODEV;
758 }
759
a3580132 760 indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st));
88bc3054
MH
761 if (indio_dev == NULL)
762 return -ENOMEM;
763
764 st = iio_priv(indio_dev);
765
1abec6ac
LPC
766 ad_sd_init(&st->sd, indio_dev, spi, &ad7793_sigma_delta_info);
767
dd2c1013 768 if (pdata->refsel != AD7793_REFSEL_INTERNAL) {
a3580132
SK
769 st->reg = devm_regulator_get(&spi->dev, "refin");
770 if (IS_ERR(st->reg))
771 return PTR_ERR(st->reg);
dd2c1013 772
88bc3054
MH
773 ret = regulator_enable(st->reg);
774 if (ret)
a3580132 775 return ret;
88bc3054 776
dd2c1013
LPC
777 vref_mv = regulator_get_voltage(st->reg);
778 if (vref_mv < 0) {
779 ret = vref_mv;
780 goto error_disable_reg;
781 }
782
783 vref_mv /= 1000;
784 } else {
785 vref_mv = 1170; /* Build-in ref */
88bc3054
MH
786 }
787
788 st->chip_info =
789 &ad7793_chip_info_tbl[spi_get_device_id(spi)->driver_data];
790
88bc3054 791 spi_set_drvdata(spi, indio_dev);
88bc3054
MH
792
793 indio_dev->dev.parent = &spi->dev;
794 indio_dev->name = spi_get_device_id(spi)->name;
795 indio_dev->modes = INDIO_DIRECT_MODE;
525e643e
LPC
796 indio_dev->channels = st->chip_info->channels;
797 indio_dev->num_channels = st->chip_info->num_channels;
fd1a8b91 798 indio_dev->info = st->chip_info->iio_info;
88bc3054 799
1abec6ac 800 ret = ad_sd_setup_buffer_and_trigger(indio_dev);
88bc3054
MH
801 if (ret)
802 goto error_disable_reg;
803
dd2c1013 804 ret = ad7793_setup(indio_dev, pdata, vref_mv);
88bc3054 805 if (ret)
82796edc 806 goto error_remove_trigger;
88bc3054 807
26d25ae3
JC
808 ret = iio_device_register(indio_dev);
809 if (ret)
82796edc 810 goto error_remove_trigger;
26d25ae3 811
88bc3054
MH
812 return 0;
813
88bc3054 814error_remove_trigger:
1abec6ac 815 ad_sd_cleanup_buffer_and_trigger(indio_dev);
88bc3054 816error_disable_reg:
dd2c1013 817 if (pdata->refsel != AD7793_REFSEL_INTERNAL)
88bc3054 818 regulator_disable(st->reg);
88bc3054
MH
819
820 return ret;
821}
822
447d4f29 823static int ad7793_remove(struct spi_device *spi)
88bc3054 824{
dd2c1013 825 const struct ad7793_platform_data *pdata = spi->dev.platform_data;
88bc3054
MH
826 struct iio_dev *indio_dev = spi_get_drvdata(spi);
827 struct ad7793_state *st = iio_priv(indio_dev);
828
d2fffd6c 829 iio_device_unregister(indio_dev);
1abec6ac 830 ad_sd_cleanup_buffer_and_trigger(indio_dev);
88bc3054 831
a3580132 832 if (pdata->refsel != AD7793_REFSEL_INTERNAL)
88bc3054 833 regulator_disable(st->reg);
88bc3054
MH
834
835 return 0;
836}
837
838static const struct spi_device_id ad7793_id[] = {
8c29ecd3 839 {"ad7785", ID_AD7785},
88bc3054
MH
840 {"ad7792", ID_AD7792},
841 {"ad7793", ID_AD7793},
525e643e
LPC
842 {"ad7794", ID_AD7794},
843 {"ad7795", ID_AD7795},
fd1a8b91
LPC
844 {"ad7796", ID_AD7796},
845 {"ad7797", ID_AD7797},
2edb769d
LPC
846 {"ad7798", ID_AD7798},
847 {"ad7799", ID_AD7799},
88bc3054
MH
848 {}
849};
55e4390c 850MODULE_DEVICE_TABLE(spi, ad7793_id);
88bc3054
MH
851
852static struct spi_driver ad7793_driver = {
853 .driver = {
854 .name = "ad7793",
88bc3054
MH
855 },
856 .probe = ad7793_probe,
e543acf0 857 .remove = ad7793_remove,
88bc3054
MH
858 .id_table = ad7793_id,
859};
ae6ae6fe 860module_spi_driver(ad7793_driver);
88bc3054
MH
861
862MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
1672d933 863MODULE_DESCRIPTION("Analog Devices AD7793 and similar ADCs");
88bc3054 864MODULE_LICENSE("GPL v2");