From owner-freebsd-current@FreeBSD.ORG Fri Sep 8 08:46:51 2006 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C92D16A4DD; Fri, 8 Sep 2006 08:46:51 +0000 (UTC) (envelope-from oleg@lath.rinet.ru) Received: from lath.rinet.ru (lath.rinet.ru [195.54.192.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B53743D45; Fri, 8 Sep 2006 08:46:50 +0000 (GMT) (envelope-from oleg@lath.rinet.ru) Received: from lath.rinet.ru (localhost [127.0.0.1]) by lath.rinet.ru (8.13.6/8.13.6) with ESMTP id k888k8ma014805 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 8 Sep 2006 12:46:08 +0400 (MSD) (envelope-from oleg@lath.rinet.ru) Received: (from oleg@localhost) by lath.rinet.ru (8.13.6/8.13.6/Submit) id k888k700014804; Fri, 8 Sep 2006 12:46:07 +0400 (MSD) (envelope-from oleg) Date: Fri, 8 Sep 2006 12:46:07 +0400 From: Oleg Bulyzhin To: Matthew Jacob Message-ID: <20060908084607.GA14414@lath.rinet.ru> References: <7579f7fb0609071142t55ed3d6bib8c31db807cde0f7@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="h31gzZEtNLTqOjlF" Content-Disposition: inline In-Reply-To: <7579f7fb0609071142t55ed3d6bib8c31db807cde0f7@mail.gmail.com> User-Agent: Mutt/1.5.11 Cc: David Christensen , LI Xin , "Simon L. Nielsen" , freebsd-current@freebsd.org Subject: Re: Speaking of BGE(4) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Sep 2006 08:46:51 -0000 --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Sep 07, 2006 at 11:42:05AM -0700, Matthew Jacob wrote: > Speaking of BGE issues... a genuine amd64 motherboard with latest > -current source can't deal with the onboard bge. Any help for me > before I burn a PCI slot on another NIC card? > > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > bge1: PHY read timed out > > > bge1: mem > 0xfe470000-0xfe47ffff,0xfe4600 > 00-0xfe46ffff irq 28 at device 3.1 on pci14 > miibus1: on bge1 > brgphy1: on miibus1 > brgphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX, > 1000baseTX > -FDX, auto > bge1: Ethernet address: 00:00:1a:18:ab:9f > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" Could you please test attached patch (created by David)? If it will not work (though i guess it should help), please test if_bge.c rev. 1.140 -- Oleg. --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="if_bge.c.patch" Index: if_bge.c =================================================================== RCS file: /home/ncvs/src/sys/dev/bge/if_bge.c,v retrieving revision 1.143 diff -r1.143 if_bge.c 984,992d983 < /* < * Check the 'ROM failed' bit on the RX CPU to see if < * self-tests passed. < */ < if (CSR_READ_4(sc, BGE_RXCPU_MODE) & BGE_RXCPUMODE_ROMFAIL) { < device_printf(sc->bge_dev, "RX CPU self-diagnostics failed!\n"); < return (ENODEV); < } < --h31gzZEtNLTqOjlF--