From owner-freebsd-mobile@FreeBSD.ORG Fri Nov 5 20:59:03 2010 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CBD26106564A; Fri, 5 Nov 2010 20:59:03 +0000 (UTC) (envelope-from appdebgr@gmail.com) Received: from mail-qy0-f175.google.com (mail-qy0-f175.google.com [209.85.216.175]) by mx1.freebsd.org (Postfix) with ESMTP id 6DCE58FC13; Fri, 5 Nov 2010 20:59:03 +0000 (UTC) Received: by qyk9 with SMTP id 9so2411492qyk.13 for ; Fri, 05 Nov 2010 13:59:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=FgbrnRrfteB6i4zo+d9xoy6cbAs9awplpjGBp/16CZ4=; b=v7LtOpiSeqZsKClU3J00g+esLyEBBFAj8OGEg2kLT+yyccJTri/ZsaQlWpZWHVMH8q 5pKqnqJ06UAps7yz0FFkzOijtYidHHFaeZCkGTGz8If7+BioI9z1fGsmvdebpIfxnOQj vVCcDypzfjcIg9NdPD2LmMkENj+uSl8uMfZxw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=CPPyAw2OSAjxXVo+4N0n3ghUZO/pIAWy44EwyCrobX5Anui2tTOtn9DzKTe1ECa4fA 7qN/bPXnueGkKRrP5fO+O6jpxWOXZt9tWrlKnZ19MRPawJORZ5pHlkJH1e5gqQ32+8a/ Rye6E3lF/VbzxID/P06HVpIMT8vv0UlCPXqlw= MIME-Version: 1.0 Received: by 10.229.249.3 with SMTP id mi3mr2344601qcb.287.1288990742525; Fri, 05 Nov 2010 13:59:02 -0700 (PDT) Received: by 10.229.88.212 with HTTP; Fri, 5 Nov 2010 13:59:02 -0700 (PDT) In-Reply-To: <20101105175951.GA6473@current.Sisis.de> References: <20101104073430.GA2548@current.Sisis.de> <20101105175951.GA6473@current.Sisis.de> Date: Fri, 5 Nov 2010 22:59:02 +0200 Message-ID: From: App Deb To: Matthias Apitz Content-Type: text/plain; charset=UTF-8 Cc: freebsd-multimedia@freebsd.org, freebsd-mobile@freebsd.org Subject: Re: laptop Acer Aspire One D250 / snd_hda(4) && internal mic not recording X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Nov 2010 20:59:03 -0000 On Fri, Nov 5, 2010 at 7:59 PM, Matthias Apitz wrote: > Concerning the man page, without any kind of background or glossary > I can not understand, for example, the options for 'hint.hdac.%d.config' > or the meaning of 'colores'. Looking at your log for your 2 mics (internal and jack): ... hdac0: nid 18 0x99a30930 as 3 seq 0 Mic Fixed jack 3 loc 25 color Unknown misc 9 ... hdac0: nid 24 0x03a19820 as 2 seq 0 Mic Jack jack 1 loc 3 color Pink misc 8 ... You can see that the 2 microphones are in different associations (2 and 3) so in different devices (default dsp0 and dsp1). So you should use something like that in your /boot/loader.conf to group them together in the same association #2 (default dsp0). hint.hdac.0.cad0.nid18.config="as=2 seq=1" You could try that (,reboot) and see if it works. After that you should use "mixer" to toggle/control mics etc. The manpage doesn't say how sequence numbers work in "input" (so that a connected jack mic can mute the internal one). So you could also experiment with sequence numbers "15" or "0" in nid18 or nid24 to see if you can get it perfectly working. Also, if skype (or any other program) allows you to select different DSP device "just for input", you could select "dsp1" instead of standard "dsp" and your internal mic should work without the above stuff. (Of course after you have configured it correctly with "mixer -f /dev/mixer1"). Hope it helps.