1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Device Tree Source for OMAP543x SoC CORE thermal 4 * 5 * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/ 6 * Contact: Eduardo Valentin <eduardo.valentin@ti.com> 7 */ 8 9#include <dt-bindings/thermal/thermal.h> 10 11core_thermal: core_thermal { 12 polling-delay-passive = <250>; /* milliseconds */ 13 polling-delay = <500>; /* milliseconds */ 14 15 /* sensor ID */ 16 thermal-sensors = <&bandgap 2>; 17 18 trips { 19 core_crit: core_crit { 20 temperature = <125000>; /* milliCelsius */ 21 hysteresis = <2000>; /* milliCelsius */ 22 type = "critical"; 23 }; 24 }; 25}; 26