ASoC: rt5677: Allow VAD to be shut on/off at all times
authorCurtis Malainey <cujomalainey@chromium.org>
Wed, 6 Nov 2019 01:13:33 +0000 (17:13 -0800)
committerMark Brown <broonie@kernel.org>
Mon, 11 Nov 2019 13:02:05 +0000 (13:02 +0000)
Due to limitations of the clocking configuration, we have no way of
scheduling our hibernation before the bdw dsp hibernates. This causes
issues when the system suspends with an open stream. We need userspace
to toggle the kcontrol before we are suspended so that any writes on
suspend are not lost and we don't corrupt the regmap.

Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
Link: https://lore.kernel.org/r/20191106011335.223061-9-cujomalainey@chromium.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/rt5677.c

index 14f04db8e5e714e9523a88b1d5792746604a4f44..a65d1554366d82863474fb27cf341da769b793d4 100644 (file)
@@ -979,13 +979,8 @@ static int rt5677_dsp_vad_put(struct snd_kcontrol *kcontrol,
                struct snd_ctl_elem_value *ucontrol)
 {
        struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
-       struct rt5677_priv *rt5677 = snd_soc_component_get_drvdata(component);
-
-       rt5677->dsp_vad_en = !!ucontrol->value.integer.value[0];
 
-       if (snd_soc_component_get_bias_level(component) == SND_SOC_BIAS_OFF)
-               rt5677_set_dsp_vad(component,
-                               !!ucontrol->value.integer.value[0]);
+       rt5677_set_dsp_vad(component, !!ucontrol->value.integer.value[0]);
 
        return 0;
 }