83 lines
2.0 KiB
Diff
83 lines
2.0 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Micha=C5=82=20Dzieko=C5=84ski?=
|
|
<michal.dziekonski+github@gmail.com>
|
|
Date: Wed, 3 May 2023 12:17:28 +0000
|
|
Subject: arm64: dts: allwinner: h616: Fix thermal zones (add missing trips)
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Signed-off-by: Michał Dziekoński <michal.dziekonski+github@gmail.com>
|
|
---
|
|
arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi | 29 ++++++++++
|
|
1 file changed, 29 insertions(+)
|
|
|
|
diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi b/arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi
|
|
index 8628a9e3d..17b13d319 100644
|
|
--- a/arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi
|
|
+++ b/arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi
|
|
@@ -875,10 +875,15 @@ cpu_threshold: trip-point@0 {
|
|
cpu_target: trip-point@1 {
|
|
temperature = <70000>;
|
|
type = "passive";
|
|
hysteresis = <0>;
|
|
};
|
|
+ cpu_temp_critical: trip-point@2 {
|
|
+ temperature = <110000>;
|
|
+ type = "critical";
|
|
+ hysteresis = <0>;
|
|
+ };
|
|
};
|
|
|
|
cooling-maps {
|
|
map0 {
|
|
trip = <&cpu_target>;
|
|
@@ -893,20 +898,44 @@ map0 {
|
|
gpu-thermal {
|
|
polling-delay-passive = <500>;
|
|
polling-delay = <1000>;
|
|
thermal-sensors = <&ths 0>;
|
|
sustainable-power = <1100>;
|
|
+
|
|
+ trips {
|
|
+ gpu_temp_critical: trip-point@0 {
|
|
+ temperature = <110000>;
|
|
+ type = "critical";
|
|
+ hysteresis = <0>;
|
|
+ };
|
|
+ };
|
|
};
|
|
|
|
ve-thermal {
|
|
polling-delay-passive = <0>;
|
|
polling-delay = <0>;
|
|
thermal-sensors = <&ths 1>;
|
|
+
|
|
+ trips {
|
|
+ ve_temp_critical: trip-point@0 {
|
|
+ temperature = <110000>;
|
|
+ type = "critical";
|
|
+ hysteresis = <0>;
|
|
+ };
|
|
+ };
|
|
};
|
|
|
|
ddr-thermal {
|
|
polling-delay-passive = <0>;
|
|
polling-delay = <0>;
|
|
thermal-sensors = <&ths 3>;
|
|
+
|
|
+ trips {
|
|
+ ddr_temp_critical: trip-point@0 {
|
|
+ temperature = <110000>;
|
|
+ type = "critical";
|
|
+ hysteresis = <0>;
|
|
+ };
|
|
+ };
|
|
};
|
|
};
|
|
};
|
|
--
|
|
Created with Armbian build tools https://github.com/armbian/build
|
|
|