From mboxrd@z Thu Jan 1 00:00:00 1970 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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id A9717C43334 for ; Wed, 22 Jun 2022 15:44:05 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 3D5AE83E9F; Wed, 22 Jun 2022 17:44:03 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=pschenker.ch Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (1024-bit key; unprotected) header.d=pschenker.ch header.i=@pschenker.ch header.b="IPm5f/gj"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id E798783EF9; Wed, 22 Jun 2022 17:44:00 +0200 (CEST) Received: from smtp-190a.mail.infomaniak.ch (smtp-190a.mail.infomaniak.ch [IPv6:2001:1600:4:17::190a]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id B06CE83DB8 for ; Wed, 22 Jun 2022 17:43:57 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=pschenker.ch Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=dev@pschenker.ch Received: from smtp-3-0001.mail.infomaniak.ch (unknown [10.4.36.108]) by smtp-3-3000.mail.infomaniak.ch (Postfix) with ESMTPS id 4LSnjn2HX6zMqlps; Wed, 22 Jun 2022 17:43:57 +0200 (CEST) Received: from philippe-pc.toradex.int (unknown [31.10.206.125]) by smtp-3-0001.mail.infomaniak.ch (Postfix) with ESMTPA id 4LSnjm6SNMzln2Fq; Wed, 22 Jun 2022 17:43:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=pschenker.ch; s=20220412; t=1655912637; bh=W3nZixMnc4+yX4LhQuQxp3xjZNH3OvciOKWnytkXdak=; h=From:To:Cc:Subject:Date:From; b=IPm5f/gjUdGRQ0bYzRH+PV9NCR03xlJQaL2GfDxbRrPWigRWMV6zhOo/8G/JiZTCC ak390c5/6Ec4blh3n8owIaVxDedhxb+ddBNB8XsdCPzlpWOW++NzUk/Fa5Urc7pqU8 rIZiKsJ3Esm1dUx0GLoDvuP3gG1gktL5GeuTBIxk= From: Philippe Schenker To: u-boot@lists.denx.de, sbabic@denx.de Cc: Philippe Schenker , Francesco Dolcini , Fabio Estevam , Marcel Ziswiler , "NXP i.MX U-Boot Team" , Tom Rini Subject: [PATCH] arm: dts: imx8m{m,p}-verdin: use IT temperatures Date: Wed, 22 Jun 2022 17:43:31 +0200 Message-Id: <20220622154331.445429-1-dev@pschenker.ch> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean From: Philippe Schenker Use IT temperature threshold for critical/passive trip point on Verdin iMX8M Plus and Mini. Signed-off-by: Philippe Schenker Reviewed-by: Francesco Dolcini --- arch/arm/dts/imx8mm-verdin.dts | 8 ++++++++ arch/arm/dts/imx8mp-verdin.dts | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/arch/arm/dts/imx8mm-verdin.dts b/arch/arm/dts/imx8mm-verdin.dts index a2331627d7..bc6f0bfec8 100644 --- a/arch/arm/dts/imx8mm-verdin.dts +++ b/arch/arm/dts/imx8mm-verdin.dts @@ -101,6 +101,14 @@ assigned-clock-rates = <786432000>, <722534400>; }; +&cpu_alert0 { + temperature = <95000>; +}; + +&cpu_crit0 { + temperature = <105000>; +}; + /* Verdin SPI_1 */ &ecspi2 { #address-cells = <1>; diff --git a/arch/arm/dts/imx8mp-verdin.dts b/arch/arm/dts/imx8mp-verdin.dts index bc8bf4dad5..b9c6b924e4 100644 --- a/arch/arm/dts/imx8mp-verdin.dts +++ b/arch/arm/dts/imx8mp-verdin.dts @@ -52,6 +52,14 @@ }; }; +&cpu_alert0 { + temperature = <95000>; +}; + +&cpu_crit0 { + temperature = <105000>; +}; + &eqos { phy-handle = <ðphy0>; phy-mode = "rgmii-id"; -- 2.36.1