aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeerthy <j-keerthy@ti.com>2016-02-08 04:16:29 -0500
committerTony Lindgren <tony@atomide.com>2016-02-12 17:26:37 -0500
commit7a28936cdcb8ebc0150e564a3bf67b6bfdfd1e6c (patch)
tree2ffe84e0e8607b53280f8fe44c98aef532224365
parent97749fecef39e80fa2d42f949b2ee3d025e738a5 (diff)
ARM: dts: DRA7: Add IVA thermal data
This patch changes a dtsi file to contain the thermal data for IVA domain. This data will enable a thermal shutdown at 125C. Signed-off-by: Keerthy <j-keerthy@ti.com> Acked-by: Eduardo Valentin <edubezval@gmail.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r--arch/arm/boot/dts/dra7-iva-thermal.dtsi27
1 files changed, 27 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/dra7-iva-thermal.dtsi b/arch/arm/boot/dts/dra7-iva-thermal.dtsi
new file mode 100644
index 000000000000..dd74a5337d1f
--- /dev/null
+++ b/arch/arm/boot/dts/dra7-iva-thermal.dtsi
@@ -0,0 +1,27 @@
1/*
2 * Device Tree Source for DRA7x SoC IVA thermal
3 *
4 * Copyright (C) 2016 Texas Instruments Incorporated - http://www.ti.com/
5 *
6 * This file is licensed under the terms of the GNU General Public License
7 * version 2. This program is licensed "as is" without any warranty of any
8 * kind, whether express or implied.
9 */
10
11#include <dt-bindings/thermal/thermal.h>
12
13iva_thermal: iva_thermal {
14 polling-delay-passive = <250>; /* milliseconds */
15 polling-delay = <500>; /* milliseconds */
16
17 /* sensor ID */
18 thermal-sensors = <&bandgap 4>;
19
20 trips {
21 iva_crit: iva_crit {
22 temperature = <125000>; /* milliCelsius */
23 hysteresis = <2000>; /* milliCelsius */
24 type = "critical";
25 };
26 };
27};