coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
thermal.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef THERMAL_H
4 #define THERMAL_H
5 
6 /*
7  * Stoney Ridge Thermal Requirements 12 (6W)
8  * TDP (W) 6
9  * T die,max (°C) 95
10  * T ctl,max 85
11  * T die,lmt (default) 90
12  * T ctl,lmt (default) 80
13  */
14 
15 /* Control TDP Settings */
16 #define CTL_TDP_SENSOR_ID 2 /* EC TIN2 */
17 
18 /* Temperature which OS will shutdown at */
19 #define CRITICAL_TEMPERATURE 94
20 
21 /* Temperature which OS will throttle CPU */
22 #define PASSIVE_TEMPERATURE 85
23 
24 #endif