repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mb/ocp/tiogapass: Fix GPIOs
[coreboot2.git]
/
src
/
mainboard
/
lenovo
/
x60
/
acpi_tables.c
blob
8f4f83b826ee6d61dfafc2a97394e067a83d1174
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <acpi/acpi_gnvs.h>
4
#include <soc/nvs.h>
5
6
void
mainboard_fill_gnvs
(
struct
global_nvs
*
gnvs
)
7
{
8
/* Temperature at which OS will shutdown */
9
gnvs
->
tcrt
=
100
;
10
/* Temperature at which OS will throttle CPU */
11
gnvs
->
tpsv
=
90
;
12
}