mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
e8e7b3c106
This is an automatically generated commit which aids following Kernel patch history, as git will see the move and copy as a rename thus defeating the purpose. See: https://lists.openwrt.org/pipermail/openwrt-devel/2023-October/041673.html for the original discussion. Signed-off-by: Robert Marko <robimarko@gmail.com>
200 lines
3.7 KiB
Diff
200 lines
3.7 KiB
Diff
From 56d3067cb694ba60d654e7f5ef231b6fabc4697f Mon Sep 17 00:00:00 2001
|
|
From: Robert Marko <robimarko@gmail.com>
|
|
Date: Wed, 7 Jun 2023 20:44:48 +0200
|
|
Subject: [PATCH] arm64: dts: qcom: ipq8074: add critical thermal trips
|
|
|
|
According to bindings, thermal zones must have associated trips as well.
|
|
Since we currently dont have CPUFreq support and thus no passive cooling
|
|
lets start by defining critical trips to protect the devices against
|
|
severe overheating.
|
|
|
|
Signed-off-by: Robert Marko <robimarko@gmail.com>
|
|
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
|
|
Link: https://lore.kernel.org/r/20230607184448.2512179-1-robimarko@gmail.com
|
|
---
|
|
arch/arm64/boot/dts/qcom/ipq8074.dtsi | 96 +++++++++++++++++++++++++++
|
|
1 file changed, 96 insertions(+)
|
|
|
|
--- a/arch/arm64/boot/dts/qcom/ipq8074.dtsi
|
|
+++ b/arch/arm64/boot/dts/qcom/ipq8074.dtsi
|
|
@@ -899,6 +899,14 @@
|
|
polling-delay = <1000>;
|
|
|
|
thermal-sensors = <&tsens 4>;
|
|
+
|
|
+ trips {
|
|
+ nss-top-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
};
|
|
|
|
nss0-thermal {
|
|
@@ -906,6 +914,14 @@
|
|
polling-delay = <1000>;
|
|
|
|
thermal-sensors = <&tsens 5>;
|
|
+
|
|
+ trips {
|
|
+ nss-0-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
};
|
|
|
|
nss1-thermal {
|
|
@@ -913,6 +929,14 @@
|
|
polling-delay = <1000>;
|
|
|
|
thermal-sensors = <&tsens 6>;
|
|
+
|
|
+ trips {
|
|
+ nss-1-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
};
|
|
|
|
wcss-phya0-thermal {
|
|
@@ -920,6 +944,14 @@
|
|
polling-delay = <1000>;
|
|
|
|
thermal-sensors = <&tsens 7>;
|
|
+
|
|
+ trips {
|
|
+ wcss-phya0-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
};
|
|
|
|
wcss-phya1-thermal {
|
|
@@ -927,6 +959,14 @@
|
|
polling-delay = <1000>;
|
|
|
|
thermal-sensors = <&tsens 8>;
|
|
+
|
|
+ trips {
|
|
+ wcss-phya1-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
};
|
|
|
|
cpu0_thermal: cpu0-thermal {
|
|
@@ -934,6 +974,14 @@
|
|
polling-delay = <1000>;
|
|
|
|
thermal-sensors = <&tsens 9>;
|
|
+
|
|
+ trips {
|
|
+ cpu0-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
};
|
|
|
|
cpu1_thermal: cpu1-thermal {
|
|
@@ -941,6 +989,14 @@
|
|
polling-delay = <1000>;
|
|
|
|
thermal-sensors = <&tsens 10>;
|
|
+
|
|
+ trips {
|
|
+ cpu1-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
};
|
|
|
|
cpu2_thermal: cpu2-thermal {
|
|
@@ -948,6 +1004,14 @@
|
|
polling-delay = <1000>;
|
|
|
|
thermal-sensors = <&tsens 11>;
|
|
+
|
|
+ trips {
|
|
+ cpu2-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
};
|
|
|
|
cpu3_thermal: cpu3-thermal {
|
|
@@ -955,6 +1019,14 @@
|
|
polling-delay = <1000>;
|
|
|
|
thermal-sensors = <&tsens 12>;
|
|
+
|
|
+ trips {
|
|
+ cpu3-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
};
|
|
|
|
cluster_thermal: cluster-thermal {
|
|
@@ -962,6 +1034,14 @@
|
|
polling-delay = <1000>;
|
|
|
|
thermal-sensors = <&tsens 13>;
|
|
+
|
|
+ trips {
|
|
+ cluster-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
};
|
|
|
|
wcss-phyb0-thermal {
|
|
@@ -969,6 +1049,14 @@
|
|
polling-delay = <1000>;
|
|
|
|
thermal-sensors = <&tsens 14>;
|
|
+
|
|
+ trips {
|
|
+ wcss-phyb0-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
};
|
|
|
|
wcss-phyb1-thermal {
|
|
@@ -976,6 +1064,14 @@
|
|
polling-delay = <1000>;
|
|
|
|
thermal-sensors = <&tsens 15>;
|
|
+
|
|
+ trips {
|
|
+ wcss-phyb1-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
};
|
|
};
|
|
};
|