Commit 1f5be051 authored by Daniel Golle's avatar Daniel Golle Committed by Matthias Brugger
Browse files

arm64: dts: mt7986: add thermal-zones

parent 0a9615d5
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
@@ -602,4 +602,32 @@ wifi: wifi@18000000 {
			memory-region = <&wmcpu_emi>;
		};
	};

	thermal-zones {
		cpu_thermal: cpu-thermal {
			polling-delay-passive = <1000>;
			polling-delay = <1000>;
			thermal-sensors = <&thermal 0>;

			trips {
				cpu_trip_active_high: active-high {
					temperature = <115000>;
					hysteresis = <2000>;
					type = "active";
				};

				cpu_trip_active_low: active-low {
					temperature = <85000>;
					hysteresis = <2000>;
					type = "active";
				};

				cpu_trip_passive: passive {
					temperature = <40000>;
					hysteresis = <2000>;
					type = "passive";
				};
			};
		};
	};
};