From owner-freebsd-bugs Fri Jun 28 18:20: 9 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3E2937B401 for ; Fri, 28 Jun 2002 18:20:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05E2643E13 for ; Fri, 28 Jun 2002 18:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g5T1K1JU062761 for ; Fri, 28 Jun 2002 18:20:01 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g5T1K1OL062760; Fri, 28 Jun 2002 18:20:01 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1F6937B400 for ; Fri, 28 Jun 2002 18:13:36 -0700 (PDT) Received: from www.freebsd.org (www.FreeBSD.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44E9343E1A for ; Fri, 28 Jun 2002 18:13:36 -0700 (PDT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.4/8.12.4) with ESMTP id g5T1DZOT012823 for ; Fri, 28 Jun 2002 18:13:35 -0700 (PDT) (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.4/8.12.4/Submit) id g5T1DZLC012822; Fri, 28 Jun 2002 18:13:35 -0700 (PDT) Message-Id: <200206290113.g5T1DZLC012822@www.freebsd.org> Date: Fri, 28 Jun 2002 18:13:35 -0700 (PDT) From: Morten Aaboe Jensen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/39974: fxp driver doesn't detect the 82562 chipset on Intel EthernetExpress NICs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >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