This is a note to let you know that I've just added the patch titled thermal/intel/intel_soc_dts_iosf: Fix reporting wrong temperatures to the 6.3-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: thermal-intel-intel_soc_dts_iosf-fix-reporting-wrong-temperatures.patch and it can be found in the queue-6.3 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 0bb619f9227aa370330d2b309733d74750705053 Mon Sep 17 00:00:00 2001 From: Hans de Goede <hdegoede@xxxxxxxxxx> Date: Wed, 14 Jun 2023 12:07:56 +0200 Subject: thermal/intel/intel_soc_dts_iosf: Fix reporting wrong temperatures From: Hans de Goede <hdegoede@xxxxxxxxxx> commit 0bb619f9227aa370330d2b309733d74750705053 upstream. Since commit 955fb8719efb ("thermal/intel/intel_soc_dts_iosf: Use Intel TCC library") intel_soc_dts_iosf is reporting the wrong temperature. The driver expects tj_max to be in milli-degrees-celcius but after the switch to the TCC library this is now in degrees celcius so instead of e.g. 90000 it is set to 90 causing a temperature 45 degrees below tj_max to be reported as -44910 milli-degrees instead of as 45000 milli-degrees. Fix this by adding back the lost factor of 1000. Fixes: 955fb8719efb ("thermal/intel/intel_soc_dts_iosf: Use Intel TCC library") Reported-by: Bernhard Krug <b.krug@xxxxxxxxxxxxxxxxxx> Signed-off-by: Hans de Goede <hdegoede@xxxxxxxxxx> Acked-by: Zhang Rui <rui.zhang@xxxxxxxxx> Cc: 6.3+ <stable@xxxxxxxxxxxxxxx> # 6.3+ Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/thermal/intel/intel_soc_dts_iosf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/thermal/intel/intel_soc_dts_iosf.c +++ b/drivers/thermal/intel/intel_soc_dts_iosf.c @@ -401,7 +401,7 @@ struct intel_soc_dts_sensors *intel_soc_ spin_lock_init(&sensors->intr_notify_lock); mutex_init(&sensors->dts_update_lock); sensors->intr_type = intr_type; - sensors->tj_max = tj_max; + sensors->tj_max = tj_max * 1000; if (intr_type == INTEL_SOC_DTS_INTERRUPT_NONE) notification = false; else Patches currently in stable-queue which might be from hdegoede@xxxxxxxxxx are queue-6.3/thermal-intel-intel_soc_dts_iosf-fix-reporting-wrong-temperatures.patch