From e3c0f23ed4849508680b305e070a3ceb2cfccd0e Mon Sep 17 00:00:00 2001 From: Viorel Suman Date: Thu, 22 Apr 2021 13:13:07 +0300 Subject: [PATCH] LF-3744-2 ASoC: SOF: imx8m: add SAI1 clocks Add SAI1 clocks so that the clocks will be started when SOF audio card is in use. Signed-off-by: Viorel Suman Reviewed-by: Daniel Baluta --- sound/soc/sof/imx/imx8m.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sound/soc/sof/imx/imx8m.c b/sound/soc/sof/imx/imx8m.c index dc3d3f9a3bf9..f72493e646ce 100644 --- a/sound/soc/sof/imx/imx8m.c +++ b/sound/soc/sof/imx/imx8m.c @@ -47,9 +47,11 @@ static const char *imx8m_dsp_clks_names[IMX8M_DSP_CLK_NUM] = "ipg", "ocram", "core", }; -#define IMX8M_DAI_CLK_NUM 6 +#define IMX8M_DAI_CLK_NUM 11 static const char *imx8m_dai_clks_names[IMX8M_DAI_CLK_NUM] = { + /* SAI1 clocks */ + "sai1_bus", "sai1_mclk0", "sai1_mclk1", "sai1_mclk2", "sai1_mclk3", /* SAI3 clocks */ "sai3_bus", "sai3_mclk0", "sai3_mclk1", "sai3_mclk2", "sai3_mclk3", /* DMA3 clocks */ -- 2.17.1