xref: /openbmc/linux/drivers/iio/adc/ti-ads7950.c (revision abbde279)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Texas Instruments ADS7950 SPI ADC driver
4  *
5  * Copyright 2016 David Lechner <david@lechnology.com>
6  *
7  * Based on iio/ad7923.c:
8  * Copyright 2011 Analog Devices Inc
9  * Copyright 2012 CS Systemes d'Information
10  *
11  * And also on hwmon/ads79xx.c
12  * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
13  *	Nishanth Menon
14  */
15 
16 #include <linux/acpi.h>
17 #include <linux/bitops.h>
18 #include <linux/device.h>
19 #include <linux/err.h>
20 #include <linux/interrupt.h>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/regulator/consumer.h>
24 #include <linux/slab.h>
25 #include <linux/spi/spi.h>
26 
27 #include <linux/iio/buffer.h>
28 #include <linux/iio/iio.h>
29 #include <linux/iio/sysfs.h>
30 #include <linux/iio/trigger_consumer.h>
31 #include <linux/iio/triggered_buffer.h>
32 
33 /*
34  * In case of ACPI, we use the 5000 mV as default for the reference pin.
35  * Device tree users encode that via the vref-supply regulator.
36  */
37 #define TI_ADS7950_VA_MV_ACPI_DEFAULT	5000
38 
39 #define TI_ADS7950_CR_MANUAL	BIT(12)
40 #define TI_ADS7950_CR_WRITE	BIT(11)
41 #define TI_ADS7950_CR_CHAN(ch)	((ch) << 7)
42 #define TI_ADS7950_CR_RANGE_5V	BIT(6)
43 
44 #define TI_ADS7950_MAX_CHAN	16
45 
46 #define TI_ADS7950_TIMESTAMP_SIZE (sizeof(int64_t) / sizeof(__be16))
47 
48 /* val = value, dec = left shift, bits = number of bits of the mask */
49 #define TI_ADS7950_EXTRACT(val, dec, bits) \
50 	(((val) >> (dec)) & ((1 << (bits)) - 1))
51 
52 struct ti_ads7950_state {
53 	struct spi_device	*spi;
54 	struct spi_transfer	ring_xfer;
55 	struct spi_transfer	scan_single_xfer[3];
56 	struct spi_message	ring_msg;
57 	struct spi_message	scan_single_msg;
58 
59 	/* Lock to protect the spi xfer buffers */
60 	struct mutex		slock;
61 
62 	struct regulator	*reg;
63 	unsigned int		vref_mv;
64 
65 	unsigned int		settings;
66 
67 	/*
68 	 * DMA (thus cache coherency maintenance) requires the
69 	 * transfer buffers to live in their own cache lines.
70 	 */
71 	u16 rx_buf[TI_ADS7950_MAX_CHAN + 2 + TI_ADS7950_TIMESTAMP_SIZE]
72 							____cacheline_aligned;
73 	u16 tx_buf[TI_ADS7950_MAX_CHAN + 2];
74 	u16 single_tx;
75 	u16 single_rx;
76 
77 };
78 
79 struct ti_ads7950_chip_info {
80 	const struct iio_chan_spec *channels;
81 	unsigned int num_channels;
82 };
83 
84 enum ti_ads7950_id {
85 	TI_ADS7950,
86 	TI_ADS7951,
87 	TI_ADS7952,
88 	TI_ADS7953,
89 	TI_ADS7954,
90 	TI_ADS7955,
91 	TI_ADS7956,
92 	TI_ADS7957,
93 	TI_ADS7958,
94 	TI_ADS7959,
95 	TI_ADS7960,
96 	TI_ADS7961,
97 };
98 
99 #define TI_ADS7950_V_CHAN(index, bits)				\
100 {								\
101 	.type = IIO_VOLTAGE,					\
102 	.indexed = 1,						\
103 	.channel = index,					\
104 	.info_mask_separate = BIT(IIO_CHAN_INFO_RAW),		\
105 	.info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE),	\
106 	.address = index,					\
107 	.datasheet_name = "CH##index",				\
108 	.scan_index = index,					\
109 	.scan_type = {						\
110 		.sign = 'u',					\
111 		.realbits = bits,				\
112 		.storagebits = 16,				\
113 		.shift = 12 - (bits),				\
114 		.endianness = IIO_CPU,				\
115 	},							\
116 }
117 
118 #define DECLARE_TI_ADS7950_4_CHANNELS(name, bits) \
119 const struct iio_chan_spec name ## _channels[] = { \
120 	TI_ADS7950_V_CHAN(0, bits), \
121 	TI_ADS7950_V_CHAN(1, bits), \
122 	TI_ADS7950_V_CHAN(2, bits), \
123 	TI_ADS7950_V_CHAN(3, bits), \
124 	IIO_CHAN_SOFT_TIMESTAMP(4), \
125 }
126 
127 #define DECLARE_TI_ADS7950_8_CHANNELS(name, bits) \
128 const struct iio_chan_spec name ## _channels[] = { \
129 	TI_ADS7950_V_CHAN(0, bits), \
130 	TI_ADS7950_V_CHAN(1, bits), \
131 	TI_ADS7950_V_CHAN(2, bits), \
132 	TI_ADS7950_V_CHAN(3, bits), \
133 	TI_ADS7950_V_CHAN(4, bits), \
134 	TI_ADS7950_V_CHAN(5, bits), \
135 	TI_ADS7950_V_CHAN(6, bits), \
136 	TI_ADS7950_V_CHAN(7, bits), \
137 	IIO_CHAN_SOFT_TIMESTAMP(8), \
138 }
139 
140 #define DECLARE_TI_ADS7950_12_CHANNELS(name, bits) \
141 const struct iio_chan_spec name ## _channels[] = { \
142 	TI_ADS7950_V_CHAN(0, bits), \
143 	TI_ADS7950_V_CHAN(1, bits), \
144 	TI_ADS7950_V_CHAN(2, bits), \
145 	TI_ADS7950_V_CHAN(3, bits), \
146 	TI_ADS7950_V_CHAN(4, bits), \
147 	TI_ADS7950_V_CHAN(5, bits), \
148 	TI_ADS7950_V_CHAN(6, bits), \
149 	TI_ADS7950_V_CHAN(7, bits), \
150 	TI_ADS7950_V_CHAN(8, bits), \
151 	TI_ADS7950_V_CHAN(9, bits), \
152 	TI_ADS7950_V_CHAN(10, bits), \
153 	TI_ADS7950_V_CHAN(11, bits), \
154 	IIO_CHAN_SOFT_TIMESTAMP(12), \
155 }
156 
157 #define DECLARE_TI_ADS7950_16_CHANNELS(name, bits) \
158 const struct iio_chan_spec name ## _channels[] = { \
159 	TI_ADS7950_V_CHAN(0, bits), \
160 	TI_ADS7950_V_CHAN(1, bits), \
161 	TI_ADS7950_V_CHAN(2, bits), \
162 	TI_ADS7950_V_CHAN(3, bits), \
163 	TI_ADS7950_V_CHAN(4, bits), \
164 	TI_ADS7950_V_CHAN(5, bits), \
165 	TI_ADS7950_V_CHAN(6, bits), \
166 	TI_ADS7950_V_CHAN(7, bits), \
167 	TI_ADS7950_V_CHAN(8, bits), \
168 	TI_ADS7950_V_CHAN(9, bits), \
169 	TI_ADS7950_V_CHAN(10, bits), \
170 	TI_ADS7950_V_CHAN(11, bits), \
171 	TI_ADS7950_V_CHAN(12, bits), \
172 	TI_ADS7950_V_CHAN(13, bits), \
173 	TI_ADS7950_V_CHAN(14, bits), \
174 	TI_ADS7950_V_CHAN(15, bits), \
175 	IIO_CHAN_SOFT_TIMESTAMP(16), \
176 }
177 
178 static DECLARE_TI_ADS7950_4_CHANNELS(ti_ads7950, 12);
179 static DECLARE_TI_ADS7950_8_CHANNELS(ti_ads7951, 12);
180 static DECLARE_TI_ADS7950_12_CHANNELS(ti_ads7952, 12);
181 static DECLARE_TI_ADS7950_16_CHANNELS(ti_ads7953, 12);
182 static DECLARE_TI_ADS7950_4_CHANNELS(ti_ads7954, 10);
183 static DECLARE_TI_ADS7950_8_CHANNELS(ti_ads7955, 10);
184 static DECLARE_TI_ADS7950_12_CHANNELS(ti_ads7956, 10);
185 static DECLARE_TI_ADS7950_16_CHANNELS(ti_ads7957, 10);
186 static DECLARE_TI_ADS7950_4_CHANNELS(ti_ads7958, 8);
187 static DECLARE_TI_ADS7950_8_CHANNELS(ti_ads7959, 8);
188 static DECLARE_TI_ADS7950_12_CHANNELS(ti_ads7960, 8);
189 static DECLARE_TI_ADS7950_16_CHANNELS(ti_ads7961, 8);
190 
191 static const struct ti_ads7950_chip_info ti_ads7950_chip_info[] = {
192 	[TI_ADS7950] = {
193 		.channels	= ti_ads7950_channels,
194 		.num_channels	= ARRAY_SIZE(ti_ads7950_channels),
195 	},
196 	[TI_ADS7951] = {
197 		.channels	= ti_ads7951_channels,
198 		.num_channels	= ARRAY_SIZE(ti_ads7951_channels),
199 	},
200 	[TI_ADS7952] = {
201 		.channels	= ti_ads7952_channels,
202 		.num_channels	= ARRAY_SIZE(ti_ads7952_channels),
203 	},
204 	[TI_ADS7953] = {
205 		.channels	= ti_ads7953_channels,
206 		.num_channels	= ARRAY_SIZE(ti_ads7953_channels),
207 	},
208 	[TI_ADS7954] = {
209 		.channels	= ti_ads7954_channels,
210 		.num_channels	= ARRAY_SIZE(ti_ads7954_channels),
211 	},
212 	[TI_ADS7955] = {
213 		.channels	= ti_ads7955_channels,
214 		.num_channels	= ARRAY_SIZE(ti_ads7955_channels),
215 	},
216 	[TI_ADS7956] = {
217 		.channels	= ti_ads7956_channels,
218 		.num_channels	= ARRAY_SIZE(ti_ads7956_channels),
219 	},
220 	[TI_ADS7957] = {
221 		.channels	= ti_ads7957_channels,
222 		.num_channels	= ARRAY_SIZE(ti_ads7957_channels),
223 	},
224 	[TI_ADS7958] = {
225 		.channels	= ti_ads7958_channels,
226 		.num_channels	= ARRAY_SIZE(ti_ads7958_channels),
227 	},
228 	[TI_ADS7959] = {
229 		.channels	= ti_ads7959_channels,
230 		.num_channels	= ARRAY_SIZE(ti_ads7959_channels),
231 	},
232 	[TI_ADS7960] = {
233 		.channels	= ti_ads7960_channels,
234 		.num_channels	= ARRAY_SIZE(ti_ads7960_channels),
235 	},
236 	[TI_ADS7961] = {
237 		.channels	= ti_ads7961_channels,
238 		.num_channels	= ARRAY_SIZE(ti_ads7961_channels),
239 	},
240 };
241 
242 /*
243  * ti_ads7950_update_scan_mode() setup the spi transfer buffer for the new
244  * scan mask
245  */
246 static int ti_ads7950_update_scan_mode(struct iio_dev *indio_dev,
247 				       const unsigned long *active_scan_mask)
248 {
249 	struct ti_ads7950_state *st = iio_priv(indio_dev);
250 	int i, cmd, len;
251 
252 	len = 0;
253 	for_each_set_bit(i, active_scan_mask, indio_dev->num_channels) {
254 		cmd = TI_ADS7950_CR_WRITE | TI_ADS7950_CR_CHAN(i) | st->settings;
255 		st->tx_buf[len++] = cmd;
256 	}
257 
258 	/* Data for the 1st channel is not returned until the 3rd transfer */
259 	st->tx_buf[len++] = 0;
260 	st->tx_buf[len++] = 0;
261 
262 	st->ring_xfer.len = len * 2;
263 
264 	return 0;
265 }
266 
267 static irqreturn_t ti_ads7950_trigger_handler(int irq, void *p)
268 {
269 	struct iio_poll_func *pf = p;
270 	struct iio_dev *indio_dev = pf->indio_dev;
271 	struct ti_ads7950_state *st = iio_priv(indio_dev);
272 	int ret;
273 
274 	mutex_lock(&st->slock);
275 	ret = spi_sync(st->spi, &st->ring_msg);
276 	if (ret < 0)
277 		goto out;
278 
279 	iio_push_to_buffers_with_timestamp(indio_dev, &st->rx_buf[2],
280 					   iio_get_time_ns(indio_dev));
281 
282 out:
283 	mutex_unlock(&st->slock);
284 	iio_trigger_notify_done(indio_dev->trig);
285 
286 	return IRQ_HANDLED;
287 }
288 
289 static int ti_ads7950_scan_direct(struct iio_dev *indio_dev, unsigned int ch)
290 {
291 	struct ti_ads7950_state *st = iio_priv(indio_dev);
292 	int ret, cmd;
293 
294 	mutex_lock(&st->slock);
295 
296 	cmd = TI_ADS7950_CR_WRITE | TI_ADS7950_CR_CHAN(ch) | st->settings;
297 	st->single_tx = cmd;
298 
299 	ret = spi_sync(st->spi, &st->scan_single_msg);
300 	if (ret)
301 		goto out;
302 
303 	ret = st->single_rx;
304 
305 out:
306 	mutex_unlock(&st->slock);
307 
308 	return ret;
309 }
310 
311 static int ti_ads7950_get_range(struct ti_ads7950_state *st)
312 {
313 	int vref;
314 
315 	if (st->vref_mv) {
316 		vref = st->vref_mv;
317 	} else {
318 		vref = regulator_get_voltage(st->reg);
319 		if (vref < 0)
320 			return vref;
321 
322 		vref /= 1000;
323 	}
324 
325 	if (st->settings & TI_ADS7950_CR_RANGE_5V)
326 		vref *= 2;
327 
328 	return vref;
329 }
330 
331 static int ti_ads7950_read_raw(struct iio_dev *indio_dev,
332 			       struct iio_chan_spec const *chan,
333 			       int *val, int *val2, long m)
334 {
335 	struct ti_ads7950_state *st = iio_priv(indio_dev);
336 	int ret;
337 
338 	switch (m) {
339 	case IIO_CHAN_INFO_RAW:
340 		ret = ti_ads7950_scan_direct(indio_dev, chan->address);
341 		if (ret < 0)
342 			return ret;
343 
344 		if (chan->address != TI_ADS7950_EXTRACT(ret, 12, 4))
345 			return -EIO;
346 
347 		*val = TI_ADS7950_EXTRACT(ret, chan->scan_type.shift,
348 					  chan->scan_type.realbits);
349 
350 		return IIO_VAL_INT;
351 	case IIO_CHAN_INFO_SCALE:
352 		ret = ti_ads7950_get_range(st);
353 		if (ret < 0)
354 			return ret;
355 
356 		*val = ret;
357 		*val2 = (1 << chan->scan_type.realbits) - 1;
358 
359 		return IIO_VAL_FRACTIONAL;
360 	}
361 
362 	return -EINVAL;
363 }
364 
365 static const struct iio_info ti_ads7950_info = {
366 	.read_raw		= &ti_ads7950_read_raw,
367 	.update_scan_mode	= ti_ads7950_update_scan_mode,
368 };
369 
370 static int ti_ads7950_probe(struct spi_device *spi)
371 {
372 	struct ti_ads7950_state *st;
373 	struct iio_dev *indio_dev;
374 	const struct ti_ads7950_chip_info *info;
375 	int ret;
376 
377 	spi->bits_per_word = 16;
378 	spi->mode |= SPI_CS_WORD;
379 	ret = spi_setup(spi);
380 	if (ret < 0) {
381 		dev_err(&spi->dev, "Error in spi setup\n");
382 		return ret;
383 	}
384 
385 	indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st));
386 	if (!indio_dev)
387 		return -ENOMEM;
388 
389 	st = iio_priv(indio_dev);
390 
391 	spi_set_drvdata(spi, indio_dev);
392 
393 	st->spi = spi;
394 	st->settings = TI_ADS7950_CR_MANUAL | TI_ADS7950_CR_RANGE_5V;
395 
396 	info = &ti_ads7950_chip_info[spi_get_device_id(spi)->driver_data];
397 
398 	indio_dev->name = spi_get_device_id(spi)->name;
399 	indio_dev->dev.parent = &spi->dev;
400 	indio_dev->modes = INDIO_DIRECT_MODE;
401 	indio_dev->channels = info->channels;
402 	indio_dev->num_channels = info->num_channels;
403 	indio_dev->info = &ti_ads7950_info;
404 
405 	/* build spi ring message */
406 	spi_message_init(&st->ring_msg);
407 
408 	st->ring_xfer.tx_buf = &st->tx_buf[0];
409 	st->ring_xfer.rx_buf = &st->rx_buf[0];
410 	/* len will be set later */
411 	st->ring_xfer.cs_change = true;
412 
413 	spi_message_add_tail(&st->ring_xfer, &st->ring_msg);
414 
415 	/*
416 	 * Setup default message. The sample is read at the end of the first
417 	 * transfer, then it takes one full cycle to convert the sample and one
418 	 * more cycle to send the value. The conversion process is driven by
419 	 * the SPI clock, which is why we have 3 transfers. The middle one is
420 	 * just dummy data sent while the chip is converting the sample that
421 	 * was read at the end of the first transfer.
422 	 */
423 
424 	st->scan_single_xfer[0].tx_buf = &st->single_tx;
425 	st->scan_single_xfer[0].len = 2;
426 	st->scan_single_xfer[0].cs_change = 1;
427 	st->scan_single_xfer[1].tx_buf = &st->single_tx;
428 	st->scan_single_xfer[1].len = 2;
429 	st->scan_single_xfer[1].cs_change = 1;
430 	st->scan_single_xfer[2].rx_buf = &st->single_rx;
431 	st->scan_single_xfer[2].len = 2;
432 
433 	spi_message_init_with_transfers(&st->scan_single_msg,
434 					st->scan_single_xfer, 3);
435 
436 	/* Use hard coded value for reference voltage in ACPI case */
437 	if (ACPI_COMPANION(&spi->dev))
438 		st->vref_mv = TI_ADS7950_VA_MV_ACPI_DEFAULT;
439 
440 	mutex_init(&st->slock);
441 
442 	st->reg = devm_regulator_get(&spi->dev, "vref");
443 	if (IS_ERR(st->reg)) {
444 		dev_err(&spi->dev, "Failed get get regulator \"vref\"\n");
445 		ret = PTR_ERR(st->reg);
446 		goto error_destroy_mutex;
447 	}
448 
449 	ret = regulator_enable(st->reg);
450 	if (ret) {
451 		dev_err(&spi->dev, "Failed to enable regulator \"vref\"\n");
452 		goto error_destroy_mutex;
453 	}
454 
455 	ret = iio_triggered_buffer_setup(indio_dev, NULL,
456 					 &ti_ads7950_trigger_handler, NULL);
457 	if (ret) {
458 		dev_err(&spi->dev, "Failed to setup triggered buffer\n");
459 		goto error_disable_reg;
460 	}
461 
462 	ret = iio_device_register(indio_dev);
463 	if (ret) {
464 		dev_err(&spi->dev, "Failed to register iio device\n");
465 		goto error_cleanup_ring;
466 	}
467 
468 	return 0;
469 
470 error_cleanup_ring:
471 	iio_triggered_buffer_cleanup(indio_dev);
472 error_disable_reg:
473 	regulator_disable(st->reg);
474 error_destroy_mutex:
475 	mutex_destroy(&st->slock);
476 
477 	return ret;
478 }
479 
480 static int ti_ads7950_remove(struct spi_device *spi)
481 {
482 	struct iio_dev *indio_dev = spi_get_drvdata(spi);
483 	struct ti_ads7950_state *st = iio_priv(indio_dev);
484 
485 	iio_device_unregister(indio_dev);
486 	iio_triggered_buffer_cleanup(indio_dev);
487 	regulator_disable(st->reg);
488 	mutex_destroy(&st->slock);
489 
490 	return 0;
491 }
492 
493 static const struct spi_device_id ti_ads7950_id[] = {
494 	{ "ads7950", TI_ADS7950 },
495 	{ "ads7951", TI_ADS7951 },
496 	{ "ads7952", TI_ADS7952 },
497 	{ "ads7953", TI_ADS7953 },
498 	{ "ads7954", TI_ADS7954 },
499 	{ "ads7955", TI_ADS7955 },
500 	{ "ads7956", TI_ADS7956 },
501 	{ "ads7957", TI_ADS7957 },
502 	{ "ads7958", TI_ADS7958 },
503 	{ "ads7959", TI_ADS7959 },
504 	{ "ads7960", TI_ADS7960 },
505 	{ "ads7961", TI_ADS7961 },
506 	{ }
507 };
508 MODULE_DEVICE_TABLE(spi, ti_ads7950_id);
509 
510 static const struct of_device_id ads7950_of_table[] = {
511 	{ .compatible = "ti,ads7950", .data = &ti_ads7950_chip_info[TI_ADS7950] },
512 	{ .compatible = "ti,ads7951", .data = &ti_ads7950_chip_info[TI_ADS7951] },
513 	{ .compatible = "ti,ads7952", .data = &ti_ads7950_chip_info[TI_ADS7952] },
514 	{ .compatible = "ti,ads7953", .data = &ti_ads7950_chip_info[TI_ADS7953] },
515 	{ .compatible = "ti,ads7954", .data = &ti_ads7950_chip_info[TI_ADS7954] },
516 	{ .compatible = "ti,ads7955", .data = &ti_ads7950_chip_info[TI_ADS7955] },
517 	{ .compatible = "ti,ads7956", .data = &ti_ads7950_chip_info[TI_ADS7956] },
518 	{ .compatible = "ti,ads7957", .data = &ti_ads7950_chip_info[TI_ADS7957] },
519 	{ .compatible = "ti,ads7958", .data = &ti_ads7950_chip_info[TI_ADS7958] },
520 	{ .compatible = "ti,ads7959", .data = &ti_ads7950_chip_info[TI_ADS7959] },
521 	{ .compatible = "ti,ads7960", .data = &ti_ads7950_chip_info[TI_ADS7960] },
522 	{ .compatible = "ti,ads7961", .data = &ti_ads7950_chip_info[TI_ADS7961] },
523 	{ },
524 };
525 MODULE_DEVICE_TABLE(of, ads7950_of_table);
526 
527 static struct spi_driver ti_ads7950_driver = {
528 	.driver = {
529 		.name	= "ads7950",
530 		.of_match_table = ads7950_of_table,
531 	},
532 	.probe		= ti_ads7950_probe,
533 	.remove		= ti_ads7950_remove,
534 	.id_table	= ti_ads7950_id,
535 };
536 module_spi_driver(ti_ads7950_driver);
537 
538 MODULE_AUTHOR("David Lechner <david@lechnology.com>");
539 MODULE_DESCRIPTION("TI TI_ADS7950 ADC");
540 MODULE_LICENSE("GPL v2");
541