From owner-freebsd-stable@FreeBSD.ORG Tue Oct 31 00:37:50 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7062C16A416 for ; Tue, 31 Oct 2006 00:37:50 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70BE843D7C for ; Tue, 31 Oct 2006 00:37:41 +0000 (GMT) (envelope-from pyunyh@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so1424959wxd for ; Mon, 30 Oct 2006 16:37:39 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:subject:message-id:reply-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=OENPx6PXk8oyG4azbT9GHLS72wQSoDWeckhHCJ0tJtBPp1jonihVtx4PUKl6p1vNE9+wmdWZWbB9/AwIBxIEbybP0WYiGMJVgqsPCeT5lWIB0EAKTw6iylGfa8NfStbqpxh7bL2gthL8fonmtbsWltP0cCA2qEop/409Qn9FbNk= Received: by 10.90.105.19 with SMTP id d19mr1888523agc; Mon, 30 Oct 2006 16:37:38 -0800 (PST) Received: from michelle.cdnetworks.co.kr ( [211.53.35.84]) by mx.google.com with ESMTP id 64sm5782476wra.2006.10.30.16.37.37; Mon, 30 Oct 2006 16:37:38 -0800 (PST) Received: from michelle.cdnetworks.co.kr (localhost.cdnetworks.co.kr [127.0.0.1]) by michelle.cdnetworks.co.kr (8.13.5/8.13.5) with ESMTP id k9V0daTY056362 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 31 Oct 2006 09:39:36 +0900 (KST) (envelope-from pyunyh@gmail.com) Received: (from yongari@localhost) by michelle.cdnetworks.co.kr (8.13.5/8.13.5/Submit) id k9V0daep056361; Tue, 31 Oct 2006 09:39:36 +0900 (KST) (envelope-from pyunyh@gmail.com) Date: Tue, 31 Oct 2006 09:39:36 +0900 From: Pyun YongHyeon To: Conrad Burger Message-ID: <20061031003936.GB55910@cdnetworks.co.kr> References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="4Ckj6UjgE2iN1+kY" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Cc: freebsd-stable@freebsd.org Subject: Re: Dell 1955 Blade - Broadcom NIC not detected (BCM5708S) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Oct 2006 00:37:50 -0000 --4Ckj6UjgE2iN1+kY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Oct 30, 2006 at 04:17:00PM +0200, Conrad Burger wrote: > I am trying to get FreeBSD to work on a Dell 1955 blade. Looks like > the NICs on the blade are not supported by the BCE or BGE driver. > > On Linux the NICs are identified as "06:00.0 Ethernet controller: > Broadcom Corporation NetXtreme II BCM5708S Gigabit Ethernet (rev 11)" > > >From "if_bce.c" > ------------------------- > * The following controllers are not supported by this driver: > * (These are not "Production" versions of the controller.) > * BCM5706C A0, A1 > * BCM5706S A0, A1, A2, A3 > * BCM5708C A0, B0 > * --> BCM5708S <-- A0, B0, B1 > > Is there any reason why the chipset is not supported? Is there anyway > of getting the BCE or BGE driver to work with this chipset? Will it be > supported sometime in the near future? > > Any help would be much appreciated. > It seems that there is typo in bce(4) driver. Try attached patch. -- Regards, Pyun YongHyeon --4Ckj6UjgE2iN1+kY Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="if_bce.diff" Index: if_bce.c =================================================================== RCS file: /pool/ncvs/src/sys/dev/bce/if_bce.c,v retrieving revision 1.17 diff -u -r1.17 if_bce.c --- if_bce.c 21 Oct 2006 07:54:39 -0000 1.17 +++ if_bce.c 31 Oct 2006 00:37:47 -0000 @@ -116,8 +116,8 @@ "Broadcom NetXtreme II BCM5708 1000Base-T" }, /* BCM5708S controllers and OEM boards. */ - { BRCM_VENDORID, BRCM_DEVICEID_BCM5708, PCI_ANY_ID, PCI_ANY_ID, - "Broadcom NetXtreme II BCM5708 1000Base-T" }, + { BRCM_VENDORID, BRCM_DEVICEID_BCM5708S, PCI_ANY_ID, PCI_ANY_ID, + "Broadcom NetXtreme II BCM5708S 1000Base-T" }, { 0, 0, 0, 0, NULL } }; --4Ckj6UjgE2iN1+kY--