mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-05 05:09:02 +07:00
Merge remote-tracking branch 'asoc/fix/sgtl5000' into asoc-linus
This commit is contained in:
commit
f6938bb360
@ -153,6 +153,8 @@ static int mic_bias_event(struct snd_soc_dapm_widget *w,
|
|||||||
static int power_vag_event(struct snd_soc_dapm_widget *w,
|
static int power_vag_event(struct snd_soc_dapm_widget *w,
|
||||||
struct snd_kcontrol *kcontrol, int event)
|
struct snd_kcontrol *kcontrol, int event)
|
||||||
{
|
{
|
||||||
|
const u32 mask = SGTL5000_DAC_POWERUP | SGTL5000_ADC_POWERUP;
|
||||||
|
|
||||||
switch (event) {
|
switch (event) {
|
||||||
case SND_SOC_DAPM_POST_PMU:
|
case SND_SOC_DAPM_POST_PMU:
|
||||||
snd_soc_update_bits(w->codec, SGTL5000_CHIP_ANA_POWER,
|
snd_soc_update_bits(w->codec, SGTL5000_CHIP_ANA_POWER,
|
||||||
@ -160,9 +162,17 @@ static int power_vag_event(struct snd_soc_dapm_widget *w,
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case SND_SOC_DAPM_PRE_PMD:
|
case SND_SOC_DAPM_PRE_PMD:
|
||||||
snd_soc_update_bits(w->codec, SGTL5000_CHIP_ANA_POWER,
|
/*
|
||||||
SGTL5000_VAG_POWERUP, 0);
|
* Don't clear VAG_POWERUP, when both DAC and ADC are
|
||||||
msleep(400);
|
* operational to prevent inadvertently starving the
|
||||||
|
* other one of them.
|
||||||
|
*/
|
||||||
|
if ((snd_soc_read(w->codec, SGTL5000_CHIP_ANA_POWER) &
|
||||||
|
mask) != mask) {
|
||||||
|
snd_soc_update_bits(w->codec, SGTL5000_CHIP_ANA_POWER,
|
||||||
|
SGTL5000_VAG_POWERUP, 0);
|
||||||
|
msleep(400);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
@ -388,7 +398,7 @@ static const struct snd_kcontrol_new sgtl5000_snd_controls[] = {
|
|||||||
SOC_DOUBLE("Capture Volume", SGTL5000_CHIP_ANA_ADC_CTRL, 0, 4, 0xf, 0),
|
SOC_DOUBLE("Capture Volume", SGTL5000_CHIP_ANA_ADC_CTRL, 0, 4, 0xf, 0),
|
||||||
SOC_SINGLE_TLV("Capture Attenuate Switch (-6dB)",
|
SOC_SINGLE_TLV("Capture Attenuate Switch (-6dB)",
|
||||||
SGTL5000_CHIP_ANA_ADC_CTRL,
|
SGTL5000_CHIP_ANA_ADC_CTRL,
|
||||||
8, 2, 0, capture_6db_attenuate),
|
8, 1, 0, capture_6db_attenuate),
|
||||||
SOC_SINGLE("Capture ZC Switch", SGTL5000_CHIP_ANA_CTRL, 1, 1, 0),
|
SOC_SINGLE("Capture ZC Switch", SGTL5000_CHIP_ANA_CTRL, 1, 1, 0),
|
||||||
|
|
||||||
SOC_DOUBLE_TLV("Headphone Playback Volume",
|
SOC_DOUBLE_TLV("Headphone Playback Volume",
|
||||||
|
Loading…
Reference in New Issue
Block a user