From owner-freebsd-current@FreeBSD.ORG Tue Dec 1 13:05:26 2009 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 74E1210656A3; Tue, 1 Dec 2009 13:05:26 +0000 (UTC) (envelope-from sarawgi.aditya@gmail.com) Received: from mail-px0-f190.google.com (mail-px0-f190.google.com [209.85.216.190]) by mx1.freebsd.org (Postfix) with ESMTP id 3DF778FC1E; Tue, 1 Dec 2009 13:05:26 +0000 (UTC) Received: by pxi28 with SMTP id 28so3578762pxi.7 for ; Tue, 01 Dec 2009 05:05:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:references:mime-version:content-type:content-disposition :in-reply-to:user-agent; bh=bXCIBzc8taHbMNMz1ncmotwb/qja7ri3K2fHjdFoeS0=; b=hdlyh9cOFh3DQdx2/aLnGsu0Fa90QiZe2l6vYXb2+LkCuSwZjoZxUoA8+x7ik+OPwJ 9GXQG9ZpwXnWgombH+D+yog/AWZGhfkDsGFa97KHIo7pP3iBrOlT95vnvZhL0iFSP4Vv 6Ft67paD/rskQZcSp0hNmKBJxMYDWiQO8uv+I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=LoihdcoVAV8baBDT5HKLVOO5KXW6zx73cTt4oITOrR88BfvyuLCBT1IIxkpoEAuiRj 6jUxQUoHPaIosmefXOWec7tyzxcbD6tMKDudG4ogZocbkcJYaDimMU1Etz+LbbwT1QAL X0o7z39AiyLnB8363W6hxF91px5slF9k2tx/s= Received: by 10.114.214.24 with SMTP id m24mr10911287wag.93.1259672725637; Tue, 01 Dec 2009 05:05:25 -0800 (PST) Received: from ([111.125.238.4]) by mx.google.com with ESMTPS id 22sm253165pxi.14.2009.12.01.05.05.24 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 01 Dec 2009 05:05:25 -0800 (PST) Date: Tue, 1 Dec 2009 18:35:55 +0000 From: Aditya Sarawgi To: Weongyo Jeong Message-ID: <4b151495.161bf30a.240b.28d6@mx.google.com> References: <20091130034110.GD5432@weongyo> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="oyUTqETQ0mS9luUI" Content-Disposition: inline In-Reply-To: <20091130034110.GD5432@weongyo> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: current@freebsd.org Subject: Re: Call For Review: Sonics Silicon Backplane(SSB) driver 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: Tue, 01 Dec 2009 13:05:26 -0000 --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Nov 29, 2009 at 07:41:10PM -0800, Weongyo Jeong wrote: > Hello, > > I've written a Sonics Silicon Backplane driver which is widely used for > Broadcom Wireless driver that bwi(4) can use this driver though it has > its own routines in it. > > I don't have any knowledge to write a bus driver like this so I'm not > sure my approach is correct. Please review! > > You can download a driver at: > > http://people.freebsd.org/~weongyo/ssb_20091129.tar.gz > > regards, > Weongyo Jeong > One more thing can we add BCM4315 to the list of known devices. Please see the attached patch. -- Aditya Sarawgi --oyUTqETQ0mS9luUI Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="ssb.patch" --- /sys/dev/ssb/ssb_pci.c 2009-12-01 18:23:45.000000000 +0000 +++ /root/dev/ssb/ssb_pci.c 2009-11-25 00:00:51.000000000 +0000 @@ -77,7 +77,7 @@ { PCI_VENDOR_BROADCOM, 0x4311, "Broadcom BCM4311 802.11b/g Wireless" }, { PCI_VENDOR_BROADCOM, 0x4312, "Broadcom BCM4312 802.11a/b/g Wireless" }, - { PCI_VENDOR_BROADCOM, 0x4315, "Broadcom BCM4315 802.11b/g Wireless" }, + { PCI_VENDOR_BROADCOM, 0x4315, "Unknown" }, { PCI_VENDOR_BROADCOM, 0x4318, "Unknown" }, { PCI_VENDOR_BROADCOM, 0x4319, "Unknown" }, { PCI_VENDOR_BROADCOM, 0x4320, "Broadcom BCM4306 802.11b/g Wireless" }, --oyUTqETQ0mS9luUI--