From a39d5a535b37b4ba6f0c53f7ab21b65059b9f34e Mon Sep 17 00:00:00 2001 From: Yalei Zang Date: Wed, 22 Jul 2026 21:29:19 +0800 Subject: [PATCH] =?utf8?q?airoha:=20raise=20CPU=20critical=20temperature?= =?utf8?q?=20from=20110=C2=B0C=20to=20120=C2=B0C?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The IC maximum operating temperature is 125C. Raise the CPU critical temperature from 110C to 120C to account for possible temperature sensor error. This keeps the trip point below the IC maximum while avoiding premature critical thermal protection. Tested on Airoha internal platforms without thermal protection issues. Signed-off-by: Yalei Zang Link: https://github.com/openwrt/openwrt/pull/24367 Signed-off-by: Christian Marangi --- target/linux/airoha/dts/an7581.dtsi | 2 +- target/linux/airoha/dts/an7583.dtsi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/target/linux/airoha/dts/an7581.dtsi b/target/linux/airoha/dts/an7581.dtsi index 4a6b741e6e3..a71266ed3a5 100644 --- a/target/linux/airoha/dts/an7581.dtsi +++ b/target/linux/airoha/dts/an7581.dtsi @@ -332,7 +332,7 @@ }; cpu-critical { - temperature = <110000>; + temperature = <120000>; hysteresis = <1000>; type = "critical"; }; diff --git a/target/linux/airoha/dts/an7583.dtsi b/target/linux/airoha/dts/an7583.dtsi index 991054f850f..3471a073cd6 100644 --- a/target/linux/airoha/dts/an7583.dtsi +++ b/target/linux/airoha/dts/an7583.dtsi @@ -274,7 +274,7 @@ }; cpu-critical { - temperature = <110000>; + temperature = <120000>; hysteresis = <1000>; type = "critical"; }; -- 2.47.3