blob: 036db56ba7977a076449d88c1877ee4eba6ba05e [file] [log] [blame]
Roger Quadros01f573e2023-08-05 11:14:40 +03001// SPDX-License-Identifier: GPL-2.0
2
3#include <dt-bindings/thermal/thermal.h>
4
5thermal_zones: thermal-zones {
6 main0_thermal: main0-thermal {
7 polling-delay-passive = <250>; /* milliSeconds */
8 polling-delay = <500>; /* milliSeconds */
9 thermal-sensors = <&main_vtm0 0>;
10
11 trips {
12 main0_crit: main0-crit {
13 temperature = <105000>; /* milliCelsius */
14 hysteresis = <2000>; /* milliCelsius */
15 type = "critical";
16 };
17 };
18 };
19
20 main1_thermal: main1-thermal {
21 polling-delay-passive = <250>; /* milliSeconds */
22 polling-delay = <500>; /* milliSeconds */
23 thermal-sensors = <&main_vtm0 1>;
24
25 trips {
26 main1_crit: main1-crit {
27 temperature = <105000>; /* milliCelsius */
28 hysteresis = <2000>; /* milliCelsius */
29 type = "critical";
30 };
31 };
32 };
33};