1*57cd681bSTom Rini/*
2*57cd681bSTom Rini * Device Tree Source for OMAP543x SoC CORE thermal
3*57cd681bSTom Rini *
4*57cd681bSTom Rini * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
5*57cd681bSTom Rini * Contact: Eduardo Valentin <eduardo.valentin@ti.com>
6*57cd681bSTom Rini *
7*57cd681bSTom Rini * This file is licensed under the terms of the GNU General Public License
8*57cd681bSTom Rini * version 2.  This program is licensed "as is" without any warranty of any
9*57cd681bSTom Rini * kind, whether express or implied.
10*57cd681bSTom Rini */
11*57cd681bSTom Rini
12*57cd681bSTom Rini#include <dt-bindings/thermal/thermal.h>
13*57cd681bSTom Rini
14*57cd681bSTom Rinicore_thermal: core_thermal {
15*57cd681bSTom Rini	polling-delay-passive = <250>; /* milliseconds */
16*57cd681bSTom Rini	polling-delay = <500>; /* milliseconds */
17*57cd681bSTom Rini
18*57cd681bSTom Rini			/* sensor       ID */
19*57cd681bSTom Rini	thermal-sensors = <&bandgap     2>;
20*57cd681bSTom Rini
21*57cd681bSTom Rini	trips {
22*57cd681bSTom Rini		core_crit: core_crit {
23*57cd681bSTom Rini			temperature = <125000>; /* milliCelsius */
24*57cd681bSTom Rini			hysteresis = <2000>; /* milliCelsius */
25*57cd681bSTom Rini			type = "critical";
26*57cd681bSTom Rini		};
27*57cd681bSTom Rini	};
28*57cd681bSTom Rini};
29