xref: /freebsd/sys/contrib/device-tree/src/arm64/ti/k3-am62-thermal.dtsi (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
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 = <105000>;	/* 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 = <105000>;	/* 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