blob: def9e5fd746a6ec8bc31142c2e1441f965a5f0ad [file] [log] [blame]
Noah Glovskycc93ce72016-04-19 15:43:17 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
Vladimir Serbinenko55f3e2f2015-05-29 22:07:29 +020014#include <southbridge/intel/bd82x6x/nvs.h>
15
Vladimir Serbinenko55f3e2f2015-05-29 22:07:29 +020016void acpi_create_gnvs(global_nvs_t *gnvs)
17{
18 /* Disable USB ports in S3 by default */
19 gnvs->s3u0 = 0;
20 gnvs->s3u1 = 0;
21
22 /* Disable USB ports in S5 by default */
23 gnvs->s5u0 = 0;
24 gnvs->s5u1 = 0;
25
Elyes HAOUAS571fb1f2016-10-07 12:46:28 +020026 /* the lid is open by default. */
Vladimir Serbinenko55f3e2f2015-05-29 22:07:29 +020027 gnvs->lids = 1;
28
29 gnvs->tcrt = 100;
30 gnvs->tpsv = 90;
31}