blob: c1da5cb843964ae2c111fcbd1bb8ed1e8589c8ea (
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 mainboard_fill_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;
}
|