drm/log: select CONFIG_FONT_SUPPORT
[drm/drm-misc.git] / drivers / iio / adc / ad4130.c
blobde32cc9d18c5efa542d5cbf1b9635ae5918ac094
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright (C) 2022 Analog Devices, Inc.
4 * Author: Cosmin Tanislav <cosmin.tanislav@analog.com>
5 */
7 #include <linux/bitfield.h>
8 #include <linux/bitops.h>
9 #include <linux/clk.h>
10 #include <linux/clk-provider.h>
11 #include <linux/delay.h>
12 #include <linux/device.h>
13 #include <linux/err.h>
14 #include <linux/gpio/driver.h>
15 #include <linux/interrupt.h>
16 #include <linux/irq.h>
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/property.h>
20 #include <linux/regmap.h>
21 #include <linux/regulator/consumer.h>
22 #include <linux/spi/spi.h>
23 #include <linux/units.h>
25 #include <asm/div64.h>
26 #include <linux/unaligned.h>
28 #include <linux/iio/buffer.h>
29 #include <linux/iio/iio.h>
30 #include <linux/iio/kfifo_buf.h>
31 #include <linux/iio/sysfs.h>
33 #define AD4130_NAME "ad4130"
35 #define AD4130_COMMS_READ_MASK BIT(6)
37 #define AD4130_STATUS_REG 0x00
39 #define AD4130_ADC_CONTROL_REG 0x01
40 #define AD4130_ADC_CONTROL_BIPOLAR_MASK BIT(14)
41 #define AD4130_ADC_CONTROL_INT_REF_VAL_MASK BIT(13)
42 #define AD4130_INT_REF_2_5V 2500000
43 #define AD4130_INT_REF_1_25V 1250000
44 #define AD4130_ADC_CONTROL_CSB_EN_MASK BIT(9)
45 #define AD4130_ADC_CONTROL_INT_REF_EN_MASK BIT(8)
46 #define AD4130_ADC_CONTROL_MODE_MASK GENMASK(5, 2)
47 #define AD4130_ADC_CONTROL_MCLK_SEL_MASK GENMASK(1, 0)
48 #define AD4130_MCLK_FREQ_76_8KHZ 76800
49 #define AD4130_MCLK_FREQ_153_6KHZ 153600
51 #define AD4130_DATA_REG 0x02
53 #define AD4130_IO_CONTROL_REG 0x03
54 #define AD4130_IO_CONTROL_INT_PIN_SEL_MASK GENMASK(9, 8)
55 #define AD4130_IO_CONTROL_GPIO_DATA_MASK GENMASK(7, 4)
56 #define AD4130_IO_CONTROL_GPIO_CTRL_MASK GENMASK(3, 0)
58 #define AD4130_VBIAS_REG 0x04
60 #define AD4130_ID_REG 0x05
62 #define AD4130_ERROR_REG 0x06
64 #define AD4130_ERROR_EN_REG 0x07
66 #define AD4130_MCLK_COUNT_REG 0x08
68 #define AD4130_CHANNEL_X_REG(x) (0x09 + (x))
69 #define AD4130_CHANNEL_EN_MASK BIT(23)
70 #define AD4130_CHANNEL_SETUP_MASK GENMASK(22, 20)
71 #define AD4130_CHANNEL_AINP_MASK GENMASK(17, 13)
72 #define AD4130_CHANNEL_AINM_MASK GENMASK(12, 8)
73 #define AD4130_CHANNEL_IOUT1_MASK GENMASK(7, 4)
74 #define AD4130_CHANNEL_IOUT2_MASK GENMASK(3, 0)
76 #define AD4130_CONFIG_X_REG(x) (0x19 + (x))
77 #define AD4130_CONFIG_IOUT1_VAL_MASK GENMASK(15, 13)
78 #define AD4130_CONFIG_IOUT2_VAL_MASK GENMASK(12, 10)
79 #define AD4130_CONFIG_BURNOUT_MASK GENMASK(9, 8)
80 #define AD4130_CONFIG_REF_BUFP_MASK BIT(7)
81 #define AD4130_CONFIG_REF_BUFM_MASK BIT(6)
82 #define AD4130_CONFIG_REF_SEL_MASK GENMASK(5, 4)
83 #define AD4130_CONFIG_PGA_MASK GENMASK(3, 1)
85 #define AD4130_FILTER_X_REG(x) (0x21 + (x))
86 #define AD4130_FILTER_MODE_MASK GENMASK(15, 12)
87 #define AD4130_FILTER_SELECT_MASK GENMASK(10, 0)
88 #define AD4130_FILTER_SELECT_MIN 1
90 #define AD4130_OFFSET_X_REG(x) (0x29 + (x))
92 #define AD4130_GAIN_X_REG(x) (0x31 + (x))
94 #define AD4130_MISC_REG 0x39
96 #define AD4130_FIFO_CONTROL_REG 0x3a
97 #define AD4130_FIFO_CONTROL_HEADER_MASK BIT(18)
98 #define AD4130_FIFO_CONTROL_MODE_MASK GENMASK(17, 16)
99 #define AD4130_FIFO_CONTROL_WM_INT_EN_MASK BIT(9)
100 #define AD4130_FIFO_CONTROL_WM_MASK GENMASK(7, 0)
101 #define AD4130_WATERMARK_256 0
103 #define AD4130_FIFO_STATUS_REG 0x3b
105 #define AD4130_FIFO_THRESHOLD_REG 0x3c
107 #define AD4130_FIFO_DATA_REG 0x3d
108 #define AD4130_FIFO_SIZE 256
109 #define AD4130_FIFO_MAX_SAMPLE_SIZE 3
111 #define AD4130_MAX_ANALOG_PINS 16
112 #define AD4130_MAX_CHANNELS 16
113 #define AD4130_MAX_DIFF_INPUTS 30
114 #define AD4130_MAX_GPIOS 4
115 #define AD4130_MAX_ODR 2400
116 #define AD4130_MAX_PGA 8
117 #define AD4130_MAX_SETUPS 8
119 #define AD4130_AIN2_P1 0x2
120 #define AD4130_AIN3_P2 0x3
122 #define AD4130_RESET_BUF_SIZE 8
123 #define AD4130_RESET_SLEEP_US (160 * MICRO / AD4130_MCLK_FREQ_76_8KHZ)
125 #define AD4130_INVALID_SLOT -1
127 static const unsigned int ad4130_reg_size[] = {
128 [AD4130_STATUS_REG] = 1,
129 [AD4130_ADC_CONTROL_REG] = 2,
130 [AD4130_DATA_REG] = 3,
131 [AD4130_IO_CONTROL_REG] = 2,
132 [AD4130_VBIAS_REG] = 2,
133 [AD4130_ID_REG] = 1,
134 [AD4130_ERROR_REG] = 2,
135 [AD4130_ERROR_EN_REG] = 2,
136 [AD4130_MCLK_COUNT_REG] = 1,
137 [AD4130_CHANNEL_X_REG(0) ... AD4130_CHANNEL_X_REG(AD4130_MAX_CHANNELS - 1)] = 3,
138 [AD4130_CONFIG_X_REG(0) ... AD4130_CONFIG_X_REG(AD4130_MAX_SETUPS - 1)] = 2,
139 [AD4130_FILTER_X_REG(0) ... AD4130_FILTER_X_REG(AD4130_MAX_SETUPS - 1)] = 3,
140 [AD4130_OFFSET_X_REG(0) ... AD4130_OFFSET_X_REG(AD4130_MAX_SETUPS - 1)] = 3,
141 [AD4130_GAIN_X_REG(0) ... AD4130_GAIN_X_REG(AD4130_MAX_SETUPS - 1)] = 3,
142 [AD4130_MISC_REG] = 2,
143 [AD4130_FIFO_CONTROL_REG] = 3,
144 [AD4130_FIFO_STATUS_REG] = 1,
145 [AD4130_FIFO_THRESHOLD_REG] = 3,
146 [AD4130_FIFO_DATA_REG] = 3,
149 enum ad4130_int_ref_val {
150 AD4130_INT_REF_VAL_2_5V,
151 AD4130_INT_REF_VAL_1_25V,
154 enum ad4130_mclk_sel {
155 AD4130_MCLK_76_8KHZ,
156 AD4130_MCLK_76_8KHZ_OUT,
157 AD4130_MCLK_76_8KHZ_EXT,
158 AD4130_MCLK_153_6KHZ_EXT,
161 enum ad4130_int_pin_sel {
162 AD4130_INT_PIN_INT,
163 AD4130_INT_PIN_CLK,
164 AD4130_INT_PIN_P2,
165 AD4130_INT_PIN_DOUT,
168 enum ad4130_iout {
169 AD4130_IOUT_OFF,
170 AD4130_IOUT_10000NA,
171 AD4130_IOUT_20000NA,
172 AD4130_IOUT_50000NA,
173 AD4130_IOUT_100000NA,
174 AD4130_IOUT_150000NA,
175 AD4130_IOUT_200000NA,
176 AD4130_IOUT_100NA,
177 AD4130_IOUT_MAX
180 enum ad4130_burnout {
181 AD4130_BURNOUT_OFF,
182 AD4130_BURNOUT_500NA,
183 AD4130_BURNOUT_2000NA,
184 AD4130_BURNOUT_4000NA,
185 AD4130_BURNOUT_MAX
188 enum ad4130_ref_sel {
189 AD4130_REF_REFIN1,
190 AD4130_REF_REFIN2,
191 AD4130_REF_REFOUT_AVSS,
192 AD4130_REF_AVDD_AVSS,
193 AD4130_REF_SEL_MAX
196 enum ad4130_fifo_mode {
197 AD4130_FIFO_MODE_DISABLED = 0b00,
198 AD4130_FIFO_MODE_WM = 0b01,
201 enum ad4130_mode {
202 AD4130_MODE_CONTINUOUS = 0b0000,
203 AD4130_MODE_IDLE = 0b0100,
206 enum ad4130_filter_mode {
207 AD4130_FILTER_SINC4,
208 AD4130_FILTER_SINC4_SINC1,
209 AD4130_FILTER_SINC3,
210 AD4130_FILTER_SINC3_REJ60,
211 AD4130_FILTER_SINC3_SINC1,
212 AD4130_FILTER_SINC3_PF1,
213 AD4130_FILTER_SINC3_PF2,
214 AD4130_FILTER_SINC3_PF3,
215 AD4130_FILTER_SINC3_PF4,
218 enum ad4130_pin_function {
219 AD4130_PIN_FN_NONE,
220 AD4130_PIN_FN_SPECIAL = BIT(0),
221 AD4130_PIN_FN_DIFF = BIT(1),
222 AD4130_PIN_FN_EXCITATION = BIT(2),
223 AD4130_PIN_FN_VBIAS = BIT(3),
226 struct ad4130_setup_info {
227 unsigned int iout0_val;
228 unsigned int iout1_val;
229 unsigned int burnout;
230 unsigned int pga;
231 unsigned int fs;
232 u32 ref_sel;
233 enum ad4130_filter_mode filter_mode;
234 bool ref_bufp;
235 bool ref_bufm;
238 struct ad4130_slot_info {
239 struct ad4130_setup_info setup;
240 unsigned int enabled_channels;
241 unsigned int channels;
244 struct ad4130_chan_info {
245 struct ad4130_setup_info setup;
246 u32 iout0;
247 u32 iout1;
248 int slot;
249 bool enabled;
250 bool initialized;
253 struct ad4130_filter_config {
254 enum ad4130_filter_mode filter_mode;
255 unsigned int odr_div;
256 unsigned int fs_max;
257 enum iio_available_type samp_freq_avail_type;
258 int samp_freq_avail_len;
259 int samp_freq_avail[3][2];
262 struct ad4130_state {
263 struct regmap *regmap;
264 struct spi_device *spi;
265 struct clk *mclk;
266 struct regulator_bulk_data regulators[4];
267 u32 irq_trigger;
268 u32 inv_irq_trigger;
271 * Synchronize access to members the of driver state, and ensure
272 * atomicity of consecutive regmap operations.
274 struct mutex lock;
275 struct completion completion;
277 struct iio_chan_spec chans[AD4130_MAX_CHANNELS];
278 struct ad4130_chan_info chans_info[AD4130_MAX_CHANNELS];
279 struct ad4130_slot_info slots_info[AD4130_MAX_SETUPS];
280 enum ad4130_pin_function pins_fn[AD4130_MAX_ANALOG_PINS];
281 u32 vbias_pins[AD4130_MAX_ANALOG_PINS];
282 u32 num_vbias_pins;
283 int scale_tbls[AD4130_REF_SEL_MAX][AD4130_MAX_PGA][2];
284 struct gpio_chip gc;
285 struct clk_hw int_clk_hw;
287 u32 int_pin_sel;
288 u32 int_ref_uv;
289 u32 mclk_sel;
290 bool int_ref_en;
291 bool bipolar;
293 unsigned int num_enabled_channels;
294 unsigned int effective_watermark;
295 unsigned int watermark;
297 struct spi_message fifo_msg;
298 struct spi_transfer fifo_xfer[2];
301 * DMA (thus cache coherency maintenance) requires any transfer
302 * buffers to live in their own cache lines. As the use of these
303 * buffers is synchronous, all of the buffers used for DMA in this
304 * driver may share a cache line.
306 u8 reset_buf[AD4130_RESET_BUF_SIZE] __aligned(IIO_DMA_MINALIGN);
307 u8 reg_write_tx_buf[4];
308 u8 reg_read_tx_buf[1];
309 u8 reg_read_rx_buf[3];
310 u8 fifo_tx_buf[2];
311 u8 fifo_rx_buf[AD4130_FIFO_SIZE *
312 AD4130_FIFO_MAX_SAMPLE_SIZE];
315 static const char * const ad4130_int_pin_names[] = {
316 [AD4130_INT_PIN_INT] = "int",
317 [AD4130_INT_PIN_CLK] = "clk",
318 [AD4130_INT_PIN_P2] = "p2",
319 [AD4130_INT_PIN_DOUT] = "dout",
322 static const unsigned int ad4130_iout_current_na_tbl[AD4130_IOUT_MAX] = {
323 [AD4130_IOUT_OFF] = 0,
324 [AD4130_IOUT_100NA] = 100,
325 [AD4130_IOUT_10000NA] = 10000,
326 [AD4130_IOUT_20000NA] = 20000,
327 [AD4130_IOUT_50000NA] = 50000,
328 [AD4130_IOUT_100000NA] = 100000,
329 [AD4130_IOUT_150000NA] = 150000,
330 [AD4130_IOUT_200000NA] = 200000,
333 static const unsigned int ad4130_burnout_current_na_tbl[AD4130_BURNOUT_MAX] = {
334 [AD4130_BURNOUT_OFF] = 0,
335 [AD4130_BURNOUT_500NA] = 500,
336 [AD4130_BURNOUT_2000NA] = 2000,
337 [AD4130_BURNOUT_4000NA] = 4000,
340 #define AD4130_VARIABLE_ODR_CONFIG(_filter_mode, _odr_div, _fs_max) \
342 .filter_mode = (_filter_mode), \
343 .odr_div = (_odr_div), \
344 .fs_max = (_fs_max), \
345 .samp_freq_avail_type = IIO_AVAIL_RANGE, \
346 .samp_freq_avail = { \
347 { AD4130_MAX_ODR, (_odr_div) * (_fs_max) }, \
348 { AD4130_MAX_ODR, (_odr_div) * (_fs_max) }, \
349 { AD4130_MAX_ODR, (_odr_div) }, \
350 }, \
353 #define AD4130_FIXED_ODR_CONFIG(_filter_mode, _odr_div) \
355 .filter_mode = (_filter_mode), \
356 .odr_div = (_odr_div), \
357 .fs_max = AD4130_FILTER_SELECT_MIN, \
358 .samp_freq_avail_type = IIO_AVAIL_LIST, \
359 .samp_freq_avail_len = 1, \
360 .samp_freq_avail = { \
361 { AD4130_MAX_ODR, (_odr_div) }, \
362 }, \
365 static const struct ad4130_filter_config ad4130_filter_configs[] = {
366 AD4130_VARIABLE_ODR_CONFIG(AD4130_FILTER_SINC4, 1, 10),
367 AD4130_VARIABLE_ODR_CONFIG(AD4130_FILTER_SINC4_SINC1, 11, 10),
368 AD4130_VARIABLE_ODR_CONFIG(AD4130_FILTER_SINC3, 1, 2047),
369 AD4130_VARIABLE_ODR_CONFIG(AD4130_FILTER_SINC3_REJ60, 1, 2047),
370 AD4130_VARIABLE_ODR_CONFIG(AD4130_FILTER_SINC3_SINC1, 10, 2047),
371 AD4130_FIXED_ODR_CONFIG(AD4130_FILTER_SINC3_PF1, 92),
372 AD4130_FIXED_ODR_CONFIG(AD4130_FILTER_SINC3_PF2, 100),
373 AD4130_FIXED_ODR_CONFIG(AD4130_FILTER_SINC3_PF3, 124),
374 AD4130_FIXED_ODR_CONFIG(AD4130_FILTER_SINC3_PF4, 148),
377 static const char * const ad4130_filter_modes_str[] = {
378 [AD4130_FILTER_SINC4] = "sinc4",
379 [AD4130_FILTER_SINC4_SINC1] = "sinc4+sinc1",
380 [AD4130_FILTER_SINC3] = "sinc3",
381 [AD4130_FILTER_SINC3_REJ60] = "sinc3+rej60",
382 [AD4130_FILTER_SINC3_SINC1] = "sinc3+sinc1",
383 [AD4130_FILTER_SINC3_PF1] = "sinc3+pf1",
384 [AD4130_FILTER_SINC3_PF2] = "sinc3+pf2",
385 [AD4130_FILTER_SINC3_PF3] = "sinc3+pf3",
386 [AD4130_FILTER_SINC3_PF4] = "sinc3+pf4",
389 static int ad4130_get_reg_size(struct ad4130_state *st, unsigned int reg,
390 unsigned int *size)
392 if (reg >= ARRAY_SIZE(ad4130_reg_size))
393 return -EINVAL;
395 *size = ad4130_reg_size[reg];
397 return 0;
400 static unsigned int ad4130_data_reg_size(struct ad4130_state *st)
402 unsigned int data_reg_size;
403 int ret;
405 ret = ad4130_get_reg_size(st, AD4130_DATA_REG, &data_reg_size);
406 if (ret)
407 return 0;
409 return data_reg_size;
412 static unsigned int ad4130_resolution(struct ad4130_state *st)
414 return ad4130_data_reg_size(st) * BITS_PER_BYTE;
417 static int ad4130_reg_write(void *context, unsigned int reg, unsigned int val)
419 struct ad4130_state *st = context;
420 unsigned int size;
421 int ret;
423 ret = ad4130_get_reg_size(st, reg, &size);
424 if (ret)
425 return ret;
427 st->reg_write_tx_buf[0] = reg;
429 switch (size) {
430 case 3:
431 put_unaligned_be24(val, &st->reg_write_tx_buf[1]);
432 break;
433 case 2:
434 put_unaligned_be16(val, &st->reg_write_tx_buf[1]);
435 break;
436 case 1:
437 st->reg_write_tx_buf[1] = val;
438 break;
439 default:
440 return -EINVAL;
443 return spi_write(st->spi, st->reg_write_tx_buf, size + 1);
446 static int ad4130_reg_read(void *context, unsigned int reg, unsigned int *val)
448 struct ad4130_state *st = context;
449 struct spi_transfer t[] = {
451 .tx_buf = st->reg_read_tx_buf,
452 .len = sizeof(st->reg_read_tx_buf),
455 .rx_buf = st->reg_read_rx_buf,
458 unsigned int size;
459 int ret;
461 ret = ad4130_get_reg_size(st, reg, &size);
462 if (ret)
463 return ret;
465 st->reg_read_tx_buf[0] = AD4130_COMMS_READ_MASK | reg;
466 t[1].len = size;
468 ret = spi_sync_transfer(st->spi, t, ARRAY_SIZE(t));
469 if (ret)
470 return ret;
472 switch (size) {
473 case 3:
474 *val = get_unaligned_be24(st->reg_read_rx_buf);
475 break;
476 case 2:
477 *val = get_unaligned_be16(st->reg_read_rx_buf);
478 break;
479 case 1:
480 *val = st->reg_read_rx_buf[0];
481 break;
482 default:
483 return -EINVAL;
486 return 0;
489 static const struct regmap_config ad4130_regmap_config = {
490 .reg_read = ad4130_reg_read,
491 .reg_write = ad4130_reg_write,
494 static int ad4130_gpio_init_valid_mask(struct gpio_chip *gc,
495 unsigned long *valid_mask,
496 unsigned int ngpios)
498 struct ad4130_state *st = gpiochip_get_data(gc);
499 unsigned int i;
502 * Output-only GPIO functionality is available on pins AIN2 through
503 * AIN5. If these pins are used for anything else, do not expose them.
505 for (i = 0; i < ngpios; i++) {
506 unsigned int pin = i + AD4130_AIN2_P1;
507 bool valid = st->pins_fn[pin] == AD4130_PIN_FN_NONE;
509 __assign_bit(i, valid_mask, valid);
512 return 0;
515 static int ad4130_gpio_get_direction(struct gpio_chip *gc, unsigned int offset)
517 return GPIO_LINE_DIRECTION_OUT;
520 static void ad4130_gpio_set(struct gpio_chip *gc, unsigned int offset,
521 int value)
523 struct ad4130_state *st = gpiochip_get_data(gc);
524 unsigned int mask = FIELD_PREP(AD4130_IO_CONTROL_GPIO_DATA_MASK,
525 BIT(offset));
527 regmap_update_bits(st->regmap, AD4130_IO_CONTROL_REG, mask,
528 value ? mask : 0);
531 static int ad4130_set_mode(struct ad4130_state *st, enum ad4130_mode mode)
533 return regmap_update_bits(st->regmap, AD4130_ADC_CONTROL_REG,
534 AD4130_ADC_CONTROL_MODE_MASK,
535 FIELD_PREP(AD4130_ADC_CONTROL_MODE_MASK, mode));
538 static int ad4130_set_watermark_interrupt_en(struct ad4130_state *st, bool en)
540 return regmap_update_bits(st->regmap, AD4130_FIFO_CONTROL_REG,
541 AD4130_FIFO_CONTROL_WM_INT_EN_MASK,
542 FIELD_PREP(AD4130_FIFO_CONTROL_WM_INT_EN_MASK, en));
545 static unsigned int ad4130_watermark_reg_val(unsigned int val)
547 if (val == AD4130_FIFO_SIZE)
548 val = AD4130_WATERMARK_256;
550 return val;
553 static int ad4130_set_fifo_mode(struct ad4130_state *st,
554 enum ad4130_fifo_mode mode)
556 return regmap_update_bits(st->regmap, AD4130_FIFO_CONTROL_REG,
557 AD4130_FIFO_CONTROL_MODE_MASK,
558 FIELD_PREP(AD4130_FIFO_CONTROL_MODE_MASK, mode));
561 static void ad4130_push_fifo_data(struct iio_dev *indio_dev)
563 struct ad4130_state *st = iio_priv(indio_dev);
564 unsigned int data_reg_size = ad4130_data_reg_size(st);
565 unsigned int transfer_len = st->effective_watermark * data_reg_size;
566 unsigned int set_size = st->num_enabled_channels * data_reg_size;
567 unsigned int i;
568 int ret;
570 st->fifo_tx_buf[1] = ad4130_watermark_reg_val(st->effective_watermark);
571 st->fifo_xfer[1].len = transfer_len;
573 ret = spi_sync(st->spi, &st->fifo_msg);
574 if (ret)
575 return;
577 for (i = 0; i < transfer_len; i += set_size)
578 iio_push_to_buffers(indio_dev, &st->fifo_rx_buf[i]);
581 static irqreturn_t ad4130_irq_handler(int irq, void *private)
583 struct iio_dev *indio_dev = private;
584 struct ad4130_state *st = iio_priv(indio_dev);
586 if (iio_buffer_enabled(indio_dev))
587 ad4130_push_fifo_data(indio_dev);
588 else
589 complete(&st->completion);
591 return IRQ_HANDLED;
594 static int ad4130_find_slot(struct ad4130_state *st,
595 struct ad4130_setup_info *target_setup_info,
596 unsigned int *slot, bool *overwrite)
598 unsigned int i;
600 *slot = AD4130_INVALID_SLOT;
601 *overwrite = false;
603 for (i = 0; i < AD4130_MAX_SETUPS; i++) {
604 struct ad4130_slot_info *slot_info = &st->slots_info[i];
606 /* Immediately accept a matching setup info. */
607 if (!memcmp(target_setup_info, &slot_info->setup,
608 sizeof(*target_setup_info))) {
609 *slot = i;
610 return 0;
613 /* Ignore all setups which are used by enabled channels. */
614 if (slot_info->enabled_channels)
615 continue;
617 /* Find the least used slot. */
618 if (*slot == AD4130_INVALID_SLOT ||
619 slot_info->channels < st->slots_info[*slot].channels)
620 *slot = i;
623 if (*slot == AD4130_INVALID_SLOT)
624 return -EINVAL;
626 *overwrite = true;
628 return 0;
631 static void ad4130_unlink_channel(struct ad4130_state *st, unsigned int channel)
633 struct ad4130_chan_info *chan_info = &st->chans_info[channel];
634 struct ad4130_slot_info *slot_info = &st->slots_info[chan_info->slot];
636 chan_info->slot = AD4130_INVALID_SLOT;
637 slot_info->channels--;
640 static int ad4130_unlink_slot(struct ad4130_state *st, unsigned int slot)
642 unsigned int i;
644 for (i = 0; i < AD4130_MAX_CHANNELS; i++) {
645 struct ad4130_chan_info *chan_info = &st->chans_info[i];
647 if (!chan_info->initialized || chan_info->slot != slot)
648 continue;
650 ad4130_unlink_channel(st, i);
653 return 0;
656 static int ad4130_link_channel_slot(struct ad4130_state *st,
657 unsigned int channel, unsigned int slot)
659 struct ad4130_slot_info *slot_info = &st->slots_info[slot];
660 struct ad4130_chan_info *chan_info = &st->chans_info[channel];
661 int ret;
663 ret = regmap_update_bits(st->regmap, AD4130_CHANNEL_X_REG(channel),
664 AD4130_CHANNEL_SETUP_MASK,
665 FIELD_PREP(AD4130_CHANNEL_SETUP_MASK, slot));
666 if (ret)
667 return ret;
669 chan_info->slot = slot;
670 slot_info->channels++;
672 return 0;
675 static int ad4130_write_slot_setup(struct ad4130_state *st,
676 unsigned int slot,
677 struct ad4130_setup_info *setup_info)
679 unsigned int val;
680 int ret;
682 val = FIELD_PREP(AD4130_CONFIG_IOUT1_VAL_MASK, setup_info->iout0_val) |
683 FIELD_PREP(AD4130_CONFIG_IOUT1_VAL_MASK, setup_info->iout1_val) |
684 FIELD_PREP(AD4130_CONFIG_BURNOUT_MASK, setup_info->burnout) |
685 FIELD_PREP(AD4130_CONFIG_REF_BUFP_MASK, setup_info->ref_bufp) |
686 FIELD_PREP(AD4130_CONFIG_REF_BUFM_MASK, setup_info->ref_bufm) |
687 FIELD_PREP(AD4130_CONFIG_REF_SEL_MASK, setup_info->ref_sel) |
688 FIELD_PREP(AD4130_CONFIG_PGA_MASK, setup_info->pga);
690 ret = regmap_write(st->regmap, AD4130_CONFIG_X_REG(slot), val);
691 if (ret)
692 return ret;
694 val = FIELD_PREP(AD4130_FILTER_MODE_MASK, setup_info->filter_mode) |
695 FIELD_PREP(AD4130_FILTER_SELECT_MASK, setup_info->fs);
697 ret = regmap_write(st->regmap, AD4130_FILTER_X_REG(slot), val);
698 if (ret)
699 return ret;
701 memcpy(&st->slots_info[slot].setup, setup_info, sizeof(*setup_info));
703 return 0;
706 static int ad4130_write_channel_setup(struct ad4130_state *st,
707 unsigned int channel, bool on_enable)
709 struct ad4130_chan_info *chan_info = &st->chans_info[channel];
710 struct ad4130_setup_info *setup_info = &chan_info->setup;
711 bool overwrite;
712 int slot;
713 int ret;
716 * The following cases need to be handled.
718 * 1. Enabled and linked channel with setup changes:
719 * - Find a slot. If not possible, return error.
720 * - Unlink channel from current slot.
721 * - If the slot has channels linked to it, unlink all channels, and
722 * write the new setup to it.
723 * - Link channel to new slot.
725 * 2. Soon to be enabled and unlinked channel:
726 * - Find a slot. If not possible, return error.
727 * - If the slot has channels linked to it, unlink all channels, and
728 * write the new setup to it.
729 * - Link channel to the slot.
731 * 3. Disabled and linked channel with setup changes:
732 * - Unlink channel from current slot.
734 * 4. Soon to be enabled and linked channel:
735 * 5. Disabled and unlinked channel with setup changes:
736 * - Do nothing.
739 /* Case 4 */
740 if (on_enable && chan_info->slot != AD4130_INVALID_SLOT)
741 return 0;
743 if (!on_enable && !chan_info->enabled) {
744 if (chan_info->slot != AD4130_INVALID_SLOT)
745 /* Case 3 */
746 ad4130_unlink_channel(st, channel);
748 /* Cases 3 & 5 */
749 return 0;
752 /* Cases 1 & 2 */
753 ret = ad4130_find_slot(st, setup_info, &slot, &overwrite);
754 if (ret)
755 return ret;
757 if (chan_info->slot != AD4130_INVALID_SLOT)
758 /* Case 1 */
759 ad4130_unlink_channel(st, channel);
761 if (overwrite) {
762 ret = ad4130_unlink_slot(st, slot);
763 if (ret)
764 return ret;
766 ret = ad4130_write_slot_setup(st, slot, setup_info);
767 if (ret)
768 return ret;
771 return ad4130_link_channel_slot(st, channel, slot);
774 static int ad4130_set_channel_enable(struct ad4130_state *st,
775 unsigned int channel, bool status)
777 struct ad4130_chan_info *chan_info = &st->chans_info[channel];
778 struct ad4130_slot_info *slot_info;
779 int ret;
781 if (chan_info->enabled == status)
782 return 0;
784 if (status) {
785 ret = ad4130_write_channel_setup(st, channel, true);
786 if (ret)
787 return ret;
790 slot_info = &st->slots_info[chan_info->slot];
792 ret = regmap_update_bits(st->regmap, AD4130_CHANNEL_X_REG(channel),
793 AD4130_CHANNEL_EN_MASK,
794 FIELD_PREP(AD4130_CHANNEL_EN_MASK, status));
795 if (ret)
796 return ret;
798 slot_info->enabled_channels += status ? 1 : -1;
799 chan_info->enabled = status;
801 return 0;
805 * Table 58. FILTER_MODE_n bits and Filter Types of the datasheet describes
806 * the relation between filter mode, ODR and FS.
808 * Notice that the max ODR of each filter mode is not necessarily the
809 * absolute max ODR supported by the chip.
811 * The ODR divider is not explicitly specified, but it can be deduced based
812 * on the ODR range of each filter mode.
814 * For example, for Sinc4+Sinc1, max ODR is 218.18. That means that the
815 * absolute max ODR is divided by 11 to achieve the max ODR of this filter
816 * mode.
818 * The formulas for converting between ODR and FS for a specific filter
819 * mode can be deduced from the same table.
821 * Notice that FS = 1 actually means max ODR, and that ODR decreases by
822 * (maximum ODR / maximum FS) for each increment of FS.
824 * odr = MAX_ODR / odr_div * (1 - (fs - 1) / fs_max) <=>
825 * odr = MAX_ODR * (1 - (fs - 1) / fs_max) / odr_div <=>
826 * odr = MAX_ODR * (1 - (fs - 1) / fs_max) / odr_div <=>
827 * odr = MAX_ODR * (fs_max - fs + 1) / (fs_max * odr_div)
828 * (used in ad4130_fs_to_freq)
830 * For the opposite formula, FS can be extracted from the last one.
832 * MAX_ODR * (fs_max - fs + 1) = fs_max * odr_div * odr <=>
833 * fs_max - fs + 1 = fs_max * odr_div * odr / MAX_ODR <=>
834 * fs = 1 + fs_max - fs_max * odr_div * odr / MAX_ODR
835 * (used in ad4130_fs_to_freq)
838 static void ad4130_freq_to_fs(enum ad4130_filter_mode filter_mode,
839 int val, int val2, unsigned int *fs)
841 const struct ad4130_filter_config *filter_config =
842 &ad4130_filter_configs[filter_mode];
843 u64 dividend, divisor;
844 int temp;
846 dividend = filter_config->fs_max * filter_config->odr_div *
847 ((u64)val * NANO + val2);
848 divisor = (u64)AD4130_MAX_ODR * NANO;
850 temp = AD4130_FILTER_SELECT_MIN + filter_config->fs_max -
851 DIV64_U64_ROUND_CLOSEST(dividend, divisor);
853 if (temp < AD4130_FILTER_SELECT_MIN)
854 temp = AD4130_FILTER_SELECT_MIN;
855 else if (temp > filter_config->fs_max)
856 temp = filter_config->fs_max;
858 *fs = temp;
861 static void ad4130_fs_to_freq(enum ad4130_filter_mode filter_mode,
862 unsigned int fs, int *val, int *val2)
864 const struct ad4130_filter_config *filter_config =
865 &ad4130_filter_configs[filter_mode];
866 unsigned int dividend, divisor;
867 u64 temp;
869 dividend = (filter_config->fs_max - fs + AD4130_FILTER_SELECT_MIN) *
870 AD4130_MAX_ODR;
871 divisor = filter_config->fs_max * filter_config->odr_div;
873 temp = div_u64((u64)dividend * NANO, divisor);
874 *val = div_u64_rem(temp, NANO, val2);
877 static int ad4130_set_filter_mode(struct iio_dev *indio_dev,
878 const struct iio_chan_spec *chan,
879 unsigned int val)
881 struct ad4130_state *st = iio_priv(indio_dev);
882 unsigned int channel = chan->scan_index;
883 struct ad4130_chan_info *chan_info = &st->chans_info[channel];
884 struct ad4130_setup_info *setup_info = &chan_info->setup;
885 enum ad4130_filter_mode old_filter_mode;
886 int freq_val, freq_val2;
887 unsigned int old_fs;
888 int ret = 0;
890 guard(mutex)(&st->lock);
891 if (setup_info->filter_mode == val)
892 return 0;
894 old_fs = setup_info->fs;
895 old_filter_mode = setup_info->filter_mode;
898 * When switching between filter modes, try to match the ODR as
899 * close as possible. To do this, convert the current FS into ODR
900 * using the old filter mode, then convert it back into FS using
901 * the new filter mode.
903 ad4130_fs_to_freq(setup_info->filter_mode, setup_info->fs,
904 &freq_val, &freq_val2);
906 ad4130_freq_to_fs(val, freq_val, freq_val2, &setup_info->fs);
908 setup_info->filter_mode = val;
910 ret = ad4130_write_channel_setup(st, channel, false);
911 if (ret) {
912 setup_info->fs = old_fs;
913 setup_info->filter_mode = old_filter_mode;
914 return ret;
917 return 0;
920 static int ad4130_get_filter_mode(struct iio_dev *indio_dev,
921 const struct iio_chan_spec *chan)
923 struct ad4130_state *st = iio_priv(indio_dev);
924 unsigned int channel = chan->scan_index;
925 struct ad4130_setup_info *setup_info = &st->chans_info[channel].setup;
926 enum ad4130_filter_mode filter_mode;
928 guard(mutex)(&st->lock);
929 filter_mode = setup_info->filter_mode;
931 return filter_mode;
934 static const struct iio_enum ad4130_filter_mode_enum = {
935 .items = ad4130_filter_modes_str,
936 .num_items = ARRAY_SIZE(ad4130_filter_modes_str),
937 .set = ad4130_set_filter_mode,
938 .get = ad4130_get_filter_mode,
941 static const struct iio_chan_spec_ext_info ad4130_filter_mode_ext_info[] = {
942 IIO_ENUM("filter_mode", IIO_SEPARATE, &ad4130_filter_mode_enum),
943 IIO_ENUM_AVAILABLE("filter_mode", IIO_SHARED_BY_TYPE,
944 &ad4130_filter_mode_enum),
948 static const struct iio_chan_spec ad4130_channel_template = {
949 .type = IIO_VOLTAGE,
950 .indexed = 1,
951 .differential = 1,
952 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
953 BIT(IIO_CHAN_INFO_SCALE) |
954 BIT(IIO_CHAN_INFO_OFFSET) |
955 BIT(IIO_CHAN_INFO_SAMP_FREQ),
956 .info_mask_separate_available = BIT(IIO_CHAN_INFO_SCALE) |
957 BIT(IIO_CHAN_INFO_SAMP_FREQ),
958 .ext_info = ad4130_filter_mode_ext_info,
959 .scan_type = {
960 .sign = 'u',
961 .endianness = IIO_BE,
965 static int ad4130_set_channel_pga(struct ad4130_state *st, unsigned int channel,
966 int val, int val2)
968 struct ad4130_chan_info *chan_info = &st->chans_info[channel];
969 struct ad4130_setup_info *setup_info = &chan_info->setup;
970 unsigned int pga, old_pga;
971 int ret;
973 for (pga = 0; pga < AD4130_MAX_PGA; pga++)
974 if (val == st->scale_tbls[setup_info->ref_sel][pga][0] &&
975 val2 == st->scale_tbls[setup_info->ref_sel][pga][1])
976 break;
978 if (pga == AD4130_MAX_PGA)
979 return -EINVAL;
981 guard(mutex)(&st->lock);
982 if (pga == setup_info->pga)
983 return 0;
985 old_pga = setup_info->pga;
986 setup_info->pga = pga;
988 ret = ad4130_write_channel_setup(st, channel, false);
989 if (ret) {
990 setup_info->pga = old_pga;
991 return ret;
994 return 0;
997 static int ad4130_set_channel_freq(struct ad4130_state *st,
998 unsigned int channel, int val, int val2)
1000 struct ad4130_chan_info *chan_info = &st->chans_info[channel];
1001 struct ad4130_setup_info *setup_info = &chan_info->setup;
1002 unsigned int fs, old_fs;
1003 int ret;
1005 guard(mutex)(&st->lock);
1006 old_fs = setup_info->fs;
1008 ad4130_freq_to_fs(setup_info->filter_mode, val, val2, &fs);
1010 if (fs == setup_info->fs)
1011 return 0;
1013 setup_info->fs = fs;
1015 ret = ad4130_write_channel_setup(st, channel, false);
1016 if (ret) {
1017 setup_info->fs = old_fs;
1018 return ret;
1021 return 0;
1024 static int _ad4130_read_sample(struct iio_dev *indio_dev, unsigned int channel,
1025 int *val)
1027 struct ad4130_state *st = iio_priv(indio_dev);
1028 int ret;
1030 ret = ad4130_set_channel_enable(st, channel, true);
1031 if (ret)
1032 return ret;
1034 reinit_completion(&st->completion);
1036 ret = ad4130_set_mode(st, AD4130_MODE_CONTINUOUS);
1037 if (ret)
1038 return ret;
1040 ret = wait_for_completion_timeout(&st->completion,
1041 msecs_to_jiffies(1000));
1042 if (!ret)
1043 return -ETIMEDOUT;
1045 ret = ad4130_set_mode(st, AD4130_MODE_IDLE);
1046 if (ret)
1047 return ret;
1049 ret = regmap_read(st->regmap, AD4130_DATA_REG, val);
1050 if (ret)
1051 return ret;
1053 ret = ad4130_set_channel_enable(st, channel, false);
1054 if (ret)
1055 return ret;
1057 return IIO_VAL_INT;
1060 static int ad4130_read_sample(struct iio_dev *indio_dev, unsigned int channel,
1061 int *val)
1063 iio_device_claim_direct_scoped(return -EBUSY, indio_dev) {
1064 struct ad4130_state *st = iio_priv(indio_dev);
1066 guard(mutex)(&st->lock);
1067 return _ad4130_read_sample(indio_dev, channel, val);
1069 unreachable();
1072 static int ad4130_read_raw(struct iio_dev *indio_dev,
1073 struct iio_chan_spec const *chan,
1074 int *val, int *val2, long info)
1076 struct ad4130_state *st = iio_priv(indio_dev);
1077 unsigned int channel = chan->scan_index;
1078 struct ad4130_setup_info *setup_info = &st->chans_info[channel].setup;
1080 switch (info) {
1081 case IIO_CHAN_INFO_RAW:
1082 return ad4130_read_sample(indio_dev, channel, val);
1083 case IIO_CHAN_INFO_SCALE: {
1084 guard(mutex)(&st->lock);
1085 *val = st->scale_tbls[setup_info->ref_sel][setup_info->pga][0];
1086 *val2 = st->scale_tbls[setup_info->ref_sel][setup_info->pga][1];
1088 return IIO_VAL_INT_PLUS_NANO;
1090 case IIO_CHAN_INFO_OFFSET:
1091 *val = st->bipolar ? -BIT(chan->scan_type.realbits - 1) : 0;
1093 return IIO_VAL_INT;
1094 case IIO_CHAN_INFO_SAMP_FREQ: {
1095 guard(mutex)(&st->lock);
1096 ad4130_fs_to_freq(setup_info->filter_mode, setup_info->fs,
1097 val, val2);
1099 return IIO_VAL_INT_PLUS_NANO;
1101 default:
1102 return -EINVAL;
1106 static int ad4130_read_avail(struct iio_dev *indio_dev,
1107 struct iio_chan_spec const *chan,
1108 const int **vals, int *type, int *length,
1109 long info)
1111 struct ad4130_state *st = iio_priv(indio_dev);
1112 unsigned int channel = chan->scan_index;
1113 struct ad4130_setup_info *setup_info = &st->chans_info[channel].setup;
1114 const struct ad4130_filter_config *filter_config;
1116 switch (info) {
1117 case IIO_CHAN_INFO_SCALE:
1118 *vals = (int *)st->scale_tbls[setup_info->ref_sel];
1119 *length = ARRAY_SIZE(st->scale_tbls[setup_info->ref_sel]) * 2;
1121 *type = IIO_VAL_INT_PLUS_NANO;
1123 return IIO_AVAIL_LIST;
1124 case IIO_CHAN_INFO_SAMP_FREQ:
1125 scoped_guard(mutex, &st->lock) {
1126 filter_config = &ad4130_filter_configs[setup_info->filter_mode];
1129 *vals = (int *)filter_config->samp_freq_avail;
1130 *length = filter_config->samp_freq_avail_len * 2;
1131 *type = IIO_VAL_FRACTIONAL;
1133 return filter_config->samp_freq_avail_type;
1134 default:
1135 return -EINVAL;
1139 static int ad4130_write_raw_get_fmt(struct iio_dev *indio_dev,
1140 struct iio_chan_spec const *chan,
1141 long info)
1143 switch (info) {
1144 case IIO_CHAN_INFO_SCALE:
1145 case IIO_CHAN_INFO_SAMP_FREQ:
1146 return IIO_VAL_INT_PLUS_NANO;
1147 default:
1148 return -EINVAL;
1152 static int ad4130_write_raw(struct iio_dev *indio_dev,
1153 struct iio_chan_spec const *chan,
1154 int val, int val2, long info)
1156 struct ad4130_state *st = iio_priv(indio_dev);
1157 unsigned int channel = chan->scan_index;
1159 switch (info) {
1160 case IIO_CHAN_INFO_SCALE:
1161 return ad4130_set_channel_pga(st, channel, val, val2);
1162 case IIO_CHAN_INFO_SAMP_FREQ:
1163 return ad4130_set_channel_freq(st, channel, val, val2);
1164 default:
1165 return -EINVAL;
1169 static int ad4130_reg_access(struct iio_dev *indio_dev, unsigned int reg,
1170 unsigned int writeval, unsigned int *readval)
1172 struct ad4130_state *st = iio_priv(indio_dev);
1174 if (readval)
1175 return regmap_read(st->regmap, reg, readval);
1177 return regmap_write(st->regmap, reg, writeval);
1180 static int ad4130_update_scan_mode(struct iio_dev *indio_dev,
1181 const unsigned long *scan_mask)
1183 struct ad4130_state *st = iio_priv(indio_dev);
1184 unsigned int channel;
1185 unsigned int val = 0;
1186 int ret;
1188 guard(mutex)(&st->lock);
1190 for_each_set_bit(channel, scan_mask, indio_dev->num_channels) {
1191 ret = ad4130_set_channel_enable(st, channel, true);
1192 if (ret)
1193 return ret;
1195 val++;
1198 st->num_enabled_channels = val;
1200 return 0;
1203 static int ad4130_set_fifo_watermark(struct iio_dev *indio_dev, unsigned int val)
1205 struct ad4130_state *st = iio_priv(indio_dev);
1206 unsigned int eff;
1207 int ret;
1209 if (val > AD4130_FIFO_SIZE)
1210 return -EINVAL;
1212 eff = val * st->num_enabled_channels;
1213 if (eff > AD4130_FIFO_SIZE)
1215 * Always set watermark to a multiple of the number of
1216 * enabled channels to avoid making the FIFO unaligned.
1218 eff = rounddown(AD4130_FIFO_SIZE, st->num_enabled_channels);
1220 guard(mutex)(&st->lock);
1222 ret = regmap_update_bits(st->regmap, AD4130_FIFO_CONTROL_REG,
1223 AD4130_FIFO_CONTROL_WM_MASK,
1224 FIELD_PREP(AD4130_FIFO_CONTROL_WM_MASK,
1225 ad4130_watermark_reg_val(eff)));
1226 if (ret)
1227 return ret;
1229 st->effective_watermark = eff;
1230 st->watermark = val;
1232 return 0;
1235 static const struct iio_info ad4130_info = {
1236 .read_raw = ad4130_read_raw,
1237 .read_avail = ad4130_read_avail,
1238 .write_raw_get_fmt = ad4130_write_raw_get_fmt,
1239 .write_raw = ad4130_write_raw,
1240 .update_scan_mode = ad4130_update_scan_mode,
1241 .hwfifo_set_watermark = ad4130_set_fifo_watermark,
1242 .debugfs_reg_access = ad4130_reg_access,
1245 static int ad4130_buffer_postenable(struct iio_dev *indio_dev)
1247 struct ad4130_state *st = iio_priv(indio_dev);
1248 int ret;
1250 guard(mutex)(&st->lock);
1252 ret = ad4130_set_watermark_interrupt_en(st, true);
1253 if (ret)
1254 return ret;
1256 ret = irq_set_irq_type(st->spi->irq, st->inv_irq_trigger);
1257 if (ret)
1258 return ret;
1260 ret = ad4130_set_fifo_mode(st, AD4130_FIFO_MODE_WM);
1261 if (ret)
1262 return ret;
1264 return ad4130_set_mode(st, AD4130_MODE_CONTINUOUS);
1267 static int ad4130_buffer_predisable(struct iio_dev *indio_dev)
1269 struct ad4130_state *st = iio_priv(indio_dev);
1270 unsigned int i;
1271 int ret;
1273 guard(mutex)(&st->lock);
1275 ret = ad4130_set_mode(st, AD4130_MODE_IDLE);
1276 if (ret)
1277 return ret;
1279 ret = irq_set_irq_type(st->spi->irq, st->irq_trigger);
1280 if (ret)
1281 return ret;
1283 ret = ad4130_set_fifo_mode(st, AD4130_FIFO_MODE_DISABLED);
1284 if (ret)
1285 return ret;
1287 ret = ad4130_set_watermark_interrupt_en(st, false);
1288 if (ret)
1289 return ret;
1292 * update_scan_mode() is not called in the disable path, disable all
1293 * channels here.
1295 for (i = 0; i < indio_dev->num_channels; i++) {
1296 ret = ad4130_set_channel_enable(st, i, false);
1297 if (ret)
1298 return ret;
1301 return 0;
1304 static const struct iio_buffer_setup_ops ad4130_buffer_ops = {
1305 .postenable = ad4130_buffer_postenable,
1306 .predisable = ad4130_buffer_predisable,
1309 static ssize_t hwfifo_watermark_show(struct device *dev,
1310 struct device_attribute *attr, char *buf)
1312 struct ad4130_state *st = iio_priv(dev_to_iio_dev(dev));
1313 unsigned int val;
1315 guard(mutex)(&st->lock);
1316 val = st->watermark;
1318 return sysfs_emit(buf, "%d\n", val);
1321 static ssize_t hwfifo_enabled_show(struct device *dev,
1322 struct device_attribute *attr, char *buf)
1324 struct ad4130_state *st = iio_priv(dev_to_iio_dev(dev));
1325 unsigned int val;
1326 int ret;
1328 ret = regmap_read(st->regmap, AD4130_FIFO_CONTROL_REG, &val);
1329 if (ret)
1330 return ret;
1332 val = FIELD_GET(AD4130_FIFO_CONTROL_MODE_MASK, val);
1334 return sysfs_emit(buf, "%d\n", val != AD4130_FIFO_MODE_DISABLED);
1337 static ssize_t hwfifo_watermark_min_show(struct device *dev,
1338 struct device_attribute *attr,
1339 char *buf)
1341 return sysfs_emit(buf, "%s\n", "1");
1344 static ssize_t hwfifo_watermark_max_show(struct device *dev,
1345 struct device_attribute *attr,
1346 char *buf)
1348 return sysfs_emit(buf, "%s\n", __stringify(AD4130_FIFO_SIZE));
1351 static IIO_DEVICE_ATTR_RO(hwfifo_watermark_min, 0);
1352 static IIO_DEVICE_ATTR_RO(hwfifo_watermark_max, 0);
1353 static IIO_DEVICE_ATTR_RO(hwfifo_watermark, 0);
1354 static IIO_DEVICE_ATTR_RO(hwfifo_enabled, 0);
1356 static const struct iio_dev_attr *ad4130_fifo_attributes[] = {
1357 &iio_dev_attr_hwfifo_watermark_min,
1358 &iio_dev_attr_hwfifo_watermark_max,
1359 &iio_dev_attr_hwfifo_watermark,
1360 &iio_dev_attr_hwfifo_enabled,
1361 NULL
1364 static int _ad4130_find_table_index(const unsigned int *tbl, size_t len,
1365 unsigned int val)
1367 unsigned int i;
1369 for (i = 0; i < len; i++)
1370 if (tbl[i] == val)
1371 return i;
1373 return -EINVAL;
1376 #define ad4130_find_table_index(table, val) \
1377 _ad4130_find_table_index(table, ARRAY_SIZE(table), val)
1379 static int ad4130_get_ref_voltage(struct ad4130_state *st,
1380 enum ad4130_ref_sel ref_sel)
1382 switch (ref_sel) {
1383 case AD4130_REF_REFIN1:
1384 return regulator_get_voltage(st->regulators[2].consumer);
1385 case AD4130_REF_REFIN2:
1386 return regulator_get_voltage(st->regulators[3].consumer);
1387 case AD4130_REF_AVDD_AVSS:
1388 return regulator_get_voltage(st->regulators[0].consumer);
1389 case AD4130_REF_REFOUT_AVSS:
1390 return st->int_ref_uv;
1391 default:
1392 return -EINVAL;
1396 static int ad4130_parse_fw_setup(struct ad4130_state *st,
1397 struct fwnode_handle *child,
1398 struct ad4130_setup_info *setup_info)
1400 struct device *dev = &st->spi->dev;
1401 u32 tmp;
1402 int ret;
1404 tmp = 0;
1405 fwnode_property_read_u32(child, "adi,excitation-current-0-nanoamp", &tmp);
1406 ret = ad4130_find_table_index(ad4130_iout_current_na_tbl, tmp);
1407 if (ret < 0)
1408 return dev_err_probe(dev, ret,
1409 "Invalid excitation current %unA\n", tmp);
1410 setup_info->iout0_val = ret;
1412 tmp = 0;
1413 fwnode_property_read_u32(child, "adi,excitation-current-1-nanoamp", &tmp);
1414 ret = ad4130_find_table_index(ad4130_iout_current_na_tbl, tmp);
1415 if (ret < 0)
1416 return dev_err_probe(dev, ret,
1417 "Invalid excitation current %unA\n", tmp);
1418 setup_info->iout1_val = ret;
1420 tmp = 0;
1421 fwnode_property_read_u32(child, "adi,burnout-current-nanoamp", &tmp);
1422 ret = ad4130_find_table_index(ad4130_burnout_current_na_tbl, tmp);
1423 if (ret < 0)
1424 return dev_err_probe(dev, ret,
1425 "Invalid burnout current %unA\n", tmp);
1426 setup_info->burnout = ret;
1428 setup_info->ref_bufp = fwnode_property_read_bool(child, "adi,buffered-positive");
1429 setup_info->ref_bufm = fwnode_property_read_bool(child, "adi,buffered-negative");
1431 setup_info->ref_sel = AD4130_REF_REFIN1;
1432 fwnode_property_read_u32(child, "adi,reference-select",
1433 &setup_info->ref_sel);
1434 if (setup_info->ref_sel >= AD4130_REF_SEL_MAX)
1435 return dev_err_probe(dev, -EINVAL,
1436 "Invalid reference selected %u\n",
1437 setup_info->ref_sel);
1439 if (setup_info->ref_sel == AD4130_REF_REFOUT_AVSS)
1440 st->int_ref_en = true;
1442 ret = ad4130_get_ref_voltage(st, setup_info->ref_sel);
1443 if (ret < 0)
1444 return dev_err_probe(dev, ret, "Cannot use reference %u\n",
1445 setup_info->ref_sel);
1447 return 0;
1450 static int ad4130_validate_diff_channel(struct ad4130_state *st, u32 pin)
1452 struct device *dev = &st->spi->dev;
1454 if (pin >= AD4130_MAX_DIFF_INPUTS)
1455 return dev_err_probe(dev, -EINVAL,
1456 "Invalid differential channel %u\n", pin);
1458 if (pin >= AD4130_MAX_ANALOG_PINS)
1459 return 0;
1461 if (st->pins_fn[pin] == AD4130_PIN_FN_SPECIAL)
1462 return dev_err_probe(dev, -EINVAL,
1463 "Pin %u already used with fn %u\n", pin,
1464 st->pins_fn[pin]);
1466 st->pins_fn[pin] |= AD4130_PIN_FN_DIFF;
1468 return 0;
1471 static int ad4130_validate_diff_channels(struct ad4130_state *st,
1472 u32 *pins, unsigned int len)
1474 unsigned int i;
1475 int ret;
1477 for (i = 0; i < len; i++) {
1478 ret = ad4130_validate_diff_channel(st, pins[i]);
1479 if (ret)
1480 return ret;
1483 return 0;
1486 static int ad4130_validate_excitation_pin(struct ad4130_state *st, u32 pin)
1488 struct device *dev = &st->spi->dev;
1490 if (pin >= AD4130_MAX_ANALOG_PINS)
1491 return dev_err_probe(dev, -EINVAL,
1492 "Invalid excitation pin %u\n", pin);
1494 if (st->pins_fn[pin] == AD4130_PIN_FN_SPECIAL)
1495 return dev_err_probe(dev, -EINVAL,
1496 "Pin %u already used with fn %u\n", pin,
1497 st->pins_fn[pin]);
1499 st->pins_fn[pin] |= AD4130_PIN_FN_EXCITATION;
1501 return 0;
1504 static int ad4130_validate_vbias_pin(struct ad4130_state *st, u32 pin)
1506 struct device *dev = &st->spi->dev;
1508 if (pin >= AD4130_MAX_ANALOG_PINS)
1509 return dev_err_probe(dev, -EINVAL, "Invalid vbias pin %u\n",
1510 pin);
1512 if (st->pins_fn[pin] == AD4130_PIN_FN_SPECIAL)
1513 return dev_err_probe(dev, -EINVAL,
1514 "Pin %u already used with fn %u\n", pin,
1515 st->pins_fn[pin]);
1517 st->pins_fn[pin] |= AD4130_PIN_FN_VBIAS;
1519 return 0;
1522 static int ad4130_validate_vbias_pins(struct ad4130_state *st,
1523 u32 *pins, unsigned int len)
1525 unsigned int i;
1526 int ret;
1528 for (i = 0; i < st->num_vbias_pins; i++) {
1529 ret = ad4130_validate_vbias_pin(st, pins[i]);
1530 if (ret)
1531 return ret;
1534 return 0;
1537 static int ad4130_parse_fw_channel(struct iio_dev *indio_dev,
1538 struct fwnode_handle *child)
1540 struct ad4130_state *st = iio_priv(indio_dev);
1541 unsigned int resolution = ad4130_resolution(st);
1542 unsigned int index = indio_dev->num_channels++;
1543 struct device *dev = &st->spi->dev;
1544 struct ad4130_chan_info *chan_info;
1545 struct iio_chan_spec *chan;
1546 u32 pins[2];
1547 int ret;
1549 if (index >= AD4130_MAX_CHANNELS)
1550 return dev_err_probe(dev, -EINVAL, "Too many channels\n");
1552 chan = &st->chans[index];
1553 chan_info = &st->chans_info[index];
1555 *chan = ad4130_channel_template;
1556 chan->scan_type.realbits = resolution;
1557 chan->scan_type.storagebits = resolution;
1558 chan->scan_index = index;
1560 chan_info->slot = AD4130_INVALID_SLOT;
1561 chan_info->setup.fs = AD4130_FILTER_SELECT_MIN;
1562 chan_info->initialized = true;
1564 ret = fwnode_property_read_u32_array(child, "diff-channels", pins,
1565 ARRAY_SIZE(pins));
1566 if (ret)
1567 return ret;
1569 ret = ad4130_validate_diff_channels(st, pins, ARRAY_SIZE(pins));
1570 if (ret)
1571 return ret;
1573 chan->channel = pins[0];
1574 chan->channel2 = pins[1];
1576 ret = ad4130_parse_fw_setup(st, child, &chan_info->setup);
1577 if (ret)
1578 return ret;
1580 fwnode_property_read_u32(child, "adi,excitation-pin-0",
1581 &chan_info->iout0);
1582 if (chan_info->setup.iout0_val != AD4130_IOUT_OFF) {
1583 ret = ad4130_validate_excitation_pin(st, chan_info->iout0);
1584 if (ret)
1585 return ret;
1588 fwnode_property_read_u32(child, "adi,excitation-pin-1",
1589 &chan_info->iout1);
1590 if (chan_info->setup.iout1_val != AD4130_IOUT_OFF) {
1591 ret = ad4130_validate_excitation_pin(st, chan_info->iout1);
1592 if (ret)
1593 return ret;
1596 return 0;
1599 static int ad4130_parse_fw_children(struct iio_dev *indio_dev)
1601 struct ad4130_state *st = iio_priv(indio_dev);
1602 struct device *dev = &st->spi->dev;
1603 int ret;
1605 indio_dev->channels = st->chans;
1607 device_for_each_child_node_scoped(dev, child) {
1608 ret = ad4130_parse_fw_channel(indio_dev, child);
1609 if (ret)
1610 return ret;
1613 return 0;
1616 static int ad4310_parse_fw(struct iio_dev *indio_dev)
1618 struct ad4130_state *st = iio_priv(indio_dev);
1619 struct device *dev = &st->spi->dev;
1620 u32 ext_clk_freq = AD4130_MCLK_FREQ_76_8KHZ;
1621 unsigned int i;
1622 int avdd_uv;
1623 int irq;
1624 int ret;
1626 st->mclk = devm_clk_get_optional(dev, "mclk");
1627 if (IS_ERR(st->mclk))
1628 return dev_err_probe(dev, PTR_ERR(st->mclk),
1629 "Failed to get mclk\n");
1631 st->int_pin_sel = AD4130_INT_PIN_INT;
1633 for (i = 0; i < ARRAY_SIZE(ad4130_int_pin_names); i++) {
1634 irq = fwnode_irq_get_byname(dev_fwnode(dev),
1635 ad4130_int_pin_names[i]);
1636 if (irq > 0) {
1637 st->int_pin_sel = i;
1638 break;
1642 if (st->int_pin_sel == AD4130_INT_PIN_DOUT)
1643 return dev_err_probe(dev, -EINVAL,
1644 "Cannot use DOUT as interrupt pin\n");
1646 if (st->int_pin_sel == AD4130_INT_PIN_P2)
1647 st->pins_fn[AD4130_AIN3_P2] = AD4130_PIN_FN_SPECIAL;
1649 device_property_read_u32(dev, "adi,ext-clk-freq-hz", &ext_clk_freq);
1650 if (ext_clk_freq != AD4130_MCLK_FREQ_153_6KHZ &&
1651 ext_clk_freq != AD4130_MCLK_FREQ_76_8KHZ)
1652 return dev_err_probe(dev, -EINVAL,
1653 "Invalid external clock frequency %u\n",
1654 ext_clk_freq);
1656 if (st->mclk && ext_clk_freq == AD4130_MCLK_FREQ_153_6KHZ)
1657 st->mclk_sel = AD4130_MCLK_153_6KHZ_EXT;
1658 else if (st->mclk)
1659 st->mclk_sel = AD4130_MCLK_76_8KHZ_EXT;
1660 else
1661 st->mclk_sel = AD4130_MCLK_76_8KHZ;
1663 if (st->int_pin_sel == AD4130_INT_PIN_CLK &&
1664 st->mclk_sel != AD4130_MCLK_76_8KHZ)
1665 return dev_err_probe(dev, -EINVAL,
1666 "Invalid clock %u for interrupt pin %u\n",
1667 st->mclk_sel, st->int_pin_sel);
1669 st->int_ref_uv = AD4130_INT_REF_2_5V;
1672 * When the AVDD supply is set to below 2.5V the internal reference of
1673 * 1.25V should be selected.
1674 * See datasheet page 37, section ADC REFERENCE.
1676 avdd_uv = regulator_get_voltage(st->regulators[0].consumer);
1677 if (avdd_uv > 0 && avdd_uv < AD4130_INT_REF_2_5V)
1678 st->int_ref_uv = AD4130_INT_REF_1_25V;
1680 st->bipolar = device_property_read_bool(dev, "adi,bipolar");
1682 ret = device_property_count_u32(dev, "adi,vbias-pins");
1683 if (ret > 0) {
1684 if (ret > AD4130_MAX_ANALOG_PINS)
1685 return dev_err_probe(dev, -EINVAL,
1686 "Too many vbias pins %u\n", ret);
1688 st->num_vbias_pins = ret;
1690 ret = device_property_read_u32_array(dev, "adi,vbias-pins",
1691 st->vbias_pins,
1692 st->num_vbias_pins);
1693 if (ret)
1694 return dev_err_probe(dev, ret,
1695 "Failed to read vbias pins\n");
1697 ret = ad4130_validate_vbias_pins(st, st->vbias_pins,
1698 st->num_vbias_pins);
1699 if (ret)
1700 return ret;
1703 ret = ad4130_parse_fw_children(indio_dev);
1704 if (ret)
1705 return ret;
1707 return 0;
1710 static void ad4130_fill_scale_tbls(struct ad4130_state *st)
1712 unsigned int pow = ad4130_resolution(st) - st->bipolar;
1713 unsigned int i, j;
1715 for (i = 0; i < AD4130_REF_SEL_MAX; i++) {
1716 int ret;
1717 u64 nv;
1719 ret = ad4130_get_ref_voltage(st, i);
1720 if (ret < 0)
1721 continue;
1723 nv = (u64)ret * NANO;
1725 for (j = 0; j < AD4130_MAX_PGA; j++)
1726 st->scale_tbls[i][j][1] = div_u64(nv >> (pow + j), MILLI);
1730 static void ad4130_clk_disable_unprepare(void *clk)
1732 clk_disable_unprepare(clk);
1735 static int ad4130_set_mclk_sel(struct ad4130_state *st,
1736 enum ad4130_mclk_sel mclk_sel)
1738 return regmap_update_bits(st->regmap, AD4130_ADC_CONTROL_REG,
1739 AD4130_ADC_CONTROL_MCLK_SEL_MASK,
1740 FIELD_PREP(AD4130_ADC_CONTROL_MCLK_SEL_MASK,
1741 mclk_sel));
1744 static unsigned long ad4130_int_clk_recalc_rate(struct clk_hw *hw,
1745 unsigned long parent_rate)
1747 return AD4130_MCLK_FREQ_76_8KHZ;
1750 static int ad4130_int_clk_is_enabled(struct clk_hw *hw)
1752 struct ad4130_state *st = container_of(hw, struct ad4130_state, int_clk_hw);
1754 return st->mclk_sel == AD4130_MCLK_76_8KHZ_OUT;
1757 static int ad4130_int_clk_prepare(struct clk_hw *hw)
1759 struct ad4130_state *st = container_of(hw, struct ad4130_state, int_clk_hw);
1760 int ret;
1762 ret = ad4130_set_mclk_sel(st, AD4130_MCLK_76_8KHZ_OUT);
1763 if (ret)
1764 return ret;
1766 st->mclk_sel = AD4130_MCLK_76_8KHZ_OUT;
1768 return 0;
1771 static void ad4130_int_clk_unprepare(struct clk_hw *hw)
1773 struct ad4130_state *st = container_of(hw, struct ad4130_state, int_clk_hw);
1774 int ret;
1776 ret = ad4130_set_mclk_sel(st, AD4130_MCLK_76_8KHZ);
1777 if (ret)
1778 return;
1780 st->mclk_sel = AD4130_MCLK_76_8KHZ;
1783 static const struct clk_ops ad4130_int_clk_ops = {
1784 .recalc_rate = ad4130_int_clk_recalc_rate,
1785 .is_enabled = ad4130_int_clk_is_enabled,
1786 .prepare = ad4130_int_clk_prepare,
1787 .unprepare = ad4130_int_clk_unprepare,
1790 static int ad4130_setup_int_clk(struct ad4130_state *st)
1792 struct device *dev = &st->spi->dev;
1793 struct device_node *of_node = dev_of_node(dev);
1794 struct clk_init_data init = {};
1795 const char *clk_name;
1796 int ret;
1798 if (st->int_pin_sel == AD4130_INT_PIN_CLK ||
1799 st->mclk_sel != AD4130_MCLK_76_8KHZ)
1800 return 0;
1802 if (!of_node)
1803 return 0;
1805 clk_name = of_node->name;
1806 of_property_read_string(of_node, "clock-output-names", &clk_name);
1808 init.name = clk_name;
1809 init.ops = &ad4130_int_clk_ops;
1811 st->int_clk_hw.init = &init;
1812 ret = devm_clk_hw_register(dev, &st->int_clk_hw);
1813 if (ret)
1814 return ret;
1816 return devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get,
1817 &st->int_clk_hw);
1820 static int ad4130_setup(struct iio_dev *indio_dev)
1822 struct ad4130_state *st = iio_priv(indio_dev);
1823 struct device *dev = &st->spi->dev;
1824 unsigned int int_ref_val;
1825 unsigned long rate = AD4130_MCLK_FREQ_76_8KHZ;
1826 unsigned int val;
1827 unsigned int i;
1828 int ret;
1830 if (st->mclk_sel == AD4130_MCLK_153_6KHZ_EXT)
1831 rate = AD4130_MCLK_FREQ_153_6KHZ;
1833 ret = clk_set_rate(st->mclk, rate);
1834 if (ret)
1835 return ret;
1837 ret = clk_prepare_enable(st->mclk);
1838 if (ret)
1839 return ret;
1841 ret = devm_add_action_or_reset(dev, ad4130_clk_disable_unprepare,
1842 st->mclk);
1843 if (ret)
1844 return ret;
1846 if (st->int_ref_uv == AD4130_INT_REF_2_5V)
1847 int_ref_val = AD4130_INT_REF_VAL_2_5V;
1848 else
1849 int_ref_val = AD4130_INT_REF_VAL_1_25V;
1851 /* Switch to SPI 4-wire mode. */
1852 val = FIELD_PREP(AD4130_ADC_CONTROL_CSB_EN_MASK, 1);
1853 val |= FIELD_PREP(AD4130_ADC_CONTROL_BIPOLAR_MASK, st->bipolar);
1854 val |= FIELD_PREP(AD4130_ADC_CONTROL_INT_REF_EN_MASK, st->int_ref_en);
1855 val |= FIELD_PREP(AD4130_ADC_CONTROL_MODE_MASK, AD4130_MODE_IDLE);
1856 val |= FIELD_PREP(AD4130_ADC_CONTROL_MCLK_SEL_MASK, st->mclk_sel);
1857 val |= FIELD_PREP(AD4130_ADC_CONTROL_INT_REF_VAL_MASK, int_ref_val);
1859 ret = regmap_write(st->regmap, AD4130_ADC_CONTROL_REG, val);
1860 if (ret)
1861 return ret;
1864 * Configure unused GPIOs for output. If configured, the interrupt
1865 * function of P2 takes priority over the GPIO out function.
1867 val = 0;
1868 for (i = 0; i < AD4130_MAX_GPIOS; i++)
1869 if (st->pins_fn[i + AD4130_AIN2_P1] == AD4130_PIN_FN_NONE)
1870 val |= FIELD_PREP(AD4130_IO_CONTROL_GPIO_CTRL_MASK, BIT(i));
1872 val |= FIELD_PREP(AD4130_IO_CONTROL_INT_PIN_SEL_MASK, st->int_pin_sel);
1874 ret = regmap_write(st->regmap, AD4130_IO_CONTROL_REG, val);
1875 if (ret)
1876 return ret;
1878 val = 0;
1879 for (i = 0; i < st->num_vbias_pins; i++)
1880 val |= BIT(st->vbias_pins[i]);
1882 ret = regmap_write(st->regmap, AD4130_VBIAS_REG, val);
1883 if (ret)
1884 return ret;
1886 ret = regmap_clear_bits(st->regmap, AD4130_FIFO_CONTROL_REG,
1887 AD4130_FIFO_CONTROL_HEADER_MASK);
1888 if (ret)
1889 return ret;
1891 /* FIFO watermark interrupt starts out as enabled, disable it. */
1892 ret = ad4130_set_watermark_interrupt_en(st, false);
1893 if (ret)
1894 return ret;
1896 /* Setup channels. */
1897 for (i = 0; i < indio_dev->num_channels; i++) {
1898 struct ad4130_chan_info *chan_info = &st->chans_info[i];
1899 struct iio_chan_spec *chan = &st->chans[i];
1900 unsigned int val;
1902 val = FIELD_PREP(AD4130_CHANNEL_AINP_MASK, chan->channel) |
1903 FIELD_PREP(AD4130_CHANNEL_AINM_MASK, chan->channel2) |
1904 FIELD_PREP(AD4130_CHANNEL_IOUT1_MASK, chan_info->iout0) |
1905 FIELD_PREP(AD4130_CHANNEL_IOUT2_MASK, chan_info->iout1);
1907 ret = regmap_write(st->regmap, AD4130_CHANNEL_X_REG(i), val);
1908 if (ret)
1909 return ret;
1912 return 0;
1915 static int ad4130_soft_reset(struct ad4130_state *st)
1917 int ret;
1919 ret = spi_write(st->spi, st->reset_buf, sizeof(st->reset_buf));
1920 if (ret)
1921 return ret;
1923 fsleep(AD4130_RESET_SLEEP_US);
1925 return 0;
1928 static void ad4130_disable_regulators(void *data)
1930 struct ad4130_state *st = data;
1932 regulator_bulk_disable(ARRAY_SIZE(st->regulators), st->regulators);
1935 static int ad4130_probe(struct spi_device *spi)
1937 struct device *dev = &spi->dev;
1938 struct iio_dev *indio_dev;
1939 struct ad4130_state *st;
1940 int ret;
1942 indio_dev = devm_iio_device_alloc(dev, sizeof(*st));
1943 if (!indio_dev)
1944 return -ENOMEM;
1946 st = iio_priv(indio_dev);
1948 memset(st->reset_buf, 0xff, sizeof(st->reset_buf));
1949 init_completion(&st->completion);
1950 mutex_init(&st->lock);
1951 st->spi = spi;
1954 * Xfer: [ XFR1 ] [ XFR2 ]
1955 * Master: 0x7D N ......................
1956 * Slave: ...... DATA1 DATA2 ... DATAN
1958 st->fifo_tx_buf[0] = AD4130_COMMS_READ_MASK | AD4130_FIFO_DATA_REG;
1959 st->fifo_xfer[0].tx_buf = st->fifo_tx_buf;
1960 st->fifo_xfer[0].len = sizeof(st->fifo_tx_buf);
1961 st->fifo_xfer[1].rx_buf = st->fifo_rx_buf;
1962 spi_message_init_with_transfers(&st->fifo_msg, st->fifo_xfer,
1963 ARRAY_SIZE(st->fifo_xfer));
1965 indio_dev->name = AD4130_NAME;
1966 indio_dev->modes = INDIO_DIRECT_MODE;
1967 indio_dev->info = &ad4130_info;
1969 st->regmap = devm_regmap_init(dev, NULL, st, &ad4130_regmap_config);
1970 if (IS_ERR(st->regmap))
1971 return PTR_ERR(st->regmap);
1973 st->regulators[0].supply = "avdd";
1974 st->regulators[1].supply = "iovdd";
1975 st->regulators[2].supply = "refin1";
1976 st->regulators[3].supply = "refin2";
1978 ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(st->regulators),
1979 st->regulators);
1980 if (ret)
1981 return dev_err_probe(dev, ret, "Failed to get regulators\n");
1983 ret = regulator_bulk_enable(ARRAY_SIZE(st->regulators), st->regulators);
1984 if (ret)
1985 return dev_err_probe(dev, ret, "Failed to enable regulators\n");
1987 ret = devm_add_action_or_reset(dev, ad4130_disable_regulators, st);
1988 if (ret)
1989 return dev_err_probe(dev, ret,
1990 "Failed to add regulators disable action\n");
1992 ret = ad4130_soft_reset(st);
1993 if (ret)
1994 return ret;
1996 ret = ad4310_parse_fw(indio_dev);
1997 if (ret)
1998 return ret;
2000 ret = ad4130_setup(indio_dev);
2001 if (ret)
2002 return ret;
2004 ret = ad4130_setup_int_clk(st);
2005 if (ret)
2006 return ret;
2008 ad4130_fill_scale_tbls(st);
2010 st->gc.owner = THIS_MODULE;
2011 st->gc.label = AD4130_NAME;
2012 st->gc.base = -1;
2013 st->gc.ngpio = AD4130_MAX_GPIOS;
2014 st->gc.parent = dev;
2015 st->gc.can_sleep = true;
2016 st->gc.init_valid_mask = ad4130_gpio_init_valid_mask;
2017 st->gc.get_direction = ad4130_gpio_get_direction;
2018 st->gc.set = ad4130_gpio_set;
2020 ret = devm_gpiochip_add_data(dev, &st->gc, st);
2021 if (ret)
2022 return ret;
2024 ret = devm_iio_kfifo_buffer_setup_ext(dev, indio_dev,
2025 &ad4130_buffer_ops,
2026 ad4130_fifo_attributes);
2027 if (ret)
2028 return ret;
2030 ret = devm_request_threaded_irq(dev, spi->irq, NULL,
2031 ad4130_irq_handler, IRQF_ONESHOT,
2032 indio_dev->name, indio_dev);
2033 if (ret)
2034 return dev_err_probe(dev, ret, "Failed to request irq\n");
2037 * When the chip enters FIFO mode, IRQ polarity is inverted.
2038 * When the chip exits FIFO mode, IRQ polarity returns to normal.
2039 * See datasheet pages: 65, FIFO Watermark Interrupt section,
2040 * and 71, Bit Descriptions for STATUS Register, RDYB.
2041 * Cache the normal and inverted IRQ triggers to set them when
2042 * entering and exiting FIFO mode.
2044 st->irq_trigger = irq_get_trigger_type(spi->irq);
2045 if (st->irq_trigger & IRQF_TRIGGER_RISING)
2046 st->inv_irq_trigger = IRQF_TRIGGER_FALLING;
2047 else if (st->irq_trigger & IRQF_TRIGGER_FALLING)
2048 st->inv_irq_trigger = IRQF_TRIGGER_RISING;
2049 else
2050 return dev_err_probe(dev, -EINVAL, "Invalid irq flags: %u\n",
2051 st->irq_trigger);
2053 return devm_iio_device_register(dev, indio_dev);
2056 static const struct of_device_id ad4130_of_match[] = {
2058 .compatible = "adi,ad4130",
2062 MODULE_DEVICE_TABLE(of, ad4130_of_match);
2064 static struct spi_driver ad4130_driver = {
2065 .driver = {
2066 .name = AD4130_NAME,
2067 .of_match_table = ad4130_of_match,
2069 .probe = ad4130_probe,
2071 module_spi_driver(ad4130_driver);
2073 MODULE_AUTHOR("Cosmin Tanislav <cosmin.tanislav@analog.com>");
2074 MODULE_DESCRIPTION("Analog Devices AD4130 SPI driver");
2075 MODULE_LICENSE("GPL");