* [bug] Missing "front" definition for byt-max98090
@ 2017-09-07 12:25 Tanu Kaskinen
2017-09-07 13:54 ` Takashi Iwai
0 siblings, 1 reply; 6+ messages in thread
From: Tanu Kaskinen @ 2017-09-07 12:25 UTC (permalink / raw)
To: alsa-devel; +Cc: Takashi Iwai
PulseAudio 11 stopped using "hw:" as a fallback for analog stereo if
"front:" doesn't work. This caused a regression on "Toshiba Chromebook
2 (Swanky)", because PulseAudio doesn't any more do automatic mixer
adjustments when plugging in headphones. Apparently on this machine
"hw:1,0" works fine as a substitute for "front:1,0", but we're not
going to revert the change in PulseAudio, so could someone add the
"front" definition for this machine in alsa-lib? Unfortunately I'm not
proficient enough in the alsa-lib configuration system to make a patch
myself.
alsa-info here: https://bugs.freedesktop.org/attachment.cgi?id=133993
[1] https://bugs.freedesktop.org/show_bug.cgi?id=102560
--
Tanu
https://www.patreon.com/tanuk
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [bug] Missing "front" definition for byt-max98090
2017-09-07 12:25 [bug] Missing "front" definition for byt-max98090 Tanu Kaskinen
@ 2017-09-07 13:54 ` Takashi Iwai
2017-09-07 16:33 ` Tanu Kaskinen
0 siblings, 1 reply; 6+ messages in thread
From: Takashi Iwai @ 2017-09-07 13:54 UTC (permalink / raw)
To: Tanu Kaskinen; +Cc: alsa-devel
On Thu, 07 Sep 2017 14:25:44 +0200,
Tanu Kaskinen wrote:
>
> PulseAudio 11 stopped using "hw:" as a fallback for analog stereo if
> "front:" doesn't work. This caused a regression on "Toshiba Chromebook
> 2 (Swanky)", because PulseAudio doesn't any more do automatic mixer
> adjustments when plugging in headphones. Apparently on this machine
> "hw:1,0" works fine as a substitute for "front:1,0", but we're not
> going to revert the change in PulseAudio, so could someone add the
> "front" definition for this machine in alsa-lib? Unfortunately I'm not
> proficient enough in the alsa-lib configuration system to make a patch
> myself.
Well, this is about the device that has no alsa-lib config. So far,
we assumed that 'front' is available only when defined for the card.
But now PA mandates it... Hmm. I guess it's no big problem to add a
fallback to hw for the front PCM.
The patch below should work for such a device. It's a patch to
alsa-lib source, but basically you can modify similarly the file
/usr/share/alsa/pcm/front.conf directly, too.
If it's confirmed to work, I'll merge the patch.
Maybe we can release alsa-lib 1.1.5 along with 4.13 kernel, so a
quicker reply would be appreciated.
thanks,
Takashi
---
diff --git a/src/conf/pcm/front.conf b/src/conf/pcm/front.conf
index 7aff0cbf007d..377aef33daa7 100644
--- a/src/conf/pcm/front.conf
+++ b/src/conf/pcm/front.conf
@@ -46,6 +46,15 @@ pcm.!front {
".pcm.front." $DEV ":CARD=" $CARD
]
}
+ default {
+ # use plughw as default
+ type plug
+ slave.pcm {
+ type hw
+ card $CARD
+ }
+ hint.device 0
+ }
}
hint {
show {
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [bug] Missing "front" definition for byt-max98090
2017-09-07 13:54 ` Takashi Iwai
@ 2017-09-07 16:33 ` Tanu Kaskinen
2017-09-07 17:13 ` Takashi Iwai
0 siblings, 1 reply; 6+ messages in thread
From: Tanu Kaskinen @ 2017-09-07 16:33 UTC (permalink / raw)
To: Takashi Iwai; +Cc: alsa-devel
On Thu, 2017-09-07 at 15:54 +0200, Takashi Iwai wrote:
> On Thu, 07 Sep 2017 14:25:44 +0200,
> Tanu Kaskinen wrote:
> >
> > PulseAudio 11 stopped using "hw:" as a fallback for analog stereo if
> > "front:" doesn't work. This caused a regression on "Toshiba Chromebook
> > 2 (Swanky)", because PulseAudio doesn't any more do automatic mixer
> > adjustments when plugging in headphones. Apparently on this machine
> > "hw:1,0" works fine as a substitute for "front:1,0", but we're not
> > going to revert the change in PulseAudio, so could someone add the
> > "front" definition for this machine in alsa-lib? Unfortunately I'm not
> > proficient enough in the alsa-lib configuration system to make a patch
> > myself.
>
> Well, this is about the device that has no alsa-lib config. So far,
> we assumed that 'front' is available only when defined for the card.
> But now PA mandates it... Hmm. I guess it's no big problem to add a
> fallback to hw for the front PCM.
>
> The patch below should work for such a device. It's a patch to
> alsa-lib source, but basically you can modify similarly the file
> /usr/share/alsa/pcm/front.conf directly, too.
>
> If it's confirmed to work, I'll merge the patch.
>
> Maybe we can release alsa-lib 1.1.5 along with 4.13 kernel, so a
> quicker reply would be appreciated.
The reporter said[1] that your patch works fine.
I have a concern, though: what about those cases where hw:x,0 is not an
analog stereo device? The reason why PulseAudio was changed is that
with the Intel HDMI LPE driver PulseAudio thought that the card had an
analog stereo device, when in reality it only had HDMI. Doesn't your
patch reintroduce this problem?
[1] https://bugs.freedesktop.org/show_bug.cgi?id=102560#c6
--
Tanu
https://www.patreon.com/tanuk
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [bug] Missing "front" definition for byt-max98090
2017-09-07 16:33 ` Tanu Kaskinen
@ 2017-09-07 17:13 ` Takashi Iwai
2017-09-08 11:30 ` Tanu Kaskinen
0 siblings, 1 reply; 6+ messages in thread
From: Takashi Iwai @ 2017-09-07 17:13 UTC (permalink / raw)
To: Tanu Kaskinen; +Cc: alsa-devel
On Thu, 07 Sep 2017 18:33:17 +0200,
Tanu Kaskinen wrote:
>
> On Thu, 2017-09-07 at 15:54 +0200, Takashi Iwai wrote:
> > On Thu, 07 Sep 2017 14:25:44 +0200,
> > Tanu Kaskinen wrote:
> > >
> > > PulseAudio 11 stopped using "hw:" as a fallback for analog stereo if
> > > "front:" doesn't work. This caused a regression on "Toshiba Chromebook
> > > 2 (Swanky)", because PulseAudio doesn't any more do automatic mixer
> > > adjustments when plugging in headphones. Apparently on this machine
> > > "hw:1,0" works fine as a substitute for "front:1,0", but we're not
> > > going to revert the change in PulseAudio, so could someone add the
> > > "front" definition for this machine in alsa-lib? Unfortunately I'm not
> > > proficient enough in the alsa-lib configuration system to make a patch
> > > myself.
> >
> > Well, this is about the device that has no alsa-lib config. So far,
> > we assumed that 'front' is available only when defined for the card.
> > But now PA mandates it... Hmm. I guess it's no big problem to add a
> > fallback to hw for the front PCM.
> >
> > The patch below should work for such a device. It's a patch to
> > alsa-lib source, but basically you can modify similarly the file
> > /usr/share/alsa/pcm/front.conf directly, too.
> >
> > If it's confirmed to work, I'll merge the patch.
> >
> > Maybe we can release alsa-lib 1.1.5 along with 4.13 kernel, so a
> > quicker reply would be appreciated.
>
> The reporter said[1] that your patch works fine.
>
> I have a concern, though: what about those cases where hw:x,0 is not an
> analog stereo device? The reason why PulseAudio was changed is that
> with the Intel HDMI LPE driver PulseAudio thought that the card had an
> analog stereo device, when in reality it only had HDMI. Doesn't your
> patch reintroduce this problem?
Basically "front" doesn't mean the analog output, but rather it's
an output from the front channels in multi speaker setups (corresponds
to "rear", etc). And, so far, we have no notion of analog output
although we have a notion for digital output ("hdmi" and "spdif").
That is, "front" doesn't guarantee at all it being an analog from its
definition.
So, for HDMI LPE, can we simply have a special profile for excluding
the analog output in PA side?
Takashi
>
> [1] https://bugs.freedesktop.org/show_bug.cgi?id=102560#c6
>
> --
> Tanu
>
> https://www.patreon.com/tanuk
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [bug] Missing "front" definition for byt-max98090
2017-09-07 17:13 ` Takashi Iwai
@ 2017-09-08 11:30 ` Tanu Kaskinen
2017-09-08 12:16 ` [alsa-devel] " Takashi Iwai
0 siblings, 1 reply; 6+ messages in thread
From: Tanu Kaskinen @ 2017-09-08 11:30 UTC (permalink / raw)
To: Takashi Iwai; +Cc: alsa-devel, pulseaudio-discuss
On Thu, 2017-09-07 at 19:13 +0200, Takashi Iwai wrote:
> On Thu, 07 Sep 2017 18:33:17 +0200,
> Tanu Kaskinen wrote:
> >
> > On Thu, 2017-09-07 at 15:54 +0200, Takashi Iwai wrote:
> > > On Thu, 07 Sep 2017 14:25:44 +0200,
> > > Tanu Kaskinen wrote:
> > > >
> > > > PulseAudio 11 stopped using "hw:" as a fallback for analog stereo if
> > > > "front:" doesn't work. This caused a regression on "Toshiba Chromebook
> > > > 2 (Swanky)", because PulseAudio doesn't any more do automatic mixer
> > > > adjustments when plugging in headphones. Apparently on this machine
> > > > "hw:1,0" works fine as a substitute for "front:1,0", but we're not
> > > > going to revert the change in PulseAudio, so could someone add the
> > > > "front" definition for this machine in alsa-lib? Unfortunately I'm not
> > > > proficient enough in the alsa-lib configuration system to make a patch
> > > > myself.
> > >
> > > Well, this is about the device that has no alsa-lib config. So far,
> > > we assumed that 'front' is available only when defined for the card.
> > > But now PA mandates it... Hmm. I guess it's no big problem to add a
> > > fallback to hw for the front PCM.
> > >
> > > The patch below should work for such a device. It's a patch to
> > > alsa-lib source, but basically you can modify similarly the file
> > > /usr/share/alsa/pcm/front.conf directly, too.
> > >
> > > If it's confirmed to work, I'll merge the patch.
> > >
> > > Maybe we can release alsa-lib 1.1.5 along with 4.13 kernel, so a
> > > quicker reply would be appreciated.
> >
> > The reporter said[1] that your patch works fine.
> >
> > I have a concern, though: what about those cases where hw:x,0 is not an
> > analog stereo device? The reason why PulseAudio was changed is that
> > with the Intel HDMI LPE driver PulseAudio thought that the card had an
> > analog stereo device, when in reality it only had HDMI. Doesn't your
> > patch reintroduce this problem?
>
> Basically "front" doesn't mean the analog output, but rather it's
> an output from the front channels in multi speaker setups (corresponds
> to "rear", etc). And, so far, we have no notion of analog output
> although we have a notion for digital output ("hdmi" and "spdif").
> That is, "front" doesn't guarantee at all it being an analog from its
> definition.
It would be good to at least guarantee that if both "front" and "hdmi"
are defined, "front" is not an HDMI device. Your patch breaks this
guarantee, so let's not apply it.
> So, for HDMI LPE, can we simply have a special profile for excluding
> the analog output in PA side?
I suppose that's the best solution. Or actually, I think the default
configuration can be modified so that it works properly with both the
HDMI LPE driver and with machines that don't have any alsa-lib
configuration. PulseAudio 11 already uses hw:x,0 as a stereo device if
everything else fails, we just need to add the mixer handling bits to
that fallback case.
(pulseaudio-discuss added to Cc.)
--
Tanu
https://www.patreon.com/tanuk
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [alsa-devel] [bug] Missing "front" definition for byt-max98090
2017-09-08 11:30 ` Tanu Kaskinen
@ 2017-09-08 12:16 ` Takashi Iwai
0 siblings, 0 replies; 6+ messages in thread
From: Takashi Iwai @ 2017-09-08 12:16 UTC (permalink / raw)
To: Tanu Kaskinen; +Cc: alsa-devel, pulseaudio-discuss
On Fri, 08 Sep 2017 13:30:48 +0200,
Tanu Kaskinen wrote:
>
> On Thu, 2017-09-07 at 19:13 +0200, Takashi Iwai wrote:
> > On Thu, 07 Sep 2017 18:33:17 +0200,
> > Tanu Kaskinen wrote:
> > >
> > > On Thu, 2017-09-07 at 15:54 +0200, Takashi Iwai wrote:
> > > > On Thu, 07 Sep 2017 14:25:44 +0200,
> > > > Tanu Kaskinen wrote:
> > > > >
> > > > > PulseAudio 11 stopped using "hw:" as a fallback for analog stereo if
> > > > > "front:" doesn't work. This caused a regression on "Toshiba Chromebook
> > > > > 2 (Swanky)", because PulseAudio doesn't any more do automatic mixer
> > > > > adjustments when plugging in headphones. Apparently on this machine
> > > > > "hw:1,0" works fine as a substitute for "front:1,0", but we're not
> > > > > going to revert the change in PulseAudio, so could someone add the
> > > > > "front" definition for this machine in alsa-lib? Unfortunately I'm not
> > > > > proficient enough in the alsa-lib configuration system to make a patch
> > > > > myself.
> > > >
> > > > Well, this is about the device that has no alsa-lib config. So far,
> > > > we assumed that 'front' is available only when defined for the card.
> > > > But now PA mandates it... Hmm. I guess it's no big problem to add a
> > > > fallback to hw for the front PCM.
> > > >
> > > > The patch below should work for such a device. It's a patch to
> > > > alsa-lib source, but basically you can modify similarly the file
> > > > /usr/share/alsa/pcm/front.conf directly, too.
> > > >
> > > > If it's confirmed to work, I'll merge the patch.
> > > >
> > > > Maybe we can release alsa-lib 1.1.5 along with 4.13 kernel, so a
> > > > quicker reply would be appreciated.
> > >
> > > The reporter said[1] that your patch works fine.
> > >
> > > I have a concern, though: what about those cases where hw:x,0 is not an
> > > analog stereo device? The reason why PulseAudio was changed is that
> > > with the Intel HDMI LPE driver PulseAudio thought that the card had an
> > > analog stereo device, when in reality it only had HDMI. Doesn't your
> > > patch reintroduce this problem?
> >
> > Basically "front" doesn't mean the analog output, but rather it's
> > an output from the front channels in multi speaker setups (corresponds
> > to "rear", etc). And, so far, we have no notion of analog output
> > although we have a notion for digital output ("hdmi" and "spdif").
> > That is, "front" doesn't guarantee at all it being an analog from its
> > definition.
>
> It would be good to at least guarantee that if both "front" and "hdmi"
> are defined, "front" is not an HDMI device. Your patch breaks this
> guarantee, so let's not apply it.
>
> > So, for HDMI LPE, can we simply have a special profile for excluding
> > the analog output in PA side?
>
> I suppose that's the best solution. Or actually, I think the default
> configuration can be modified so that it works properly with both the
> HDMI LPE driver and with machines that don't have any alsa-lib
> configuration. PulseAudio 11 already uses hw:x,0 as a stereo device if
> everything else fails, we just need to add the mixer handling bits to
> that fallback case.
Agreed, it sounds like a more sustainable solution.
thanks,
Takashi
_______________________________________________
pulseaudio-discuss mailing list
pulseaudio-discuss@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-09-08 12:16 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-07 12:25 [bug] Missing "front" definition for byt-max98090 Tanu Kaskinen
2017-09-07 13:54 ` Takashi Iwai
2017-09-07 16:33 ` Tanu Kaskinen
2017-09-07 17:13 ` Takashi Iwai
2017-09-08 11:30 ` Tanu Kaskinen
2017-09-08 12:16 ` [alsa-devel] " Takashi Iwai
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).