blob: b5b51a045d5782b129e45337ffbe28f2fb417e86 [file] [log] [blame]
Sven Schnellee2ca71e2011-02-14 20:02:47 +00001/*
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.
Sven Schnellee2ca71e2011-02-14 20:02:47 +000015 */
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>
Sven Schnellee2ca71e2011-02-14 20:02:47 +000027
Sven Schnellee2ca71e2011-02-14 20:02:47 +000028#include "southbridge/intel/i82801gx/nvs.h"
Vladimir Serbinenko0e646172014-08-31 00:27:05 +020029void acpi_create_gnvs(global_nvs_t *gnvs)
Sven Schnellee2ca71e2011-02-14 20:02:47 +000030{
Sven Schnellee2ca71e2011-02-14 20:02:47 +000031 /* Enable both COM ports */
32 gnvs->cmap = 0x01;
33 gnvs->cmbp = 0x01;
34
Sven Schnellee2ca71e2011-02-14 20:02:47 +000035}