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 DCP847SKE_THERMAL_H
4 #define DPC847SKE_THERMAL_H
5 
6 /* TODO: These should be generated at runtime from
7  * MSR_TEMPERATURE_TARGET (0x1a2) */
8 
9 /* Temperature which OS will shutdown at (Tjmax) */
10 #define CRITICAL_TEMPERATURE 100
11 
12 /* Temperature which OS will throttle CPU (Tcontrol) */
13 #define PASSIVE_TEMPERATURE 86
14 
15 #endif