mb/lenovo/*/acpi_tables: Remove comment about IGD displays
[coreboot.git] / src / mainboard / lenovo / x230 / acpi_tables.c
blob279674d002175f06cccec72966c5c4d43378d30a
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2007-2009 coresystems GmbH
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <southbridge/intel/bd82x6x/nvs.h>
17 #include "thermal.h"
19 static void acpi_update_thermal_table(global_nvs_t *gnvs)
21 gnvs->tcrt = CRITICAL_TEMPERATURE;
22 gnvs->tpsv = PASSIVE_TEMPERATURE;
25 void acpi_create_gnvs(global_nvs_t *gnvs)
27 /* Disable USB ports in S3 by default */
28 gnvs->s3u0 = 0;
29 gnvs->s3u1 = 0;
31 /* Disable USB ports in S5 by default */
32 gnvs->s5u0 = 0;
33 gnvs->s5u1 = 0;
35 // the lid is open by default.
36 gnvs->lids = 1;
38 acpi_update_thermal_table(gnvs);