
Add the latest linux available from https://github.com/armbian/build commit de58ac1faac92724c6449db12c22affaeb003875, tag: sunxi-5.3, alongside all the patches that it comes with. Signed-off-by: Vicentiu Galanopulo <vicentiu@balena.io>
82 lines
2.1 KiB
Diff
82 lines
2.1 KiB
Diff
From fcf4b68c77f7ce86a1976322cbb1f861962f8a66 Mon Sep 17 00:00:00 2001
|
|
From: Ondrej Jirman <megous@megous.com>
|
|
Date: Tue, 14 Nov 2017 17:16:45 +0100
|
|
Subject: [PATCH 59/82] ARM: dts: sun8i-a83t: Describe A83T thermal zones
|
|
|
|
There are three sensors, two for CPU, one for GPU.
|
|
|
|
Signed-off-by: Ondrej Jirman <megous@megous.com>
|
|
---
|
|
arch/arm/boot/dts/sun8i-a83t.dtsi | 36 +++++++++++++++++++++++++++++++
|
|
1 file changed, 36 insertions(+)
|
|
|
|
diff --git a/arch/arm/boot/dts/sun8i-a83t.dtsi b/arch/arm/boot/dts/sun8i-a83t.dtsi
|
|
index c79f5a678e62..bffcee058627 100644
|
|
--- a/arch/arm/boot/dts/sun8i-a83t.dtsi
|
|
+++ b/arch/arm/boot/dts/sun8i-a83t.dtsi
|
|
@@ -50,6 +50,7 @@
|
|
#include <dt-bindings/reset/sun8i-a83t-ccu.h>
|
|
#include <dt-bindings/reset/sun8i-de2.h>
|
|
#include <dt-bindings/reset/sun8i-r-ccu.h>
|
|
+#include <dt-bindings/thermal/thermal.h>
|
|
|
|
/ {
|
|
interrupt-parent = <&gic>;
|
|
@@ -69,6 +70,9 @@
|
|
cci-control-port = <&cci_control0>;
|
|
enable-method = "allwinner,sun8i-a83t-smp";
|
|
reg = <0>;
|
|
+ #cooling-cells = <2>;
|
|
+ cooling-min-level = <0>;
|
|
+ cooling-max-level = <7>;
|
|
};
|
|
|
|
cpu@1 {
|
|
@@ -107,6 +111,9 @@
|
|
cci-control-port = <&cci_control1>;
|
|
enable-method = "allwinner,sun8i-a83t-smp";
|
|
reg = <0x100>;
|
|
+ #cooling-cells = <2>;
|
|
+ cooling-min-level = <0>;
|
|
+ cooling-max-level = <7>;
|
|
};
|
|
|
|
cpu@101 {
|
|
@@ -1108,5 +1115,34 @@
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
};
|
|
+
|
|
+ ths: ths@1f04000 {
|
|
+ #thermal-sensor-cells = <1>;
|
|
+ compatible = "allwinner,sun8i-a83t-ths";
|
|
+ reg = <0x01f04000 0x100 0x01c14234 0x8>;
|
|
+ reg-names = "ths", "calibration";
|
|
+ interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
|
|
+ status = "disabled";
|
|
+ };
|
|
+ };
|
|
+
|
|
+ thermal-zones {
|
|
+ cpu0_thermal: cpu0-thermal {
|
|
+ polling-delay-passive = <330>;
|
|
+ polling-delay = <1000>;
|
|
+ thermal-sensors = <&ths 0>;
|
|
+ };
|
|
+
|
|
+ cpu1_thermal: cpu1-thermal {
|
|
+ polling-delay-passive = <330>;
|
|
+ polling-delay = <1000>;
|
|
+ thermal-sensors = <&ths 1>;
|
|
+ };
|
|
+
|
|
+ gpu_thermal: gpu-thermal {
|
|
+ polling-delay-passive = <330>;
|
|
+ polling-delay = <1000>;
|
|
+ thermal-sensors = <&ths 2>;
|
|
+ };
|
|
};
|
|
};
|
|
--
|
|
2.20.1
|
|
|