ad7793.c 25.0 KB
Newer Older
1
/*
2
 * AD7785/AD7792/AD7793/AD7794/AD7795 SPI ADC driver
3
 *
4
 * Copyright 2011-2012 Analog Devices Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * Licensed under the GPL-2.
 */

#include <linux/interrupt.h>
#include <linux/device.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/sysfs.h>
#include <linux/spi/spi.h>
#include <linux/regulator/consumer.h>
#include <linux/err.h>
#include <linux/sched.h>
#include <linux/delay.h>
19
#include <linux/module.h>
20

21 22 23 24 25
#include <linux/iio/iio.h>
#include <linux/iio/sysfs.h>
#include <linux/iio/buffer.h>
#include <linux/iio/trigger.h>
#include <linux/iio/trigger_consumer.h>
26
#include <linux/iio/triggered_buffer.h>
27
#include <linux/iio/adc/ad_sigma_delta.h>
28
#include <linux/platform_data/ad7793.h>
29

30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
/* Registers */
#define AD7793_REG_COMM		0 /* Communications Register (WO, 8-bit) */
#define AD7793_REG_STAT		0 /* Status Register	     (RO, 8-bit) */
#define AD7793_REG_MODE		1 /* Mode Register	     (RW, 16-bit */
#define AD7793_REG_CONF		2 /* Configuration Register  (RW, 16-bit) */
#define AD7793_REG_DATA		3 /* Data Register	     (RO, 16-/24-bit) */
#define AD7793_REG_ID		4 /* ID Register	     (RO, 8-bit) */
#define AD7793_REG_IO		5 /* IO Register	     (RO, 8-bit) */
#define AD7793_REG_OFFSET	6 /* Offset Register	     (RW, 16-bit
				   * (AD7792)/24-bit (AD7793)) */
#define AD7793_REG_FULLSALE	7 /* Full-Scale Register
				   * (RW, 16-bit (AD7792)/24-bit (AD7793)) */

/* Communications Register Bit Designations (AD7793_REG_COMM) */
#define AD7793_COMM_WEN		(1 << 7) /* Write Enable */
#define AD7793_COMM_WRITE	(0 << 6) /* Write Operation */
#define AD7793_COMM_READ	(1 << 6) /* Read Operation */
#define AD7793_COMM_ADDR(x)	(((x) & 0x7) << 3) /* Register Address */
#define AD7793_COMM_CREAD	(1 << 2) /* Continuous Read of Data Register */

/* Status Register Bit Designations (AD7793_REG_STAT) */
#define AD7793_STAT_RDY		(1 << 7) /* Ready */
#define AD7793_STAT_ERR		(1 << 6) /* Error (Overrange, Underrange) */
#define AD7793_STAT_CH3		(1 << 2) /* Channel 3 */
#define AD7793_STAT_CH2		(1 << 1) /* Channel 2 */
#define AD7793_STAT_CH1		(1 << 0) /* Channel 1 */

/* Mode Register Bit Designations (AD7793_REG_MODE) */
#define AD7793_MODE_SEL(x)	(((x) & 0x7) << 13) /* Operation Mode Select */
#define AD7793_MODE_SEL_MASK	(0x7 << 13) /* Operation Mode Select mask */
#define AD7793_MODE_CLKSRC(x)	(((x) & 0x3) << 6) /* ADC Clock Source Select */
#define AD7793_MODE_RATE(x)	((x) & 0xF) /* Filter Update Rate Select */

#define AD7793_MODE_CONT		0 /* Continuous Conversion Mode */
#define AD7793_MODE_SINGLE		1 /* Single Conversion Mode */
#define AD7793_MODE_IDLE		2 /* Idle Mode */
#define AD7793_MODE_PWRDN		3 /* Power-Down Mode */
#define AD7793_MODE_CAL_INT_ZERO	4 /* Internal Zero-Scale Calibration */
#define AD7793_MODE_CAL_INT_FULL	5 /* Internal Full-Scale Calibration */
#define AD7793_MODE_CAL_SYS_ZERO	6 /* System Zero-Scale Calibration */
#define AD7793_MODE_CAL_SYS_FULL	7 /* System Full-Scale Calibration */

#define AD7793_CLK_INT		0 /* Internal 64 kHz Clock not
				   * available at the CLK pin */
#define AD7793_CLK_INT_CO	1 /* Internal 64 kHz Clock available
				   * at the CLK pin */
#define AD7793_CLK_EXT		2 /* External 64 kHz Clock */
#define AD7793_CLK_EXT_DIV2	3 /* External Clock divided by 2 */

/* Configuration Register Bit Designations (AD7793_REG_CONF) */
#define AD7793_CONF_VBIAS(x)	(((x) & 0x3) << 14) /* Bias Voltage
						     * Generator Enable */
#define AD7793_CONF_BO_EN	(1 << 13) /* Burnout Current Enable */
#define AD7793_CONF_UNIPOLAR	(1 << 12) /* Unipolar/Bipolar Enable */
#define AD7793_CONF_BOOST	(1 << 11) /* Boost Enable */
#define AD7793_CONF_GAIN(x)	(((x) & 0x7) << 8) /* Gain Select */
#define AD7793_CONF_REFSEL(x)	((x) << 6) /* INT/EXT Reference Select */
#define AD7793_CONF_BUF		(1 << 4) /* Buffered Mode Enable */
#define AD7793_CONF_CHAN(x)	((x) & 0xf) /* Channel select */
#define AD7793_CONF_CHAN_MASK	0xf /* Channel select mask */

#define AD7793_CH_AIN1P_AIN1M	0 /* AIN1(+) - AIN1(-) */
#define AD7793_CH_AIN2P_AIN2M	1 /* AIN2(+) - AIN2(-) */
#define AD7793_CH_AIN3P_AIN3M	2 /* AIN3(+) - AIN3(-) */
#define AD7793_CH_AIN1M_AIN1M	3 /* AIN1(-) - AIN1(-) */
#define AD7793_CH_TEMP		6 /* Temp Sensor */
#define AD7793_CH_AVDD_MONITOR	7 /* AVDD Monitor */

#define AD7795_CH_AIN4P_AIN4M	4 /* AIN4(+) - AIN4(-) */
#define AD7795_CH_AIN5P_AIN5M	5 /* AIN5(+) - AIN5(-) */
#define AD7795_CH_AIN6P_AIN6M	6 /* AIN6(+) - AIN6(-) */
#define AD7795_CH_AIN1M_AIN1M	8 /* AIN1(-) - AIN1(-) */

/* ID Register Bit Designations (AD7793_REG_ID) */
104
#define AD7785_ID		0xB
105 106
#define AD7792_ID		0xA
#define AD7793_ID		0xB
107
#define AD7794_ID		0xF
108
#define AD7795_ID		0xF
109 110
#define AD7796_ID		0xA
#define AD7797_ID		0xB
111 112
#define AD7798_ID		0x8
#define AD7799_ID		0x9
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
#define AD7793_ID_MASK		0xF

/* IO (Excitation Current Sources) Register Bit Designations (AD7793_REG_IO) */
#define AD7793_IO_IEXC1_IOUT1_IEXC2_IOUT2	0 /* IEXC1 connect to IOUT1,
						   * IEXC2 connect to IOUT2 */
#define AD7793_IO_IEXC1_IOUT2_IEXC2_IOUT1	1 /* IEXC1 connect to IOUT2,
						   * IEXC2 connect to IOUT1 */
#define AD7793_IO_IEXC1_IEXC2_IOUT1		2 /* Both current sources
						   * IEXC1,2 connect to IOUT1 */
#define AD7793_IO_IEXC1_IEXC2_IOUT2		3 /* Both current sources
						   * IEXC1,2 connect to IOUT2 */

#define AD7793_IO_IXCEN_10uA	(1 << 0) /* Excitation Current 10uA */
#define AD7793_IO_IXCEN_210uA	(2 << 0) /* Excitation Current 210uA */
#define AD7793_IO_IXCEN_1mA	(3 << 0) /* Excitation Current 1mA */

129 130 131 132 133 134 135 136
/* NOTE:
 * The AD7792/AD7793 features a dual use data out ready DOUT/RDY output.
 * In order to avoid contentions on the SPI bus, it's therefore necessary
 * to use spi bus locking.
 *
 * The DOUT/RDY output must also be wired to an interrupt capable GPIO.
 */

137 138 139 140
#define AD7793_FLAG_HAS_CLKSEL		BIT(0)
#define AD7793_FLAG_HAS_REFSEL		BIT(1)
#define AD7793_FLAG_HAS_VBIAS		BIT(2)
#define AD7793_HAS_EXITATION_CURRENT	BIT(3)
141 142
#define AD7793_FLAG_HAS_GAIN		BIT(4)
#define AD7793_FLAG_HAS_BUFFER		BIT(5)
143

144
struct ad7793_chip_info {
145
	unsigned int id;
146 147
	const struct iio_chan_spec *channels;
	unsigned int num_channels;
148
	unsigned int flags;
149 150 151

	const struct iio_info *iio_info;
	const u16 *sample_freq_avail;
152 153 154 155 156 157 158 159 160
};

struct ad7793_state {
	const struct ad7793_chip_info	*chip_info;
	struct regulator		*reg;
	u16				int_vref_mv;
	u16				mode;
	u16				conf;
	u32				scale_avail[8][2];
161

162 163
	struct ad_sigma_delta		sd;

164 165 166
};

enum ad7793_supported_device_ids {
167
	ID_AD7785,
168 169
	ID_AD7792,
	ID_AD7793,
170 171
	ID_AD7794,
	ID_AD7795,
172 173
	ID_AD7796,
	ID_AD7797,
174 175
	ID_AD7798,
	ID_AD7799,
176 177
};

178
static struct ad7793_state *ad_sigma_delta_to_ad7793(struct ad_sigma_delta *sd)
179
{
180
	return container_of(sd, struct ad7793_state, sd);
181 182
}

183
static int ad7793_set_channel(struct ad_sigma_delta *sd, unsigned int channel)
184
{
185
	struct ad7793_state *st = ad_sigma_delta_to_ad7793(sd);
186

187 188
	st->conf &= ~AD7793_CONF_CHAN_MASK;
	st->conf |= AD7793_CONF_CHAN(channel);
189

190
	return ad_sd_write_reg(&st->sd, AD7793_REG_CONF, 2, st->conf);
191 192
}

193 194
static int ad7793_set_mode(struct ad_sigma_delta *sd,
			   enum ad_sigma_delta_mode mode)
195
{
196
	struct ad7793_state *st = ad_sigma_delta_to_ad7793(sd);
197

198 199
	st->mode &= ~AD7793_MODE_SEL_MASK;
	st->mode |= AD7793_MODE_SEL(mode);
200

201
	return ad_sd_write_reg(&st->sd, AD7793_REG_MODE, 2, st->mode);
202 203
}

204 205 206 207 208 209 210
static const struct ad_sigma_delta_info ad7793_sigma_delta_info = {
	.set_channel = ad7793_set_channel,
	.set_mode = ad7793_set_mode,
	.has_registers = true,
	.addr_shift = 3,
	.read_mask = BIT(6),
};
211

212
static const struct ad_sd_calib_data ad7793_calib_arr[6] = {
213 214 215 216 217 218 219 220 221 222
	{AD7793_MODE_CAL_INT_ZERO, AD7793_CH_AIN1P_AIN1M},
	{AD7793_MODE_CAL_INT_FULL, AD7793_CH_AIN1P_AIN1M},
	{AD7793_MODE_CAL_INT_ZERO, AD7793_CH_AIN2P_AIN2M},
	{AD7793_MODE_CAL_INT_FULL, AD7793_CH_AIN2P_AIN2M},
	{AD7793_MODE_CAL_INT_ZERO, AD7793_CH_AIN3P_AIN3M},
	{AD7793_MODE_CAL_INT_FULL, AD7793_CH_AIN3P_AIN3M}
};

static int ad7793_calibrate_all(struct ad7793_state *st)
{
223 224
	return ad_sd_calibrate_all(&st->sd, ad7793_calib_arr,
				   ARRAY_SIZE(ad7793_calib_arr));
225 226
}

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
static int ad7793_check_platform_data(struct ad7793_state *st,
	const struct ad7793_platform_data *pdata)
{
	if ((pdata->current_source_direction == AD7793_IEXEC1_IEXEC2_IOUT1 ||
		pdata->current_source_direction == AD7793_IEXEC1_IEXEC2_IOUT2) &&
		((pdata->exitation_current != AD7793_IX_10uA) &&
		(pdata->exitation_current != AD7793_IX_210uA)))
		return -EINVAL;

	if (!(st->chip_info->flags & AD7793_FLAG_HAS_CLKSEL) &&
		pdata->clock_src != AD7793_CLK_SRC_INT)
		return -EINVAL;

	if (!(st->chip_info->flags & AD7793_FLAG_HAS_REFSEL) &&
		pdata->refsel != AD7793_REFSEL_REFIN1)
		return -EINVAL;

	if (!(st->chip_info->flags & AD7793_FLAG_HAS_VBIAS) &&
		pdata->bias_voltage != AD7793_BIAS_VOLTAGE_DISABLED)
		return -EINVAL;

	if (!(st->chip_info->flags & AD7793_HAS_EXITATION_CURRENT) &&
		pdata->exitation_current != AD7793_IX_DISABLED)
		return -EINVAL;

	return 0;
}

255
static int ad7793_setup(struct iio_dev *indio_dev,
256 257
	const struct ad7793_platform_data *pdata,
	unsigned int vref_mv)
258
{
259
	struct ad7793_state *st = iio_priv(indio_dev);
260 261 262 263
	int i, ret = -1;
	unsigned long long scale_uv;
	u32 id;

264 265 266
	ret = ad7793_check_platform_data(st, pdata);
	if (ret)
		return ret;
267

268
	/* reset the serial interface */
269
	ret = spi_write(st->sd.spi, (u8 *)&ret, sizeof(ret));
270 271
	if (ret < 0)
		goto out;
272
	usleep_range(500, 2000); /* Wait for at least 500us */
273 274

	/* write/read test for device presence */
275
	ret = ad_sd_read_reg(&st->sd, AD7793_REG_ID, 1, &id);
276 277 278 279 280
	if (ret)
		goto out;

	id &= AD7793_ID_MASK;

281
	if (id != st->chip_info->id) {
282
		dev_err(&st->sd.spi->dev, "device ID query failed\n");
283 284 285
		goto out;
	}

286
	st->mode = AD7793_MODE_RATE(1);
287 288 289 290 291 292 293 294
	st->conf = 0;

	if (st->chip_info->flags & AD7793_FLAG_HAS_CLKSEL)
		st->mode |= AD7793_MODE_CLKSRC(pdata->clock_src);
	if (st->chip_info->flags & AD7793_FLAG_HAS_REFSEL)
		st->conf |= AD7793_CONF_REFSEL(pdata->refsel);
	if (st->chip_info->flags & AD7793_FLAG_HAS_VBIAS)
		st->conf |= AD7793_CONF_VBIAS(pdata->bias_voltage);
295
	if (pdata->buffered || !(st->chip_info->flags & AD7793_FLAG_HAS_BUFFER))
296
		st->conf |= AD7793_CONF_BUF;
297 298
	if (pdata->boost_enable &&
		(st->chip_info->flags & AD7793_FLAG_HAS_VBIAS))
299 300 301 302 303
		st->conf |= AD7793_CONF_BOOST;
	if (pdata->burnout_current)
		st->conf |= AD7793_CONF_BO_EN;
	if (pdata->unipolar)
		st->conf |= AD7793_CONF_UNIPOLAR;
304

305 306 307
	if (!(st->chip_info->flags & AD7793_FLAG_HAS_GAIN))
		st->conf |= AD7793_CONF_GAIN(7);

308
	ret = ad7793_set_mode(&st->sd, AD_SD_MODE_IDLE);
309 310 311
	if (ret)
		goto out;

312
	ret = ad7793_set_channel(&st->sd, 0);
313 314 315
	if (ret)
		goto out;

316 317 318 319 320 321 322
	if (st->chip_info->flags & AD7793_HAS_EXITATION_CURRENT) {
		ret = ad_sd_write_reg(&st->sd, AD7793_REG_IO, 1,
				pdata->exitation_current |
				(pdata->current_source_direction << 2));
		if (ret)
			goto out;
	}
323 324 325 326 327 328 329

	ret = ad7793_calibrate_all(st);
	if (ret)
		goto out;

	/* Populate available ADC input ranges */
	for (i = 0; i < ARRAY_SIZE(st->scale_avail); i++) {
330
		scale_uv = ((u64)vref_mv * 100000000)
331
			>> (st->chip_info->channels[0].scan_type.realbits -
332 333 334 335 336 337 338 339 340
			(!!(st->conf & AD7793_CONF_UNIPOLAR) ? 0 : 1));
		scale_uv >>= i;

		st->scale_avail[i][1] = do_div(scale_uv, 100000000) * 10;
		st->scale_avail[i][0] = scale_uv;
	}

	return 0;
out:
341
	dev_err(&st->sd.spi->dev, "setup failed\n");
342 343 344
	return ret;
}

345 346 347 348 349
static const u16 ad7793_sample_freq_avail[16] = {0, 470, 242, 123, 62, 50, 39,
					33, 19, 17, 16, 12, 10, 8, 6, 4};

static const u16 ad7797_sample_freq_avail[16] = {0, 0, 0, 123, 62, 50, 0,
					33, 0, 17, 16, 12, 10, 8, 6, 4};
350 351 352 353 354

static ssize_t ad7793_read_frequency(struct device *dev,
		struct device_attribute *attr,
		char *buf)
{
355
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
356 357 358
	struct ad7793_state *st = iio_priv(indio_dev);

	return sprintf(buf, "%d\n",
359
	       st->chip_info->sample_freq_avail[AD7793_MODE_RATE(st->mode)]);
360 361 362 363 364 365 366
}

static ssize_t ad7793_write_frequency(struct device *dev,
		struct device_attribute *attr,
		const char *buf,
		size_t len)
{
367
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
368 369 370 371 372
	struct ad7793_state *st = iio_priv(indio_dev);
	long lval;
	int i, ret;

	mutex_lock(&indio_dev->mlock);
373
	if (iio_buffer_enabled(indio_dev)) {
374 375 376 377 378
		mutex_unlock(&indio_dev->mlock);
		return -EBUSY;
	}
	mutex_unlock(&indio_dev->mlock);

379
	ret = kstrtol(buf, 10, &lval);
380 381 382
	if (ret)
		return ret;

383 384 385
	if (lval == 0)
		return -EINVAL;

386 387
	ret = -EINVAL;

388 389
	for (i = 0; i < 16; i++)
		if (lval == st->chip_info->sample_freq_avail[i]) {
390 391 392
			mutex_lock(&indio_dev->mlock);
			st->mode &= ~AD7793_MODE_RATE(-1);
			st->mode |= AD7793_MODE_RATE(i);
393
			ad_sd_write_reg(&st->sd, AD7793_REG_MODE,
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
					 sizeof(st->mode), st->mode);
			mutex_unlock(&indio_dev->mlock);
			ret = 0;
		}

	return ret ? ret : len;
}

static IIO_DEV_ATTR_SAMP_FREQ(S_IWUSR | S_IRUGO,
		ad7793_read_frequency,
		ad7793_write_frequency);

static IIO_CONST_ATTR_SAMP_FREQ_AVAIL(
	"470 242 123 62 50 39 33 19 17 16 12 10 8 6 4");

409 410 411
static IIO_CONST_ATTR_NAMED(sampling_frequency_available_ad7797,
	sampling_frequency_available, "123 62 50 33 17 16 12 10 8 6 4");

412 413 414
static ssize_t ad7793_show_scale_available(struct device *dev,
			struct device_attribute *attr, char *buf)
{
415
	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
416 417 418 419 420 421 422 423 424 425 426 427
	struct ad7793_state *st = iio_priv(indio_dev);
	int i, len = 0;

	for (i = 0; i < ARRAY_SIZE(st->scale_avail); i++)
		len += sprintf(buf + len, "%d.%09u ", st->scale_avail[i][0],
			       st->scale_avail[i][1]);

	len += sprintf(buf + len, "\n");

	return len;
}

428 429 430
static IIO_DEVICE_ATTR_NAMED(in_m_in_scale_available,
		in_voltage-voltage_scale_available, S_IRUGO,
		ad7793_show_scale_available, NULL, 0);
431 432 433 434 435 436 437 438 439 440 441 442

static struct attribute *ad7793_attributes[] = {
	&iio_dev_attr_sampling_frequency.dev_attr.attr,
	&iio_const_attr_sampling_frequency_available.dev_attr.attr,
	&iio_dev_attr_in_m_in_scale_available.dev_attr.attr,
	NULL
};

static const struct attribute_group ad7793_attribute_group = {
	.attrs = ad7793_attributes,
};

443 444 445 446 447 448 449 450 451 452
static struct attribute *ad7797_attributes[] = {
	&iio_dev_attr_sampling_frequency.dev_attr.attr,
	&iio_const_attr_sampling_frequency_available_ad7797.dev_attr.attr,
	NULL
};

static const struct attribute_group ad7797_attribute_group = {
	.attrs = ad7797_attributes,
};

453 454 455 456 457 458 459
static int ad7793_read_raw(struct iio_dev *indio_dev,
			   struct iio_chan_spec const *chan,
			   int *val,
			   int *val2,
			   long m)
{
	struct ad7793_state *st = iio_priv(indio_dev);
460
	int ret;
461 462 463 464
	unsigned long long scale_uv;
	bool unipolar = !!(st->conf & AD7793_CONF_UNIPOLAR);

	switch (m) {
465
	case IIO_CHAN_INFO_RAW:
466
		ret = ad_sigma_delta_single_conversion(indio_dev, chan, val);
467 468 469 470 471
		if (ret < 0)
			return ret;

		return IIO_VAL_INT;

472
	case IIO_CHAN_INFO_SCALE:
473
		switch (chan->type) {
474
		case IIO_VOLTAGE:
475 476 477 478 479 480 481
			if (chan->differential) {
				*val = st->
					scale_avail[(st->conf >> 8) & 0x7][0];
				*val2 = st->
					scale_avail[(st->conf >> 8) & 0x7][1];
				return IIO_VAL_INT_PLUS_NANO;
			}
482 483
			/* 1170mV / 2^23 * 6 */
			scale_uv = (1170ULL * 1000000000ULL * 6ULL);
484 485
			break;
		case IIO_TEMP:
486
				/* 1170mV / 0.81 mV/C / 2^23 */
487
				scale_uv = 1444444444444444ULL;
488 489 490 491 492
			break;
		default:
			return -EINVAL;
		}

493 494 495
		scale_uv >>= (chan->scan_type.realbits - (unipolar ? 0 : 1));
		*val = 0;
		*val2 = scale_uv;
496
		return IIO_VAL_INT_PLUS_NANO;
497 498
	case IIO_CHAN_INFO_OFFSET:
		if (!unipolar)
499
			*val = -(1 << (chan->scan_type.realbits - 1));
500 501
		else
			*val = 0;
502 503 504 505 506 507 508 509 510 511 512

		/* Kelvin to Celsius */
		if (chan->type == IIO_TEMP) {
			unsigned long long offset;
			unsigned int shift;

			shift = chan->scan_type.realbits - (unipolar ? 0 : 1);
			offset = 273ULL << shift;
			do_div(offset, 1444);
			*val -= offset;
		}
513
		return IIO_VAL_INT;
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
	}
	return -EINVAL;
}

static int ad7793_write_raw(struct iio_dev *indio_dev,
			       struct iio_chan_spec const *chan,
			       int val,
			       int val2,
			       long mask)
{
	struct ad7793_state *st = iio_priv(indio_dev);
	int ret, i;
	unsigned int tmp;

	mutex_lock(&indio_dev->mlock);
529
	if (iio_buffer_enabled(indio_dev)) {
530 531 532 533 534
		mutex_unlock(&indio_dev->mlock);
		return -EBUSY;
	}

	switch (mask) {
535
	case IIO_CHAN_INFO_SCALE:
536 537 538
		ret = -EINVAL;
		for (i = 0; i < ARRAY_SIZE(st->scale_avail); i++)
			if (val2 == st->scale_avail[i][1]) {
539
				ret = 0;
540 541 542 543
				tmp = st->conf;
				st->conf &= ~AD7793_CONF_GAIN(-1);
				st->conf |= AD7793_CONF_GAIN(i);

544 545 546 547 548 549 550
				if (tmp == st->conf)
					break;

				ad_sd_write_reg(&st->sd, AD7793_REG_CONF,
						sizeof(st->conf), st->conf);
				ad7793_calibrate_all(st);
				break;
551
			}
552
		break;
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
	default:
		ret = -EINVAL;
	}

	mutex_unlock(&indio_dev->mlock);
	return ret;
}

static int ad7793_write_raw_get_fmt(struct iio_dev *indio_dev,
			       struct iio_chan_spec const *chan,
			       long mask)
{
	return IIO_VAL_INT_PLUS_NANO;
}

static const struct iio_info ad7793_info = {
	.read_raw = &ad7793_read_raw,
	.write_raw = &ad7793_write_raw,
	.write_raw_get_fmt = &ad7793_write_raw_get_fmt,
	.attrs = &ad7793_attribute_group,
573
	.validate_trigger = ad_sd_validate_trigger,
574 575 576
	.driver_module = THIS_MODULE,
};

577 578 579 580 581 582 583 584 585
static const struct iio_info ad7797_info = {
	.read_raw = &ad7793_read_raw,
	.write_raw = &ad7793_write_raw,
	.write_raw_get_fmt = &ad7793_write_raw_get_fmt,
	.attrs = &ad7793_attribute_group,
	.validate_trigger = ad_sd_validate_trigger,
	.driver_module = THIS_MODULE,
};

586
#define DECLARE_AD7793_CHANNELS(_name, _b, _sb, _s) \
587
const struct iio_chan_spec _name##_channels[] = { \
588 589 590 591 592 593
	AD_SD_DIFF_CHANNEL(0, 0, 0, AD7793_CH_AIN1P_AIN1M, (_b), (_sb), (_s)), \
	AD_SD_DIFF_CHANNEL(1, 1, 1, AD7793_CH_AIN2P_AIN2M, (_b), (_sb), (_s)), \
	AD_SD_DIFF_CHANNEL(2, 2, 2, AD7793_CH_AIN3P_AIN3M, (_b), (_sb), (_s)), \
	AD_SD_SHORTED_CHANNEL(3, 0, AD7793_CH_AIN1M_AIN1M, (_b), (_sb), (_s)), \
	AD_SD_TEMP_CHANNEL(4, AD7793_CH_TEMP, (_b), (_sb), (_s)), \
	AD_SD_SUPPLY_CHANNEL(5, 3, AD7793_CH_AVDD_MONITOR, (_b), (_sb), (_s)), \
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
	IIO_CHAN_SOFT_TIMESTAMP(6), \
}

#define DECLARE_AD7795_CHANNELS(_name, _b, _sb) \
const struct iio_chan_spec _name##_channels[] = { \
	AD_SD_DIFF_CHANNEL(0, 0, 0, AD7793_CH_AIN1P_AIN1M, (_b), (_sb), 0), \
	AD_SD_DIFF_CHANNEL(1, 1, 1, AD7793_CH_AIN2P_AIN2M, (_b), (_sb), 0), \
	AD_SD_DIFF_CHANNEL(2, 2, 2, AD7793_CH_AIN3P_AIN3M, (_b), (_sb), 0), \
	AD_SD_DIFF_CHANNEL(3, 3, 3, AD7795_CH_AIN4P_AIN4M, (_b), (_sb), 0), \
	AD_SD_DIFF_CHANNEL(4, 4, 4, AD7795_CH_AIN5P_AIN5M, (_b), (_sb), 0), \
	AD_SD_DIFF_CHANNEL(5, 5, 5, AD7795_CH_AIN6P_AIN6M, (_b), (_sb), 0), \
	AD_SD_SHORTED_CHANNEL(6, 0, AD7795_CH_AIN1M_AIN1M, (_b), (_sb), 0), \
	AD_SD_TEMP_CHANNEL(7, AD7793_CH_TEMP, (_b), (_sb), 0), \
	AD_SD_SUPPLY_CHANNEL(8, 3, AD7793_CH_AVDD_MONITOR, (_b), (_sb), 0), \
	IIO_CHAN_SOFT_TIMESTAMP(9), \
}

611 612 613 614 615 616 617 618 619
#define DECLARE_AD7797_CHANNELS(_name, _b, _sb) \
const struct iio_chan_spec _name##_channels[] = { \
	AD_SD_DIFF_CHANNEL(0, 0, 0, AD7793_CH_AIN1P_AIN1M, (_b), (_sb), 0), \
	AD_SD_SHORTED_CHANNEL(1, 0, AD7793_CH_AIN1M_AIN1M, (_b), (_sb), 0), \
	AD_SD_TEMP_CHANNEL(2, AD7793_CH_TEMP, (_b), (_sb), 0), \
	AD_SD_SUPPLY_CHANNEL(3, 3, AD7793_CH_AVDD_MONITOR, (_b), (_sb), 0), \
	IIO_CHAN_SOFT_TIMESTAMP(4), \
}

620 621 622 623 624 625 626 627 628 629
#define DECLARE_AD7799_CHANNELS(_name, _b, _sb) \
const struct iio_chan_spec _name##_channels[] = { \
	AD_SD_DIFF_CHANNEL(0, 0, 0, AD7793_CH_AIN1P_AIN1M, (_b), (_sb), 0), \
	AD_SD_DIFF_CHANNEL(1, 1, 1, AD7793_CH_AIN2P_AIN2M, (_b), (_sb), 0), \
	AD_SD_DIFF_CHANNEL(2, 2, 2, AD7793_CH_AIN3P_AIN3M, (_b), (_sb), 0), \
	AD_SD_SHORTED_CHANNEL(3, 0, AD7793_CH_AIN1M_AIN1M, (_b), (_sb), 0), \
	AD_SD_SUPPLY_CHANNEL(4, 3, AD7793_CH_AVDD_MONITOR, (_b), (_sb), 0), \
	IIO_CHAN_SOFT_TIMESTAMP(5), \
}

630 631 632
static DECLARE_AD7793_CHANNELS(ad7785, 20, 32, 4);
static DECLARE_AD7793_CHANNELS(ad7792, 16, 32, 0);
static DECLARE_AD7793_CHANNELS(ad7793, 24, 32, 0);
633 634
static DECLARE_AD7795_CHANNELS(ad7794, 16, 32);
static DECLARE_AD7795_CHANNELS(ad7795, 24, 32);
635 636
static DECLARE_AD7797_CHANNELS(ad7796, 16, 16);
static DECLARE_AD7797_CHANNELS(ad7797, 24, 32);
637 638
static DECLARE_AD7799_CHANNELS(ad7798, 16, 16);
static DECLARE_AD7799_CHANNELS(ad7799, 24, 32);
639

640
static const struct ad7793_chip_info ad7793_chip_info_tbl[] = {
641
	[ID_AD7785] = {
642
		.id = AD7785_ID,
643 644
		.channels = ad7785_channels,
		.num_channels = ARRAY_SIZE(ad7785_channels),
645 646
		.iio_info = &ad7793_info,
		.sample_freq_avail = ad7793_sample_freq_avail,
647 648 649
		.flags = AD7793_FLAG_HAS_CLKSEL |
			AD7793_FLAG_HAS_REFSEL |
			AD7793_FLAG_HAS_VBIAS |
650 651 652
			AD7793_HAS_EXITATION_CURRENT |
			AD7793_FLAG_HAS_GAIN |
			AD7793_FLAG_HAS_BUFFER,
653
	},
654
	[ID_AD7792] = {
655
		.id = AD7792_ID,
656 657
		.channels = ad7792_channels,
		.num_channels = ARRAY_SIZE(ad7792_channels),
658 659
		.iio_info = &ad7793_info,
		.sample_freq_avail = ad7793_sample_freq_avail,
660 661 662
		.flags = AD7793_FLAG_HAS_CLKSEL |
			AD7793_FLAG_HAS_REFSEL |
			AD7793_FLAG_HAS_VBIAS |
663 664 665
			AD7793_HAS_EXITATION_CURRENT |
			AD7793_FLAG_HAS_GAIN |
			AD7793_FLAG_HAS_BUFFER,
666
	},
667
	[ID_AD7793] = {
668
		.id = AD7793_ID,
669 670
		.channels = ad7793_channels,
		.num_channels = ARRAY_SIZE(ad7793_channels),
671 672
		.iio_info = &ad7793_info,
		.sample_freq_avail = ad7793_sample_freq_avail,
673 674 675
		.flags = AD7793_FLAG_HAS_CLKSEL |
			AD7793_FLAG_HAS_REFSEL |
			AD7793_FLAG_HAS_VBIAS |
676 677 678
			AD7793_HAS_EXITATION_CURRENT |
			AD7793_FLAG_HAS_GAIN |
			AD7793_FLAG_HAS_BUFFER,
679
	},
680
	[ID_AD7794] = {
681
		.id = AD7794_ID,
682 683
		.channels = ad7794_channels,
		.num_channels = ARRAY_SIZE(ad7794_channels),
684 685
		.iio_info = &ad7793_info,
		.sample_freq_avail = ad7793_sample_freq_avail,
686 687 688
		.flags = AD7793_FLAG_HAS_CLKSEL |
			AD7793_FLAG_HAS_REFSEL |
			AD7793_FLAG_HAS_VBIAS |
689 690 691
			AD7793_HAS_EXITATION_CURRENT |
			AD7793_FLAG_HAS_GAIN |
			AD7793_FLAG_HAS_BUFFER,
692 693
	},
	[ID_AD7795] = {
694
		.id = AD7795_ID,
695 696
		.channels = ad7795_channels,
		.num_channels = ARRAY_SIZE(ad7795_channels),
697 698
		.iio_info = &ad7793_info,
		.sample_freq_avail = ad7793_sample_freq_avail,
699 700 701
		.flags = AD7793_FLAG_HAS_CLKSEL |
			AD7793_FLAG_HAS_REFSEL |
			AD7793_FLAG_HAS_VBIAS |
702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
			AD7793_HAS_EXITATION_CURRENT |
			AD7793_FLAG_HAS_GAIN |
			AD7793_FLAG_HAS_BUFFER,
	},
	[ID_AD7796] = {
		.id = AD7796_ID,
		.channels = ad7796_channels,
		.num_channels = ARRAY_SIZE(ad7796_channels),
		.iio_info = &ad7797_info,
		.sample_freq_avail = ad7797_sample_freq_avail,
		.flags = AD7793_FLAG_HAS_CLKSEL,
	},
	[ID_AD7797] = {
		.id = AD7797_ID,
		.channels = ad7797_channels,
		.num_channels = ARRAY_SIZE(ad7797_channels),
		.iio_info = &ad7797_info,
		.sample_freq_avail = ad7797_sample_freq_avail,
		.flags = AD7793_FLAG_HAS_CLKSEL,
721 722 723 724 725
	},
	[ID_AD7798] = {
		.id = AD7798_ID,
		.channels = ad7798_channels,
		.num_channels = ARRAY_SIZE(ad7798_channels),
726 727 728 729
		.iio_info = &ad7793_info,
		.sample_freq_avail = ad7793_sample_freq_avail,
		.flags = AD7793_FLAG_HAS_GAIN |
			AD7793_FLAG_HAS_BUFFER,
730 731 732 733 734
	},
	[ID_AD7799] = {
		.id = AD7799_ID,
		.channels = ad7799_channels,
		.num_channels = ARRAY_SIZE(ad7799_channels),
735 736 737 738
		.iio_info = &ad7793_info,
		.sample_freq_avail = ad7793_sample_freq_avail,
		.flags = AD7793_FLAG_HAS_GAIN |
			AD7793_FLAG_HAS_BUFFER,
739 740 741
	},
};

742
static int ad7793_probe(struct spi_device *spi)
743
{
744
	const struct ad7793_platform_data *pdata = spi->dev.platform_data;
745 746
	struct ad7793_state *st;
	struct iio_dev *indio_dev;
747
	int ret, vref_mv = 0;
748 749 750 751 752 753 754 755 756 757 758

	if (!pdata) {
		dev_err(&spi->dev, "no platform data?\n");
		return -ENODEV;
	}

	if (!spi->irq) {
		dev_err(&spi->dev, "no IRQ?\n");
		return -ENODEV;
	}

S
Sachin Kamat 已提交
759
	indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st));
760 761 762 763 764
	if (indio_dev == NULL)
		return -ENOMEM;

	st = iio_priv(indio_dev);

765 766
	ad_sd_init(&st->sd, indio_dev, spi, &ad7793_sigma_delta_info);

767
	if (pdata->refsel != AD7793_REFSEL_INTERNAL) {
S
Sachin Kamat 已提交
768 769 770
		st->reg = devm_regulator_get(&spi->dev, "refin");
		if (IS_ERR(st->reg))
			return PTR_ERR(st->reg);
771

772 773
		ret = regulator_enable(st->reg);
		if (ret)
S
Sachin Kamat 已提交
774
			return ret;
775

776 777 778 779 780 781 782 783 784
		vref_mv = regulator_get_voltage(st->reg);
		if (vref_mv < 0) {
			ret = vref_mv;
			goto error_disable_reg;
		}

		vref_mv /= 1000;
	} else {
		vref_mv = 1170; /* Build-in ref */
785 786 787 788 789 790 791 792 793 794
	}

	st->chip_info =
		&ad7793_chip_info_tbl[spi_get_device_id(spi)->driver_data];

	spi_set_drvdata(spi, indio_dev);

	indio_dev->dev.parent = &spi->dev;
	indio_dev->name = spi_get_device_id(spi)->name;
	indio_dev->modes = INDIO_DIRECT_MODE;
795 796
	indio_dev->channels = st->chip_info->channels;
	indio_dev->num_channels = st->chip_info->num_channels;
797
	indio_dev->info = st->chip_info->iio_info;
798

799
	ret = ad_sd_setup_buffer_and_trigger(indio_dev);
800 801 802
	if (ret)
		goto error_disable_reg;

803
	ret = ad7793_setup(indio_dev, pdata, vref_mv);
804
	if (ret)
805
		goto error_remove_trigger;
806

807 808
	ret = iio_device_register(indio_dev);
	if (ret)
809
		goto error_remove_trigger;
810

811 812 813
	return 0;

error_remove_trigger:
814
	ad_sd_cleanup_buffer_and_trigger(indio_dev);
815
error_disable_reg:
816
	if (pdata->refsel != AD7793_REFSEL_INTERNAL)
817 818 819 820 821
		regulator_disable(st->reg);

	return ret;
}

822
static int ad7793_remove(struct spi_device *spi)
823
{
824
	const struct ad7793_platform_data *pdata = spi->dev.platform_data;
825 826 827
	struct iio_dev *indio_dev = spi_get_drvdata(spi);
	struct ad7793_state *st = iio_priv(indio_dev);

828
	iio_device_unregister(indio_dev);
829
	ad_sd_cleanup_buffer_and_trigger(indio_dev);
830

S
Sachin Kamat 已提交
831
	if (pdata->refsel != AD7793_REFSEL_INTERNAL)
832 833 834 835 836 837
		regulator_disable(st->reg);

	return 0;
}

static const struct spi_device_id ad7793_id[] = {
838
	{"ad7785", ID_AD7785},
839 840
	{"ad7792", ID_AD7792},
	{"ad7793", ID_AD7793},
841 842
	{"ad7794", ID_AD7794},
	{"ad7795", ID_AD7795},
843 844
	{"ad7796", ID_AD7796},
	{"ad7797", ID_AD7797},
845 846
	{"ad7798", ID_AD7798},
	{"ad7799", ID_AD7799},
847 848
	{}
};
849
MODULE_DEVICE_TABLE(spi, ad7793_id);
850 851 852 853 854 855 856

static struct spi_driver ad7793_driver = {
	.driver = {
		.name	= "ad7793",
		.owner	= THIS_MODULE,
	},
	.probe		= ad7793_probe,
857
	.remove		= ad7793_remove,
858 859
	.id_table	= ad7793_id,
};
860
module_spi_driver(ad7793_driver);
861 862

MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
863
MODULE_DESCRIPTION("Analog Devices AD7793 and similar ADCs");
864
MODULE_LICENSE("GPL v2");