From owner-freebsd-stable@FreeBSD.ORG Fri Oct 23 13:26:30 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 797371065747 for ; Fri, 23 Oct 2009 13:26:30 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 4B8BB8FC14 for ; Fri, 23 Oct 2009 13:26:30 +0000 (UTC) Received: from bigwig.baldwin.cx (66.111.2.69.static.nyinternet.net [66.111.2.69]) by cyrus.watson.org (Postfix) with ESMTPSA id F278A46B0C; Fri, 23 Oct 2009 09:26:29 -0400 (EDT) Received: from jhbbsd.hudson-trading.com (unknown [209.249.190.8]) by bigwig.baldwin.cx (Postfix) with ESMTPA id 356838A020; Fri, 23 Oct 2009 09:26:29 -0400 (EDT) From: John Baldwin To: freebsd-stable@freebsd.org Date: Fri, 23 Oct 2009 08:12:30 -0400 User-Agent: KMail/1.9.7 References: <57200BF94E69E54880C9BB1AF714BBCBA570C7@w2003s01.double-l.local> In-Reply-To: <57200BF94E69E54880C9BB1AF714BBCBA570C7@w2003s01.double-l.local> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200910230812.31166.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0.1 (bigwig.baldwin.cx); Fri, 23 Oct 2009 09:26:29 -0400 (EDT) X-Virus-Scanned: clamav-milter 0.95.1 at bigwig.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-2.5 required=4.2 tests=AWL,BAYES_00,RDNS_NONE autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on bigwig.baldwin.cx Cc: Johan Hendriks Subject: Re: Broadcom on HP Proliant ML150G6 not detected by 8.0RC1 AMD64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Oct 2009 13:26:30 -0000 On Thursday 22 October 2009 11:07:23 am Johan Hendriks wrote: > Hello all > I just installed FreeBSD 8.0RC1 AMD64 on my new HP Proliant ML150 G6 > server. > It fails to detect the Broadcom network interface. > > > > Pciconf -lv gives me the following. > > none3@pci0:4:0:0: class=0x020000 card=0x705d10c chip=0x165b14e4 > rev=0x10 > hdr=0x00 > > vendor = 'Broadcom Corporation' > class = network > > Subclass = Ethernet > > > > Is there something I can do, other than install an other network card? I think you can just patch the bge(4) driver to add support for your adapter. It looks like a BCM5723 from the PCI ID. Support for it was just added in 9.0 as part of change 197832, but I suspect it might not need all the other patches from that change. Try this diff: Index: if_bgereg.h =================================================================== --- if_bgereg.h (revision 197831) +++ if_bgereg.h (revision 197832) @@ -2101,6 +2123,7 @@ #define BCOM_DEVICEID_BCM5720 0x1658 #define BCOM_DEVICEID_BCM5721 0x1659 #define BCOM_DEVICEID_BCM5722 0x165A +#define BCOM_DEVICEID_BCM5723 0x165B #define BCOM_DEVICEID_BCM5750 0x1676 #define BCOM_DEVICEID_BCM5750M 0x167C #define BCOM_DEVICEID_BCM5751 0x1677 Index: if_bge.c =================================================================== --- if_bge.c (revision 197831) +++ if_bge.c (revision 197832) @@ -170,6 +170,7 @@ { BCOM_VENDORID, BCOM_DEVICEID_BCM5720 }, { BCOM_VENDORID, BCOM_DEVICEID_BCM5721 }, { BCOM_VENDORID, BCOM_DEVICEID_BCM5722 }, + { BCOM_VENDORID, BCOM_DEVICEID_BCM5723 }, { BCOM_VENDORID, BCOM_DEVICEID_BCM5750 }, { BCOM_VENDORID, BCOM_DEVICEID_BCM5750M }, { BCOM_VENDORID, BCOM_DEVICEID_BCM5751 }, -- John Baldwin