mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
147 lines
3.0 KiB
Diff
147 lines
3.0 KiB
Diff
From d2e727bd0a259de2d6d329e3c659b8a1b6fbbc8b Mon Sep 17 00:00:00 2001
|
|
From: Robert Marko <robimarko@gmail.com>
|
|
Date: Sun, 15 Oct 2023 22:55:43 +0200
|
|
Subject: [PATCH] arm64: dts: qcom: ipq6018: add thermal nodes
|
|
|
|
IPQ6018 has a tsens v2.3.1 peripheral which monitors temperatures around
|
|
the various subsystems on the die.
|
|
|
|
Signed-off-by: Robert Marko <robimarko@gmail.com>
|
|
---
|
|
arch/arm64/boot/dts/qcom/ipq6018.dtsi | 117 ++++++++++++++++++++++++++
|
|
1 file changed, 117 insertions(+)
|
|
|
|
--- a/arch/arm64/boot/dts/qcom/ipq6018.dtsi
|
|
+++ b/arch/arm64/boot/dts/qcom/ipq6018.dtsi
|
|
@@ -352,6 +352,16 @@
|
|
clock-names = "core";
|
|
};
|
|
|
|
+ tsens: thermal-sensor@4a9000 {
|
|
+ compatible = "qcom,ipq6018-tsens", "qcom,ipq8074-tsens";
|
|
+ reg = <0x0 0x4a9000 0x0 0x1000>, /* TM */
|
|
+ <0x0 0x4a8000 0x0 0x1000>; /* SROT */
|
|
+ interrupts = <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>;
|
|
+ interrupt-names = "combined";
|
|
+ #qcom,sensors = <16>;
|
|
+ #thermal-sensor-cells = <1>;
|
|
+ };
|
|
+
|
|
cryptobam: dma-controller@704000 {
|
|
compatible = "qcom,bam-v1.7.0";
|
|
reg = <0x0 0x00704000 0x0 0x20000>;
|
|
@@ -1037,6 +1047,113 @@
|
|
};
|
|
};
|
|
|
|
+ thermal-zones {
|
|
+ nss-top-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 4>;
|
|
+
|
|
+ trips {
|
|
+ nss-top-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
+ };
|
|
+
|
|
+ nss0-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 5>;
|
|
+
|
|
+ trips {
|
|
+ nss-0-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
+ };
|
|
+
|
|
+ wcss-phya0-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 7>;
|
|
+
|
|
+ trips {
|
|
+ wcss-phya0-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
+ };
|
|
+
|
|
+ wcss-phya1-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 8>;
|
|
+
|
|
+ trips {
|
|
+ wcss-phya1-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
+ };
|
|
+
|
|
+ cluster_thermal: cluster-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 13>;
|
|
+
|
|
+ trips {
|
|
+ cluster-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
+ };
|
|
+
|
|
+ lpass-qsdp6-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 14>;
|
|
+
|
|
+ trips {
|
|
+ lpass-qsdp6-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
+ };
|
|
+
|
|
+ package-top-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 15>;
|
|
+
|
|
+ trips {
|
|
+ package-top-crit {
|
|
+ temperature = <110000>;
|
|
+ hysteresis = <1000>;
|
|
+ type = "critical";
|
|
+ };
|
|
+ };
|
|
+ };
|
|
+ };
|
|
+
|
|
timer {
|
|
compatible = "arm,armv8-timer";
|
|
interrupts = <GIC_PPI 2 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
|