[alsa-devel] [PATCH] ASoC: adau1701: Reset codec based on sample rate changes

pascal.huerst at gmail.com pascal.huerst at gmail.com
Wed Mar 23 12:58:23 CET 2016


From: Pascal Huerst <pascal.huerst at gmail.com>

Instead of checking if mclk/lrclk ratio has changed, check if
sample rate has changed. In certain cases, the mclk might be
changed in the machine driver, which can lead to the same
mclk/lrclk ration, eventhow the sample rate has changed.

Since the codec has to be programmed differently for every
sample rate, its better to check for samplerate changes instead
of mclk/lrclk ration changes.

Signed-off-by: Pascal Huerst <pascal.huerst at gmail.com>
---
 sound/soc/codecs/adau1701.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/sound/soc/codecs/adau1701.c b/sound/soc/codecs/adau1701.c
index 202dea1..1dbbcda 100644
--- a/sound/soc/codecs/adau1701.c
+++ b/sound/soc/codecs/adau1701.c
@@ -111,6 +111,7 @@ struct adau1701 {
 	unsigned int dai_fmt;
 	unsigned int pll_clkdiv;
 	unsigned int sysclk;
+	unsigned int current_rate;
 	struct regmap *regmap;
 	struct i2c_client *client;
 	u8 pin_config[12];
@@ -436,22 +437,24 @@ static int adau1701_hw_params(struct snd_pcm_substream *substream,
 {
 	struct snd_soc_codec *codec = dai->codec;
 	struct adau1701 *adau1701 = snd_soc_codec_get_drvdata(codec);
-	unsigned int clkdiv = adau1701->sysclk / params_rate(params);
+	unsigned int rate = params_rate(params);
+	unsigned int clkdiv = adau1701->sysclk / rate;
 	unsigned int val;
 	int ret;

 	/*
-	 * If the mclk/lrclk ratio changes, the chip needs updated PLL
+	 * If the sample rate changes, the chip needs updated PLL
 	 * mode GPIO settings, and a full reset cycle, including a new
 	 * firmware upload.
 	 */
-	if (clkdiv != adau1701->pll_clkdiv) {
-		ret = adau1701_reset(codec, clkdiv, params_rate(params));
+	if (adau1701->current_rate != rate) {
+		adau1701->current_rate = rate;
+		ret = adau1701_reset(codec, clkdiv, rate);
 		if (ret < 0)
 			return ret;
 	}

-	switch (params_rate(params)) {
+	switch (rate) {
 	case 192000:
 		val = ADAU1701_DSPCTRL_SR_192;
 		break;
--
2.5.0



More information about the Alsa-devel mailing list