blob: 0809634e57320d9069d5f68a79a3148ee45e36fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// SPDX-License-Identifier: GPL-2.0
#include "tegra234-p3701.dtsi"
/ {
compatible = "nvidia,p3701-0008", "nvidia,tegra234";
thermal-zones {
tj-thermal {
polling-delay = <1000>;
polling-delay-passive = <1000>;
status = "okay";
trips {
tj_trip_active0: active-0 {
temperature = <85000>;
hysteresis = <4000>;
type = "active";
};
tj_trip_active1: active-1 {
temperature = <105000>;
hysteresis = <4000>;
type = "active";
};
};
};
};
};
|