From owner-freebsd-bluetooth@FreeBSD.ORG Thu Nov 8 23:32:12 2007 Return-Path: Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BD4F16A417 for ; Thu, 8 Nov 2007 23:32:12 +0000 (UTC) (envelope-from maksim.yevmenkin@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.185]) by mx1.freebsd.org (Postfix) with ESMTP id AB8FF13C49D for ; Thu, 8 Nov 2007 23:32:11 +0000 (UTC) (envelope-from maksim.yevmenkin@gmail.com) Received: by nf-out-0910.google.com with SMTP id b2so266320nfb for ; Thu, 08 Nov 2007 15:32:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=LfsUgTc7bGqLu9wq6GUazSc1LC5M7hyjd7vnc5ic1Lc=; b=RBDYXd0a/CDmk/QCmnv06lqrzUTaIG8dy77FE45OR/Z4KXB1De6PG7Cj3WNIPn+KzEuC0UnRFdv1ZevwfXLoqPiPoaz4FLOKmdGIyo8UbX9g5GwzTfiwyj8r12epGU4/0aEru1lHQkJZxg3ccmFu5Rp7Z4vDY9q99px/Guw1DSI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=bVH9WWYL9mhebn32Ipv48Y0Yl2k6BbTpUxqys7kDPPzqxJ+bfufgRrxcLmvb3yG8aQxdUL5UVwBZAT1zdGl5nvgPQgbjx+VP73Ar+WatVWgNcBpcjHZkfmKsLtVQc8Jf79j/lsJzYqwH2PMhRy+Lauty53WUnJ1f/icK9d2Vi0Q= Received: by 10.86.98.18 with SMTP id v18mr954937fgb.1194564723443; Thu, 08 Nov 2007 15:32:03 -0800 (PST) Received: by 10.86.83.12 with HTTP; Thu, 8 Nov 2007 15:32:03 -0800 (PST) Message-ID: Date: Thu, 8 Nov 2007 15:32:03 -0800 From: "Maksim Yevmenkin" To: jimmiejaz@gmail.com In-Reply-To: <47337FC6.7060106@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <47336CE0.4040909@gmail.com> <47337FC6.7060106@gmail.com> Cc: freebsd-bluetooth@freebsd.org, freebsd-questions@freebsd.org Subject: Re: usb dongle X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Nov 2007 23:32:12 -0000 On 11/8/07, Jimmie James wrote: > Maksim Yevmenkin wrote: > > On 11/8/07, Jimmie James wrote: > >> I have a Broadcom BCM92035DGROM dongle, and this is what I'm seeing. > >> I'm assuming it's not supported, (from the handbook: The Broadcom > >> BCM2033 chip based Bluetooth devices are supported via the ubtbcmfw(4) > >> and ng_ubt(4) drivers) > >> > >> Is there anyone that's gotten this model to work, or is it an exercise > >> in futility? > > > > first of all, i doubt that BCM92035 is using 2033 chip. i think it is > > uses different (2035?) chip. > > > > it also appears that this particular dongle may need to use special > > non-standard initialization sequence. > > > > can you please check vendor id/product id pair for your dongle (use usbdevs(8)). > > > > 1) if it is (0x0a5c, 0x200a) then you could try to comment out "reset" > > command in /etc/rc.d/bluetooth > > > > 2) if it is (x0a5c, 0x2009) then you out of luck - this device needs > > special non-standard initialization sequence. ng_ubt(4) currently does > > not support that. if i can get this dongle into my hands i can fix > > ng_ubt(4) > > > > thanks, > > max > > > > I was searching google and came across these two threads, > http://lists.freebsd.org/pipermail/freebsd-bluetooth/2006-September/000788.html > http://www.nabble.com/j2me-bluetooth-app-using-freebsd-bluetooth-stack-t2356546.html > > So it looked like it was possible... > > usbdevs -dv shows: > port 1 addr 2: full speed, power 100 mA, config 1, > BCM92035DGROM(0x0850), Broadcom(0x22b8), rev 1.09 > ubt0 huh?? very strange. not sure why your dongle says its broadcom, where is vendor id 0x22b8 is for motorola. the product is 0850 seems to be for motorola pc850 dongle. 1) please check /var/log/messages to see if there are any errors from ng_ubt(4) driver 2) please install hcidump from ports (comms/hcidump) and then as root make sure device is not connected # kldload ng_btsocket -- this may fail if ng_btsocket module was already loaded, ignore it. # hcidump -w init.dump -- this will block now attach the device and wait for it to fail terminate hcidump with ^c and send me the init.dump file thanks, max