treewide: replace GPLv2 long form headers with SPDX header
[coreboot.git] / src / mainboard / google / slippy / thermal.h
blob47c16978293707209bb9e664206f090b0191a562
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /* This file is part of the coreboot project. */
4 #ifndef THERMAL_H
5 #define THERMAL_H
7 #define TEMPERATURE_SENSOR_ID 0 /* PECI */
9 /* Power level to set when EC requests throttle */
10 #define EC_THROTTLE_POWER_LIMIT 12 /* 12W */
12 /* Temperature which OS will shutdown at */
13 #define CRITICAL_TEMPERATURE 99
15 /* Temperature which OS will throttle CPU */
16 #define PASSIVE_TEMPERATURE 95
18 /* Tj_max value for calculating PECI CPU temperature */
19 #define MAX_TEMPERATURE 100
21 #endif