From cryptographite@attbi.com  Wed Jun  4 04:26:22 2003
Return-Path: <cryptographite@attbi.com>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id BB9B437B401
	for <FreeBSD-gnats-submit@freebsd.org>; Wed,  4 Jun 2003 04:26:22 -0700 (PDT)
Received: from sccrmhc11.attbi.com (sccrmhc11.attbi.com [204.127.202.55])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 29FCE43FB1
	for <FreeBSD-gnats-submit@freebsd.org>; Wed,  4 Jun 2003 04:26:22 -0700 (PDT)
	(envelope-from cryptographite@attbi.com)
Received: from bastion.attbi.com (12-224-173-225.client.attbi.com[12.224.173.225](misconfigured sender))
          by attbi.com (sccrmhc11) with SMTP
          id <20030604112621011006qdc7e>; Wed, 4 Jun 2003 11:26:21 +0000
Message-Id: <5.2.1.1.0.20030604041905.00e00768@mail.attbi.com>
Date: Wed, 04 Jun 2003 04:26:05 -0700
From: Jay Rossiter / Signe <cryptographite@attbi.com>
To: FreeBSD-gnats-submit@freebsd.org
Subject: Intel Kinnereth-R NIC is not supported by fxp driver

>Number:         52927
>Category:       kern
>Synopsis:       Intel Kinnereth-R NIC is not supported by fxp driver
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jun 04 04:30:16 PDT 2003
>Closed-Date:    Thu Dec 04 12:53:02 PST 2003
>Last-Modified:  Thu Dec 04 12:53:02 PST 2003
>Originator:     Jay Rossiter
>Release:        FreeBSD 5.1-CURRENT i386
>Organization:
>Environment:
 System: FreeBSD zen.cothlamadh.net 5.1-CURRENT FreeBSD 5.1-CURRENT #2: Wed 
 Jun 4 03:01:17 PDT 2003 root@zen.cothlamadh.net:/usr/obj/usr/src/sys/ZEN i386
 
>Description:
 	The Gigabyte GA-8IK1100 motherboard's on-board NIC is the Intel 
 Kinnereth-R LAN PHY NIC.  This should be supported by the fxp NIC driver.
 
>How-To-Repeat:
 	Install FreeBSD 5.1 on a machine with the Gigabyte GA-8IK1100 motherboard 
	 installed.
 	After rebooting, login as root, and run "dmesg | grep ethernet"
 	Output should be similar to this: "pci2: <network, ethernet> at device 8.0 
	 (no driver attached)"
 
 	Since the GENERIC kernel includes fxp, this should be detected, but is 
	 not.  Recompiled kernels containing fxp do not detect this card, either.
 
>Fix:
 	Workaround:  None.
 
 
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: gnats-admin->freebsd-bugs 
Responsible-Changed-By: ceri 
Responsible-Changed-When: Wed Jun 4 12:06:32 PDT 2003 
Responsible-Changed-Why:  
Reassign misfiled PR. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=52927 

From: Brent Casavant <b.j.casavant@ieee.org>
To: freebsd-gnats-submit@FreeBSD.org, cryptographite@attbi.com
Cc:  
Subject: Re: kern/52927: Intel Kinnereth-R NIC is not supported by fxp driver
Date: Tue, 29 Jul 2003 23:14:27 -0500 (CDT)

 Here's a patch to make this work.  Patch is against 5.1-RELEASE.
 
 Tested and works (otherwise you wouldn't be getting this message)
 on a Gigabyte GA-8IK1100 motherboard.  I haven't stress-tested
 the interface, but in a half-hour of web browsing it's done just
 fine.
 
 I took a stab at the correct string to describe this Ethernet controller.
 I got the "82801EB" from PR kern/54176, and I have no idea what the
 "VE" or "VM" means, so I left it out.
 
 --- cut here ---
 Index: sys/dev/fxp/if_fxp.c
 ===================================================================
 RCS file: /usr/FreeBSDCVS/src/sys/dev/fxp/if_fxp.c,v
 retrieving revision 1.180
 diff -u -r1.180 if_fxp.c
 --- sys/dev/fxp/if_fxp.c        25 May 2003 05:04:26 -0000      1.180
 +++ sys/dev/fxp/if_fxp.c        30 Jul 2003 03:32:09 -0000
 @@ -166,6 +166,7 @@
      { 0x103C,          "Intel 82801DB (ICH4) Pro/100 Ethernet" },
      { 0x103D,          "Intel 82801DB (ICH4) Pro/100 VE Ethernet" },
      { 0x103E,          "Intel 82801DB (ICH4) Pro/100 VM Ethernet" },
 +    { 0x1050,          "Intel 82801EB (ICH5) Pro/100 Ethernet" },
      { 0x1059,          "Intel 82551QM Pro/100 M Mobile Connection" },
      { 0x1209,          "Intel 82559ER Embedded 10/100 Ethernet" },
      { 0x1229,          "Intel 82557/8/9 EtherExpress Pro/100(B) Ethernet" },
 --- cut here ---
 
 I hope this helps,
 Brent Casavant
 
 -- 
 Brent Casavant			http://www.angeltread.org/
 KD5EMB				-.- -.. ..... . -- -...
 44 54'24"N 93 03'21"W 907FASL	EN34lv

From: Gavin Atkinson <gavin+freebsdpr@ury.york.ac.uk>
To: freebsd-gnats-submit@FreeBSD.org, cryptographite@attbi.com
Cc:  
Subject: Re: kern/52927: Intel Kinnereth-R NIC is not supported by fxp driver
Date: Thu, 4 Dec 2003 10:22:06 +0000 (GMT)

 This PR can now be closed.
 Fixed in src/sys/dev/fxp/if_fxp.c 1.182 and MFC'd (1.110.2.30).
 
 Gavin
State-Changed-From-To: open->closed 
State-Changed-By: linimon 
State-Changed-When: Thu Dec 4 12:52:02 PST 2003 
State-Changed-Why:  
Reported by Gavin Atkinson <gavin+freebsdpr@ury.york.ac.uk>: 
"already fixed in src/sys/dev/fxp/if_fxp.c 1.182 and MFC'd (1.110.2.30)." 

http://www.freebsd.org/cgi/query-pr.cgi?pr=52927 
>Unformatted:
