Date: Fri, 28 Jun 2002 18:13:35 -0700 (PDT) From: Morten Aaboe Jensen <morten@codemonkey.dk> To: freebsd-gnats-submit@FreeBSD.org Subject: kern/39974: fxp driver doesn't detect the 82562 chipset on Intel EthernetExpress NICs Message-ID: <200206290113.g5T1DZLC012822@www.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 39974 >Category: kern >Synopsis: fxp driver doesn't detect the 82562 chipset on Intel EthernetExpress NICs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Jun 28 18:20:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Morten Aaboe Jensen >Release: 4.6-RELEASE >Organization: >Environment: FreeBSD 4.6-STABLE FreeBSD 4.6--STABLE #0: Sat Jun 29 02:45:20 CEST 2002 root@:/usr/obj/usr/src/sys/KENNY i386 >Description: The fxp driver doesn't claim ownership of the i82562 chipset, and causes some embedded NICs not to be detected. Output from 'pciconf -lv': fxp0@pci2:8:0: class=0x020000 card=0x80711043 chip=0x103a8086 rev=0x81 hdr=0x00 vendor = 'Intel Corporation' device = '82801DB (ICH4) LAN Controller with 82562ET/EZ (CNR) PHY' class = network subclass = ethernet Just adding an entry catching 0x103A to if_fxp.c fixes the problem. >How-To-Repeat: Just boot any machine with a NIC using the i82562 chipset >Fix: Add an entry to sys/dev/fxp/if_fxp.c to catch the new chipset. --- if_fxp.c Sat Jun 29 03:07:03 2002 +++ if_fxp.c-patched Sat Jun 29 03:06:43 2002 @@ -160,6 +160,7 @@ { 0x1037, "Intel Pro/100 Ethernet" }, { 0x1038, "Intel Pro/100 Ethernet" }, { 0x1039, "Intel Pro/100 Ethernet" }, + { 0x103A, "Intel Pro/100 Ethernet" }, { 0, NULL }, }; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200206290113.g5T1DZLC012822>