From: Jonathan Cameron <jic23@kernel.org>
To: Sayyad Abid <sayyad.abid16@gmail.com>
Cc: linux-iio@vger.kernel.org, lars@metafoo.de, robh@kernel.org,
krzk+dt@kernel.org, conor+dt@kernel.org, dlechner@baylibre.com,
nuno.sa@analog.com, javier.carrasco.cruz@gmail.com,
olivier.moysan@foss.st.com, gstols@baylibre.com,
tgamblin@baylibre.com, alisadariana@gmail.com,
eblanc@baylibre.com, antoniu.miclaus@analog.com,
andriy.shevchenko@linux.intel.com, stefan.popa@analog.com,
ramona.gradinariu@analog.com, herve.codina@bootlin.com,
tobias.sperling@softing.com, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [RFC PATCH 0/5] iio: adc: Add initial support for TI ADS1262
Date: Sun, 4 May 2025 17:20:34 +0100 [thread overview]
Message-ID: <20250504172034.2ab4936a@jic23-huawei> (raw)
In-Reply-To: <20250501100043.325423-1-sayyad.abid16@gmail.com>
On Thu, 1 May 2025 15:30:38 +0530
Sayyad Abid <sayyad.abid16@gmail.com> wrote:
> 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.
Hi Sayyad
As a general rule, an RFC is usually meant to contain a list of open
questions or some clear statement on why it is not ready for consideration
as a final driver submissions. Often that is something like some other
ongoing discussion that needs to conclude.
I'm not seeing such questions, so I'm guessing this was just a bit of
a lack of confidence? In general it looks pretty good so drop the RFC on
v2 :)
Jonathan
>
> 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
>
>
prev parent reply other threads:[~2025-05-04 16:20 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
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 message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250504172034.2ab4936a@jic23-huawei \
--to=jic23@kernel.org \
--cc=alisadariana@gmail.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=antoniu.miclaus@analog.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dlechner@baylibre.com \
--cc=eblanc@baylibre.com \
--cc=gstols@baylibre.com \
--cc=herve.codina@bootlin.com \
--cc=javier.carrasco.cruz@gmail.com \
--cc=krzk+dt@kernel.org \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nuno.sa@analog.com \
--cc=olivier.moysan@foss.st.com \
--cc=ramona.gradinariu@analog.com \
--cc=robh@kernel.org \
--cc=sayyad.abid16@gmail.com \
--cc=stefan.popa@analog.com \
--cc=tgamblin@baylibre.com \
--cc=tobias.sperling@softing.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox