Skip to content
Snippets Groups Projects
Commit dda4d6bc authored by Shengjiu Wang's avatar Shengjiu Wang
Browse files

LF-5909-1: ASoC: fsl_sai: Refine the slots number according to bclk_ratio


The bclk_ratio is set by .set_bclk_ratio API.
bclk_ratio = slots * slot_width
So if slots is not set by .set_tdm_slot, then can be calculated
by bclk_ratio.

Signed-off-by: default avatarShengjiu Wang <shengjiu.wang@nxp.com>
Reviewed-by: default avatarChancel Liu <chancel.liu@nxp.com>
parent 4daab77a
No related branches found
No related tags found
1 merge request!455CI: Update gitlab-ci
...@@ -547,8 +547,13 @@ static int fsl_sai_hw_params(struct snd_pcm_substream *substream, ...@@ -547,8 +547,13 @@ static int fsl_sai_hw_params(struct snd_pcm_substream *substream,
int ret, i, trce_mask = 0, dl_cfg_cnt, dl_cfg_idx = 0; int ret, i, trce_mask = 0, dl_cfg_cnt, dl_cfg_idx = 0;
struct fsl_sai_dl_cfg *dl_cfg; struct fsl_sai_dl_cfg *dl_cfg;
if (sai->slot_width)
slot_width = sai->slot_width;
if (sai->slots) if (sai->slots)
slots = sai->slots; slots = sai->slots;
else if (sai->bclk_ratio)
slots = sai->bclk_ratio / slot_width;
pins = DIV_ROUND_UP(channels, slots); pins = DIV_ROUND_UP(channels, slots);
sai->is_dsd = fsl_is_dsd(params); sai->is_dsd = fsl_is_dsd(params);
...@@ -574,9 +579,6 @@ static int fsl_sai_hw_params(struct snd_pcm_substream *substream, ...@@ -574,9 +579,6 @@ static int fsl_sai_hw_params(struct snd_pcm_substream *substream,
return -EINVAL; return -EINVAL;
} }
if (sai->slot_width)
slot_width = sai->slot_width;
bclk = rate*(sai->bclk_ratio ? sai->bclk_ratio : slots * slot_width); bclk = rate*(sai->bclk_ratio ? sai->bclk_ratio : slots * slot_width);
if (!IS_ERR_OR_NULL(sai->pinctrl)) { if (!IS_ERR_OR_NULL(sai->pinctrl)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment