It is the same for all three mainboards. Change-Id: Ic5786bcc29e2549d6fc935d60c699c1cab84b237 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50027 Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
14 lines
303 B
C
14 lines
303 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <acpi/acpi.h>
|
|
#include <acpi/acpi_gnvs.h>
|
|
#include <soc/nvs.h>
|
|
|
|
void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
|
{
|
|
/* Temperature at which OS will shutdown */
|
|
gnvs->tcrt = 100;
|
|
/* Temperature at which OS will throttle CPU */
|
|
gnvs->tpsv = 90;
|
|
}
|