From owner-freebsd-hackers@FreeBSD.ORG Thu Dec 30 21:10:06 2004 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24B9D16A4CE for ; Thu, 30 Dec 2004 21:10:06 +0000 (GMT) Received: from smtp2.dnainternet.net (smtp2.dnainternet.net [62.240.72.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4397943D49 for ; Thu, 30 Dec 2004 21:10:05 +0000 (GMT) (envelope-from erik.u@dnainternet.net) Received: from b-216-194.cable.kpy.customers.dnainternet.fi ([212.149.216.194]:59894smtp2.dnainternet.net with ESMTP id S1228759AbUL3VKD (ORCPT ); Thu, 30 Dec 2004 23:10:03 +0200 Message-ID: <41D46EAA.4020708@dnainternet.net> Date: Thu, 30 Dec 2004 23:10:02 +0200 From: Erik Udo User-Agent: Mozilla Thunderbird 1.0 (X11/20041209) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-hackers@freebsd.org References: <41D456F1.50702@dnainternet.net> <20041230153657.A22202@sasami.jurai.net> In-Reply-To: <20041230153657.A22202@sasami.jurai.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Asus a7v880 mobo integrated sound not working X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Dec 2004 21:10:06 -0000 Matthew N. Dodd wrote: > On Thu, 30 Dec 2004, Erik Udo wrote: > >> And here's what i've done: >> Kldload snd_dirver (loaded all sound modules) >> Added the line "{ 0x41445368, 0x00, 0, "AD1888", 0 }," to >> ac97.c (dmesg changes) >> I tried FreeSBIE 1.1, it had the same problems too. >> >> So i guess this can be solved with a simple patch. Could anyone do that? > > > Try this line in ac97.c: > > { 0x41445368, 0x00, 0, "AD1888", ad198x_patch }, > Heh, thanks. I got the audio working already. I found some kern/70XXX bugreport that had a patch that made audio working! This is AWESOME! So integrated LAN worked in the first try, and audio does too now. Asus a7v880 is a motherboard i recommend for FreeBSD :) I just hope someone puts this in RELENG_5. --- sys/dev/sound/pcm/ac97.c.orig Tue Nov 11 23:15:17 2003 +++ sys/dev/sound/pcm/ac97.c Tue Aug 10 23:58:11 2004 @@ -124,6 +124,7 @@ { 0x41445360, 0x00, 0, "AD1885", 0 }, { 0x41445361, 0x00, 0, "AD1886", ad1886_patch }, { 0x41445362, 0x00, 0, "AD1887", 0 }, + { 0x41445368, 0x00, 0, "AD1888", ad198x_patch }, { 0x41445363, 0x00, 0, "AD1886A", 0 }, { 0x41445370, 0x00, 0, "AD1980", ad198x_patch }, { 0x41445372, 0x00, 0, "AD1981A", 0 },