From owner-freebsd-current@FreeBSD.ORG Mon Jun 9 08:38:22 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC73A37B401; Mon, 9 Jun 2003 08:38:22 -0700 (PDT) Received: from murmeldjur.it.su.se (murmeldjur.it.su.se [130.237.95.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 451D343FDF; Mon, 9 Jun 2003 08:38:21 -0700 (PDT) (envelope-from rnyberg@it.su.se) Received: from murmeldjur.it.su.se (localhost [127.0.0.1]) by murmeldjur.it.su.se (8.12.8/8.12.8) with ESMTP id h59FcIQM011366; Mon, 9 Jun 2003 17:38:18 +0200 (CEST) (envelope-from rnyberg@it.su.se) Date: Mon, 09 Jun 2003 17:38:18 +0200 Message-ID: From: Richard Nyberg To: Richard Arends In-Reply-To: <20030608115113.Q76780@mail.unixguru.nl> References: <200306080124.19685.bsd@hightek.org> <20030608115113.Q76780@mail.unixguru.nl> User-Agent: Wanderlust/2.10.0 (Venus) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.4 Emacs/21.2 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII cc: freebsd-current@freebsd.org cc: freebsd-hardware@freebsd.org Subject: Re: USB umass BBB mass storage support X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 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: Mon, 09 Jun 2003 15:38:23 -0000 At Sun, 8 Jun 2003 11:58:16 +0200 (CEST), Richard Arends wrote: > Can you put the following in your kernel config: > > options USB_DEBUG > options CAMDEBUG > options CAM_DEBUG_BUS=-1 > options CAM_DEBUG_TARGET=-1 > options CAM_DEBUG_LUN=-1 > options CAM_DEBUG_FLAGS=(CAM_DEBUG_INFO|CAM_DEBUG_TRACE|CAM_DEBUG_CDB) > > Rebuild the kernel and after reboot attach the device again. You should > see a lot of debug in /var/log/messages. Maybe this can help you to see > where it goes wrong. > > Also take a look at this page: > http://www.root.org/~nate/freebsd/quirks.html > > If this does not help you, please send the debug output as well as the > output from 'usbdevs -v' and 'camcontrol devlist'. > Excellent advice Richard. This enabled me to fix support for Creative Nomad Muvo mp3 player which also is an umass BBB device. The main problem with it was that it didn't like the PREVENT ALLOW command, which isn't covered by any quirk. A patch for this device is now available at http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/53094. Thanks! -Richard