1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0
2*f126890aSEmmanuel Vadot
3*f126890aSEmmanuel Vadot#include <dt-bindings/thermal/thermal.h>
4*f126890aSEmmanuel Vadot
5*f126890aSEmmanuel Vadotthermal_zones: thermal-zones {
6*f126890aSEmmanuel Vadot	main0_thermal: main0-thermal {
7*f126890aSEmmanuel Vadot		polling-delay-passive = <250>;	/* milliSeconds */
8*f126890aSEmmanuel Vadot		polling-delay = <500>;		/* milliSeconds */
9*f126890aSEmmanuel Vadot		thermal-sensors = <&wkup_vtm0 0>;
10*f126890aSEmmanuel Vadot
11*f126890aSEmmanuel Vadot		trips {
12*f126890aSEmmanuel Vadot			main0_crit: main0-crit {
13*f126890aSEmmanuel Vadot				temperature = <125000>;	/* milliCelsius */
14*f126890aSEmmanuel Vadot				hysteresis = <2000>;	/* milliCelsius */
15*f126890aSEmmanuel Vadot				type = "critical";
16*f126890aSEmmanuel Vadot			};
17*f126890aSEmmanuel Vadot		};
18*f126890aSEmmanuel Vadot	};
19*f126890aSEmmanuel Vadot
20*f126890aSEmmanuel Vadot	main1_thermal: main1-thermal {
21*f126890aSEmmanuel Vadot		polling-delay-passive = <250>;	/* milliSeconds */
22*f126890aSEmmanuel Vadot		polling-delay = <500>;		/* milliSeconds */
23*f126890aSEmmanuel Vadot		thermal-sensors = <&wkup_vtm0 1>;
24*f126890aSEmmanuel Vadot
25*f126890aSEmmanuel Vadot		trips {
26*f126890aSEmmanuel Vadot			main1_crit: main1-crit {
27*f126890aSEmmanuel Vadot				temperature = <125000>;	/* milliCelsius */
28*f126890aSEmmanuel Vadot				hysteresis = <2000>;	/* milliCelsius */
29*f126890aSEmmanuel Vadot				type = "critical";
30*f126890aSEmmanuel Vadot			};
31*f126890aSEmmanuel Vadot		};
32*f126890aSEmmanuel Vadot	};
33*f126890aSEmmanuel Vadot
34*f126890aSEmmanuel Vadot	main2_thermal: main2-thermal {
35*f126890aSEmmanuel Vadot	       polling-delay-passive = <250>;	/* milliSeconds */
36*f126890aSEmmanuel Vadot	       polling-delay = <500>;		/* milliSeconds */
37*f126890aSEmmanuel Vadot	       thermal-sensors = <&wkup_vtm0 2>;
38*f126890aSEmmanuel Vadot
39*f126890aSEmmanuel Vadot		trips {
40*f126890aSEmmanuel Vadot			main2_crit: main2-crit {
41*f126890aSEmmanuel Vadot				temperature = <125000>;	/* milliCelsius */
42*f126890aSEmmanuel Vadot				hysteresis = <2000>;	/* milliCelsius */
43*f126890aSEmmanuel Vadot				type = "critical";
44*f126890aSEmmanuel Vadot			};
45*f126890aSEmmanuel Vadot		};
46*f126890aSEmmanuel Vadot	};
47*f126890aSEmmanuel Vadot};
48