xref: /freebsd/sys/contrib/device-tree/src/arm/ti/omap/dra7-iva-thermal.dtsi (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-only
2*f126890aSEmmanuel Vadot/*
3*f126890aSEmmanuel Vadot * Device Tree Source for DRA7x SoC IVA thermal
4*f126890aSEmmanuel Vadot *
5*f126890aSEmmanuel Vadot * Copyright (C) 2016 Texas Instruments Incorporated - https://www.ti.com/
6*f126890aSEmmanuel Vadot */
7*f126890aSEmmanuel Vadot
8*f126890aSEmmanuel Vadot#include <dt-bindings/thermal/thermal.h>
9*f126890aSEmmanuel Vadot
10*f126890aSEmmanuel Vadotiva_thermal: iva_thermal {
11*f126890aSEmmanuel Vadot	polling-delay-passive = <250>; /* milliseconds */
12*f126890aSEmmanuel Vadot	polling-delay = <500>; /* milliseconds */
13*f126890aSEmmanuel Vadot
14*f126890aSEmmanuel Vadot			/* sensor       ID */
15*f126890aSEmmanuel Vadot	thermal-sensors = <&bandgap     4>;
16*f126890aSEmmanuel Vadot
17*f126890aSEmmanuel Vadot	trips {
18*f126890aSEmmanuel Vadot		iva_crit: iva_crit {
19*f126890aSEmmanuel Vadot			temperature = <125000>; /* milliCelsius */
20*f126890aSEmmanuel Vadot			hysteresis = <2000>; /* milliCelsius */
21*f126890aSEmmanuel Vadot			type = "critical";
22*f126890aSEmmanuel Vadot		};
23*f126890aSEmmanuel Vadot	};
24*f126890aSEmmanuel Vadot};
25