From owner-freebsd-current@FreeBSD.ORG Fri Jan 9 00:34:50 2004 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 C514216A4CE for ; Fri, 9 Jan 2004 00:34:50 -0800 (PST) Received: from smtp.web.de (smtp02.web.de [217.72.192.151]) by mx1.FreeBSD.org (Postfix) with ESMTP id 325A943D46 for ; Fri, 9 Jan 2004 00:34:49 -0800 (PST) (envelope-from sebastian.ssmoller@web.de) Received: from [217.232.44.42] (helo=[217.232.44.42]) by smtp.web.de with esmtp (TLSv1:DES-CBC3-SHA:168) (WEB.DE 4.99 #566) id 1Aes6R-00052p-00 for freebsd-current@freebsd.org; Fri, 09 Jan 2004 09:34:48 +0100 From: sebastian ssmoller To: freebsd-current@freebsd.org In-Reply-To: <20040109020415.GQ38657@cnd.mcgill.ca> References: <1073325974.914.5.camel@tyrael.linnet> <20040108172614.GG38657@cnd.mcgill.ca> <1073588439.900.15.camel@tyrael.linnet> <20040109020415.GQ38657@cnd.mcgill.ca> Content-Type: text/plain Message-Id: <1073637209.900.22.camel@tyrael.linnet> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.3 Date: 09 Jan 2004 09:33:30 +0100 Content-Transfer-Encoding: 7bit Sender: sebastian.ssmoller@web.de X-Mailman-Approved-At: Fri, 09 Jan 2004 05:37:49 -0800 Subject: Re: snd_fm801 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: Fri, 09 Jan 2004 08:34:50 -0000 now it works for me :) $ dmesg fm801_pci_probe device id found pcm0: port 0xb800-0xb87f irq 5 at device 13.0 on pci0 pcm0: $ cat /dev/sndstat FreeBSD Audio Driver (newpcm) Installed devices: pcm0: at io 0xb800 irq 5 (1p/1r/0v channels duplex default) thx seb On Fri, 2004-01-09 at 03:04, Mathew Kanner wrote: > On Jan 08, sebastian ssmoller wrote: > > hi, > > i applied that patch. here is the dmesg output: > > > > > > fm801_pci_probe device id found > > fm801_pci_probe not expect controller > > > > Well then, from the source code > > /* > * XXX: quick check that device actually has sound capabilities. > * The problem is that some cards built around FM801 chip only > * have radio tuner onboard, but no sound capabilities. There > * is no "official" way to quickly check this, because all > * IDs are exactly the same. The only difference is 0x28 > * device control register, described in FM801 specification > * as "SRC/Mixer Test Control/DFC Status", but without > * any more detailed explanation. According to specs, and > * available sample cards (SF256-PCP-R and SF256-PCS-R) its > * power-on value should be `0', while on AC97-less tuner > * card (SF64-PCR) it was 0x80. > */ > > Could you force the test to be true (right after this comment) > and try it again? > > Thanks, > --Mat