mirror of
https://github.com/linux-sunxi/meta-sunxi.git
synced 2024-11-15 01:38:23 +01:00
74 lines
1.7 KiB
Diff
74 lines
1.7 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)
|
|
|
|
Signed-off-by: Michal Dziekonski <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 8628a9e3dfca..17b13d3193cc 100644
|
|
--- a/arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi
|
|
+++ b/arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi
|
|
@@ -877,6 +877,11 @@ cpu_target: trip-point@1 {
|
|
type = "passive";
|
|
hysteresis = <0>;
|
|
};
|
|
+ cpu_temp_critical: trip-point@2 {
|
|
+ temperature = <110000>;
|
|
+ type = "critical";
|
|
+ hysteresis = <0>;
|
|
+ };
|
|
};
|
|
|
|
cooling-maps {
|
|
@@ -895,18 +900,42 @@ gpu-thermal {
|
|
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>;
|
|
+ };
|
|
+ };
|
|
};
|
|
};
|
|
};
|
|
--
|
|
Armbian
|
|
|