blob: e0d8e39a0014b5977c4adb987242e8b95da22ad2 [file] [log] [blame]
Andrew Davisdc5e49c2023-04-11 13:25:01 -05001// SPDX-License-Identifier: GPL-2.0-only
Tom Rinie33af1c2015-07-31 19:55:12 -04002/*
3 * Device Tree Source for OMAP543x SoC CORE thermal
4 *
Andrew Davisdc5e49c2023-04-11 13:25:01 -05005 * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/
Tom Rinie33af1c2015-07-31 19:55:12 -04006 * Contact: Eduardo Valentin <eduardo.valentin@ti.com>
Tom Rinie33af1c2015-07-31 19:55:12 -04007 */
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};