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 760CE223DD6; Tue, 30 Sep 2025 15:14:15 +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=1759245255; cv=none; b=WsR/Nksl/tXJobVCNzSEiVhG4/o4wPB7NM5ovvn/j9alb7rF2ngJKWQLsCjP8uhBbLrENCYJmNfdWINJ8wb47FZRLUs4xrXeXi6In6mx+3L/SljOq2l01B4oqD2q46+si5WWFLTFOA3qCl9H4JE9yp6lIb9b811d7tsMSZKfe4o= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759245255; c=relaxed/simple; bh=fkygZY0PKn6XpssPAoW1eeQ0SQpNiWW/u8mGeB9u5n0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=K57kGXlppOhtAo/XYb38cNrbbCG24SwWdkPRle+gxxzrDbymux+++rj6JlgeBBNIz02cn1YQ/SNDMJEUQ9T3KL5LynFL1m7CwRrF0Lmfkv/Zy2NjIPIjMEVBDaPEE5pWXebbA0ypZkbQ89wE4prsuX+EBIirtZzPgF0HFwn6gl8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=kgSDCrRg; 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="kgSDCrRg" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B61DAC4CEF0; Tue, 30 Sep 2025 15:14:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1759245255; bh=fkygZY0PKn6XpssPAoW1eeQ0SQpNiWW/u8mGeB9u5n0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=kgSDCrRg1GMhIxOxw1u6bhXFFWfVBzqpFizkoZWH9Aah8Wbr8MMlabdjIeMHj/j+K n2aXCUupnIvLZVhgMJ0K2TrGWM/cOXWaZVYBFRJiMHMfEa7hNF6n5u+jqVwbTvRAFE xUUE5n967GP23YWikaBe9gew3fCaV9svyNxrcZg0= 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 5.15 113/151] arm64: dts: imx8mp: Correct thermal sensor index Date: Tue, 30 Sep 2025 16:47:23 +0200 Message-ID: <20250930143832.108739573@linuxfoundation.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250930143827.587035735@linuxfoundation.org> References: <20250930143827.587035735@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 5.15-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 b5130e7be8263..4eeef01a5a835 100644 --- a/arch/arm64/boot/dts/freescale/imx8mp.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8mp.dtsi @@ -161,7 +161,7 @@ cpu-thermal { polling-delay-passive = <250>; polling-delay = <2000>; - thermal-sensors = <&tmu 0>; + thermal-sensors = <&tmu 1>; trips { cpu_alert0: trip0 { temperature = <85000>; @@ -191,7 +191,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