1 // SPDX-License-Identifier: GPL-2.0
3 * AD7606 SPI ADC driver
5 * Copyright 2011 Analog Devices Inc.
8 #include <linux/module.h>
9 #include <linux/spi/spi.h>
10 #include <linux/types.h>
11 #include <linux/err.h>
13 #include <linux/iio/iio.h>
16 #define MAX_SPI_FREQ_HZ 23500000 /* VDRIVE above 4.75 V */
18 #define AD7616_CONFIGURATION_REGISTER 0x02
19 #define AD7616_OS_MASK GENMASK(4, 2)
20 #define AD7616_BURST_MODE BIT(6)
21 #define AD7616_SEQEN_MODE BIT(5)
22 #define AD7616_RANGE_CH_A_ADDR_OFF 0x04
23 #define AD7616_RANGE_CH_B_ADDR_OFF 0x06
25 * Range of channels from a group are stored in 2 registers.
26 * 0, 1, 2, 3 in a register followed by 4, 5, 6, 7 in second register.
27 * For channels from second group(8-15) the order is the same, only with
28 * an offset of 2 for register address.
30 #define AD7616_RANGE_CH_ADDR(ch) ((ch) >> 2)
31 /* The range of the channel is stored in 2 bits */
32 #define AD7616_RANGE_CH_MSK(ch) (0b11 << (((ch) & 0b11) * 2))
33 #define AD7616_RANGE_CH_MODE(ch, mode) ((mode) << ((((ch) & 0b11)) * 2))
35 #define AD7606_CONFIGURATION_REGISTER 0x02
36 #define AD7606_SINGLE_DOUT 0x00
39 * Range for AD7606B channels are stored in registers starting with address 0x3.
40 * Each register stores range for 2 channels(4 bits per channel).
42 #define AD7606_RANGE_CH_MSK(ch) (GENMASK(3, 0) << (4 * ((ch) & 0x1)))
43 #define AD7606_RANGE_CH_MODE(ch, mode) \
44 ((GENMASK(3, 0) & mode) << (4 * ((ch) & 0x1)))
45 #define AD7606_RANGE_CH_ADDR(ch) (0x03 + ((ch) >> 1))
46 #define AD7606_OS_MODE 0x08
48 static const struct iio_chan_spec ad7616_sw_channels
[] = {
49 IIO_CHAN_SOFT_TIMESTAMP(16),
68 static const struct iio_chan_spec ad7606b_sw_channels
[] = {
69 IIO_CHAN_SOFT_TIMESTAMP(8),
80 static const unsigned int ad7606B_oversampling_avail
[9] = {
81 1, 2, 4, 8, 16, 32, 64, 128, 256
84 static u16
ad7616_spi_rd_wr_cmd(int addr
, char isWriteOp
)
87 * The address of register consist of one w/r bit
88 * 6 bits of address followed by one reserved bit.
90 return ((addr
& 0x7F) << 1) | ((isWriteOp
& 0x1) << 7);
93 static u16
ad7606B_spi_rd_wr_cmd(int addr
, char is_write_op
)
96 * The address of register consists of one bit which
97 * specifies a read command placed in bit 6, followed by
100 return (addr
& 0x3F) | (((~is_write_op
) & 0x1) << 6);
103 static int ad7606_spi_read_block(struct device
*dev
,
104 int count
, void *buf
)
106 struct spi_device
*spi
= to_spi_device(dev
);
108 unsigned short *data
= buf
;
111 ret
= spi_read(spi
, buf
, count
* 2);
113 dev_err(&spi
->dev
, "SPI read error\n");
117 for (i
= 0; i
< count
; i
++)
118 data
[i
] = be16_to_cpu(bdata
[i
]);
123 static int ad7606_spi_reg_read(struct ad7606_state
*st
, unsigned int addr
)
125 struct spi_device
*spi
= to_spi_device(st
->dev
);
126 struct spi_transfer t
[] = {
128 .tx_buf
= &st
->d16
[0],
132 .rx_buf
= &st
->d16
[1],
138 st
->d16
[0] = cpu_to_be16(st
->bops
->rd_wr_cmd(addr
, 0) << 8);
140 ret
= spi_sync_transfer(spi
, t
, ARRAY_SIZE(t
));
144 return be16_to_cpu(st
->d16
[1]);
147 static int ad7606_spi_reg_write(struct ad7606_state
*st
,
151 struct spi_device
*spi
= to_spi_device(st
->dev
);
153 st
->d16
[0] = cpu_to_be16((st
->bops
->rd_wr_cmd(addr
, 1) << 8) |
156 return spi_write(spi
, &st
->d16
[0], sizeof(st
->d16
[0]));
159 static int ad7606_spi_write_mask(struct ad7606_state
*st
,
166 readval
= st
->bops
->reg_read(st
, addr
);
173 return st
->bops
->reg_write(st
, addr
, readval
);
176 static int ad7616_write_scale_sw(struct iio_dev
*indio_dev
, int ch
, int val
)
178 struct ad7606_state
*st
= iio_priv(indio_dev
);
179 unsigned int ch_addr
, mode
, ch_index
;
183 * Ad7616 has 16 channels divided in group A and group B.
184 * The range of channels from A are stored in registers with address 4
185 * while channels from B are stored in register with address 6.
186 * The last bit from channels determines if it is from group A or B
187 * because the order of channels in iio is 0A, 0B, 1A, 1B...
191 ch_addr
= AD7616_RANGE_CH_ADDR(ch_index
);
193 if ((ch
& 0x1) == 0) /* channel A */
194 ch_addr
+= AD7616_RANGE_CH_A_ADDR_OFF
;
196 ch_addr
+= AD7616_RANGE_CH_B_ADDR_OFF
;
198 /* 0b01 for 2.5v, 0b10 for 5v and 0b11 for 10v */
199 mode
= AD7616_RANGE_CH_MODE(ch_index
, ((val
+ 1) & 0b11));
200 return st
->bops
->write_mask(st
, ch_addr
, AD7616_RANGE_CH_MSK(ch_index
),
204 static int ad7616_write_os_sw(struct iio_dev
*indio_dev
, int val
)
206 struct ad7606_state
*st
= iio_priv(indio_dev
);
208 return st
->bops
->write_mask(st
, AD7616_CONFIGURATION_REGISTER
,
209 AD7616_OS_MASK
, val
<< 2);
212 static int ad7606_write_scale_sw(struct iio_dev
*indio_dev
, int ch
, int val
)
214 struct ad7606_state
*st
= iio_priv(indio_dev
);
216 return ad7606_spi_write_mask(st
,
217 AD7606_RANGE_CH_ADDR(ch
),
218 AD7606_RANGE_CH_MSK(ch
),
219 AD7606_RANGE_CH_MODE(ch
, val
));
222 static int ad7606_write_os_sw(struct iio_dev
*indio_dev
, int val
)
224 struct ad7606_state
*st
= iio_priv(indio_dev
);
226 return ad7606_spi_reg_write(st
, AD7606_OS_MODE
, val
);
229 static int ad7616_sw_mode_config(struct iio_dev
*indio_dev
)
231 struct ad7606_state
*st
= iio_priv(indio_dev
);
234 * Scale can be configured individually for each channel
237 indio_dev
->channels
= ad7616_sw_channels
;
239 st
->write_scale
= ad7616_write_scale_sw
;
240 st
->write_os
= &ad7616_write_os_sw
;
242 /* Activate Burst mode and SEQEN MODE */
243 return st
->bops
->write_mask(st
,
244 AD7616_CONFIGURATION_REGISTER
,
245 AD7616_BURST_MODE
| AD7616_SEQEN_MODE
,
246 AD7616_BURST_MODE
| AD7616_SEQEN_MODE
);
249 static int ad7606B_sw_mode_config(struct iio_dev
*indio_dev
)
251 struct ad7606_state
*st
= iio_priv(indio_dev
);
252 unsigned long os
[3] = {1};
255 * Software mode is enabled when all three oversampling
256 * pins are set to high. If oversampling gpios are defined
257 * in the device tree, then they need to be set to high,
258 * otherwise, they must be hardwired to VDD
261 gpiod_set_array_value(ARRAY_SIZE(os
),
262 st
->gpio_os
->desc
, st
->gpio_os
->info
, os
);
264 /* OS of 128 and 256 are available only in software mode */
265 st
->oversampling_avail
= ad7606B_oversampling_avail
;
266 st
->num_os_ratios
= ARRAY_SIZE(ad7606B_oversampling_avail
);
268 st
->write_scale
= ad7606_write_scale_sw
;
269 st
->write_os
= &ad7606_write_os_sw
;
271 /* Configure device spi to output on a single channel */
272 st
->bops
->reg_write(st
,
273 AD7606_CONFIGURATION_REGISTER
,
277 * Scale can be configured individually for each channel
280 indio_dev
->channels
= ad7606b_sw_channels
;
285 static const struct ad7606_bus_ops ad7606_spi_bops
= {
286 .read_block
= ad7606_spi_read_block
,
289 static const struct ad7606_bus_ops ad7616_spi_bops
= {
290 .read_block
= ad7606_spi_read_block
,
291 .reg_read
= ad7606_spi_reg_read
,
292 .reg_write
= ad7606_spi_reg_write
,
293 .write_mask
= ad7606_spi_write_mask
,
294 .rd_wr_cmd
= ad7616_spi_rd_wr_cmd
,
295 .sw_mode_config
= ad7616_sw_mode_config
,
298 static const struct ad7606_bus_ops ad7606B_spi_bops
= {
299 .read_block
= ad7606_spi_read_block
,
300 .reg_read
= ad7606_spi_reg_read
,
301 .reg_write
= ad7606_spi_reg_write
,
302 .write_mask
= ad7606_spi_write_mask
,
303 .rd_wr_cmd
= ad7606B_spi_rd_wr_cmd
,
304 .sw_mode_config
= ad7606B_sw_mode_config
,
307 static int ad7606_spi_probe(struct spi_device
*spi
)
309 const struct spi_device_id
*id
= spi_get_device_id(spi
);
310 const struct ad7606_bus_ops
*bops
;
312 switch (id
->driver_data
) {
314 bops
= &ad7616_spi_bops
;
317 bops
= &ad7606B_spi_bops
;
320 bops
= &ad7606_spi_bops
;
324 return ad7606_probe(&spi
->dev
, spi
->irq
, NULL
,
325 id
->name
, id
->driver_data
,
329 static const struct spi_device_id ad7606_id_table
[] = {
330 { "ad7605-4", ID_AD7605_4
},
331 { "ad7606-4", ID_AD7606_4
},
332 { "ad7606-6", ID_AD7606_6
},
333 { "ad7606-8", ID_AD7606_8
},
334 { "ad7606b", ID_AD7606B
},
335 { "ad7616", ID_AD7616
},
338 MODULE_DEVICE_TABLE(spi
, ad7606_id_table
);
340 static const struct of_device_id ad7606_of_match
[] = {
341 { .compatible
= "adi,ad7605-4" },
342 { .compatible
= "adi,ad7606-4" },
343 { .compatible
= "adi,ad7606-6" },
344 { .compatible
= "adi,ad7606-8" },
345 { .compatible
= "adi,ad7606b" },
346 { .compatible
= "adi,ad7616" },
349 MODULE_DEVICE_TABLE(of
, ad7606_of_match
);
351 static struct spi_driver ad7606_driver
= {
354 .of_match_table
= ad7606_of_match
,
357 .probe
= ad7606_spi_probe
,
358 .id_table
= ad7606_id_table
,
360 module_spi_driver(ad7606_driver
);
362 MODULE_AUTHOR("Michael Hennerich <michael.hennerich@analog.com>");
363 MODULE_DESCRIPTION("Analog Devices AD7606 ADC");
364 MODULE_LICENSE("GPL v2");