Skip to content

Commit 19d3a40

Browse files
John Madieudlezcano
authored andcommitted
thermal/drivers/renesas/rzg3e: Add thermal driver for the Renesas RZ/G3E SoC
The RZ/G3E SoC integrates a Temperature Sensor Unit (TSU) block designed to monitor the chip's junction temperature. This sensor is connected to channel 1 of the APB port clock/reset and provides temperature measurements. It also requires calibration values stored in the system controller registers for accurate temperature measurement. Add a driver for the Renesas RZ/G3E TSU. [ dlezcano: Fixed conflict with "renesas: Add support for RZ/G3S" ] Signed-off-by: John Madieu <john.madieu.xa@bp.renesas.com> Reviewed-by: Biju Das <biju.das.jz@bp.renesas.com> Link: https://lore.kernel.org/r/20250917170202.197929-3-john.madieu.xa@bp.renesas.com Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
1 parent caf41eb commit 19d3a40

3 files changed

Lines changed: 16 additions & 0 deletions

File tree

MAINTAINERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21548,6 +21548,13 @@ S: Maintained
2154821548
F: Documentation/devicetree/bindings/thermal/renesas,r9a08g045-tsu.yaml
2154921549
F: drivers/thermal/renesas/rzg3s_thermal.c
2155021550

21551+
RENESAS RZ/G3E THERMAL SENSOR UNIT DRIVER
21552+
M: John Madieu <john.madieu.xa@bp.renesas.com>
21553+
L: linux-pm@vger.kernel.org
21554+
S: Maintained
21555+
F: Documentation/devicetree/bindings/thermal/renesas,r9a09g047-tsu.yaml
21556+
F: drivers/thermal/renesas/rzg3e_thermal.c
21557+
2155121558
RESET CONTROLLER FRAMEWORK
2155221559
M: Philipp Zabel <p.zabel@pengutronix.de>
2155321560
S: Maintained

drivers/thermal/renesas/Kconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,10 @@ config RZG3S_THERMAL
3434
help
3535
Enable this to plug the RZ/G3S thermal sensor driver into the Linux
3636
thermal framework.
37+
38+
config RZG3E_THERMAL
39+
tristate "Renesas RZ/G3E thermal driver"
40+
depends on ARCH_RENESAS || COMPILE_TEST
41+
help
42+
Enable this to plug the RZ/G3E thermal sensor driver into the Linux
43+
thermal framework.

drivers/thermal/renesas/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@
33
obj-$(CONFIG_RCAR_GEN3_THERMAL) += rcar_gen3_thermal.o
44
obj-$(CONFIG_RCAR_THERMAL) += rcar_thermal.o
55
obj-$(CONFIG_RZG2L_THERMAL) += rzg2l_thermal.o
6+
obj-$(CONFIG_RZG3E_THERMAL) += rzg3e_thermal.o
67
obj-$(CONFIG_RZG3S_THERMAL) += rzg3s_thermal.o
8+

0 commit comments

Comments
 (0)