aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/asus/p8z77-m_pro/acpi_tables.c
blob: e401b656fa9a80784ac2656e0f3f88eea163f7f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0-only */

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

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

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