[alsa-devel] [PATCH] ALSA: oxygen: Fix S/PDIF muting

Clemens Ladisch clemens at ladisch.de
Tue Jun 30 11:43:52 CEST 2015


Laurence Darby wrote:
> On Sun, 28 Jun 2015 20:44:26 +0200 Clemens Ladisch wrote:
>> Laurence Darby wrote:
>>> The S/PDIF output was muted whenever audio wasn't playing which
>>> resulted in a clicking noise from the DAC when resuming
>>
>> It indeed appears that there are too many oxygen_clear_bits32() calls.
>> However, I don't trust the hardware; please confirm that the S/PDIF
>> output, without an active stream, play zeros and not the last sample.
>
> Well, to test that I created a wav file of about a quarter of a sine
> wave (at about -15dB), consisting of 5520 samples, so it matched the
> alsa buffer size, otherwise aplay pads the buffer with silence.
>
> The chip does continue playing the last sample value, then the speakers
> pop later when something else is played.  Is this really an issue
> though? I just found my intel hda chip behaves the same way, and that
> chip's driver leaves it un-muted.

The current problem is that the output gets disabled, then later, when
the driver is about to start the new stream, it enables the output again
(which outputs the last old sample), and then the new stream starts
(usually with zero samples).  Going from disabled(=zero) to old-sample
to new-sample(=zero) is an extra pop.

In any case, putting a DC offset on the speakers is a bad idea.

> If this is still going to prevent fixing the popping noise for the
> oxygen chip, what about writing a single 0x00 sample to it in the
> driver instead of muting it?

This is likely to work (but the zero sample has to go through DMA).

At the moment, oxygen_hw_free() pokes at the OXYGEN_DMA_FLUSH register.
Please check if there is an improvement if it also pokes at the
OXYGEN_DMA_RESET register.

>>> Also, the mixer control wasn't actually controlling the S/PDIF
>>> output.
>>
>> Because that is not its purpose to begin with.  >:-)
>>
>> The mixer control enables copying the "Multichannel" device to the
>> S/PDIF output.  The "Digital" device has no mute, and takes precedence
>> over the multichannel device when both are active.
>
> All my other sound cards (hda, cmedia & emu10k) have an S/PDIF mixer
> control that mutes the output (i.e. causes the DAC to lose the signal),
> in the same way as disabling OXYGEN_SPDIF_OUT_ENABLE does, so I would
> say that it does have mute, and I thought it should be controlled by
> the variable called "spdif_playback_enable"...

I don't remember what the reason for the behaviour of the current
controls was; I probably copied them from some other driver.

> Would an acceptable fix be to create another mixer control for muting
> (and also rename the existing S/PDIF to e.g. "S/PDIF Multichannel"
> so its clearer what that's for)?

AFAICS the usual name would be "PCM".


When making separate changes, please send separate patches.


Regards,
Clemens


More information about the Alsa-devel mailing list