blob: b5b51a045d5782b129e45337ffbe28f2fb417e86 [file] [log] [blame]
Mono9b908242014-03-02 18:40:36 +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
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Mono9b908242014-03-02 18:40:36 +010015 */
16
17#include <string.h>
18#include <console/console.h>
19#include <arch/io.h>
20#include <arch/ioapic.h>
21#include <arch/acpi.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
Mono9b908242014-03-02 18:40:36 +010028#include "southbridge/intel/i82801gx/nvs.h"
Vladimir Serbinenko0e646172014-08-31 00:27:05 +020029void acpi_create_gnvs(global_nvs_t *gnvs)
Mono9b908242014-03-02 18:40:36 +010030{
Mono9b908242014-03-02 18:40:36 +010031 /* Enable both COM ports */
32 gnvs->cmap = 0x01;
33 gnvs->cmbp = 0x01;
34
Mono9b908242014-03-02 18:40:36 +010035}