From patchwork Thu May 25 21:16:55 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Valentin X-Patchwork-Id: 686332 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4059AC7EE2C for ; Thu, 25 May 2023 21:17:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240328AbjEYVRU (ORCPT ); Thu, 25 May 2023 17:17:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60298 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236434AbjEYVRT (ORCPT ); Thu, 25 May 2023 17:17:19 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8327AA7; Thu, 25 May 2023 14:17:18 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 11BCC64B30; Thu, 25 May 2023 21:17:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 31806C433D2; Thu, 25 May 2023 21:17:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1685049437; bh=vEe5IMrxvZ6zjp9aBXSVRXJpxdUpiaH0SmaBoWt1Nqw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=OOYzQrWxDyfJoP/3gDvkOTQNTcpl0mwqfLpe6KQap1/xPJQeBfJUO7RYyGvzhmOuc sPgFSRVBY8DV4AVO1YTcpbX0qw3yi5Js+zc/+dZaGt4wV37xEIipDxHW06FlMFjuJS vhwWXp7UusKlHg90Qnuj1QarpO195cnncgjbU6BeqloOqBAoQV2p2+pCfuYxEZ4DfS wuG4o0VNtGWIVVCvYlVEABI3tHoB6YJIm6aqZlu77Zk+HmElPGWrUGTaOsPEwe2T7i DhLUlRD2XTYi++pHyS0dkxF9zfYKKk60w69dvm63WpZqEam/N/P0avkG7br2V5agBS wHmG0E80/2V2Q== From: Eduardo Valentin To: daniel.lezcano@linaro.org, rafael@kernel.org, linux-pm@vger.kernel.org Cc: Eduardo Valentin , Amit Kucheria , Zhang Rui , Jonathan Corbet , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 3/3] thermal: core: register a crash callback Date: Thu, 25 May 2023 14:16:55 -0700 Message-Id: <20230525211655.627415-4-evalenti@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230525211655.627415-1-evalenti@kernel.org> References: <20230525211655.627415-1-evalenti@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org From: Eduardo Valentin This commit will register a crash callback for the thermal subsystem, this way the thermal core can tear down the thermal zones and ask governors to leave the hardware in a known safe state prior upon the event of a crash. Cc: "Rafael J. Wysocki" (supporter:THERMAL) Cc: Daniel Lezcano (supporter:THERMAL) Cc: Amit Kucheria (reviewer:THERMAL) Cc: Zhang Rui (reviewer:THERMAL) Cc: Jonathan Corbet (maintainer:DOCUMENTATION) Cc: linux-pm@vger.kernel.org (open list:THERMAL) Cc: linux-doc@vger.kernel.org (open list:DOCUMENTATION) Cc: linux-kernel@vger.kernel.org (open list) Signed-off-by: Eduardo Valentin --- drivers/thermal/thermal_core.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c index 66a255fb650b..38b168b9245e 100644 --- a/drivers/thermal/thermal_core.c +++ b/drivers/thermal/thermal_core.c @@ -20,6 +20,7 @@ #include #include #include +#include #define CREATE_TRACE_POINTS #include "thermal_trace.h" @@ -1525,6 +1526,14 @@ static void thermal_reboot_prepare(void) } } +static int thermal_crash_notify(struct notifier_block *nb, + unsigned long mode, void *_unused) +{ + thermal_reboot_prepare(); + + return 0; +} + static int thermal_reboot_notify(struct notifier_block *nb, unsigned long mode, void *_unused) { @@ -1569,6 +1578,10 @@ static struct notifier_block thermal_pm_nb = { .notifier_call = thermal_pm_notify, }; +static struct notifier_block thermal_crash_nb = { + .notifier_call = thermal_crash_notify, +}; + static struct notifier_block thermal_reboot_nb = { .notifier_call = thermal_reboot_notify, }; @@ -1611,6 +1624,8 @@ static int __init thermal_init(void) pr_warn("Thermal: Can not register reboot notifier, return %d\n", result); + atomic_notifier_chain_register(&panic_notifier_list, + &thermal_crash_nb); return 0; unregister_governors: