From owner-freebsd-usb@FreeBSD.ORG Wed Feb 8 15:35:59 2012 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7BF791065670 for ; Wed, 8 Feb 2012 15:35:59 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe08.c2i.net [212.247.154.226]) by mx1.freebsd.org (Postfix) with ESMTP id 091898FC14 for ; Wed, 8 Feb 2012 15:35:58 +0000 (UTC) X-T2-Spam-Status: No, hits=-0.2 required=5.0 tests=ALL_TRUSTED, BAYES_50 Received: from [188.126.198.129] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe08.swip.net (CommuniGate Pro SMTP 5.4.2) with ESMTPA id 238470213; Wed, 08 Feb 2012 16:35:56 +0100 From: Hans Petter Selasky To: Purushotham Nayak Date: Wed, 8 Feb 2012 16:34:04 +0100 User-Agent: KMail/1.13.5 (FreeBSD/8.2-STABLE; KDE/4.4.5; amd64; ; ) References: <1328486659.93108.YahooMailNeo@web65904.mail.ac4.yahoo.com> <201202061805.38647.hselasky@c2i.net> <1328659152.54775.YahooMailNeo@web65903.mail.ac4.yahoo.com> In-Reply-To: <1328659152.54775.YahooMailNeo@web65903.mail.ac4.yahoo.com> X-Face: 'mmZ:T{)),Oru^0c+/}w'`gU1$ubmG?lp!=R4Wy\ELYo2)@'UZ24N@ =?iso-8859-1?q?d2+AyewRX=7DmAm=3BYp=0A=09=7CU=5B?=@, _z/([?1bCfM{_"B<.J>mICJCHAzzGHI{y7{%JVz%R~yJHIji`y> =?iso-8859-1?q?Y=7Dk1C4TfysrsUI=0A=09-=25GU9V5=5DiUZF=26nRn9mJ=27=3F=26?=>O MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201202081634.04941.hselasky@c2i.net> Cc: "freebsd-usb@freebsd.org" Subject: Re: Bose USB Audio No Playback X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Feb 2012 15:35:59 -0000 On Wednesday 08 February 2012 00:59:12 Purushotham Nayak wrote: > Hi Hans, > > > When I just run usbconfig I get > ugen0.2: at usbus0, cfg=0 md=HOST > spd=FULL (12Mbps) pwr=ON > > I ran, > usbconfig -d ugen0.2 dump_device_desc dump_curr_config_desc > I've attached the output with this e-mail. > > I pulled out the bose usb and ran > sysctl hw.usb.uaudio.debug=15 > and then plugged back in and it's still the same in dmesg. It says No > Playback. Interesting my mouse stopped working when I did this. Hi, Try this command: sysctl hw.usb.uaudio.default_channels=6 Then replug your device. Does it work? You can also set this in: /boot/loader.conf I think the problem is that that your device is having a lot of channels, and should really be using High Speed USB. The device might not work correctly when connected through a High Speed HUB. Connect it directly to your PC/MAC! Reference: /sys/dev/sound/usb/uaudio.c switch (usbd_get_speed(udev)) { case USB_SPEED_LOW: case USB_SPEED_FULL: /* * Due to high bandwidth usage and problems * with HIGH-speed split transactions we * disable surround setups on FULL-speed USB * by default */ channels = 2; break; default: channels = 16; break; } --HPS