blob: a4204f1c54cd915cb41d5ed6fc2d4694cc9e8e7f (
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 <soc/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;
}
|