1// SPDX-License-Identifier: GPL-2.0
2
3#include <dt-bindings/thermal/thermal.h>
4
5thermal_zones: thermal-zones {
6	mcu_thermal: mcu-thermal {
7		polling-delay-passive = <250>; /* milliseconds */
8		polling-delay = <500>; /* milliseconds */
9		thermal-sensors = <&wkup_vtm0 0>;
10
11		trips {
12			wkup_crit: wkup-crit {
13				temperature = <125000>; /* milliCelsius */
14				hysteresis = <2000>; /* milliCelsius */
15				type = "critical";
16			};
17		};
18	};
19
20	mpu_thermal: mpu-thermal {
21		polling-delay-passive = <250>; /* milliseconds */
22		polling-delay = <500>; /* milliseconds */
23		thermal-sensors = <&wkup_vtm0 1>;
24
25		trips {
26			mpu_crit: mpu-crit {
27				temperature = <125000>; /* milliCelsius */
28				hysteresis = <2000>; /* milliCelsius */
29				type = "critical";
30			};
31		};
32	};
33
34	main_thermal: main-thermal {
35		polling-delay-passive = <250>; /* milliseconds */
36		polling-delay = <500>; /* milliseconds */
37		thermal-sensors = <&wkup_vtm0 2>;
38
39		trips {
40			c7x_crit: c7x-crit {
41				temperature = <125000>; /* milliCelsius */
42				hysteresis = <2000>; /* milliCelsius */
43				type = "critical";
44			};
45		};
46	};
47};
48