blob: a358757e26f07b8fb470b955d6340ae41d9ad1a8 [file] [log] [blame]
Nishanth Menon7937af12023-07-27 04:03:31 -05001// 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 = <&wkup_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 = <&wkup_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};