summaryrefslogtreecommitdiffstats
path: root/src/mainboard/asus/p8z77-m_pro/acpi_tables.c
blob: 65b59e8fda6238e1d47524b6f8d0d1863bd355f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-only */

#include <southbridge/intel/bd82x6x/nvs.h>

void acpi_create_gnvs(global_nvs_t *gnvs)
{
	/* critical temp that will shutdown the pc == 95C degrees */
	gnvs->tcrt = 95;

	/* temp to start throttling the cpu == 85C */
	gnvs->tpsv = 85;
}