linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/6] Add support for AD411x
@ 2024-04-01 15:32 Dumitru Ceclan via B4 Relay
  2024-04-01 15:32 ` [PATCH 1/6] dt-bindings: adc: ad7173: add support for ad411x Dumitru Ceclan via B4 Relay
                   ` (5 more replies)
  0 siblings, 6 replies; 51+ messages in thread
From: Dumitru Ceclan via B4 Relay @ 2024-04-01 15:32 UTC (permalink / raw)
  To: Ceclan Dumitru
  Cc: Lars-Peter Clausen, Michael Hennerich, Jonathan Cameron,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, David Lechner,
	linux-iio, devicetree, linux-kernel, Dumitru Ceclan

This patch series adds support for the Analog Devices AD4111, AD4112,
 AD4114, AD4115, AD4116 within the existing AD7173 driver.

  The AD411X family encompasses a series of low power, low noise, 24-bit,
sigma-delta analog-to-digital converters that offer a versatile range of
specifications. They integrate an analog front end suitable for processing
fully differential/single-ended and bipolar voltage inputs.

- All ADCs have inputs with a precision voltage divider with a division
ratio of 10.
- AD4116 has 5 low level inputs without a voltage divider.
- AD4111 and AD4112 support current inputs (0 mA to 20 mA) using a 50ohm
shunt resistor.

Datasheets:
https://www.analog.com/media/en/technical-documentation/data-sheets/AD4111.pdf
https://www.analog.com/media/en/technical-documentation/data-sheets/AD4112.pdf
https://www.analog.com/media/en/technical-documentation/data-sheets/AD4114.pdf
https://www.analog.com/media/en/technical-documentation/data-sheets/AD4115.pdf
https://www.analog.com/media/en/technical-documentation/data-sheets/AD4116.pdf

This series depends on patch:
(iio: adc: ad7173: Use device_for_each_child_node_scoped() to simplify error paths.)
https://lore.kernel.org/all/20240330190849.1321065-6-jic23@kernel.org

Signed-off-by: Dumitru Ceclan <mitrutzceclan@gmail.com>
---
Dumitru Ceclan (6):
      dt-bindings: adc: ad7173: add support for ad411x
      iio: adc: ad7173: fix buffers enablement for ad7176-2
      iio: adc: ad7173: refactor channel configuration parsing
      iio: adc: ad7173: refactor ain and vref selection
      iio: adc: ad7173: Remove index from temp channel
      iio: adc: ad7173: Add support for AD411x devices

 .../devicetree/bindings/iio/adc/adi,ad7173.yaml    |  59 +++-
 drivers/iio/adc/ad7173.c                           | 318 ++++++++++++++++++---
 2 files changed, 331 insertions(+), 46 deletions(-)
---
base-commit: 5ab61121a34759eb2418977f0b3589b7edc57776
change-id: 20240312-ad4111-7eeb34eb4a5f

Best regards,
-- 
Dumitru Ceclan <dumitru.ceclan@analog.com>



^ permalink raw reply	[flat|nested] 51+ messages in thread

end of thread, other threads:[~2024-05-16  8:18 UTC | newest]

Thread overview: 51+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-01 15:32 [PATCH 0/6] Add support for AD411x Dumitru Ceclan via B4 Relay
2024-04-01 15:32 ` [PATCH 1/6] dt-bindings: adc: ad7173: add support for ad411x Dumitru Ceclan via B4 Relay
2024-04-01 19:37   ` David Lechner
2024-04-01 20:22     ` David Lechner
2024-04-03  7:45       ` Ceclan, Dumitru
2024-04-03 10:08         ` Ceclan, Dumitru
2024-04-03 15:14           ` David Lechner
2024-04-01 21:16     ` David Lechner
2024-04-03  7:50       ` Ceclan, Dumitru
2024-04-03 15:22         ` David Lechner
2024-04-04 13:08           ` Ceclan, Dumitru
2024-04-06 14:26             ` Jonathan Cameron
2024-04-09  8:10               ` Ceclan, Dumitru
2024-04-03  7:43     ` Ceclan, Dumitru
2024-04-03 15:40       ` David Lechner
2024-04-06 14:53         ` Jonathan Cameron
2024-04-09  8:08           ` Ceclan, Dumitru
2024-04-13 10:49             ` Jonathan Cameron
2024-04-15 18:42               ` Ceclan, Dumitru
2024-04-20 14:33                 ` Jonathan Cameron
2024-04-23  8:18                   ` Ceclan, Dumitru
2024-04-28 17:13                     ` Jonathan Cameron
2024-05-09 13:48                       ` Ceclan, Dumitru
2024-05-15 21:42                   ` David Lechner
2024-05-16  8:18                     ` Ceclan, Dumitru
2024-04-01 15:32 ` [PATCH 2/6] iio: adc: ad7173: fix buffers enablement for ad7176-2 Dumitru Ceclan via B4 Relay
2024-04-01 19:38   ` David Lechner
2024-04-06 14:56   ` Jonathan Cameron
2024-04-08 16:40     ` Ceclan, Dumitru
2024-04-13 10:50       ` Jonathan Cameron
2024-04-01 15:32 ` [PATCH 3/6] iio: adc: ad7173: refactor channel configuration parsing Dumitru Ceclan via B4 Relay
2024-04-01 19:39   ` David Lechner
2024-04-03 10:01     ` Ceclan, Dumitru
2024-04-03 15:55       ` David Lechner
2024-04-01 15:32 ` [PATCH 4/6] iio: adc: ad7173: refactor ain and vref selection Dumitru Ceclan via B4 Relay
2024-04-01 19:40   ` David Lechner
2024-04-03 10:03     ` Ceclan, Dumitru
2024-04-03 16:02       ` David Lechner
2024-04-06 15:03   ` Jonathan Cameron
2024-04-01 15:32 ` [PATCH 5/6] iio: adc: ad7173: Remove index from temp channel Dumitru Ceclan via B4 Relay
2024-04-01 19:40   ` David Lechner
2024-04-01 15:32 ` [PATCH 6/6] iio: adc: ad7173: Add support for AD411x devices Dumitru Ceclan via B4 Relay
2024-04-01 19:45   ` David Lechner
2024-04-02 14:00     ` David Lechner
2024-04-03  9:55       ` Ceclan, Dumitru
2024-04-03  9:53     ` Ceclan, Dumitru
2024-04-03 16:37       ` David Lechner
2024-04-06 15:10         ` Jonathan Cameron
2024-05-14  7:28     ` Ceclan, Dumitru
2024-04-01 21:53   ` David Lechner
2024-04-03  8:15     ` Ceclan, Dumitru

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).