[PATCH v2 5/5] thermal: intel: Add a syscore shutdown callback for kexec reboot

From: Ricardo Neri

Date: Thu May 28 2026 - 11:26:10 EST


A kexec reboot may load a kernel that does not support directed package-
level thermal interrupts. Without a shutdown callback, the directed
interrupt configuration remains enabled across kexec but will not be
handled correctly. In particular, if the CPU designated to receive the
directed interrupt goes offline, no other CPU in the package will receive
it.

Add a syscore shutdown callback to disable directed package-level thermal
interrupts on all packages before a kexec reboot. If the post-kexec kernel
does not enable directed interrupts, it falls back to broadcasting the
interrupt to all CPUs.

Signed-off-by: Ricardo Neri <ricardo.neri-calderon@xxxxxxxxxxxxxxx>
---
Changes in v2:
* Used the disable_all_directed_thermal_pkg_intr() function introduced
in patch 3.
---
drivers/thermal/intel/therm_throt.c | 6 ++++++
1 file changed, 6 insertions(+)

diff --git a/drivers/thermal/intel/therm_throt.c b/drivers/thermal/intel/therm_throt.c
index d4ea795e3c3b..14ac3c892f2f 100644
--- a/drivers/thermal/intel/therm_throt.c
+++ b/drivers/thermal/intel/therm_throt.c
@@ -796,9 +796,15 @@ static int directed_pkg_intr_syscore_suspend(void *data)
return 0;
}

+static void directed_pkg_intr_syscore_shutdown(void *data)
+{
+ disable_all_directed_thermal_pkg_intr();
+}
+
static const struct syscore_ops directed_pkg_intr_pm_ops = {
.resume = directed_pkg_intr_syscore_resume,
.suspend = directed_pkg_intr_syscore_suspend,
+ .shutdown = directed_pkg_intr_syscore_shutdown,
};

static struct syscore directed_pkg_intr_pm = {

--
2.43.0