blob: 2c148d4b744514d3da4672125bee0cde89c8b10d [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>
27#include <cpu/cpu.h>
28#include <cpu/x86/msr.h>
29
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010030#include <southbridge/intel/bd82x6x/pch.h>
31#include <southbridge/intel/bd82x6x/nvs.h>
32#include "thermal.h"
33
34static void acpi_update_thermal_table(global_nvs_t *gnvs)
35{
36 gnvs->tcrt = CRITICAL_TEMPERATURE;
37 gnvs->tpsv = PASSIVE_TEMPERATURE;
38}
39
Vladimir Serbinenko35c0f432014-09-02 22:25:36 +020040void acpi_create_gnvs(global_nvs_t *gnvs)
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010041{
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010042 /* Disable USB ports in S3 by default */
43 gnvs->s3u0 = 0;
44 gnvs->s3u1 = 0;
45
46 /* Disable USB ports in S5 by default */
47 gnvs->s5u0 = 0;
48 gnvs->s5u1 = 0;
49
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010050 /* IGD Displays */
Vladimir Serbinenkoe7e95022014-01-12 15:26:15 +010051
52 // the lid is open by default.
53 gnvs->lids = 1;
54
55 acpi_update_thermal_table(gnvs);
56}