blob: c9e94070d7fa0b14fc485d5d144ebfeaef8890fc [file] [log] [blame]
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +01001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 *
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.
9 *
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.
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010014 */
15
16#include <types.h>
17#include <string.h>
18#include <cbmem.h>
19#include <console/console.h>
20#include <arch/acpi.h>
21#include <arch/ioapic.h>
22#include <arch/acpigen.h>
23#include <arch/smp/mpspec.h>
24#include <device/device.h>
25#include <device/pci.h>
26#include <device/pci_ids.h>
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010027
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010028#include <southbridge/intel/bd82x6x/pch.h>
29#include <southbridge/intel/bd82x6x/nvs.h>
30#include "thermal.h"
31
32static void acpi_update_thermal_table(global_nvs_t *gnvs)
33{
34 gnvs->tcrt = CRITICAL_TEMPERATURE;
35 gnvs->tpsv = PASSIVE_TEMPERATURE;
36}
37
Vladimir Serbinenko35c0f432014-09-02 22:25:36 +020038void acpi_create_gnvs(global_nvs_t *gnvs)
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010039{
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010040 /* Disable USB ports in S3 by default */
41 gnvs->s3u0 = 0;
42 gnvs->s3u1 = 0;
43
44 /* Disable USB ports in S5 by default */
45 gnvs->s5u0 = 0;
46 gnvs->s5u1 = 0;
47
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010048 /* IGD Displays */
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010049
50 // the lid is open by default.
51 gnvs->lids = 1;
52
53 acpi_update_thermal_table(gnvs);
54}