mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
ASoC: codec: wsa884x: make use of new mute_unmute_on_trigger flag
This fix is based on commit [1] fixing click and pop sounds during
SoundWire port start because PA is left unmuted.
making use of new mute_unmute_on_trigger flag and removing unmute
at PA setup, removes the Click/Pop issue at SoundWire enable.
[1] 805ce81826
("ASoC: codecs: wsa883x: make use of new mute_unmute_on_trigger flag")
Cc: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://msgid.link/r/20231211-topic-sm8x50-upstream-wsa884x-fix-plop-v1-1-0dc630a19172@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
ab8921e1da
commit
28b0b18d53
@ -1654,15 +1654,9 @@ static int wsa884x_spkr_event(struct snd_soc_dapm_widget *w,
|
||||
snd_soc_component_write_field(component, WSA884X_PDM_WD_CTL,
|
||||
WSA884X_PDM_WD_CTL_PDM_WD_EN_MASK,
|
||||
0x1);
|
||||
snd_soc_component_write_field(component, WSA884X_PA_FSM_EN,
|
||||
WSA884X_PA_FSM_EN_GLOBAL_PA_EN_MASK,
|
||||
0x1);
|
||||
|
||||
break;
|
||||
case SND_SOC_DAPM_PRE_PMD:
|
||||
snd_soc_component_write_field(component, WSA884X_PA_FSM_EN,
|
||||
WSA884X_PA_FSM_EN_GLOBAL_PA_EN_MASK,
|
||||
0x0);
|
||||
snd_soc_component_write_field(component, WSA884X_PDM_WD_CTL,
|
||||
WSA884X_PDM_WD_CTL_PDM_WD_EN_MASK,
|
||||
0x0);
|
||||
@ -1786,6 +1780,7 @@ static const struct snd_soc_dai_ops wsa884x_dai_ops = {
|
||||
.hw_free = wsa884x_hw_free,
|
||||
.mute_stream = wsa884x_mute_stream,
|
||||
.set_stream = wsa884x_set_stream,
|
||||
.mute_unmute_on_trigger = true,
|
||||
};
|
||||
|
||||
static struct snd_soc_dai_driver wsa884x_dais[] = {
|
||||
|
Loading…
Reference in New Issue
Block a user