repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mb/google/fatcat: Move CSE sync at payload
[coreboot.git]
/
src
/
mainboard
/
hp
/
snb_ivb_laptops
/
acpi_tables.c
blob
06ca470083e562d26f6021c25863ecb07ba81146
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
// the lid is open by default.
9
gnvs
->
lids
=
1
;
10
11
gnvs
->
tcrt
=
100
;
12
gnvs
->
tpsv
=
90
;
13
}