ASoC: fsl_sai: MCLK bind with TX/RX enable bit
authorShengjiu Wang <shengjiu.wang@nxp.com>
Fri, 5 May 2023 07:55:22 +0000 (15:55 +0800)
committerMark Brown <broonie@kernel.org>
Sun, 7 May 2023 23:48:53 +0000 (08:48 +0900)
On i.MX8MP, the sai MCLK is bound with TX/RX enable bit,
which means the TX/RE enable bit need to be enabled then
MCLK can be output on PAD.

Some codec (for example: WM8962) needs the MCLK output
earlier, otherwise there will be issue for codec
configuration.

Add new soc data "mclk_with_tere" for this platform and
enable the MCLK output in startup stage.

As "mclk_with_tere" only applied to i.MX8MP, currently
The soc data is shared with i.MX8MN, so need to add
an i.MX8MN own soc data with "mclk_with_tere" disabled.

Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com
Link: https://lore.kernel.org/r/1683273322-2525-1-git-send-email-shengjiu.wang@nxp.com
Signed-off-by: Mark Brown <broonie@kernel.org
sound/soc/fsl/fsl_sai.c
sound/soc/fsl/fsl_sai.h

index abdaffb00fbdc978509538b3b667d0c2fad78c73..d9344025dc16e33db77f2db933a803d65c7f98f2 100644 (file)
@@ -1400,7 +1400,9 @@ static int fsl_sai_probe(struct platform_device *pdev)
                sai->cpu_dai_drv.symmetric_sample_bits = 0;
        }
 
-       if (of_property_read_bool(np, "fsl,sai-mclk-direction-output") &&
+       sai->mclk_direction_output = of_property_read_bool(np, "fsl,sai-mclk-direction-output");
+
+       if (sai->mclk_direction_output &&
            of_device_is_compatible(np, "fsl,imx6ul-sai")) {
                gpr = syscon_regmap_lookup_by_compatible("fsl,imx6ul-iomuxc-gpr");
                if (IS_ERR(gpr)) {
@@ -1443,7 +1445,7 @@ static int fsl_sai_probe(struct platform_device *pdev)
                dev_warn(dev, "Error reading SAI version: %d\n", ret);
 
        /* Select MCLK direction */
-       if (of_property_read_bool(np, "fsl,sai-mclk-direction-output") &&
+       if (sai->mclk_direction_output &&
            sai->soc_data->max_register >= FSL_SAI_MCTL) {
                regmap_update_bits(sai->regmap, FSL_SAI_MCTL,
                                   FSL_SAI_MCTL_MCLK_EN, FSL_SAI_MCTL_MCLK_EN);
@@ -1562,6 +1564,17 @@ static const struct fsl_sai_soc_data fsl_sai_imx8mm_data = {
        .max_register = FSL_SAI_MCTL,
 };
 
+static const struct fsl_sai_soc_data fsl_sai_imx8mn_data = {
+       .use_imx_pcm = true,
+       .use_edma = false,
+       .fifo_depth = 128,
+       .reg_offset = 8,
+       .mclk0_is_mclk1 = false,
+       .pins = 8,
+       .flags = 0,
+       .max_register = FSL_SAI_MDIV,
+};
+
 static const struct fsl_sai_soc_data fsl_sai_imx8mp_data = {
        .use_imx_pcm = true,
        .use_edma = false,
@@ -1571,6 +1584,7 @@ static const struct fsl_sai_soc_data fsl_sai_imx8mp_data = {
        .pins = 8,
        .flags = 0,
        .max_register = FSL_SAI_MDIV,
+       .mclk_with_tere = true,
 };
 
 static const struct fsl_sai_soc_data fsl_sai_imx8ulp_data = {
@@ -1606,7 +1620,7 @@ static const struct of_device_id fsl_sai_ids[] = {
        { .compatible = "fsl,imx8mm-sai", .data = &fsl_sai_imx8mm_data },
        { .compatible = "fsl,imx8mp-sai", .data = &fsl_sai_imx8mp_data },
        { .compatible = "fsl,imx8ulp-sai", .data = &fsl_sai_imx8ulp_data },
-       { .compatible = "fsl,imx8mn-sai", .data = &fsl_sai_imx8mp_data },
+       { .compatible = "fsl,imx8mn-sai", .data = &fsl_sai_imx8mn_data },
        { .compatible = "fsl,imx93-sai", .data = &fsl_sai_imx93_data },
        { /* sentinel */ }
 };
@@ -1671,6 +1685,10 @@ static int fsl_sai_runtime_resume(struct device *dev)
        if (ret)
                goto disable_rx_clk;
 
+       if (sai->soc_data->mclk_with_tere && sai->mclk_direction_output)
+               regmap_update_bits(sai->regmap, FSL_SAI_TCSR(ofs),
+                                  FSL_SAI_CSR_TERE, FSL_SAI_CSR_TERE);
+
        return 0;
 
 disable_rx_clk:
index 197748a888d5fce91ae3ddf2047559adfcb88577..3eb994aef36afa8f97d6291d9f2d8c7011b486d3 100644 (file)
@@ -230,6 +230,7 @@ struct fsl_sai_soc_data {
        bool use_imx_pcm;
        bool use_edma;
        bool mclk0_is_mclk1;
+       bool mclk_with_tere;
        unsigned int fifo_depth;
        unsigned int pins;
        unsigned int reg_offset;
@@ -287,6 +288,7 @@ struct fsl_sai {
        bool synchronous[2];
        struct fsl_sai_dl_cfg *dl_cfg;
        unsigned int dl_cfg_cnt;
+       bool mclk_direction_output;
 
        unsigned int mclk_id[2];
        unsigned int mclk_streams;