4aa181e712
Change-Id: Ibbb80cb28833131e3b02a8ff583d53c52ef2ca0f Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26742 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
43 lines
1.3 KiB
C
43 lines
1.3 KiB
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright (C) 2008-2009 coresystems GmbH
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/* This code should work for all ICH* southbridges with a NIC. */
|
|
|
|
#include <device/device.h>
|
|
#include <device/pci.h>
|
|
#include <device/pci_ids.h>
|
|
|
|
static void nic_init(struct device *dev)
|
|
{
|
|
/* Nothing yet */
|
|
}
|
|
|
|
static struct device_operations nic_ops = {
|
|
.read_resources = pci_dev_read_resources,
|
|
.set_resources = pci_dev_set_resources,
|
|
.enable_resources = pci_dev_enable_resources,
|
|
.init = nic_init,
|
|
.scan_bus = 0,
|
|
};
|
|
|
|
/* 82801GB/GR/GDH/GBM/GHM (ICH7/ICH7R/ICH7DH/ICH7-M/ICH7-M DH) */
|
|
/* Note: 82801GU (ICH7-U) doesn't have a NIC. */
|
|
/* PCI ID loaded from EEPROM. If EEPROM is 0, 0x27dc is used. */
|
|
static const struct pci_driver i82801gx_nic __pci_driver = {
|
|
.ops = &nic_ops,
|
|
.vendor = PCI_VENDOR_ID_INTEL,
|
|
.device = 0x27dc,
|
|
};
|