Message ID | bd5b002a802c1e058e0048592f17862db1d04263.1709722342.git.geert+renesas@glider.be (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Geert Uytterhoeven |
Headers | show |
Series | thermal/drivers/rcar_gen3: Add support for R-Car V4M | expand |
Hello Geert, Thanks for your patch. On 2024-03-06 11:56:03 +0100, Geert Uytterhoeven wrote: > Add support for the Thermal Sensor/Chip Internal Voltage Monitor/Core > Voltage Monitor (THS/CIVM/CVM) on the Renesas R-Car V4M (R8A779H0) SoC. > > The conversion formulas for R-Car V4M are the same as for other R-Car > Gen4 SoCs. > > Based on a patch in the BSP by Duy Nguyen. > > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> > --- > Changes compared to the BSP: > - Use existing rcar_gen4_thermal_info instead of new data_v4m. > --- > drivers/thermal/rcar_gen3_thermal.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/drivers/thermal/rcar_gen3_thermal.c b/drivers/thermal/rcar_gen3_thermal.c > index cafcb6d6e235be44..a764cb1115a57562 100644 > --- a/drivers/thermal/rcar_gen3_thermal.c > +++ b/drivers/thermal/rcar_gen3_thermal.c > @@ -428,6 +428,10 @@ static const struct of_device_id rcar_gen3_thermal_dt_ids[] = { > .compatible = "renesas,r8a779g0-thermal", > .data = &rcar_gen4_thermal_info, > }, > + { > + .compatible = "renesas,r8a779h0-thermal", > + .data = &rcar_gen4_thermal_info, > + }, > {}, > }; > MODULE_DEVICE_TABLE(of, rcar_gen3_thermal_dt_ids); > -- > 2.34.1 >
diff --git a/drivers/thermal/rcar_gen3_thermal.c b/drivers/thermal/rcar_gen3_thermal.c index cafcb6d6e235be44..a764cb1115a57562 100644 --- a/drivers/thermal/rcar_gen3_thermal.c +++ b/drivers/thermal/rcar_gen3_thermal.c @@ -428,6 +428,10 @@ static const struct of_device_id rcar_gen3_thermal_dt_ids[] = { .compatible = "renesas,r8a779g0-thermal", .data = &rcar_gen4_thermal_info, }, + { + .compatible = "renesas,r8a779h0-thermal", + .data = &rcar_gen4_thermal_info, + }, {}, }; MODULE_DEVICE_TABLE(of, rcar_gen3_thermal_dt_ids);
Add support for the Thermal Sensor/Chip Internal Voltage Monitor/Core Voltage Monitor (THS/CIVM/CVM) on the Renesas R-Car V4M (R8A779H0) SoC. The conversion formulas for R-Car V4M are the same as for other R-Car Gen4 SoCs. Based on a patch in the BSP by Duy Nguyen. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> --- Changes compared to the BSP: - Use existing rcar_gen4_thermal_info instead of new data_v4m. --- drivers/thermal/rcar_gen3_thermal.c | 4 ++++ 1 file changed, 4 insertions(+)