blob: 978ce5562f53adf37660ca36a0d9fa9541ef8d93 [file] [log] [blame]
Damien Zammit4038a7f2015-04-20 16:53:36 +10001/*
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.
Damien Zammit4038a7f2015-04-20 16:53:36 +100014 */
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
30#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
40void acpi_create_gnvs(global_nvs_t *gnvs)
41{
42 memset((void *)gnvs, 0, sizeof(*gnvs));
43 gnvs->apic = 1;
44 gnvs->mpen = 1; /* Enable Multi Processing */
45 gnvs->pcnt = dev_count_cpu();
46
47 /* Disable USB ports in S3 by default */
48 gnvs->s3u0 = 0;
49 gnvs->s3u1 = 0;
50
51 /* Disable USB ports in S5 by default */
52 gnvs->s5u0 = 0;
53 gnvs->s5u1 = 0;
54
Damien Zammit4038a7f2015-04-20 16:53:36 +100055 // the lid is open by default.
56 gnvs->lids = 1;
57
58 acpi_update_thermal_table(gnvs);
59}