blob: 37cd5c995efbd82ecc8693cc4aad3fb6551b2390 [file] [log] [blame]
Vladimir Serbinenko55f3e2f2015-05-29 22:07:29 +02001#include <southbridge/intel/bd82x6x/nvs.h>
2
3/* FIXME: check this function. */
4void acpi_create_gnvs(global_nvs_t *gnvs)
5{
6 /* Disable USB ports in S3 by default */
7 gnvs->s3u0 = 0;
8 gnvs->s3u1 = 0;
9
10 /* Disable USB ports in S5 by default */
11 gnvs->s5u0 = 0;
12 gnvs->s5u1 = 0;
13
14 // the lid is open by default.
15 gnvs->lids = 1;
16
17 gnvs->tcrt = 100;
18 gnvs->tpsv = 90;
19}