mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-01 11:36:49 +00:00
bad01d4806
Removed because they are upstream: generic/pending-5.15/110-v6.3-0001-spidev-Add-Silicon-Labs-EM3581-device-compatible.patch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-5.15.y&id=bff165a3993683daddf3f00563960e7675966f91 ipq807x/patches-5.15/0004-v5.16-arm64-dts-qcom-msm8996-Move-clock-cells-to-QMP-PHY-c.patch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-5.15.y&id=32f0e52f16d45d743b473659329f93d4a27c68bf Manually adapted: bcm27xx/patches-5.15/950-0040-spi-spidev-Completely-disable-the-spidev-warning.patch bcm27xx/patches-5.15/950-0578-spi-spidev-Restore-loading-from-Device-Tree.patch generic/pending-5.15/110-v6.3-0002-spidev-Add-Silicon-Labs-SI3210-device-compatible.patch Adapt kernel configuration for newly added option CONFIG_ARM64_ERRATUM_3194386. The leddev_list_lock attribute changed from rwlock_t to spinlock_t in: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-5.15.y&id=590304b798a3b89e716b6b564f8ad14bc9373d93 Link: https://github.com/openwrt/openwrt/pull/16366 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
131 lines
3.0 KiB
Diff
131 lines
3.0 KiB
Diff
From c3cc0c2a17f552be2426200e47a9e2c62cf449ce Mon Sep 17 00:00:00 2001
|
|
From: Robert Marko <robimarko@gmail.com>
|
|
Date: Fri, 19 Aug 2022 00:02:45 +0200
|
|
Subject: [PATCH] arm64: dts: qcom: ipq8074: add thermal nodes
|
|
|
|
IPQ8074 has a tsens v2.3.0 peripheral which monitors
|
|
temperatures around the various subsystems on the
|
|
die.
|
|
|
|
So lets add the tsens and thermal zone nodes, passive
|
|
CPU cooling will come in later patches after CPU frequency
|
|
scaling is supported.
|
|
|
|
Signed-off-by: Robert Marko <robimarko@gmail.com>
|
|
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
|
|
Link: https://lore.kernel.org/r/20220818220245.338396-5-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
|
|
@@ -274,6 +274,16 @@
|
|
status = "disabled";
|
|
};
|
|
|
|
+ tsens: thermal-sensor@4a9000 {
|
|
+ compatible = "qcom,ipq8074-tsens";
|
|
+ reg = <0x4a9000 0x1000>, /* TM */
|
|
+ <0x4a8000 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 = <0x00704000 0x20000>;
|
|
@@ -876,4 +886,90 @@
|
|
<GIC_PPI 4 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
|
|
<GIC_PPI 1 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>;
|
|
};
|
|
+
|
|
+ thermal-zones {
|
|
+ nss-top-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 4>;
|
|
+ };
|
|
+
|
|
+ nss0-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 5>;
|
|
+ };
|
|
+
|
|
+ nss1-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 6>;
|
|
+ };
|
|
+
|
|
+ wcss-phya0-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 7>;
|
|
+ };
|
|
+
|
|
+ wcss-phya1-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 8>;
|
|
+ };
|
|
+
|
|
+ cpu0_thermal: cpu0-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 9>;
|
|
+ };
|
|
+
|
|
+ cpu1_thermal: cpu1-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 10>;
|
|
+ };
|
|
+
|
|
+ cpu2_thermal: cpu2-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 11>;
|
|
+ };
|
|
+
|
|
+ cpu3_thermal: cpu3-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 12>;
|
|
+ };
|
|
+
|
|
+ cluster_thermal: cluster-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 13>;
|
|
+ };
|
|
+
|
|
+ wcss-phyb0-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 14>;
|
|
+ };
|
|
+
|
|
+ wcss-phyb1-thermal {
|
|
+ polling-delay-passive = <250>;
|
|
+ polling-delay = <1000>;
|
|
+
|
|
+ thermal-sensors = <&tsens 15>;
|
|
+ };
|
|
+ };
|
|
};
|