1 // SPDX-License-Identifier: GPL-2.0-only
3 * AD7298 SPI ADC driver
5 * Copyright 2011 Analog Devices Inc.
8 #include <linux/device.h>
9 #include <linux/kernel.h>
10 #include <linux/slab.h>
11 #include <linux/sysfs.h>
12 #include <linux/spi/spi.h>
13 #include <linux/regulator/consumer.h>
14 #include <linux/err.h>
15 #include <linux/delay.h>
16 #include <linux/mod_devicetable.h>
17 #include <linux/module.h>
18 #include <linux/interrupt.h>
19 #include <linux/bitops.h>
21 #include <linux/iio/iio.h>
22 #include <linux/iio/sysfs.h>
23 #include <linux/iio/buffer.h>
24 #include <linux/iio/trigger_consumer.h>
25 #include <linux/iio/triggered_buffer.h>
27 #define AD7298_WRITE BIT(15) /* write to the control register */
28 #define AD7298_REPEAT BIT(14) /* repeated conversion enable */
29 #define AD7298_CH(x) BIT(13 - (x)) /* channel select */
30 #define AD7298_TSENSE BIT(5) /* temperature conversion enable */
31 #define AD7298_EXTREF BIT(2) /* external reference enable */
32 #define AD7298_TAVG BIT(1) /* temperature sensor averaging enable */
33 #define AD7298_PDD BIT(0) /* partial power down enable */
35 #define AD7298_MAX_CHAN 8
36 #define AD7298_INTREF_mV 2500
38 #define AD7298_CH_TEMP 9
41 struct spi_device *spi;
42 struct regulator *reg;
44 struct spi_transfer ring_xfer[10];
45 struct spi_transfer scan_single_xfer[3];
46 struct spi_message ring_msg;
47 struct spi_message scan_single_msg;
49 * DMA (thus cache coherency maintenance) requires the
50 * transfer buffers to live in their own cache lines.
52 __be16 rx_buf[12] __aligned(IIO_DMA_MINALIGN);
56 #define AD7298_V_CHAN(index) \
58 .type = IIO_VOLTAGE, \
61 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
62 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
64 .scan_index = index, \
69 .endianness = IIO_BE, \
73 static const struct iio_chan_spec ad7298_channels[] = {
78 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
79 BIT(IIO_CHAN_INFO_SCALE) |
80 BIT(IIO_CHAN_INFO_OFFSET),
81 .address = AD7298_CH_TEMP,
97 IIO_CHAN_SOFT_TIMESTAMP(8),
101 * ad7298_update_scan_mode() setup the spi transfer buffer for the new scan mask
103 static int ad7298_update_scan_mode(struct iio_dev *indio_dev,
104 const unsigned long *active_scan_mask)
106 struct ad7298_state *st = iio_priv(indio_dev);
108 unsigned short command;
111 /* Now compute overall size */
112 scan_count = bitmap_weight(active_scan_mask, indio_dev->masklength);
114 command = AD7298_WRITE | st->ext_ref;
116 for (i = 0, m = AD7298_CH(0); i < AD7298_MAX_CHAN; i++, m >>= 1)
117 if (test_bit(i, active_scan_mask))
120 st->tx_buf[0] = cpu_to_be16(command);
122 /* build spi ring message */
123 st->ring_xfer[0].tx_buf = &st->tx_buf[0];
124 st->ring_xfer[0].len = 2;
125 st->ring_xfer[0].cs_change = 1;
126 st->ring_xfer[1].tx_buf = &st->tx_buf[1];
127 st->ring_xfer[1].len = 2;
128 st->ring_xfer[1].cs_change = 1;
130 spi_message_init(&st->ring_msg);
131 spi_message_add_tail(&st->ring_xfer[0], &st->ring_msg);
132 spi_message_add_tail(&st->ring_xfer[1], &st->ring_msg);
134 for (i = 0; i < scan_count; i++) {
135 st->ring_xfer[i + 2].rx_buf = &st->rx_buf[i];
136 st->ring_xfer[i + 2].len = 2;
137 st->ring_xfer[i + 2].cs_change = 1;
138 spi_message_add_tail(&st->ring_xfer[i + 2], &st->ring_msg);
140 /* make sure last transfer cs_change is not set */
141 st->ring_xfer[i + 1].cs_change = 0;
146 static irqreturn_t ad7298_trigger_handler(int irq, void *p)
148 struct iio_poll_func *pf = p;
149 struct iio_dev *indio_dev = pf->indio_dev;
150 struct ad7298_state *st = iio_priv(indio_dev);
153 b_sent = spi_sync(st->spi, &st->ring_msg);
157 iio_push_to_buffers_with_timestamp(indio_dev, st->rx_buf,
158 iio_get_time_ns(indio_dev));
161 iio_trigger_notify_done(indio_dev->trig);
166 static int ad7298_scan_direct(struct ad7298_state *st, unsigned ch)
169 st->tx_buf[0] = cpu_to_be16(AD7298_WRITE | st->ext_ref |
170 (AD7298_CH(0) >> ch));
172 ret = spi_sync(st->spi, &st->scan_single_msg);
176 return be16_to_cpu(st->rx_buf[0]);
179 static int ad7298_scan_temp(struct ad7298_state *st, int *val)
184 buf = cpu_to_be16(AD7298_WRITE | AD7298_TSENSE |
185 AD7298_TAVG | st->ext_ref);
187 ret = spi_write(st->spi, (u8 *)&buf, 2);
191 buf = cpu_to_be16(0);
193 ret = spi_write(st->spi, (u8 *)&buf, 2);
197 usleep_range(101, 1000); /* sleep > 100us */
199 ret = spi_read(st->spi, (u8 *)&buf, 2);
203 *val = sign_extend32(be16_to_cpu(buf), 11);
208 static int ad7298_get_ref_voltage(struct ad7298_state *st)
213 vref = regulator_get_voltage(st->reg);
219 return AD7298_INTREF_mV;
223 static int ad7298_read_raw(struct iio_dev *indio_dev,
224 struct iio_chan_spec const *chan,
230 struct ad7298_state *st = iio_priv(indio_dev);
233 case IIO_CHAN_INFO_RAW:
234 ret = iio_device_claim_direct_mode(indio_dev);
238 if (chan->address == AD7298_CH_TEMP)
239 ret = ad7298_scan_temp(st, val);
241 ret = ad7298_scan_direct(st, chan->address);
243 iio_device_release_direct_mode(indio_dev);
248 if (chan->address != AD7298_CH_TEMP)
249 *val = ret & GENMASK(chan->scan_type.realbits - 1, 0);
252 case IIO_CHAN_INFO_SCALE:
253 switch (chan->type) {
255 *val = ad7298_get_ref_voltage(st);
256 *val2 = chan->scan_type.realbits;
257 return IIO_VAL_FRACTIONAL_LOG2;
259 *val = ad7298_get_ref_voltage(st);
261 return IIO_VAL_FRACTIONAL;
265 case IIO_CHAN_INFO_OFFSET:
266 *val = 1093 - 2732500 / ad7298_get_ref_voltage(st);
272 static const struct iio_info ad7298_info = {
273 .read_raw = &ad7298_read_raw,
274 .update_scan_mode = ad7298_update_scan_mode,
277 static void ad7298_reg_disable(void *data)
279 struct regulator *reg = data;
281 regulator_disable(reg);
284 static int ad7298_probe(struct spi_device *spi)
286 struct ad7298_state *st;
287 struct iio_dev *indio_dev;
290 indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st));
291 if (indio_dev == NULL)
294 st = iio_priv(indio_dev);
296 st->reg = devm_regulator_get_optional(&spi->dev, "vref");
297 if (!IS_ERR(st->reg)) {
298 st->ext_ref = AD7298_EXTREF;
300 ret = PTR_ERR(st->reg);
308 ret = regulator_enable(st->reg);
312 ret = devm_add_action_or_reset(&spi->dev, ad7298_reg_disable,
320 indio_dev->name = spi_get_device_id(spi)->name;
321 indio_dev->modes = INDIO_DIRECT_MODE;
322 indio_dev->channels = ad7298_channels;
323 indio_dev->num_channels = ARRAY_SIZE(ad7298_channels);
324 indio_dev->info = &ad7298_info;
326 /* Setup default message */
328 st->scan_single_xfer[0].tx_buf = &st->tx_buf[0];
329 st->scan_single_xfer[0].len = 2;
330 st->scan_single_xfer[0].cs_change = 1;
331 st->scan_single_xfer[1].tx_buf = &st->tx_buf[1];
332 st->scan_single_xfer[1].len = 2;
333 st->scan_single_xfer[1].cs_change = 1;
334 st->scan_single_xfer[2].rx_buf = &st->rx_buf[0];
335 st->scan_single_xfer[2].len = 2;
337 spi_message_init(&st->scan_single_msg);
338 spi_message_add_tail(&st->scan_single_xfer[0], &st->scan_single_msg);
339 spi_message_add_tail(&st->scan_single_xfer[1], &st->scan_single_msg);
340 spi_message_add_tail(&st->scan_single_xfer[2], &st->scan_single_msg);
342 ret = devm_iio_triggered_buffer_setup(&spi->dev, indio_dev, NULL,
343 &ad7298_trigger_handler, NULL);
347 return devm_iio_device_register(&spi->dev, indio_dev);
350 static const struct acpi_device_id ad7298_acpi_ids[] = {
354 MODULE_DEVICE_TABLE(acpi, ad7298_acpi_ids);
356 static const struct spi_device_id ad7298_id[] = {
360 MODULE_DEVICE_TABLE(spi, ad7298_id);
362 static struct spi_driver ad7298_driver = {
365 .acpi_match_table = ad7298_acpi_ids,
367 .probe = ad7298_probe,
368 .id_table = ad7298_id,
370 module_spi_driver(ad7298_driver);
372 MODULE_AUTHOR("Michael Hennerich <michael.hennerich@analog.com>");
373 MODULE_DESCRIPTION("Analog Devices AD7298 ADC");
374 MODULE_LICENSE("GPL v2");