From: John Hsu <supercraig0...@gmail.com>

[ Upstream commit 8fe19795da1b9dea2353f016622842a2f163039e ]

Fix the issue that mic type detection error after resume.
The microphone type detection procedure will recognize
testing signal on JKSLV pin, but before the procedure,
JKSLV already had supply voltage, that results in the failure.
Therefore, the patch turns off the power and reset the jack type
configuration before suspend. Then redo the jack detection
procedure after resume.

The patch help to fix the issue as follows:
Google issue 37973093: CTIA/OMTP jack type detection failure after resume
Reported Issue
Chrome OS Version  :  ChromeOS R59-9460.13.0
Type of hardware   :  DVT sample

What steps will reproduce the problem?
(1 Play a music
(2 Insert a headphones
(3 Close laptop lid 3 sec then open it
What is the expected output?
The music is normal in the headphones.
What do you see instead?
Singer voice in the music is not clear.

How frequently does this problem reproduce?
Always

What is the impact to the user, and is there a workaround?
If so, what is it?
Re-insert the headset or close the laptop lid and
then open it again can be repaired.

Signed-off-by: John Hsu <kch...@nuvoton.com>
Signed-off-by: John Hsu <supercraig0...@gmail.com>
Signed-off-by: Mark Brown <broo...@kernel.org>
Signed-off-by: Sasha Levin <alexander.le...@microsoft.com>
---
 sound/soc/codecs/nau8825.c | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/sound/soc/codecs/nau8825.c b/sound/soc/codecs/nau8825.c
index a4871c4adcb0..1285923650fc 100644
--- a/sound/soc/codecs/nau8825.c
+++ b/sound/soc/codecs/nau8825.c
@@ -1523,7 +1523,6 @@ static int nau8825_jack_insert(struct nau8825 *nau8825)
                snd_soc_dapm_sync(dapm);
                break;
        case 2:
-       case 3:
                dev_dbg(nau8825->dev, "CTIA (micgnd2) mic connected\n");
                type = SND_JACK_HEADSET;
 
@@ -1543,6 +1542,11 @@ static int nau8825_jack_insert(struct nau8825 *nau8825)
                snd_soc_dapm_force_enable_pin(dapm, "SAR");
                snd_soc_dapm_sync(dapm);
                break;
+       case 3:
+               /* detect error case */
+               dev_err(nau8825->dev, "detection error; disable mic 
function\n");
+               type = SND_JACK_HEADPHONE;
+               break;
        }
 
        /* Leaving HPOL/R grounded after jack insert by default. They will be
@@ -2203,6 +2207,13 @@ static int nau8825_set_bias_level(struct snd_soc_codec 
*codec,
                break;
 
        case SND_SOC_BIAS_OFF:
+               /* Reset the configuration of jack type for detection */
+               /* Detach 2kOhm Resistors from MICBIAS to MICGND1/2 */
+               regmap_update_bits(nau8825->regmap, NAU8825_REG_MIC_BIAS,
+                       NAU8825_MICBIAS_JKSLV | NAU8825_MICBIAS_JKR2, 0);
+               /* ground HPL/HPR, MICGRND1/2 */
+               regmap_update_bits(nau8825->regmap,
+                       NAU8825_REG_HSD_CTRL, 0xf, 0xf);
                /* Cancel and reset cross talk detection funciton */
                nau8825_xtalk_cancel(nau8825);
                /* Turn off all interruptions before system shutdown. Keep the
@@ -2226,6 +2237,10 @@ static int __maybe_unused nau8825_suspend(struct 
snd_soc_codec *codec)
 
        disable_irq(nau8825->irq);
        snd_soc_codec_force_bias_level(codec, SND_SOC_BIAS_OFF);
+       /* Power down codec power; don't suppoet button wakeup */
+       snd_soc_dapm_disable_pin(nau8825->dapm, "SAR");
+       snd_soc_dapm_disable_pin(nau8825->dapm, "MICBIAS");
+       snd_soc_dapm_sync(nau8825->dapm);
        regcache_cache_only(nau8825->regmap, true);
        regcache_mark_dirty(nau8825->regmap);
 
-- 
2.15.1

Reply via email to