Change-Id: I485791015aa7eaabba53813945c216f5725554b1 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/6948 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
69 lines
1.9 KiB
C
69 lines
1.9 KiB
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright (C) 2004 Tyan Computer
|
|
* Written by Yinghai Lu <yhlu@tyan.com> for Tyan Computer.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include <console/console.h>
|
|
#include <device/device.h>
|
|
#include <device/pci.h>
|
|
#include <device/pci_ids.h>
|
|
#include <device/pci_ops.h>
|
|
#include "ck804.h"
|
|
#include <arch/acpi.h>
|
|
|
|
#if IS_ENABLED(CONFIG_GENERATE_ACPI_TABLES)
|
|
|
|
unsigned long acpi_fill_mcfg(unsigned long current)
|
|
{
|
|
device_t dev;
|
|
unsigned long mcfg_base;
|
|
|
|
dev = dev_find_slot(0x0, PCI_DEVFN(0x0,0));
|
|
if (!dev)
|
|
return current;
|
|
|
|
mcfg_base = pci_read_config16(dev, 0x90);
|
|
if ((mcfg_base & 0x1000) == 0)
|
|
return current;
|
|
|
|
mcfg_base = (mcfg_base & 0xf) << 28;
|
|
|
|
printk(BIOS_INFO, "mcfg_base %lx.\n", mcfg_base);
|
|
|
|
current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *)
|
|
current, mcfg_base, 0x0, 0x0, 0xff);
|
|
return current;
|
|
}
|
|
|
|
#endif
|
|
|
|
static struct device_operations ht_ops = {
|
|
.read_resources = pci_dev_read_resources,
|
|
.set_resources = pci_dev_set_resources,
|
|
.enable_resources = pci_dev_enable_resources,
|
|
.init = 0,
|
|
.scan_bus = 0,
|
|
.ops_pci = &ck804_pci_ops,
|
|
};
|
|
|
|
static const struct pci_driver ht_driver __pci_driver = {
|
|
.ops = &ht_ops,
|
|
.vendor = PCI_VENDOR_ID_NVIDIA,
|
|
.device = PCI_DEVICE_ID_NVIDIA_CK804_HT,
|
|
};
|