k3-am654-industrial-thermal.dtsi 1.0 KB
Newer Older
1 2 3 4
// SPDX-License-Identifier: GPL-2.0

#include <dt-bindings/thermal/thermal.h>

5
mpu0_thermal: mpu0-thermal {
6 7 8 9 10
	polling-delay-passive = <250>; /* milliseconds */
	polling-delay = <500>; /* milliseconds */
	thermal-sensors = <&wkup_vtm0 0>;

	trips {
11
		mpu0_crit: mpu0-crit {
12 13 14 15 16 17 18
			temperature = <125000>; /* milliCelsius */
			hysteresis = <2000>; /* milliCelsius */
			type = "critical";
		};
	};
};

19
mpu1_thermal: mpu1-thermal {
20 21 22 23 24
	polling-delay-passive = <250>; /* milliseconds */
	polling-delay = <500>; /* milliseconds */
	thermal-sensors = <&wkup_vtm0 1>;

	trips {
25
		mpu1_crit: mpu1-crit {
26 27 28 29 30 31 32
			temperature = <125000>; /* milliCelsius */
			hysteresis = <2000>; /* milliCelsius */
			type = "critical";
		};
	};
};

33
mcu_thermal: mcu-thermal {
34 35 36 37 38
	polling-delay-passive = <250>; /* milliseconds */
	polling-delay = <500>; /* milliseconds */
	thermal-sensors = <&wkup_vtm0 2>;

	trips {
39
		mcu_crit: mcu-crit {
40 41 42 43 44 45
			temperature = <125000>; /* milliCelsius */
			hysteresis = <2000>; /* milliCelsius */
			type = "critical";
		};
	};
};