blob: bc2cfa5f9592242ab02541d8f2b11eebc53a18df [file] [log] [blame]
Stefan Popab3af3412018-11-13 13:21:32 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * AD7124 SPI ADC driver
4 *
5 * Copyright 2018 Analog Devices Inc.
6 */
7#include <linux/bitfield.h>
Alexandru Tachici7b8d0452021-03-11 11:11:54 +02008#include <linux/bitops.h>
Stefan Popab3af3412018-11-13 13:21:32 +02009#include <linux/clk.h>
10#include <linux/delay.h>
11#include <linux/device.h>
12#include <linux/err.h>
Alexandru Tachicida4d3d62020-01-13 12:26:52 +020013#include <linux/interrupt.h>
Stefan Popab3af3412018-11-13 13:21:32 +020014#include <linux/kernel.h>
Alexandru Tachici7b8d0452021-03-11 11:11:54 +020015#include <linux/kfifo.h>
Stefan Popab3af3412018-11-13 13:21:32 +020016#include <linux/module.h>
Alexandru Ardelean951ad472020-07-14 08:11:11 +030017#include <linux/of_device.h>
Stefan Popab3af3412018-11-13 13:21:32 +020018#include <linux/regulator/consumer.h>
19#include <linux/spi/spi.h>
20
21#include <linux/iio/iio.h>
22#include <linux/iio/adc/ad_sigma_delta.h>
23#include <linux/iio/sysfs.h>
24
25/* AD7124 registers */
26#define AD7124_COMMS 0x00
27#define AD7124_STATUS 0x00
28#define AD7124_ADC_CONTROL 0x01
29#define AD7124_DATA 0x02
30#define AD7124_IO_CONTROL_1 0x03
31#define AD7124_IO_CONTROL_2 0x04
32#define AD7124_ID 0x05
33#define AD7124_ERROR 0x06
34#define AD7124_ERROR_EN 0x07
35#define AD7124_MCLK_COUNT 0x08
36#define AD7124_CHANNEL(x) (0x09 + (x))
37#define AD7124_CONFIG(x) (0x19 + (x))
38#define AD7124_FILTER(x) (0x21 + (x))
39#define AD7124_OFFSET(x) (0x29 + (x))
40#define AD7124_GAIN(x) (0x31 + (x))
41
42/* AD7124_STATUS */
43#define AD7124_STATUS_POR_FLAG_MSK BIT(4)
44
45/* AD7124_ADC_CONTROL */
Mircea Caprioru11d7c8d2019-11-18 10:38:57 +020046#define AD7124_ADC_CTRL_REF_EN_MSK BIT(8)
47#define AD7124_ADC_CTRL_REF_EN(x) FIELD_PREP(AD7124_ADC_CTRL_REF_EN_MSK, x)
Stefan Popab3af3412018-11-13 13:21:32 +020048#define AD7124_ADC_CTRL_PWR_MSK GENMASK(7, 6)
49#define AD7124_ADC_CTRL_PWR(x) FIELD_PREP(AD7124_ADC_CTRL_PWR_MSK, x)
50#define AD7124_ADC_CTRL_MODE_MSK GENMASK(5, 2)
51#define AD7124_ADC_CTRL_MODE(x) FIELD_PREP(AD7124_ADC_CTRL_MODE_MSK, x)
52
Alexandru Ardelean951ad472020-07-14 08:11:11 +030053/* AD7124 ID */
54#define AD7124_DEVICE_ID_MSK GENMASK(7, 4)
55#define AD7124_DEVICE_ID_GET(x) FIELD_GET(AD7124_DEVICE_ID_MSK, x)
56#define AD7124_SILICON_REV_MSK GENMASK(3, 0)
57#define AD7124_SILICON_REV_GET(x) FIELD_GET(AD7124_SILICON_REV_MSK, x)
58
59#define CHIPID_AD7124_4 0x0
60#define CHIPID_AD7124_8 0x1
61
Stefan Popab3af3412018-11-13 13:21:32 +020062/* AD7124_CHANNEL_X */
63#define AD7124_CHANNEL_EN_MSK BIT(15)
64#define AD7124_CHANNEL_EN(x) FIELD_PREP(AD7124_CHANNEL_EN_MSK, x)
65#define AD7124_CHANNEL_SETUP_MSK GENMASK(14, 12)
66#define AD7124_CHANNEL_SETUP(x) FIELD_PREP(AD7124_CHANNEL_SETUP_MSK, x)
67#define AD7124_CHANNEL_AINP_MSK GENMASK(9, 5)
68#define AD7124_CHANNEL_AINP(x) FIELD_PREP(AD7124_CHANNEL_AINP_MSK, x)
69#define AD7124_CHANNEL_AINM_MSK GENMASK(4, 0)
70#define AD7124_CHANNEL_AINM(x) FIELD_PREP(AD7124_CHANNEL_AINM_MSK, x)
71
72/* AD7124_CONFIG_X */
73#define AD7124_CONFIG_BIPOLAR_MSK BIT(11)
74#define AD7124_CONFIG_BIPOLAR(x) FIELD_PREP(AD7124_CONFIG_BIPOLAR_MSK, x)
75#define AD7124_CONFIG_REF_SEL_MSK GENMASK(4, 3)
76#define AD7124_CONFIG_REF_SEL(x) FIELD_PREP(AD7124_CONFIG_REF_SEL_MSK, x)
77#define AD7124_CONFIG_PGA_MSK GENMASK(2, 0)
78#define AD7124_CONFIG_PGA(x) FIELD_PREP(AD7124_CONFIG_PGA_MSK, x)
Mircea Caprioru0eaecea2019-06-25 11:11:25 +030079#define AD7124_CONFIG_IN_BUFF_MSK GENMASK(7, 6)
80#define AD7124_CONFIG_IN_BUFF(x) FIELD_PREP(AD7124_CONFIG_IN_BUFF_MSK, x)
Stefan Popab3af3412018-11-13 13:21:32 +020081
82/* AD7124_FILTER_X */
83#define AD7124_FILTER_FS_MSK GENMASK(10, 0)
84#define AD7124_FILTER_FS(x) FIELD_PREP(AD7124_FILTER_FS_MSK, x)
Alexandru Tachicicef27602020-01-22 10:54:14 +020085#define AD7124_FILTER_TYPE_MSK GENMASK(23, 21)
86#define AD7124_FILTER_TYPE_SEL(x) FIELD_PREP(AD7124_FILTER_TYPE_MSK, x)
87
88#define AD7124_SINC3_FILTER 2
89#define AD7124_SINC4_FILTER 0
Stefan Popab3af3412018-11-13 13:21:32 +020090
Alexandru Tachici7b8d0452021-03-11 11:11:54 +020091#define AD7124_CONF_ADDR_OFFSET 20
92#define AD7124_MAX_CONFIGS 8
93#define AD7124_MAX_CHANNELS 16
94
Stefan Popab3af3412018-11-13 13:21:32 +020095enum ad7124_ids {
96 ID_AD7124_4,
97 ID_AD7124_8,
98};
99
100enum ad7124_ref_sel {
101 AD7124_REFIN1,
102 AD7124_REFIN2,
103 AD7124_INT_REF,
104 AD7124_AVDD_REF,
105};
106
107enum ad7124_power_mode {
108 AD7124_LOW_POWER,
109 AD7124_MID_POWER,
110 AD7124_FULL_POWER,
111};
112
113static const unsigned int ad7124_gain[8] = {
114 1, 2, 4, 8, 16, 32, 64, 128
115};
116
Mircea Caprioru1d8690f2020-02-11 10:44:53 +0200117static const unsigned int ad7124_reg_size[] = {
118 1, 2, 3, 3, 2, 1, 3, 3, 1, 2, 2, 2, 2,
119 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
120 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3,
121 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
122 3, 3, 3, 3, 3
123};
124
Stefan Popab3af3412018-11-13 13:21:32 +0200125static const int ad7124_master_clk_freq_hz[3] = {
126 [AD7124_LOW_POWER] = 76800,
127 [AD7124_MID_POWER] = 153600,
128 [AD7124_FULL_POWER] = 614400,
129};
130
131static const char * const ad7124_ref_names[] = {
132 [AD7124_REFIN1] = "refin1",
133 [AD7124_REFIN2] = "refin2",
134 [AD7124_INT_REF] = "int",
135 [AD7124_AVDD_REF] = "avdd",
136};
137
138struct ad7124_chip_info {
Alexandru Ardelean951ad472020-07-14 08:11:11 +0300139 const char *name;
140 unsigned int chip_id;
Stefan Popab3af3412018-11-13 13:21:32 +0200141 unsigned int num_inputs;
142};
143
144struct ad7124_channel_config {
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200145 bool live;
146 unsigned int cfg_slot;
Stefan Popab3af3412018-11-13 13:21:32 +0200147 enum ad7124_ref_sel refsel;
148 bool bipolar;
Mircea Caprioru0eaecea2019-06-25 11:11:25 +0300149 bool buf_positive;
150 bool buf_negative;
Stefan Popab3af3412018-11-13 13:21:32 +0200151 unsigned int vref_mv;
152 unsigned int pga_bits;
153 unsigned int odr;
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200154 unsigned int odr_sel_bits;
Alexandru Tachicicef27602020-01-22 10:54:14 +0200155 unsigned int filter_type;
Stefan Popab3af3412018-11-13 13:21:32 +0200156};
157
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200158struct ad7124_channel {
159 unsigned int nr;
160 struct ad7124_channel_config cfg;
161 unsigned int ain;
162 unsigned int slot;
163};
164
Stefan Popab3af3412018-11-13 13:21:32 +0200165struct ad7124_state {
166 const struct ad7124_chip_info *chip_info;
167 struct ad_sigma_delta sd;
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200168 struct ad7124_channel *channels;
Stefan Popab3af3412018-11-13 13:21:32 +0200169 struct regulator *vref[4];
170 struct clk *mclk;
171 unsigned int adc_control;
172 unsigned int num_channels;
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200173 struct mutex cfgs_lock; /* lock for configs access */
174 unsigned long cfg_slots_status; /* bitmap with slot status (1 means it is used) */
175 DECLARE_KFIFO(live_cfgs_fifo, struct ad7124_channel_config *, AD7124_MAX_CONFIGS);
Stefan Popab3af3412018-11-13 13:21:32 +0200176};
177
178static const struct iio_chan_spec ad7124_channel_template = {
179 .type = IIO_VOLTAGE,
180 .indexed = 1,
181 .differential = 1,
182 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
183 BIT(IIO_CHAN_INFO_SCALE) |
184 BIT(IIO_CHAN_INFO_OFFSET) |
Alexandru Tachicicef27602020-01-22 10:54:14 +0200185 BIT(IIO_CHAN_INFO_SAMP_FREQ) |
186 BIT(IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY),
Stefan Popab3af3412018-11-13 13:21:32 +0200187 .scan_type = {
188 .sign = 'u',
189 .realbits = 24,
190 .storagebits = 32,
191 .shift = 8,
192 .endianness = IIO_BE,
193 },
194};
195
196static struct ad7124_chip_info ad7124_chip_info_tbl[] = {
197 [ID_AD7124_4] = {
Mircea Caprioru62fe3e42020-09-02 16:42:22 +0300198 .name = "ad7124-4",
Alexandru Ardelean951ad472020-07-14 08:11:11 +0300199 .chip_id = CHIPID_AD7124_4,
Stefan Popab3af3412018-11-13 13:21:32 +0200200 .num_inputs = 8,
201 },
202 [ID_AD7124_8] = {
Mircea Caprioru62fe3e42020-09-02 16:42:22 +0300203 .name = "ad7124-8",
Alexandru Ardelean951ad472020-07-14 08:11:11 +0300204 .chip_id = CHIPID_AD7124_8,
Stefan Popab3af3412018-11-13 13:21:32 +0200205 .num_inputs = 16,
206 },
207};
208
209static int ad7124_find_closest_match(const int *array,
210 unsigned int size, int val)
211{
212 int i, idx;
213 unsigned int diff_new, diff_old;
214
215 diff_old = U32_MAX;
216 idx = 0;
217
218 for (i = 0; i < size; i++) {
219 diff_new = abs(val - array[i]);
220 if (diff_new < diff_old) {
221 diff_old = diff_new;
222 idx = i;
223 }
224 }
225
226 return idx;
227}
228
229static int ad7124_spi_write_mask(struct ad7124_state *st,
230 unsigned int addr,
231 unsigned long mask,
232 unsigned int val,
233 unsigned int bytes)
234{
235 unsigned int readval;
236 int ret;
237
238 ret = ad_sd_read_reg(&st->sd, addr, bytes, &readval);
239 if (ret < 0)
240 return ret;
241
242 readval &= ~mask;
243 readval |= val;
244
245 return ad_sd_write_reg(&st->sd, addr, bytes, readval);
246}
247
248static int ad7124_set_mode(struct ad_sigma_delta *sd,
249 enum ad_sigma_delta_mode mode)
250{
251 struct ad7124_state *st = container_of(sd, struct ad7124_state, sd);
252
253 st->adc_control &= ~AD7124_ADC_CTRL_MODE_MSK;
254 st->adc_control |= AD7124_ADC_CTRL_MODE(mode);
255
256 return ad_sd_write_reg(&st->sd, AD7124_ADC_CONTROL, 2, st->adc_control);
257}
258
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200259static void ad7124_set_channel_odr(struct ad7124_state *st, unsigned int channel, unsigned int odr)
Stefan Popab3af3412018-11-13 13:21:32 +0200260{
261 unsigned int fclk, odr_sel_bits;
Stefan Popab3af3412018-11-13 13:21:32 +0200262
263 fclk = clk_get_rate(st->mclk);
264 /*
265 * FS[10:0] = fCLK / (fADC x 32) where:
266 * fADC is the output data rate
267 * fCLK is the master clock frequency
268 * FS[10:0] are the bits in the filter register
269 * FS[10:0] can have a value from 1 to 2047
270 */
271 odr_sel_bits = DIV_ROUND_CLOSEST(fclk, odr * 32);
272 if (odr_sel_bits < 1)
273 odr_sel_bits = 1;
274 else if (odr_sel_bits > 2047)
275 odr_sel_bits = 2047;
276
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200277 if (odr_sel_bits != st->channels[channel].cfg.odr_sel_bits)
278 st->channels[channel].cfg.live = false;
279
Stefan Popab3af3412018-11-13 13:21:32 +0200280 /* fADC = fCLK / (FS[10:0] x 32) */
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200281 st->channels[channel].cfg.odr = DIV_ROUND_CLOSEST(fclk, odr_sel_bits * 32);
282 st->channels[channel].cfg.odr_sel_bits = odr_sel_bits;
Stefan Popab3af3412018-11-13 13:21:32 +0200283}
284
Alexandru Tachicicef27602020-01-22 10:54:14 +0200285static int ad7124_get_3db_filter_freq(struct ad7124_state *st,
286 unsigned int channel)
287{
288 unsigned int fadc;
289
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200290 fadc = st->channels[channel].cfg.odr;
Alexandru Tachicicef27602020-01-22 10:54:14 +0200291
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200292 switch (st->channels[channel].cfg.filter_type) {
Alexandru Tachicicef27602020-01-22 10:54:14 +0200293 case AD7124_SINC3_FILTER:
294 return DIV_ROUND_CLOSEST(fadc * 230, 1000);
295 case AD7124_SINC4_FILTER:
296 return DIV_ROUND_CLOSEST(fadc * 262, 1000);
297 default:
298 return -EINVAL;
299 }
300}
301
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200302static void ad7124_set_3db_filter_freq(struct ad7124_state *st, unsigned int channel,
303 unsigned int freq)
Alexandru Tachicicef27602020-01-22 10:54:14 +0200304{
305 unsigned int sinc4_3db_odr;
306 unsigned int sinc3_3db_odr;
307 unsigned int new_filter;
308 unsigned int new_odr;
309
310 sinc4_3db_odr = DIV_ROUND_CLOSEST(freq * 1000, 230);
311 sinc3_3db_odr = DIV_ROUND_CLOSEST(freq * 1000, 262);
312
313 if (sinc4_3db_odr > sinc3_3db_odr) {
314 new_filter = AD7124_SINC3_FILTER;
315 new_odr = sinc4_3db_odr;
316 } else {
317 new_filter = AD7124_SINC4_FILTER;
318 new_odr = sinc3_3db_odr;
319 }
320
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200321 if (new_odr != st->channels[channel].cfg.odr)
322 st->channels[channel].cfg.live = false;
Alexandru Tachicicef27602020-01-22 10:54:14 +0200323
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200324 st->channels[channel].cfg.filter_type = new_filter;
325 st->channels[channel].cfg.odr = new_odr;
326}
327
328static struct ad7124_channel_config *ad7124_find_similar_live_cfg(struct ad7124_state *st,
329 struct ad7124_channel_config *cfg)
330{
331 struct ad7124_channel_config *cfg_aux;
332 ptrdiff_t cmp_size;
333 int i;
334
335 cmp_size = (u8 *)&cfg->live - (u8 *)cfg;
336 for (i = 0; i < st->num_channels; i++) {
337 cfg_aux = &st->channels[i].cfg;
338
339 if (cfg_aux->live && !memcmp(cfg, cfg_aux, cmp_size))
340 return cfg_aux;
Alexandru Tachicicef27602020-01-22 10:54:14 +0200341 }
342
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200343 return NULL;
Alexandru Tachicicef27602020-01-22 10:54:14 +0200344}
345
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200346static int ad7124_find_free_config_slot(struct ad7124_state *st)
347{
348 unsigned int free_cfg_slot;
349
Yury Norovb5c7e7e2021-08-14 14:17:03 -0700350 free_cfg_slot = find_first_zero_bit(&st->cfg_slots_status, AD7124_MAX_CONFIGS);
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200351 if (free_cfg_slot == AD7124_MAX_CONFIGS)
352 return -1;
353
354 return free_cfg_slot;
355}
356
357static int ad7124_init_config_vref(struct ad7124_state *st, struct ad7124_channel_config *cfg)
358{
359 unsigned int refsel = cfg->refsel;
360
361 switch (refsel) {
362 case AD7124_REFIN1:
363 case AD7124_REFIN2:
364 case AD7124_AVDD_REF:
365 if (IS_ERR(st->vref[refsel])) {
366 dev_err(&st->sd.spi->dev,
367 "Error, trying to use external voltage reference without a %s regulator.\n",
368 ad7124_ref_names[refsel]);
369 return PTR_ERR(st->vref[refsel]);
370 }
371 cfg->vref_mv = regulator_get_voltage(st->vref[refsel]);
372 /* Conversion from uV to mV */
373 cfg->vref_mv /= 1000;
374 return 0;
375 case AD7124_INT_REF:
376 cfg->vref_mv = 2500;
377 st->adc_control &= ~AD7124_ADC_CTRL_REF_EN_MSK;
378 st->adc_control |= AD7124_ADC_CTRL_REF_EN(1);
379 return ad_sd_write_reg(&st->sd, AD7124_ADC_CONTROL,
380 2, st->adc_control);
381 default:
382 dev_err(&st->sd.spi->dev, "Invalid reference %d\n", refsel);
383 return -EINVAL;
384 }
385}
386
387static int ad7124_write_config(struct ad7124_state *st, struct ad7124_channel_config *cfg,
388 unsigned int cfg_slot)
389{
390 unsigned int tmp;
391 unsigned int val;
392 int ret;
393
394 cfg->cfg_slot = cfg_slot;
395
396 tmp = (cfg->buf_positive << 1) + cfg->buf_negative;
397 val = AD7124_CONFIG_BIPOLAR(cfg->bipolar) | AD7124_CONFIG_REF_SEL(cfg->refsel) |
398 AD7124_CONFIG_IN_BUFF(tmp);
399 ret = ad_sd_write_reg(&st->sd, AD7124_CONFIG(cfg->cfg_slot), 2, val);
400 if (ret < 0)
401 return ret;
402
403 tmp = AD7124_FILTER_TYPE_SEL(cfg->filter_type);
404 ret = ad7124_spi_write_mask(st, AD7124_FILTER(cfg->cfg_slot), AD7124_FILTER_TYPE_MSK,
405 tmp, 3);
406 if (ret < 0)
407 return ret;
408
409 ret = ad7124_spi_write_mask(st, AD7124_FILTER(cfg->cfg_slot), AD7124_FILTER_FS_MSK,
410 AD7124_FILTER_FS(cfg->odr_sel_bits), 3);
411 if (ret < 0)
412 return ret;
413
414 return ad7124_spi_write_mask(st, AD7124_CONFIG(cfg->cfg_slot), AD7124_CONFIG_PGA_MSK,
415 AD7124_CONFIG_PGA(cfg->pga_bits), 2);
416}
417
418static struct ad7124_channel_config *ad7124_pop_config(struct ad7124_state *st)
419{
420 struct ad7124_channel_config *lru_cfg;
421 struct ad7124_channel_config *cfg;
422 int ret;
423 int i;
424
425 /*
426 * Pop least recently used config from the fifo
427 * in order to make room for the new one
428 */
429 ret = kfifo_get(&st->live_cfgs_fifo, &lru_cfg);
430 if (ret <= 0)
431 return NULL;
432
433 lru_cfg->live = false;
434
435 /* mark slot as free */
436 assign_bit(lru_cfg->cfg_slot, &st->cfg_slots_status, 0);
437
438 /* invalidate all other configs that pointed to this one */
439 for (i = 0; i < st->num_channels; i++) {
440 cfg = &st->channels[i].cfg;
441
442 if (cfg->cfg_slot == lru_cfg->cfg_slot)
443 cfg->live = false;
444 }
445
446 return lru_cfg;
447}
448
449static int ad7124_push_config(struct ad7124_state *st, struct ad7124_channel_config *cfg)
450{
451 struct ad7124_channel_config *lru_cfg;
452 int free_cfg_slot;
453
454 free_cfg_slot = ad7124_find_free_config_slot(st);
455 if (free_cfg_slot >= 0) {
456 /* push the new config in configs queue */
457 kfifo_put(&st->live_cfgs_fifo, cfg);
458 } else {
459 /* pop one config to make room for the new one */
460 lru_cfg = ad7124_pop_config(st);
461 if (!lru_cfg)
462 return -EINVAL;
463
464 /* push the new config in configs queue */
465 free_cfg_slot = lru_cfg->cfg_slot;
466 kfifo_put(&st->live_cfgs_fifo, cfg);
467 }
468
469 /* mark slot as used */
470 assign_bit(free_cfg_slot, &st->cfg_slots_status, 1);
471
472 return ad7124_write_config(st, cfg, free_cfg_slot);
473}
474
475static int ad7124_enable_channel(struct ad7124_state *st, struct ad7124_channel *ch)
476{
477 ch->cfg.live = true;
478 return ad_sd_write_reg(&st->sd, AD7124_CHANNEL(ch->nr), 2, ch->ain |
479 AD7124_CHANNEL_SETUP(ch->cfg.cfg_slot) | AD7124_CHANNEL_EN(1));
480}
481
482static int ad7124_prepare_read(struct ad7124_state *st, int address)
483{
484 struct ad7124_channel_config *cfg = &st->channels[address].cfg;
485 struct ad7124_channel_config *live_cfg;
486
487 /*
488 * Before doing any reads assign the channel a configuration.
489 * Check if channel's config is on the device
490 */
491 if (!cfg->live) {
492 /* check if config matches another one */
493 live_cfg = ad7124_find_similar_live_cfg(st, cfg);
494 if (!live_cfg)
495 ad7124_push_config(st, cfg);
496 else
497 cfg->cfg_slot = live_cfg->cfg_slot;
498 }
499
500 /* point channel to the config slot and enable */
501 return ad7124_enable_channel(st, &st->channels[address]);
502}
503
504static int ad7124_set_channel(struct ad_sigma_delta *sd, unsigned int channel)
505{
506 struct ad7124_state *st = container_of(sd, struct ad7124_state, sd);
507 int ret;
508
509 mutex_lock(&st->cfgs_lock);
510 ret = ad7124_prepare_read(st, channel);
511 mutex_unlock(&st->cfgs_lock);
512
513 return ret;
514}
515
516static const struct ad_sigma_delta_info ad7124_sigma_delta_info = {
517 .set_channel = ad7124_set_channel,
518 .set_mode = ad7124_set_mode,
519 .has_registers = true,
520 .addr_shift = 0,
521 .read_mask = BIT(6),
522 .data_reg = AD7124_DATA,
523 .irq_flags = IRQF_TRIGGER_FALLING
524};
525
Stefan Popab3af3412018-11-13 13:21:32 +0200526static int ad7124_read_raw(struct iio_dev *indio_dev,
527 struct iio_chan_spec const *chan,
528 int *val, int *val2, long info)
529{
530 struct ad7124_state *st = iio_priv(indio_dev);
531 int idx, ret;
532
533 switch (info) {
534 case IIO_CHAN_INFO_RAW:
535 ret = ad_sigma_delta_single_conversion(indio_dev, chan, val);
536 if (ret < 0)
537 return ret;
538
539 /* After the conversion is performed, disable the channel */
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200540 ret = ad_sd_write_reg(&st->sd, AD7124_CHANNEL(chan->address), 2,
541 st->channels[chan->address].ain | AD7124_CHANNEL_EN(0));
Stefan Popab3af3412018-11-13 13:21:32 +0200542 if (ret < 0)
543 return ret;
544
545 return IIO_VAL_INT;
546 case IIO_CHAN_INFO_SCALE:
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200547 mutex_lock(&st->cfgs_lock);
548
549 idx = st->channels[chan->address].cfg.pga_bits;
550 *val = st->channels[chan->address].cfg.vref_mv;
551 if (st->channels[chan->address].cfg.bipolar)
Stefan Popab3af3412018-11-13 13:21:32 +0200552 *val2 = chan->scan_type.realbits - 1 + idx;
553 else
554 *val2 = chan->scan_type.realbits + idx;
555
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200556 mutex_unlock(&st->cfgs_lock);
Stefan Popab3af3412018-11-13 13:21:32 +0200557 return IIO_VAL_FRACTIONAL_LOG2;
558 case IIO_CHAN_INFO_OFFSET:
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200559 mutex_lock(&st->cfgs_lock);
560 if (st->channels[chan->address].cfg.bipolar)
Stefan Popab3af3412018-11-13 13:21:32 +0200561 *val = -(1 << (chan->scan_type.realbits - 1));
562 else
563 *val = 0;
564
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200565 mutex_unlock(&st->cfgs_lock);
Stefan Popab3af3412018-11-13 13:21:32 +0200566 return IIO_VAL_INT;
567 case IIO_CHAN_INFO_SAMP_FREQ:
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200568 mutex_lock(&st->cfgs_lock);
569 *val = st->channels[chan->address].cfg.odr;
570 mutex_unlock(&st->cfgs_lock);
Stefan Popab3af3412018-11-13 13:21:32 +0200571
572 return IIO_VAL_INT;
Alexandru Tachicicef27602020-01-22 10:54:14 +0200573 case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY:
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200574 mutex_lock(&st->cfgs_lock);
Alexandru Tachicicef27602020-01-22 10:54:14 +0200575 *val = ad7124_get_3db_filter_freq(st, chan->scan_index);
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200576 mutex_unlock(&st->cfgs_lock);
577
Alexandru Tachicicef27602020-01-22 10:54:14 +0200578 return IIO_VAL_INT;
Stefan Popab3af3412018-11-13 13:21:32 +0200579 default:
580 return -EINVAL;
581 }
582}
583
584static int ad7124_write_raw(struct iio_dev *indio_dev,
585 struct iio_chan_spec const *chan,
586 int val, int val2, long info)
587{
588 struct ad7124_state *st = iio_priv(indio_dev);
589 unsigned int res, gain, full_scale, vref;
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200590 int ret = 0;
591
592 mutex_lock(&st->cfgs_lock);
Stefan Popab3af3412018-11-13 13:21:32 +0200593
594 switch (info) {
595 case IIO_CHAN_INFO_SAMP_FREQ:
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200596 if (val2 != 0) {
597 ret = -EINVAL;
598 break;
599 }
Stefan Popab3af3412018-11-13 13:21:32 +0200600
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200601 ad7124_set_channel_odr(st, chan->address, val);
602 break;
Stefan Popab3af3412018-11-13 13:21:32 +0200603 case IIO_CHAN_INFO_SCALE:
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200604 if (val != 0) {
605 ret = -EINVAL;
606 break;
607 }
Stefan Popab3af3412018-11-13 13:21:32 +0200608
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200609 if (st->channels[chan->address].cfg.bipolar)
Stefan Popab3af3412018-11-13 13:21:32 +0200610 full_scale = 1 << (chan->scan_type.realbits - 1);
611 else
612 full_scale = 1 << chan->scan_type.realbits;
613
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200614 vref = st->channels[chan->address].cfg.vref_mv * 1000000LL;
Stefan Popab3af3412018-11-13 13:21:32 +0200615 res = DIV_ROUND_CLOSEST(vref, full_scale);
616 gain = DIV_ROUND_CLOSEST(res, val2);
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200617 res = ad7124_find_closest_match(ad7124_gain, ARRAY_SIZE(ad7124_gain), gain);
Stefan Popab3af3412018-11-13 13:21:32 +0200618
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200619 if (st->channels[chan->address].cfg.pga_bits != res)
620 st->channels[chan->address].cfg.live = false;
621
622 st->channels[chan->address].cfg.pga_bits = res;
623 break;
Alexandru Tachicicef27602020-01-22 10:54:14 +0200624 case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY:
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200625 if (val2 != 0) {
626 ret = -EINVAL;
627 break;
628 }
Alexandru Tachicicef27602020-01-22 10:54:14 +0200629
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200630 ad7124_set_3db_filter_freq(st, chan->address, val);
631 break;
Stefan Popab3af3412018-11-13 13:21:32 +0200632 default:
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200633 ret = -EINVAL;
Stefan Popab3af3412018-11-13 13:21:32 +0200634 }
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200635
636 mutex_unlock(&st->cfgs_lock);
637 return ret;
Stefan Popab3af3412018-11-13 13:21:32 +0200638}
639
Mircea Caprioru1d8690f2020-02-11 10:44:53 +0200640static int ad7124_reg_access(struct iio_dev *indio_dev,
641 unsigned int reg,
642 unsigned int writeval,
643 unsigned int *readval)
644{
645 struct ad7124_state *st = iio_priv(indio_dev);
646 int ret;
647
648 if (reg >= ARRAY_SIZE(ad7124_reg_size))
649 return -EINVAL;
650
651 if (readval)
652 ret = ad_sd_read_reg(&st->sd, reg, ad7124_reg_size[reg],
653 readval);
654 else
655 ret = ad_sd_write_reg(&st->sd, reg, ad7124_reg_size[reg],
656 writeval);
657
658 return ret;
659}
660
Stefan Popab3af3412018-11-13 13:21:32 +0200661static IIO_CONST_ATTR(in_voltage_scale_available,
662 "0.000001164 0.000002328 0.000004656 0.000009313 0.000018626 0.000037252 0.000074505 0.000149011 0.000298023");
663
664static struct attribute *ad7124_attributes[] = {
665 &iio_const_attr_in_voltage_scale_available.dev_attr.attr,
666 NULL,
667};
668
669static const struct attribute_group ad7124_attrs_group = {
670 .attrs = ad7124_attributes,
671};
672
673static const struct iio_info ad7124_info = {
674 .read_raw = ad7124_read_raw,
675 .write_raw = ad7124_write_raw,
Mircea Caprioru1d8690f2020-02-11 10:44:53 +0200676 .debugfs_reg_access = &ad7124_reg_access,
Stefan Popab3af3412018-11-13 13:21:32 +0200677 .validate_trigger = ad_sd_validate_trigger,
678 .attrs = &ad7124_attrs_group,
679};
680
681static int ad7124_soft_reset(struct ad7124_state *st)
682{
683 unsigned int readval, timeout;
684 int ret;
685
686 ret = ad_sd_reset(&st->sd, 64);
687 if (ret < 0)
688 return ret;
689
690 timeout = 100;
691 do {
692 ret = ad_sd_read_reg(&st->sd, AD7124_STATUS, 1, &readval);
693 if (ret < 0)
694 return ret;
695
696 if (!(readval & AD7124_STATUS_POR_FLAG_MSK))
697 return 0;
698
699 /* The AD7124 requires typically 2ms to power up and settle */
700 usleep_range(100, 2000);
701 } while (--timeout);
702
703 dev_err(&st->sd.spi->dev, "Soft reset failed\n");
704
705 return -EIO;
706}
707
Alexandru Ardelean951ad472020-07-14 08:11:11 +0300708static int ad7124_check_chip_id(struct ad7124_state *st)
709{
710 unsigned int readval, chip_id, silicon_rev;
711 int ret;
712
713 ret = ad_sd_read_reg(&st->sd, AD7124_ID, 1, &readval);
714 if (ret < 0)
715 return ret;
716
717 chip_id = AD7124_DEVICE_ID_GET(readval);
718 silicon_rev = AD7124_SILICON_REV_GET(readval);
719
720 if (chip_id != st->chip_info->chip_id) {
721 dev_err(&st->sd.spi->dev,
722 "Chip ID mismatch: expected %u, got %u\n",
723 st->chip_info->chip_id, chip_id);
724 return -ENODEV;
725 }
726
727 if (silicon_rev == 0) {
728 dev_err(&st->sd.spi->dev,
729 "Silicon revision empty. Chip may not be present\n");
730 return -ENODEV;
731 }
732
733 return 0;
734}
735
Stefan Popab3af3412018-11-13 13:21:32 +0200736static int ad7124_of_parse_channel_config(struct iio_dev *indio_dev,
737 struct device_node *np)
738{
739 struct ad7124_state *st = iio_priv(indio_dev);
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200740 struct ad7124_channel_config *cfg;
741 struct ad7124_channel *channels;
Stefan Popab3af3412018-11-13 13:21:32 +0200742 struct device_node *child;
743 struct iio_chan_spec *chan;
744 unsigned int ain[2], channel = 0, tmp;
745 int ret;
746
747 st->num_channels = of_get_available_child_count(np);
748 if (!st->num_channels) {
749 dev_err(indio_dev->dev.parent, "no channel children\n");
750 return -ENODEV;
751 }
752
753 chan = devm_kcalloc(indio_dev->dev.parent, st->num_channels,
754 sizeof(*chan), GFP_KERNEL);
755 if (!chan)
756 return -ENOMEM;
757
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200758 channels = devm_kcalloc(indio_dev->dev.parent, st->num_channels, sizeof(*channels),
759 GFP_KERNEL);
760 if (!channels)
Mircea Caprioru1478a382019-06-25 11:11:26 +0300761 return -ENOMEM;
762
Stefan Popab3af3412018-11-13 13:21:32 +0200763 indio_dev->channels = chan;
764 indio_dev->num_channels = st->num_channels;
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200765 st->channels = channels;
Stefan Popab3af3412018-11-13 13:21:32 +0200766
767 for_each_available_child_of_node(np, child) {
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200768 cfg = &st->channels[channel].cfg;
769
Stefan Popab3af3412018-11-13 13:21:32 +0200770 ret = of_property_read_u32(child, "reg", &channel);
771 if (ret)
772 goto err;
773
Jonathan Cameronf2a772c2021-05-13 15:07:42 +0300774 if (channel >= indio_dev->num_channels) {
775 dev_err(indio_dev->dev.parent,
776 "Channel index >= number of channels\n");
777 ret = -EINVAL;
778 goto err;
779 }
780
Stefan Popab3af3412018-11-13 13:21:32 +0200781 ret = of_property_read_u32_array(child, "diff-channels",
782 ain, 2);
783 if (ret)
784 goto err;
785
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200786 st->channels[channel].nr = channel;
787 st->channels[channel].ain = AD7124_CHANNEL_AINP(ain[0]) |
Stefan Popab3af3412018-11-13 13:21:32 +0200788 AD7124_CHANNEL_AINM(ain[1]);
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200789
790 cfg->bipolar = of_property_read_bool(child, "bipolar");
Stefan Popab3af3412018-11-13 13:21:32 +0200791
792 ret = of_property_read_u32(child, "adi,reference-select", &tmp);
793 if (ret)
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200794 cfg->refsel = AD7124_INT_REF;
Stefan Popab3af3412018-11-13 13:21:32 +0200795 else
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200796 cfg->refsel = tmp;
Stefan Popab3af3412018-11-13 13:21:32 +0200797
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200798 cfg->buf_positive = of_property_read_bool(child, "adi,buffered-positive");
799 cfg->buf_negative = of_property_read_bool(child, "adi,buffered-negative");
Mircea Caprioru0eaecea2019-06-25 11:11:25 +0300800
Alexandru Tachicid7857e42019-12-20 12:07:19 +0200801 chan[channel] = ad7124_channel_template;
802 chan[channel].address = channel;
803 chan[channel].scan_index = channel;
804 chan[channel].channel = ain[0];
805 chan[channel].channel2 = ain[1];
Stefan Popab3af3412018-11-13 13:21:32 +0200806 }
807
808 return 0;
809err:
810 of_node_put(child);
811
812 return ret;
813}
814
815static int ad7124_setup(struct ad7124_state *st)
816{
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200817 unsigned int fclk, power_mode;
818 int i, ret;
Stefan Popab3af3412018-11-13 13:21:32 +0200819
820 fclk = clk_get_rate(st->mclk);
821 if (!fclk)
822 return -EINVAL;
823
824 /* The power mode changes the master clock frequency */
825 power_mode = ad7124_find_closest_match(ad7124_master_clk_freq_hz,
826 ARRAY_SIZE(ad7124_master_clk_freq_hz),
827 fclk);
828 if (fclk != ad7124_master_clk_freq_hz[power_mode]) {
829 ret = clk_set_rate(st->mclk, fclk);
830 if (ret)
831 return ret;
832 }
833
834 /* Set the power mode */
835 st->adc_control &= ~AD7124_ADC_CTRL_PWR_MSK;
836 st->adc_control |= AD7124_ADC_CTRL_PWR(power_mode);
837 ret = ad_sd_write_reg(&st->sd, AD7124_ADC_CONTROL, 2, st->adc_control);
838 if (ret < 0)
839 return ret;
840
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200841 mutex_init(&st->cfgs_lock);
842 INIT_KFIFO(st->live_cfgs_fifo);
Stefan Popab3af3412018-11-13 13:21:32 +0200843 for (i = 0; i < st->num_channels; i++) {
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200844
845 ret = ad7124_init_config_vref(st, &st->channels[i].cfg);
Stefan Popab3af3412018-11-13 13:21:32 +0200846 if (ret < 0)
847 return ret;
848
Stefan Popab3af3412018-11-13 13:21:32 +0200849 /*
850 * 9.38 SPS is the minimum output data rate supported
851 * regardless of the selected power mode. Round it up to 10 and
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200852 * set all channels to this default value.
Stefan Popab3af3412018-11-13 13:21:32 +0200853 */
Alexandru Tachici7b8d0452021-03-11 11:11:54 +0200854 ad7124_set_channel_odr(st, i, 10);
Stefan Popab3af3412018-11-13 13:21:32 +0200855 }
856
857 return ret;
858}
859
Jonathan Cameron45734722021-05-13 15:07:41 +0300860static void ad7124_reg_disable(void *r)
861{
862 regulator_disable(r);
863}
864
Jonathan Cameronc066ca12021-05-13 15:07:51 +0300865static void ad7124_clk_disable(void *c)
866{
867 clk_disable_unprepare(c);
868}
869
Stefan Popab3af3412018-11-13 13:21:32 +0200870static int ad7124_probe(struct spi_device *spi)
871{
Alexandru Ardelean951ad472020-07-14 08:11:11 +0300872 const struct ad7124_chip_info *info;
Stefan Popab3af3412018-11-13 13:21:32 +0200873 struct ad7124_state *st;
874 struct iio_dev *indio_dev;
875 int i, ret;
876
Alexandru Ardelean951ad472020-07-14 08:11:11 +0300877 info = of_device_get_match_data(&spi->dev);
878 if (!info)
879 return -ENODEV;
880
Stefan Popab3af3412018-11-13 13:21:32 +0200881 indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st));
882 if (!indio_dev)
883 return -ENOMEM;
884
885 st = iio_priv(indio_dev);
886
Alexandru Ardelean951ad472020-07-14 08:11:11 +0300887 st->chip_info = info;
Stefan Popab3af3412018-11-13 13:21:32 +0200888
889 ad_sd_init(&st->sd, indio_dev, spi, &ad7124_sigma_delta_info);
890
Alexandru Ardelean951ad472020-07-14 08:11:11 +0300891 indio_dev->name = st->chip_info->name;
Stefan Popab3af3412018-11-13 13:21:32 +0200892 indio_dev->modes = INDIO_DIRECT_MODE;
893 indio_dev->info = &ad7124_info;
894
895 ret = ad7124_of_parse_channel_config(indio_dev, spi->dev.of_node);
896 if (ret < 0)
897 return ret;
898
899 for (i = 0; i < ARRAY_SIZE(st->vref); i++) {
900 if (i == AD7124_INT_REF)
901 continue;
902
903 st->vref[i] = devm_regulator_get_optional(&spi->dev,
904 ad7124_ref_names[i]);
905 if (PTR_ERR(st->vref[i]) == -ENODEV)
906 continue;
907 else if (IS_ERR(st->vref[i]))
908 return PTR_ERR(st->vref[i]);
909
910 ret = regulator_enable(st->vref[i]);
911 if (ret)
912 return ret;
Jonathan Cameron45734722021-05-13 15:07:41 +0300913
914 ret = devm_add_action_or_reset(&spi->dev, ad7124_reg_disable,
915 st->vref[i]);
916 if (ret)
917 return ret;
Stefan Popab3af3412018-11-13 13:21:32 +0200918 }
919
920 st->mclk = devm_clk_get(&spi->dev, "mclk");
Jonathan Cameron45734722021-05-13 15:07:41 +0300921 if (IS_ERR(st->mclk))
922 return PTR_ERR(st->mclk);
Stefan Popab3af3412018-11-13 13:21:32 +0200923
924 ret = clk_prepare_enable(st->mclk);
925 if (ret < 0)
Jonathan Cameron45734722021-05-13 15:07:41 +0300926 return ret;
Stefan Popab3af3412018-11-13 13:21:32 +0200927
Jonathan Cameronc066ca12021-05-13 15:07:51 +0300928 ret = devm_add_action_or_reset(&spi->dev, ad7124_clk_disable, st->mclk);
929 if (ret)
930 return ret;
931
Stefan Popab3af3412018-11-13 13:21:32 +0200932 ret = ad7124_soft_reset(st);
933 if (ret < 0)
Jonathan Cameronc066ca12021-05-13 15:07:51 +0300934 return ret;
Stefan Popab3af3412018-11-13 13:21:32 +0200935
Alexandru Ardelean951ad472020-07-14 08:11:11 +0300936 ret = ad7124_check_chip_id(st);
937 if (ret)
Jonathan Cameronc066ca12021-05-13 15:07:51 +0300938 return ret;
Alexandru Ardelean951ad472020-07-14 08:11:11 +0300939
Stefan Popab3af3412018-11-13 13:21:32 +0200940 ret = ad7124_setup(st);
941 if (ret < 0)
Jonathan Cameronc066ca12021-05-13 15:07:51 +0300942 return ret;
Stefan Popab3af3412018-11-13 13:21:32 +0200943
Jonathan Cameronc066ca12021-05-13 15:07:51 +0300944 ret = devm_ad_sd_setup_buffer_and_trigger(&spi->dev, indio_dev);
Stefan Popab3af3412018-11-13 13:21:32 +0200945 if (ret < 0)
Jonathan Cameronc066ca12021-05-13 15:07:51 +0300946 return ret;
Stefan Popab3af3412018-11-13 13:21:32 +0200947
Jonathan Cameronc066ca12021-05-13 15:07:51 +0300948 return devm_iio_device_register(&spi->dev, indio_dev);
Stefan Popab3af3412018-11-13 13:21:32 +0200949
Stefan Popab3af3412018-11-13 13:21:32 +0200950}
951
Stefan Popab3af3412018-11-13 13:21:32 +0200952static const struct of_device_id ad7124_of_match[] = {
Alexandru Ardelean951ad472020-07-14 08:11:11 +0300953 { .compatible = "adi,ad7124-4",
954 .data = &ad7124_chip_info_tbl[ID_AD7124_4], },
955 { .compatible = "adi,ad7124-8",
956 .data = &ad7124_chip_info_tbl[ID_AD7124_8], },
Stefan Popab3af3412018-11-13 13:21:32 +0200957 { },
958};
959MODULE_DEVICE_TABLE(of, ad7124_of_match);
960
961static struct spi_driver ad71124_driver = {
962 .driver = {
963 .name = "ad7124",
964 .of_match_table = ad7124_of_match,
965 },
966 .probe = ad7124_probe,
Stefan Popab3af3412018-11-13 13:21:32 +0200967};
968module_spi_driver(ad71124_driver);
969
970MODULE_AUTHOR("Stefan Popa <stefan.popa@analog.com>");
971MODULE_DESCRIPTION("Analog Devices AD7124 SPI driver");
972MODULE_LICENSE("GPL");