Done with sed and God Lines. Only done for C-like code for now. Change-Id: I1ea2eebfdd43610e42b4cf04409ec76c2e8b0042 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40082 Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
17 lines
421 B
C
17 lines
421 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* This file is part of the coreboot project. */
|
|
|
|
#ifndef DCP847SKE_THERMAL_H
|
|
#define DPC847SKE_THERMAL_H
|
|
|
|
/* TODO: These should be generated at runtime from
|
|
* MSR_TEMPERATURE_TARGET (0x1a2) */
|
|
|
|
/* Temperature which OS will shutdown at (Tjmax) */
|
|
#define CRITICAL_TEMPERATURE 100
|
|
|
|
/* Temperature which OS will throttle CPU (Tcontrol) */
|
|
#define PASSIVE_TEMPERATURE 86
|
|
|
|
#endif
|