alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>
Cc: alsa-devel@alsa-project.org
Subject: Re: Surround speaker connection on Acer 8951G
Date: Mon, 02 Sep 2019 08:41:48 +0200	[thread overview]
Message-ID: <s5hlfv7jj2r.wl-tiwai@suse.de> (raw)
In-Reply-To: <20190901192737.GB28125@xn--80adja5bqm.su>

On Sun, 01 Sep 2019 21:27:37 +0200,
Sergey 'Jin' Bostandzhyan wrote:
> 
> > Other than that, the approach with UCM profile would be simpler.  It
> > won't need anything else than what you already showed (pincfg and
> > GPIO) in the driver side.
> 
> Simpler...yes and no :) From what I have seen, all "default" Pulse profiles are
> replaced by the UCM, meaning that if I wanted them, I'd have to replicate
> all of them in my conf. It would work though. 

You just need to override codec->card->longname to some unique string
and use it as UCM profile name.
Check alc1220_fixup_gb_dual_codecs() as an example.

> > > > > {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02}
> > > > 
> > > > Actually this must be paired with the corresponding bit of GPIO_DATA,
> > > > too.  Is the bit 0x02 of GPIO_DATA set or cleared?  Usually setting it
> > > > turns on the amp, but sometimes inverted.
> > > 
> > > If I understood everything correctly, then the bit is set, meaning that the
> > > GPIO signal is configured as output.
> > 
> > The GPIO_DIRECTION specifies whether input or output, and the actual
> > value is passed via GPIO_DATA.  Both have to be specified, not only
> > one.
> 
> [...]
> 
> > > set(0x01, 0x717,   0x02) # 0x01071702 (SET_GPIO_DIRECTION)
> > 
> > This needs the paired SET_GPIO_DATA for a proper operation.  Your
> > analysis implicit assumes some default value that is already set by
> > the hardware.
> 
> If I understand it correctly, then "some value" is zero on my hardware:
> 
> # hda-verb /dev/snd/hwC0D0 0x01 GET_GPIO_DATA 0x02
> nid = 0x1, verb = 0xf15, param = 0x2
> value = 0x0
> 
> Meanwhile I also figured out that /proc/asound/card0/codec#0 is
> providing this info as well:
> 
>   IO[1]: enable=0, dir=1, wake=0, sticky=0, data=0, unsol=0
> 
> So the value seems to be 0 and I can add an explicit SET_GPIO_DATA verb quirk
> to set it in addition to SET_GPIO_DIRECTION, right?

Yes.  You need to set SET_GPIO_MASK=0x02, SET_GPIO_DIRECTION=0x02 and
SET_GPIO_DATA=0x00 for that bit.

> > > If the above is a yes, could you please point me to the right way of getting 
> > > triggered upon jack state changes in the driver, since automute hooks seem 
> > > not to trigger while something is playing?
> > 
> > This isn't easy, as repeatedly mentioned, since the parser assumes
> > only one role for each pin except for the input/output switching.
> > In your case the pin shares for two outputs to be switched, and this
> > isn't implemented at all.
> 
> I think we talked a bit past each other, based on your reply I understand that 
> you were assuming that I am still trying to solve it in the parser in some 
> generic way, which as you indeed repeatedly mentioned would not be easy.
> 
> At the same time I do not rule out the possibility, that I simply do not
> see the "bigger picture" and that you have already accounted for the
> proposal that follows :)
> 
> Given that this is my first driver hacking adventure, I was aiming for a much
> more localized solution, so I was not going to add generic support for
> shared pins. Once I learned how to subscribe to jack state
> changes I was able to implement the idea that I had inside the model
> quirk:
> 
> static void alc662_aspire_ethos_mute_speakers(struct hda_codec *codec,
>                     struct hda_jack_callback *cb)
> {
>     /* surround speakers muted automatically when headphones are
>      * plugged in, we'll mute/unmute the remaining channels manually:
>      * 0x15 - front left/front right
>      * 0x18 - front center/ LFE
>      * */
>     if (snd_hda_jack_detect_state(codec, cb->nid) == HDA_JACK_PRESENT) {
>         snd_hda_set_pin_ctl_cache(codec, 0x15, 0);
>         snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
>     } else {
>         snd_hda_set_pin_ctl_cache(codec, 0x15, PIN_OUT);
>         snd_hda_set_pin_ctl_cache(codec, 0x18, PIN_OUT);
>     }
> }
> 
> static void alc662_fixup_aspire_ethos_hp(struct hda_codec *codec,
>                      const struct hda_fixup *fix, int action)
> {
>     if (action == HDA_FIXUP_ACT_PRE_PROBE) {
>         if (is_jack_detectable(codec, 0x1b)) {
>             snd_hda_jack_detect_enable_callback(codec, 0x1b,
>                                     alc662_aspire_ethos_mute_speakers);
>         }
>     }
> }
> 
> This was the idea that I have been referring to, when I was talking about
> "muting in the driver" after I learned that proper automuting based on hp pins
> was not possible as you indeed repeatedly stated.
> 
> The above seems to work quite well for me and does exactly what I want, 
> PulseAudio presents all the autogenerated profiles and handles mic and line 
> jacks itself, at the same time all unwanted speakers get muted as soon as I 
> plug in my headphones into the jack pin that is shared with my surround
> speakers. Of course Pulse does not "know" anything about the headphones and
> does not switch profiles, but I don't mind since the user experience is
> as expected.

Hm, OK, this amount of changes are acceptable.  The hardware behavior
itself is weird, and we have already tricky code, so it's no problem
to keep some yet another tricky code as long as it's described enough
in the comments and the changelog.

> My earlier attempt was to send the pin widget control verbs directly, however
> then the pin got reconnected as soon as playback started.
> This does not happen when I use snd_hda_set_pin_ctl_cache(), but I am not 
> quite sure about the cache, should I use the _cache function or the
> uncached one?

This should work, AFAIK.  The *_set_pin_ctl_cache() remembers the last
written value, as its name stands.  That's restored again at the PM
resume, for example.

The PM resume does re-trigger the jack detection callback, so it'll be
written up again in anyway, though.

> Another thing I am not sure about is, if I somehow disrupt power management by 
> doing what I do? I saw that for instance restore_shutup_pins() does modify 
> those connections as well and I would basically overwrite whatever it did
> in the case that the user plugs/unplugs the headphones.

This should be fine as-is.  The shutup_pins() clears pins temporarily
and the pins are resumed to the cached values in return.

One thing to be improved would be to drop the surround jack control.
Adjust the pin config to different value with the fixed pin
connection, so that the auto-parser won't create the "Surround Jack"
control.  This isn't needed by PA or else, otherwise it may be
confusing.


thanks,

Takashi

WARNING: multiple messages have this Message-ID (diff)
From: Takashi Iwai <tiwai@suse.de>
To: Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>
Cc: alsa-devel@alsa-project.org
Subject: Re: [alsa-devel] Surround speaker connection on Acer 8951G
Date: Mon, 02 Sep 2019 08:41:48 +0200	[thread overview]
Message-ID: <s5hlfv7jj2r.wl-tiwai@suse.de> (raw)
Message-ID: <20190902064148.FDXjNJiHT2GMQCCZT-tspzbsVTTQP9JLMQzjMk5KaDI@z> (raw)
In-Reply-To: <20190901192737.GB28125@xn--80adja5bqm.su>

On Sun, 01 Sep 2019 21:27:37 +0200,
Sergey 'Jin' Bostandzhyan wrote:
> 
> > Other than that, the approach with UCM profile would be simpler.  It
> > won't need anything else than what you already showed (pincfg and
> > GPIO) in the driver side.
> 
> Simpler...yes and no :) From what I have seen, all "default" Pulse profiles are
> replaced by the UCM, meaning that if I wanted them, I'd have to replicate
> all of them in my conf. It would work though. 

You just need to override codec->card->longname to some unique string
and use it as UCM profile name.
Check alc1220_fixup_gb_dual_codecs() as an example.

> > > > > {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02}
> > > > 
> > > > Actually this must be paired with the corresponding bit of GPIO_DATA,
> > > > too.  Is the bit 0x02 of GPIO_DATA set or cleared?  Usually setting it
> > > > turns on the amp, but sometimes inverted.
> > > 
> > > If I understood everything correctly, then the bit is set, meaning that the
> > > GPIO signal is configured as output.
> > 
> > The GPIO_DIRECTION specifies whether input or output, and the actual
> > value is passed via GPIO_DATA.  Both have to be specified, not only
> > one.
> 
> [...]
> 
> > > set(0x01, 0x717,   0x02) # 0x01071702 (SET_GPIO_DIRECTION)
> > 
> > This needs the paired SET_GPIO_DATA for a proper operation.  Your
> > analysis implicit assumes some default value that is already set by
> > the hardware.
> 
> If I understand it correctly, then "some value" is zero on my hardware:
> 
> # hda-verb /dev/snd/hwC0D0 0x01 GET_GPIO_DATA 0x02
> nid = 0x1, verb = 0xf15, param = 0x2
> value = 0x0
> 
> Meanwhile I also figured out that /proc/asound/card0/codec#0 is
> providing this info as well:
> 
>   IO[1]: enable=0, dir=1, wake=0, sticky=0, data=0, unsol=0
> 
> So the value seems to be 0 and I can add an explicit SET_GPIO_DATA verb quirk
> to set it in addition to SET_GPIO_DIRECTION, right?

Yes.  You need to set SET_GPIO_MASK=0x02, SET_GPIO_DIRECTION=0x02 and
SET_GPIO_DATA=0x00 for that bit.

> > > If the above is a yes, could you please point me to the right way of getting 
> > > triggered upon jack state changes in the driver, since automute hooks seem 
> > > not to trigger while something is playing?
> > 
> > This isn't easy, as repeatedly mentioned, since the parser assumes
> > only one role for each pin except for the input/output switching.
> > In your case the pin shares for two outputs to be switched, and this
> > isn't implemented at all.
> 
> I think we talked a bit past each other, based on your reply I understand that 
> you were assuming that I am still trying to solve it in the parser in some 
> generic way, which as you indeed repeatedly mentioned would not be easy.
> 
> At the same time I do not rule out the possibility, that I simply do not
> see the "bigger picture" and that you have already accounted for the
> proposal that follows :)
> 
> Given that this is my first driver hacking adventure, I was aiming for a much
> more localized solution, so I was not going to add generic support for
> shared pins. Once I learned how to subscribe to jack state
> changes I was able to implement the idea that I had inside the model
> quirk:
> 
> static void alc662_aspire_ethos_mute_speakers(struct hda_codec *codec,
>                     struct hda_jack_callback *cb)
> {
>     /* surround speakers muted automatically when headphones are
>      * plugged in, we'll mute/unmute the remaining channels manually:
>      * 0x15 - front left/front right
>      * 0x18 - front center/ LFE
>      * */
>     if (snd_hda_jack_detect_state(codec, cb->nid) == HDA_JACK_PRESENT) {
>         snd_hda_set_pin_ctl_cache(codec, 0x15, 0);
>         snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
>     } else {
>         snd_hda_set_pin_ctl_cache(codec, 0x15, PIN_OUT);
>         snd_hda_set_pin_ctl_cache(codec, 0x18, PIN_OUT);
>     }
> }
> 
> static void alc662_fixup_aspire_ethos_hp(struct hda_codec *codec,
>                      const struct hda_fixup *fix, int action)
> {
>     if (action == HDA_FIXUP_ACT_PRE_PROBE) {
>         if (is_jack_detectable(codec, 0x1b)) {
>             snd_hda_jack_detect_enable_callback(codec, 0x1b,
>                                     alc662_aspire_ethos_mute_speakers);
>         }
>     }
> }
> 
> This was the idea that I have been referring to, when I was talking about
> "muting in the driver" after I learned that proper automuting based on hp pins
> was not possible as you indeed repeatedly stated.
> 
> The above seems to work quite well for me and does exactly what I want, 
> PulseAudio presents all the autogenerated profiles and handles mic and line 
> jacks itself, at the same time all unwanted speakers get muted as soon as I 
> plug in my headphones into the jack pin that is shared with my surround
> speakers. Of course Pulse does not "know" anything about the headphones and
> does not switch profiles, but I don't mind since the user experience is
> as expected.

Hm, OK, this amount of changes are acceptable.  The hardware behavior
itself is weird, and we have already tricky code, so it's no problem
to keep some yet another tricky code as long as it's described enough
in the comments and the changelog.

> My earlier attempt was to send the pin widget control verbs directly, however
> then the pin got reconnected as soon as playback started.
> This does not happen when I use snd_hda_set_pin_ctl_cache(), but I am not 
> quite sure about the cache, should I use the _cache function or the
> uncached one?

This should work, AFAIK.  The *_set_pin_ctl_cache() remembers the last
written value, as its name stands.  That's restored again at the PM
resume, for example.

The PM resume does re-trigger the jack detection callback, so it'll be
written up again in anyway, though.

> Another thing I am not sure about is, if I somehow disrupt power management by 
> doing what I do? I saw that for instance restore_shutup_pins() does modify 
> those connections as well and I would basically overwrite whatever it did
> in the case that the user plugs/unplugs the headphones.

This should be fine as-is.  The shutup_pins() clears pins temporarily
and the pins are resumed to the cached values in return.

One thing to be improved would be to drop the surround jack control.
Adjust the pin config to different value with the fixed pin
connection, so that the auto-parser won't create the "Surround Jack"
control.  This isn't needed by PA or else, otherwise it may be
confusing.


thanks,

Takashi
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
https://mailman.alsa-project.org/mailman/listinfo/alsa-devel

  parent reply	other threads:[~2019-09-02  6:41 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-04 19:24 Surround speaker connection on Acer 8951G Sergey 'Jin' Bostandzhyan
2019-07-19 11:12 ` Sergey 'Jin' Bostandzhyan
2019-07-19 14:44   ` Takashi Iwai
2019-07-20 16:54     ` Sergey 'Jin' Bostandzhyan
2019-08-19 19:57       ` Sergey 'Jin' Bostandzhyan
2019-08-22 14:17         ` Takashi Iwai
2019-08-22 20:30           ` Sergey 'Jin' Bostandzhyan
2019-08-29  9:30             ` Takashi Iwai
2019-08-29 10:38               ` Sergey 'Jin' Bostandzhyan
2019-08-29 11:29                 ` Takashi Iwai
2019-08-30 11:45                   ` Sergey 'Jin' Bostandzhyan
2019-08-30 11:45                     ` [alsa-devel] " Sergey 'Jin' Bostandzhyan
2019-08-30 12:22                     ` Takashi Iwai
2019-08-30 12:22                       ` [alsa-devel] " Takashi Iwai
2019-09-01 19:27                       ` Sergey 'Jin' Bostandzhyan
2019-09-01 19:27                         ` [alsa-devel] " Sergey 'Jin' Bostandzhyan
2019-09-02  6:41                         ` Takashi Iwai [this message]
2019-09-02  6:41                           ` Takashi Iwai
2019-09-02 21:39                           ` Sergey 'Jin' Bostandzhyan
2019-09-05 15:07                             ` Takashi Iwai
2019-09-06  9:33                               ` [alsa-devel] [PATCH] Add Acer Aspire Ethos 8951G model quirk Sergey Bostandzhyan
2019-09-06 12:13                                 ` Takashi Iwai
2019-11-25 17:39                     ` [alsa-devel] Surround speaker connection on Acer 8951G Sergey 'Jin' Bostandzhyan
2019-11-27 11:28                       ` Takashi Iwai
2019-11-27 16:17                         ` Sergey 'Jin' Bostandzhyan
2019-11-27 16:41                           ` Takashi Iwai
2019-11-28 15:46                             ` Sergey 'Jin' Bostandzhyan

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=s5hlfv7jj2r.wl-tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=jin@mediatomb.cc \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).