summaryrefslogtreecommitdiff
path: root/sound/soc/fsl/fsl_sai.c
diff options
context:
space:
mode:
authorViorel Suman <viorel.suman@nxp.com>2018-08-27 13:50:17 +0300
committerDong Aisheng <aisheng.dong@nxp.com>2019-11-25 15:54:02 +0800
commitf3d96d45f682e3f760594c68afee855aebeb3572 (patch)
tree4de1909bd447e672801cea842215a821bc720e84 /sound/soc/fsl/fsl_sai.c
parentddf3ffebf9831d94d53cc4cdb5af5f4836ab2428 (diff)
MLK-18898-1: ASoC: fsl_sai: select pinctrl state as function of bitclock rate
Similar to DSD512 case we need a PCM pinctrl state option to map SAI BCLK to codec MCLK pin. Given that bitclock rate is function of slots number and slot width - pass bclk rate as parameter value from SAI driver. Signed-off-by: Viorel Suman <viorel.suman@nxp.com> (cherry picked from commit 826caeae32713cff7ad50de8ebc9915de975edd9)
Diffstat (limited to 'sound/soc/fsl/fsl_sai.c')
-rw-r--r--sound/soc/fsl/fsl_sai.c24
1 files changed, 10 insertions, 14 deletions
diff --git a/sound/soc/fsl/fsl_sai.c b/sound/soc/fsl/fsl_sai.c
index 6e7254811052..70a0e772af1e 100644
--- a/sound/soc/fsl/fsl_sai.c
+++ b/sound/soc/fsl/fsl_sai.c
@@ -620,7 +620,7 @@ static int fsl_sai_hw_params(struct snd_pcm_substream *substream,
u32 val_cr4 = 0, val_cr5 = 0;
u32 slots = (channels == 1) ? 2 : channels;
u32 slot_width = word_width;
- u32 pins;
+ u32 pins, bclk;
int ret;
int i;
int trce_mask = 0;
@@ -630,9 +630,16 @@ static int fsl_sai_hw_params(struct snd_pcm_substream *substream,
pins = DIV_ROUND_UP(channels, slots);
sai->is_dsd = fsl_is_dsd(params);
+ if (sai->is_dsd)
+ pins = channels;
+
+ if (sai->slot_width)
+ slot_width = sai->slot_width;
+
+ bclk = rate*(sai->bitclk_ratio ? sai->bitclk_ratio : slots * slot_width);
if (!IS_ERR_OR_NULL(sai->pinctrl)) {
- sai->pins_state = fsl_get_pins_state(sai->pinctrl, params);
+ sai->pins_state = fsl_get_pins_state(sai->pinctrl, params, bclk);
if (!IS_ERR_OR_NULL(sai->pins_state)) {
ret = pinctrl_select_state(sai->pinctrl, sai->pins_state);
@@ -644,19 +651,8 @@ static int fsl_sai_hw_params(struct snd_pcm_substream *substream,
}
}
- if (sai->is_dsd)
- pins = channels;
-
- if (sai->slot_width)
- slot_width = sai->slot_width;
-
if (!sai->slave_mode[tx]) {
- if (sai->bitclk_ratio)
- ret = fsl_sai_set_bclk(cpu_dai, tx,
- rate * sai->bitclk_ratio);
- else
- ret = fsl_sai_set_bclk(cpu_dai, tx,
- rate * slots * slot_width);
+ ret = fsl_sai_set_bclk(cpu_dai, tx, bclk);
if (ret)
return ret;