xref: /freebsd-src/sys/contrib/device-tree/src/arm/samsung/exynos5420-trip-points.dtsi (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0
2*f126890aSEmmanuel Vadot/*
3*f126890aSEmmanuel Vadot * Device tree sources for default Exynos5420 thermal zone definition
4*f126890aSEmmanuel Vadot *
5*f126890aSEmmanuel Vadot * Copyright (c) 2014 Lukasz Majewski <l.majewski@samsung.com>
6*f126890aSEmmanuel Vadot */
7*f126890aSEmmanuel Vadot
8*f126890aSEmmanuel Vadotpolling-delay-passive = <0>;
9*f126890aSEmmanuel Vadotpolling-delay = <0>;
10*f126890aSEmmanuel Vadottrips {
11*f126890aSEmmanuel Vadot	cpu-alert-0 {
12*f126890aSEmmanuel Vadot		temperature = <85000>; /* millicelsius */
13*f126890aSEmmanuel Vadot		hysteresis = <10000>; /* millicelsius */
14*f126890aSEmmanuel Vadot		type = "active";
15*f126890aSEmmanuel Vadot	};
16*f126890aSEmmanuel Vadot	cpu-alert-1 {
17*f126890aSEmmanuel Vadot		temperature = <103000>; /* millicelsius */
18*f126890aSEmmanuel Vadot		hysteresis = <10000>; /* millicelsius */
19*f126890aSEmmanuel Vadot		type = "active";
20*f126890aSEmmanuel Vadot	};
21*f126890aSEmmanuel Vadot	cpu-alert-2 {
22*f126890aSEmmanuel Vadot		temperature = <110000>; /* millicelsius */
23*f126890aSEmmanuel Vadot		hysteresis = <10000>; /* millicelsius */
24*f126890aSEmmanuel Vadot		type = "active";
25*f126890aSEmmanuel Vadot	};
26*f126890aSEmmanuel Vadot	cpu-crit-0 {
27*f126890aSEmmanuel Vadot		temperature = <120000>; /* millicelsius */
28*f126890aSEmmanuel Vadot		hysteresis = <0>; /* millicelsius */
29*f126890aSEmmanuel Vadot		type = "critical";
30*f126890aSEmmanuel Vadot	};
31*f126890aSEmmanuel Vadot};
32