blob: 9021c738056be9f65b46e169cac8efb8c695ecc8 [file] [log] [blame]
Lokesh Vutlae4978762021-02-01 11:26:39 +05301// SPDX-License-Identifier: GPL-2.0
2
3#include <dt-bindings/thermal/thermal.h>
4
5mpu0_thermal: mpu0-thermal {
6 polling-delay-passive = <250>; /* milliseconds */
7 polling-delay = <500>; /* milliseconds */
8 thermal-sensors = <&wkup_vtm0 0>;
9
10 trips {
11 mpu0_crit: mpu0-crit {
12 temperature = <125000>; /* milliCelsius */
13 hysteresis = <2000>; /* milliCelsius */
14 type = "critical";
15 };
16 };
17};
18
19mpu1_thermal: mpu1-thermal {
20 polling-delay-passive = <250>; /* milliseconds */
21 polling-delay = <500>; /* milliseconds */
22 thermal-sensors = <&wkup_vtm0 1>;
23
24 trips {
25 mpu1_crit: mpu1-crit {
26 temperature = <125000>; /* milliCelsius */
27 hysteresis = <2000>; /* milliCelsius */
28 type = "critical";
29 };
30 };
31};
32
33mcu_thermal: mcu-thermal {
34 polling-delay-passive = <250>; /* milliseconds */
35 polling-delay = <500>; /* milliseconds */
36 thermal-sensors = <&wkup_vtm0 2>;
37
38 trips {
39 mcu_crit: mcu-crit {
40 temperature = <125000>; /* milliCelsius */
41 hysteresis = <2000>; /* milliCelsius */
42 type = "critical";
43 };
44 };
45};