All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrei Popa <andrei.popa@i-neo.ro>
To: tiwai@suse.de
Cc: alsa-devel@alsa-project.org
Subject: Re: [ALSA][hda-codec] fix-connexant-headphone-mute
Date: Sun, 29 Apr 2007 05:19:50 +0300	[thread overview]
Message-ID: <1177813190.10642.1.camel@localhost> (raw)
In-Reply-To: <1177811017.23940.7.camel@localhost>

On Sun, 2007-04-29 at 04:43 +0300, Andrei Popa wrote:
> Hi,
> 
> The sound works ok with the built-in speakers on my Fujitsu laptop(amilo
> pro v3205). But if I plug in headphones in the audio out jack there is
> no sound in the headphones. With kernel 2.6.20 it worked ok. With 2.6.21
> it doesn't.
> This BUG is reported in ALSA bugtracking system with ID 0003039.
> 
> Patch that fixes this bug:
> 
> diff --git a/sound/pci/hda/patch_conexant.c
> b/sound/pci/hda/patch_conexant.c
> index 46e93c6..5edd330 100644
> --- a/sound/pci/hda/patch_conexant.c
> +++ b/sound/pci/hda/patch_conexant.c
> @@ -636,7 +636,7 @@ static void cxt5045_hp_automute(struct hda_codec
> *codec)
> 
>         bits = (spec->hp_present || !spec->cur_eapd) ? 0x80 : 0;
>         snd_hda_codec_amp_update(codec, 0x10, 0, HDA_OUTPUT, 0, 0x80,
> bits);
> -       snd_hda_codec_amp_update(codec, 0x10, 1, HDA_OUTPUT, 0, 0x80,
> bits);
> +       snd_hda_codec_amp_update(codec, 0x10, 1, HDA_OUTPUT, 0, 0,
> bits);
>  }
> 
>  /* unsolicited event for HP jack sensing */
> @@ -988,10 +988,10 @@ static void cxt5047_hp_automute(struct hda_codec
> *codec)
> 
>         bits = (spec->hp_present || !spec->cur_eapd) ? 0x80 : 0;
>         snd_hda_codec_amp_update(codec, 0x1d, 0, HDA_OUTPUT, 0, 0x80,
> bits);
> -       snd_hda_codec_amp_update(codec, 0x1d, 1, HDA_OUTPUT, 0, 0x80,
> bits);
> +       snd_hda_codec_amp_update(codec, 0x1d, 1, HDA_OUTPUT, 0, 0,
> bits);
>         /* Mute/Unmute PCM 2 for good measure - some systems need this
> */
>         snd_hda_codec_amp_update(codec, 0x1c, 0, HDA_OUTPUT, 0, 0x80,
> bits);
> -       snd_hda_codec_amp_update(codec, 0x1c, 1, HDA_OUTPUT, 0, 0x80,
> bits);
> +       snd_hda_codec_amp_update(codec, 0x1c, 1, HDA_OUTPUT, 0, 0,
> bits);
>  }
> 
>  /* toggle input of built-in and mic jack appropriately */
> 

first patch was broken. it only worked for the right channel.
this fixes this:

diff --git a/sound/pci/hda/patch_conexant.c
b/sound/pci/hda/patch_conexant.c
index 46e93c6..0822df7 100644
--- a/sound/pci/hda/patch_conexant.c
+++ b/sound/pci/hda/patch_conexant.c
@@ -635,8 +635,8 @@ static void cxt5045_hp_automute(struct hda_codec
*codec)
                                     AC_VERB_GET_PIN_SENSE, 0) &
0x80000000;

        bits = (spec->hp_present || !spec->cur_eapd) ? 0x80 : 0;
-       snd_hda_codec_amp_update(codec, 0x10, 0, HDA_OUTPUT, 0, 0x80,
bits);
-       snd_hda_codec_amp_update(codec, 0x10, 1, HDA_OUTPUT, 0, 0x80,
bits);
+       snd_hda_codec_amp_update(codec, 0x10, 0, HDA_OUTPUT, 0, 0,
bits);
+       snd_hda_codec_amp_update(codec, 0x10, 1, HDA_OUTPUT, 0, 0,
bits);
 }

 /* unsolicited event for HP jack sensing */
@@ -987,11 +987,11 @@ static void cxt5047_hp_automute(struct hda_codec
*codec)
                                     AC_VERB_GET_PIN_SENSE, 0) &
0x80000000;

        bits = (spec->hp_present || !spec->cur_eapd) ? 0x80 : 0;
-       snd_hda_codec_amp_update(codec, 0x1d, 0, HDA_OUTPUT, 0, 0x80,
bits);
-       snd_hda_codec_amp_update(codec, 0x1d, 1, HDA_OUTPUT, 0, 0x80,
bits);
+       snd_hda_codec_amp_update(codec, 0x1d, 0, HDA_OUTPUT, 0, 0,
bits);
+       snd_hda_codec_amp_update(codec, 0x1d, 1, HDA_OUTPUT, 0, 0,
bits);
        /* Mute/Unmute PCM 2 for good measure - some systems need this
*/
-       snd_hda_codec_amp_update(codec, 0x1c, 0, HDA_OUTPUT, 0, 0x80,
bits);
-       snd_hda_codec_amp_update(codec, 0x1c, 1, HDA_OUTPUT, 0, 0x80,
bits);
+       snd_hda_codec_amp_update(codec, 0x1c, 0, HDA_OUTPUT, 0, 0,
bits);
+       snd_hda_codec_amp_update(codec, 0x1c, 1, HDA_OUTPUT, 0, 0,
bits);
 }

 /* toggle input of built-in and mic jack appropriately */

  reply	other threads:[~2007-04-29  2:19 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-04-29  1:43 [ALSA][hda-codec] fix-connexant-headphone-mute Andrei Popa
2007-04-29  2:19 ` Andrei Popa [this message]
2007-05-02 10:16   ` Takashi Iwai
     [not found]     ` <1178102873.7511.3.camel@localhost>
2007-05-02 11:01       ` Takashi Iwai
2007-05-02 11:28         ` Andrei Popa
2007-05-02 14:55           ` Tobin Davis

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1177813190.10642.1.camel@localhost \
    --to=andrei.popa@i-neo.ro \
    --cc=alsa-devel@alsa-project.org \
    --cc=tiwai@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.