From: "Herve Codina (Schneider Electric)" <herve.codina@bootlin.com>
To: "Wolfram Sang" <wsa+renesas@sang-engineering.com>,
"Herve Codina" <herve.codina@bootlin.com>,
"Jonathan Cameron" <jic23@kernel.org>,
"David Lechner" <dlechner@baylibre.com>,
"Nuno Sá" <nuno.sa@analog.com>,
"Andy Shevchenko" <andy@kernel.org>,
"Rob Herring" <robh@kernel.org>,
"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
"Conor Dooley" <conor+dt@kernel.org>,
"Geert Uytterhoeven" <geert+renesas@glider.be>,
"Magnus Damm" <magnus.damm@gmail.com>,
"Liam Girdwood" <lgirdwood@gmail.com>,
"Mark Brown" <broonie@kernel.org>
Cc: linux-iio@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
Pascal Eberhard <pascal.eberhard@se.com>,
Miquel Raynal <miquel.raynal@bootlin.com>,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Subject: [PATCH v3 0/4] Add support for the Renesas RZ/N1 ADC
Date: Mon, 3 Nov 2025 15:18:30 +0100 [thread overview]
Message-ID: <20251103141834.71677-1-herve.codina@bootlin.com> (raw)
Hi,
The Renesas RZ/N1 ADC controller is the ADC controller available in the
Renesas RZ/N1 SoCs family.
It can use up to two internal ADC cores (ADC1 and ADC2) those internal
cores are handled through ADC controller virtual channels.
Best regards,
Herve Codina
Changes v2 -> v3:
v2: https://lore.kernel.org/lkml/20251029144644.667561-1-herve.codina@bootlin.com/
Patch 1:
- Add 'Reviewed-by: Rob Herring'.
Patch 2:
- Add missing header files.
- Use fixed-width values for register definitions.
- Split comments and remove a redundant 'else'.
- Return the error in the 'switch case' default statement.
- Leave a trailing comma in struct iio_info.
- Move *_vref_mv to *_vref_mV.
- Split the DEFINE_RUNTIME_DEV_PM_OPS().
- Update error code handling in rzn1_adc_core_get_regulators().
- Pass rzn1_adc in platform_set_drvdata(), update suspend/resume
function accordingly.
- Add 'Reviewed-by: Nuno Sá'
Patches 3 and 4:
No change.
Changes v1 -> v2:
v1: https://lore.kernel.org/lkml/20251015142816.1274605-1-herve.codina@bootlin.com/
Rebase on top of v6.18-rc3 to have commit db82b8dbf5f0 ("PM: runtime:
Fix conditional guard definitions")
Patch 1:
- Remove unneeded 'dependencies' part.
- Rename "adc-clk" clock to "adc".
- Move 'additionalProperties: false' just before the example.
- Use const instead of enum for the "renesas,r9a06g032-adc"
compatible string.
- Fix the ACD typo.
Patch 2:
- Fix the ACD typo.
- Rename "adc-clk" clock to "adc".
- Update included headers and sort them.
- Align register definitions at the same column.
- Inline the FIELD_GET() instead of having macros.
- Introduce RZN1_ADC_NO_CHANNEL
- Get Vref voltage value at probe().
- Remove the bitmap in rzn1_adc_set_iio_dev_channels().
- Use dev_err_probe() in rzn1_adc_set_iio_dev_channels().
- Use auto-cleanup variant for PM runtime "resume and get".
- Use scoped_guard() for mutex.
- Use devm_mutex_init().
- Use the fixed "rzn1-adc" string for indio_dev->name.
- Use DEFINE_RUNTIME_DEV_PM_OPS().
- Fix rzn1_adc_of_match table and remove of_match_ptr().
- Add a comment related to decoupling between IIO chans and ADC1 or
ADC2 core chans
- Update and add several comments related to ADC core usage and the
relationship with ADC core regulator presence.
- Remove clocks and regulators handling from PM runtime
suspend()/remove().
- Simplify the driver removing the no more relevant struct
rzn1_adc_core.
Patch 3:
- Rename "adc-clk" clock to "adc".
- Add 'Reviewed-by: Wolfram Sang'
Patch 4
- Removed the linux-iio list
Herve Codina (Schneider Electric) (4):
dt-bindings: iio: adc: Add the Renesas RZ/N1 ADC
iio: adc: Add support for the Renesas RZ/N1 ADC
ARM: dts: renesas: r9a06g032: Add the ADC device
MAINTAINERS: Add the Renesas RZ/N1 ADC driver entry
.../bindings/iio/adc/renesas,rzn1-adc.yaml | 111 ++++
MAINTAINERS | 7 +
arch/arm/boot/dts/renesas/r9a06g032.dtsi | 10 +
drivers/iio/adc/Kconfig | 10 +
drivers/iio/adc/Makefile | 1 +
drivers/iio/adc/rzn1-adc.c | 490 ++++++++++++++++++
6 files changed, 629 insertions(+)
create mode 100644 Documentation/devicetree/bindings/iio/adc/renesas,rzn1-adc.yaml
create mode 100644 drivers/iio/adc/rzn1-adc.c
--
2.51.0
next reply other threads:[~2025-11-03 14:19 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-03 14:18 Herve Codina (Schneider Electric) [this message]
2025-11-03 14:18 ` [PATCH v3 1/4] dt-bindings: iio: adc: Add the Renesas RZ/N1 ADC Herve Codina (Schneider Electric)
2025-11-03 14:18 ` [PATCH v3 2/4] iio: adc: Add support for " Herve Codina (Schneider Electric)
2025-11-03 14:51 ` Andy Shevchenko
2025-11-03 14:18 ` [PATCH v3 3/4] ARM: dts: renesas: r9a06g032: Add the ADC device Herve Codina (Schneider Electric)
2025-11-10 16:32 ` Geert Uytterhoeven
2025-11-03 14:18 ` [PATCH v3 4/4] MAINTAINERS: Add the Renesas RZ/N1 ADC driver entry Herve Codina (Schneider Electric)
2025-11-09 15:08 ` [PATCH v3 0/4] Add support for the Renesas RZ/N1 ADC Jonathan Cameron
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=20251103141834.71677-1-herve.codina@bootlin.com \
--to=herve.codina@bootlin.com \
--cc=andy@kernel.org \
--cc=broonie@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dlechner@baylibre.com \
--cc=geert+renesas@glider.be \
--cc=jic23@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=magnus.damm@gmail.com \
--cc=miquel.raynal@bootlin.com \
--cc=nuno.sa@analog.com \
--cc=pascal.eberhard@se.com \
--cc=robh@kernel.org \
--cc=thomas.petazzoni@bootlin.com \
--cc=wsa+renesas@sang-engineering.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;
as well as URLs for NNTP newsgroup(s).