public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH 0/5] iio: adc: Add initial support for TI ADS1262
@ 2025-05-01 10:00 Sayyad Abid
  2025-05-01 10:00 ` [RFC PATCH 1/5] iio: adc: ti-ads1262.c: add initial driver for TI ADS1262 ADC Sayyad Abid
                   ` (6 more replies)
  0 siblings, 7 replies; 18+ messages in thread
From: Sayyad Abid @ 2025-05-01 10:00 UTC (permalink / raw)
  To: linux-iio
  Cc: sayyad.abid16, jic23, lars, robh, krzk+dt, conor+dt, dlechner,
	nuno.sa, javier.carrasco.cruz, olivier.moysan, gstols, tgamblin,
	alisadariana, eblanc, antoniu.miclaus, andriy.shevchenko,
	stefan.popa, ramona.gradinariu, herve.codina, tobias.sperling,
	devicetree, linux-kernel

The ADS1262 is a 32-bit, high-resolution delta-sigma ADC communicating
over SPI. It's designed for precision measurements.

This initial driver provides the basic functionality needed to:
 - Probe and register the device via SPI.
 - Expose standard IIO channels for reading raw voltage samples.

Basic testing was performed on a Raspberry Pi Zero 2W using the hardware
SPI0 interface. The connections used were:

+-----------------+            +-----------------+
| RPi Zero 2W     |            | TI ADS1262      |
| (SPI0 Pins)     |            |                 |
|-----------------|            |-----------------|
| MOSI            |----------->| DIN             |
| MISO            |<-----------| DOUT/DRDY       |
| SCLK            |----------->| SCLK            |
| CE0             |----------->| /CS             |
| 5V              |----------->| DVDD, AVDD      |
| GND             |----------->| DGND, AGND      |
+-----------------+            +-----------------+

I would greatly appreciate any feedback on the driver structure,
IIO integration, SPI communication handling, or any potential issues
or areas for improvement you might spot.

This series is broken down as follows:
 Patch 1: Adds the core driver code (ti-ads1262.c).
 Patch 2: Adds the Kconfig option.
 Patch 3: Adds the Makefile entry for compilation.
 Patch 4: Adds the MAINTAINERS entry.

Thanks for your time and consideration.

Sayyad Abid (5):
  iio: adc: ti-ads1262.c: add initial driver for TI ADS1262 ADC
  iio: adc: Kconfig: add Kconfig entry for TI ADS1262 driver
  iio: adc: Makefile: add compile support for TI ADS1262 driver
  MAINTAINERS: add entry for TI ADS1262 ADC driver
  dt-bindings: iio: adc: add bindings for TI ADS1262

 .../bindings/iio/adc/ti,ads1262.yaml          | 189 ++++++++
 MAINTAINERS                                   |   7 +
 drivers/iio/adc/Kconfig                       |  12 +
 drivers/iio/adc/Makefile                      |   1 +
 drivers/iio/adc/ti-ads1262.c                  | 438 ++++++++++++++++++
 5 files changed, 647 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/iio/adc/ti,ads1262.yaml
 create mode 100644 drivers/iio/adc/ti-ads1262.c

--
2.39.5


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

end of thread, other threads:[~2025-05-04 16:20 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-01 10:00 [RFC PATCH 0/5] iio: adc: Add initial support for TI ADS1262 Sayyad Abid
2025-05-01 10:00 ` [RFC PATCH 1/5] iio: adc: ti-ads1262.c: add initial driver for TI ADS1262 ADC Sayyad Abid
2025-05-01 17:37   ` David Lechner
2025-05-02 10:07     ` Andy Shevchenko
2025-05-04 16:20   ` Jonathan Cameron
2025-05-01 10:00 ` [RFC PATCH 2/5] iio: adc: Kconfig: add Kconfig entry for TI ADS1262 driver Sayyad Abid
2025-05-01 17:37   ` David Lechner
2025-05-04 15:55     ` Jonathan Cameron
2025-05-01 10:00 ` [RFC PATCH 3/5] iio: adc: Makefile: add compile support " Sayyad Abid
2025-05-01 10:00 ` [RFC PATCH 4/5] MAINTAINERS: add entry for TI ADS1262 ADC driver Sayyad Abid
2025-05-04 16:02   ` Jonathan Cameron
2025-05-01 10:00 ` [RFC PATCH 5/5] dt-bindings: iio: adc: add bindings for TI ADS1262 Sayyad Abid
2025-05-01 14:51   ` Conor Dooley
2025-05-01 17:37   ` David Lechner
2025-05-04 16:01   ` Jonathan Cameron
2025-05-01 18:20 ` [RFC PATCH 0/5] iio: adc: Add initial support " David Lechner
2025-05-02  9:52   ` Andy Shevchenko
2025-05-04 16:20 ` Jonathan Cameron

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox