ASoC: rt5640: Update MCLK rate in set_sysclk()
authorSameer Pujar <spujar@nvidia.com>
Thu, 9 Feb 2023 14:36:56 +0000 (20:06 +0530)
committerMark Brown <broonie@kernel.org>
Thu, 9 Feb 2023 16:06:38 +0000 (16:06 +0000)
Simple-card/audio-graph-card drivers do not handle MCLK clock when it
is specified in the codec device node. The expectation here is that,
the codec should actually own up the MCLK clock and do necessary setup
in the driver.

This is inspired from,
commit dbf54a953435 ("ASoC: rt5659: Update MCLK rate in set_sysclk()").

Cc: Oder Chiou <oder_chiou@realtek.com>
Signed-off-by: Sameer Pujar <spujar@nvidia.com>
Link: https://lore.kernel.org/r/1675953417-8686-2-git-send-email-spujar@nvidia.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/rt5640.c

index 9e6341a68c6b090660efc9fe9bc5278440c30b1e..13925705550700102710117db7579d56923ebb21 100644 (file)
@@ -1838,9 +1838,14 @@ static int rt5640_set_dai_sysclk(struct snd_soc_dai *dai,
        struct rt5640_priv *rt5640 = snd_soc_component_get_drvdata(component);
        unsigned int reg_val = 0;
        unsigned int pll_bit = 0;
+       int ret;
 
        switch (clk_id) {
        case RT5640_SCLK_S_MCLK:
+               ret = clk_set_rate(rt5640->mclk, freq);
+               if (ret)
+                       return ret;
+
                reg_val |= RT5640_SCLK_SRC_MCLK;
                break;
        case RT5640_SCLK_S_PLL1: