1279377Simp/*
2279377Simp * Device Tree Source for OMAP543x SoC CORE thermal
3279377Simp *
4279377Simp * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
5279377Simp * Contact: Eduardo Valentin <eduardo.valentin@ti.com>
6279377Simp *
7279377Simp * This file is licensed under the terms of the GNU General Public License
8279377Simp * version 2.  This program is licensed "as is" without any warranty of any
9279377Simp * kind, whether express or implied.
10279377Simp */
11279377Simp
12279377Simp#include <dt-bindings/thermal/thermal.h>
13279377Simp
14279377Simpcore_thermal: core_thermal {
15279377Simp	polling-delay-passive = <250>; /* milliseconds */
16295436Sandrew	polling-delay = <500>; /* milliseconds */
17279377Simp
18279377Simp			/* sensor       ID */
19279377Simp	thermal-sensors = <&bandgap     2>;
20279377Simp
21279377Simp	trips {
22279377Simp		core_crit: core_crit {
23279377Simp			temperature = <125000>; /* milliCelsius */
24279377Simp			hysteresis = <2000>; /* milliCelsius */
25279377Simp			type = "critical";
26279377Simp		};
27279377Simp	};
28279377Simp};
29