summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorriz <riz@NetBSD.org>2005-05-18 20:33:46 +0000
committerriz <riz@NetBSD.org>2005-05-18 20:33:46 +0000
commitd8dda9700a40b0f2ab637f1115fb301649bde90b (patch)
tree7e9adaa90bbd9b8a99ddad644f610f6cf1806d0d /sys/dev
parent21ef7c17a0e1df85dece03a6ed1f0257b33c422b (diff)
Add support for the 82801FB (ICH6) 10/100 ethernet appearing
on new Intel motherboards. From Brian Buhrow in PR#30025. Approved by jmcneill.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_fxp_pci.c7
-rw-r--r--sys/dev/pci/pcidevs3
2 files changed, 7 insertions, 3 deletions
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c
index e910d9a7fde..1b4ae54438b 100644
--- a/sys/dev/pci/if_fxp_pci.c
+++ b/sys/dev/pci/if_fxp_pci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: if_fxp_pci.c,v 1.40 2005/02/27 00:27:33 perry Exp $ */
+/* $NetBSD: if_fxp_pci.c,v 1.41 2005/05/18 20:33:46 riz Exp $ */
/*-
* Copyright (c) 1997, 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
@@ -43,7 +43,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_fxp_pci.c,v 1.40 2005/02/27 00:27:33 perry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_fxp_pci.c,v 1.41 2005/05/18 20:33:46 riz Exp $");
#include "rnd.h"
@@ -148,6 +148,8 @@ static const struct fxp_pci_product {
"Intel PRO/100 M Network Controller" },
{ PCI_PRODUCT_INTEL_82801EB_LAN,
"Intel 82801EB/ER (ICH5) Network Controller" },
+ { PCI_PRODUCT_INTEL_82801FB_LAN,
+ "Intel 82562EZ (ICH6)" },
{ 0,
NULL },
};
@@ -402,6 +404,7 @@ fxp_pci_attach(struct device *parent, struct device *self, void *aux)
case PCI_PRODUCT_INTEL_PRO_100_VM_5:
case PCI_PRODUCT_INTEL_PRO_100_VM_6:
case PCI_PRODUCT_INTEL_82801EB_LAN:
+ case PCI_PRODUCT_INTEL_82801FB_LAN:
default:
aprint_normal(": %s, rev %d\n", fpp->fpp_name, sc->sc_rev);
diff --git a/sys/dev/pci/pcidevs b/sys/dev/pci/pcidevs
index 801bda6ccea..046f2fe441f 100644
--- a/sys/dev/pci/pcidevs
+++ b/sys/dev/pci/pcidevs
@@ -1,4 +1,4 @@
-$NetBSD: pcidevs,v 1.710 2005/05/12 23:10:32 cube Exp $
+$NetBSD: pcidevs,v 1.711 2005/05/18 20:33:46 riz Exp $
/*
* Copyright (c) 1995, 1996 Christopher G. Demetriou
@@ -1681,6 +1681,7 @@ product INTEL 82597EX 0x1048 PRO/10GbE LR Server Adapter
product INTEL PRO_100_VM_6 0x1050 PRO/100 VM Network Controller with 82562ET/EZ PHY
product INTEL 82801EB_LAN 0x1051 82801EB/ER 10/100 Ethernet
product INTEL PRO_100_M 0x1059 PRO/100 M Network Controller
+product INTEL 82801FB_LAN 0x1064 82801FB 10/100 Ethernet
product INTEL 82547GI 0x1075 i82547GI Gigabit Ethernet
product INTEL 82541GI 0x1076 i82541GI Gigabit Ethernet
product INTEL 82541GI_MOBILE 0x1077 i82541GI Mobile Gigabit Ethernet