From: John Madieu <john.madieu.xa@bp.renesas.com>
To: geert+renesas@glider.be, magnus.damm@gmail.com,
mturquette@baylibre.com, sboyd@kernel.org, rafael@kernel.org,
daniel.lezcano@linaro.org, rui.zhang@intel.com,
lukasz.luba@arm.com, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, p.zabel@pengutronix.de,
catalin.marinas@arm.com, will@kernel.org
Cc: john.madieu@gmail.com, linux-renesas-soc@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org,
devicetree@vger.kernel.org, biju.das.jz@bp.renesas.com,
linux-arm-kernel@lists.infradead.org,
John Madieu <john.madieu.xa@bp.renesas.com>
Subject: [PATCH v7 0/6] thermal: renesas: Add support for RZ/G3E
Date: Mon, 18 Aug 2025 18:28:46 +0200 [thread overview]
Message-ID: <20250818162859.9661-1-john.madieu.xa@bp.renesas.com> (raw)
This series adds support for the temperature sensor unit (TSU) found on the
Renesas RZ/G3E SoC.
The series consists of 5 patches (one of which is not related to the thermal
framework) that progressively add TSU support as follows:
- patch 1/6: adds syscon/regmap support for accessing system controller
registers, enabling access to TSU calibration values
- patch 2-6/6: adds dt-bindings, actual driver, DT node, and config symbol.
Patch 1/6 has been duplicated at [1] in USB series. This series addresses comments
got from there.
Changes:
v1 -> v2
* Fix yaml warnings from dt-binding
* Update IRQ names to reflect TSU expectations
v2 -> v3
* Remove useless 'renesas,tsu-operating-mode' property
v3 -> v4
* Improve commit messages
v4 -> v5
* Remove useless curly braces on single line-protected scoped guards
v5 -> v6
* Minor typo fix
* Constify regmap config in patch 1/5
v6 -> v7
* Update DTS trim priperty name and specifier, updading the documentation
accordingly
* Refactor main driver: remove spinlock usage, using polling timeout as computed
from datasheet. Also use polling for get_temp() while using IRQ for trip-point
cross detection, and finally add both runtime and sleep PM support.
* Add new patch to update sys #address-cells as trim specifier now requires an
offet from sys base
Regards,
[1] https://lore.kernel.org/all/20250808061806.2729274-2-claudiu.beznea.uj@bp.renesas.com/
John Madieu (6):
soc: renesas: rz-sysc: Add syscon/regmap support
dt-bindings: thermal: r9a09g047-tsu: Document the TSU unit
thermal: renesas: rzg3e: Add thermal driver for the Renesas RZ/G3E SoC
arm64: dts: renesas: r9a09g047: Add #address-cells property in sys
node
arm64: dts: renesas: r9a09g047: Add TSU node
arm64: defconfig: Enable the Renesas RZ/G3E thermal driver
.../thermal/renesas,r9a09g047-tsu.yaml | 87 +++
MAINTAINERS | 7 +
arch/arm64/boot/dts/renesas/r9a09g047.dtsi | 49 ++
arch/arm64/configs/defconfig | 1 +
drivers/soc/renesas/Kconfig | 1 +
drivers/soc/renesas/r9a08g045-sysc.c | 1 +
drivers/soc/renesas/r9a09g047-sys.c | 1 +
drivers/soc/renesas/r9a09g057-sys.c | 1 +
drivers/soc/renesas/rz-sysc.c | 28 +-
drivers/soc/renesas/rz-sysc.h | 2 +
drivers/thermal/renesas/Kconfig | 7 +
drivers/thermal/renesas/Makefile | 1 +
drivers/thermal/renesas/rzg3e_thermal.c | 575 ++++++++++++++++++
13 files changed, 760 insertions(+), 1 deletion(-)
create mode 100644 Documentation/devicetree/bindings/thermal/renesas,r9a09g047-tsu.yaml
create mode 100644 drivers/thermal/renesas/rzg3e_thermal.c
--
2.25.1
next reply other threads:[~2025-08-18 17:33 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-18 16:28 John Madieu [this message]
2025-08-18 16:28 ` [PATCH v7 1/6] soc: renesas: rz-sysc: Add syscon/regmap support John Madieu
2025-08-19 5:07 ` claudiu beznea
2025-08-19 7:54 ` Geert Uytterhoeven
2025-08-18 16:28 ` [PATCH v7 2/6] dt-bindings: thermal: r9a09g047-tsu: Document the TSU unit John Madieu
2025-08-21 0:05 ` Rob Herring
2025-08-18 16:28 ` [PATCH v7 3/6] thermal: renesas: rzg3e: Add thermal driver for the Renesas RZ/G3E SoC John Madieu
2025-08-19 7:49 ` Geert Uytterhoeven
2025-08-19 8:23 ` John Madieu
2025-08-18 16:28 ` [PATCH v7 4/6] arm64: dts: renesas: r9a09g047: Add #address-cells property in sys node John Madieu
2025-08-19 7:44 ` Geert Uytterhoeven
2025-08-19 8:25 ` John Madieu
2025-08-18 16:28 ` [PATCH v7 5/6] arm64: dts: renesas: r9a09g047: Add TSU node John Madieu
2025-08-18 16:28 ` [PATCH v7 6/6] arm64: defconfig: Enable the Renesas RZ/G3E thermal driver John Madieu
2025-08-18 18:24 ` [PATCH v7 0/6] thermal: renesas: Add support for RZ/G3E Rob Herring (Arm)
2025-08-19 8:49 ` John Madieu
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=20250818162859.9661-1-john.madieu.xa@bp.renesas.com \
--to=john.madieu.xa@bp.renesas.com \
--cc=biju.das.jz@bp.renesas.com \
--cc=catalin.marinas@arm.com \
--cc=conor+dt@kernel.org \
--cc=daniel.lezcano@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=geert+renesas@glider.be \
--cc=john.madieu@gmail.com \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=lukasz.luba@arm.com \
--cc=magnus.damm@gmail.com \
--cc=mturquette@baylibre.com \
--cc=p.zabel@pengutronix.de \
--cc=rafael@kernel.org \
--cc=robh@kernel.org \
--cc=rui.zhang@intel.com \
--cc=sboyd@kernel.org \
--cc=will@kernel.org \
/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).