blob: 1b4b7d9136c842b87abaae7d2b397aca85399ff8 [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 GPU 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
11gpu_thermal: gpu_thermal {
12 polling-delay-passive = <250>; /* milliseconds */
13 polling-delay = <500>; /* milliseconds */
14
15 /* sensor ID */
16 thermal-sensors = <&bandgap 1>;
17
18 trips {
19 gpu_crit: gpu_crit {
20 temperature = <125000>; /* milliCelsius */
21 hysteresis = <2000>; /* milliCelsius */
22 type = "critical";
23 };
24 };
25};