From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 8AC111EE02F; Tue, 30 Sep 2025 15:02:34 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759244554; cv=none; b=RjM6/rP/613miWimEGyK46PVo0rVJt0nxgFoZ63A6os1mBQK0Bvm64Vpjuqqb8R8vOA5kH9jPKL7hOWQbjnzs2mhdDMrvIqmsSKVDT+MC0TKqbpXg1O77cn30grDby7H+IsVtlRWjvT4b0auq+1/arOvWOdNACNhksk2RKNRrmA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759244554; c=relaxed/simple; bh=FUIb0ZnXb4OFnHu/Ny0xlUsfJpupLpsvz3XY7G4VE8k=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=FS21y9AdsCd+Zwu1V4PDCaMl+R13LQZqmbZzjIc5O6ACJq8ByS0BYNKZAnWNN44xIuXEywCXhZokF9XH80TXHsq3PNoTSGxQDkPAPbB+C+yf2nnqbKAGjZENXGn3dAHxaRr/aoLzSEjAj9Vwcqr6UoZSTmpXYcys32Y2b8f60U0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=oMfxni5F; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="oMfxni5F" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E6DC5C4CEF0; Tue, 30 Sep 2025 15:02:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1759244554; bh=FUIb0ZnXb4OFnHu/Ny0xlUsfJpupLpsvz3XY7G4VE8k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=oMfxni5FfrztTpjdz0boGExlgmWNf50nltl1FaDnLdzdAe4vOAJLmYxJOz1/B/M1m PIrb1RCHI25qZf0VN0NuWJuzluFs+aFea1iTu17nRdrWmJTHMuY6xX/H/aP+B3fLul 9xidC8/gVt4sgQI2ny8qL0cb/LtE6GeXaif1IFuE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Peng Fan , Frank Li , Shawn Guo , Sasha Levin Subject: [PATCH 6.16 042/143] arm64: dts: imx8mp: Correct thermal sensor index Date: Tue, 30 Sep 2025 16:46:06 +0200 Message-ID: <20250930143832.913561270@linuxfoundation.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250930143831.236060637@linuxfoundation.org> References: <20250930143831.236060637@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.16-stable review patch. If anyone has any objections, please let me know. ------------------ From: Peng Fan [ Upstream commit a50342f976d25aace73ff551845ce89406f48f35 ] The TMU has two temperature measurement sites located on the chip. The probe 0 is located inside of the ANAMIX, while the probe 1 is located near the ARM core. This has been confirmed by checking with HW design team and checking RTL code. So correct the {cpu,soc}-thermal sensor index. Fixes: 30cdd62dce6b ("arm64: dts: imx8mp: Add thermal zones support") Signed-off-by: Peng Fan Reviewed-by: Frank Li Signed-off-by: Shawn Guo Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/freescale/imx8mp.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm64/boot/dts/freescale/imx8mp.dtsi b/arch/arm64/boot/dts/freescale/imx8mp.dtsi index 948b88cf5e9df..305c2912e90f7 100644 --- a/arch/arm64/boot/dts/freescale/imx8mp.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8mp.dtsi @@ -298,7 +298,7 @@ cpu-thermal { polling-delay-passive = <250>; polling-delay = <2000>; - thermal-sensors = <&tmu 0>; + thermal-sensors = <&tmu 1>; trips { cpu_alert0: trip0 { temperature = <85000>; @@ -328,7 +328,7 @@ soc-thermal { polling-delay-passive = <250>; polling-delay = <2000>; - thermal-sensors = <&tmu 1>; + thermal-sensors = <&tmu 0>; trips { soc_alert0: trip0 { temperature = <85000>; -- 2.51.0