]> git.itanic.dy.fi Git - linux-stable/commitdiff
ASoC: mediatek: mt8186: Allow setting shared clocks from machine driver
authorNícolas F. R. A. Prado <nfraprado@collabora.com>
Thu, 8 Sep 2022 16:11:52 +0000 (12:11 -0400)
committerMark Brown <broonie@kernel.org>
Fri, 9 Sep 2022 17:49:00 +0000 (18:49 +0100)
Add a new function to configure the shared clock between two i2s ports,
and export it. This will allow the clock sharing to be set from the
machine driver instead of the devicetree.

Signed-off-by: Nícolas F. R. A. Prado <nfraprado@collabora.com>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Link: https://lore.kernel.org/r/20220908161154.648557-9-nfraprado@collabora.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/mediatek/mt8186/mt8186-afe-common.h
sound/soc/mediatek/mt8186/mt8186-dai-i2s.c

index b8f03e1b7e49da3f734593c2f6eec274f7fa9481..d592585209955a2dc35108680a5c4c5869dd6ee0 100644 (file)
@@ -189,6 +189,9 @@ unsigned int mt8186_rate_transform(struct device *dev,
 unsigned int mt8186_tdm_relatch_rate_transform(struct device *dev,
                                               unsigned int rate);
 
+int mt8186_dai_i2s_set_share(struct mtk_base_afe *afe, const char *main_i2s_name,
+                            const char *secondary_i2s_name);
+
 int mt8186_dai_set_priv(struct mtk_base_afe *afe, int id,
                        int priv_size, const void *priv_data);
 
index e553a555d168798bdbc8a065f45e3f44748949ce..7e8cad682c835f9a16b39827964bdadc67f40414 100644 (file)
@@ -1184,6 +1184,32 @@ static int mt8186_dai_i2s_get_share(struct mtk_base_afe *afe)
        return 0;
 }
 
+/**
+ * mt8186_dai_i2s_set_share() - Set up I2S ports to share a single clock.
+ * @afe: Pointer to &struct mtk_base_afe
+ * @main_i2s_name: The name of the I2S port that will provide the clock
+ * @secondary_i2s_name: The name of the I2S port that will use this clock
+ */
+int mt8186_dai_i2s_set_share(struct mtk_base_afe *afe, const char *main_i2s_name,
+                            const char *secondary_i2s_name)
+{
+       struct mtk_afe_i2s_priv *secondary_i2s_priv;
+       int main_i2s_id;
+
+       secondary_i2s_priv = get_i2s_priv_by_name(afe, secondary_i2s_name);
+       if (!secondary_i2s_priv)
+               return -EINVAL;
+
+       main_i2s_id = get_i2s_id_by_name(afe, main_i2s_name);
+       if (main_i2s_id < 0)
+               return main_i2s_id;
+
+       secondary_i2s_priv->share_i2s_id = main_i2s_id;
+
+       return 0;
+}
+EXPORT_SYMBOL_GPL(mt8186_dai_i2s_set_share);
+
 static int mt8186_dai_i2s_set_priv(struct mtk_base_afe *afe)
 {
        int i;