1 // SPDX-License-Identifier: GPL-2.0+
3 // Freescale ALSA SoC Digital Audio Interface (SAI) driver.
5 // Copyright 2012-2015 Freescale Semiconductor, Inc.
8 #include <linux/delay.h>
9 #include <linux/dmaengine.h>
10 #include <linux/module.h>
11 #include <linux/of_address.h>
12 #include <linux/of_device.h>
13 #include <linux/pm_runtime.h>
14 #include <linux/regmap.h>
15 #include <linux/slab.h>
16 #include <linux/time.h>
17 #include <sound/core.h>
18 #include <sound/dmaengine_pcm.h>
19 #include <sound/pcm_params.h>
20 #include <linux/mfd/syscon.h>
21 #include <linux/mfd/syscon/imx6q-iomuxc-gpr.h>
26 #define FSL_SAI_FLAGS (FSL_SAI_CSR_SEIE |\
29 static const unsigned int fsl_sai_rates[] = {
30 8000, 11025, 12000, 16000, 22050,
31 24000, 32000, 44100, 48000, 64000,
32 88200, 96000, 176400, 192000
35 static const struct snd_pcm_hw_constraint_list fsl_sai_rate_constraints = {
36 .count = ARRAY_SIZE(fsl_sai_rates),
37 .list = fsl_sai_rates,
41 * fsl_sai_dir_is_synced - Check if stream is synced by the opposite stream
43 * SAI supports synchronous mode using bit/frame clocks of either Transmitter's
44 * or Receiver's for both streams. This function is used to check if clocks of
45 * the stream's are synced by the opposite stream.
48 * @dir: stream direction
50 static inline bool fsl_sai_dir_is_synced(struct fsl_sai *sai, int dir)
52 int adir = (dir == TX) ? RX : TX;
54 /* current dir in async mode while opposite dir in sync mode */
55 return !sai->synchronous[dir] && sai->synchronous[adir];
58 static irqreturn_t fsl_sai_isr(int irq, void *devid)
60 struct fsl_sai *sai = (struct fsl_sai *)devid;
61 unsigned int ofs = sai->soc_data->reg_offset;
62 struct device *dev = &sai->pdev->dev;
63 u32 flags, xcsr, mask;
67 * Both IRQ status bits and IRQ mask bits are in the xCSR but
68 * different shifts. And we here create a mask only for those
69 * IRQs that we activated.
71 mask = (FSL_SAI_FLAGS >> FSL_SAI_CSR_xIE_SHIFT) << FSL_SAI_CSR_xF_SHIFT;
74 regmap_read(sai->regmap, FSL_SAI_TCSR(ofs), &xcsr);
82 if (flags & FSL_SAI_CSR_WSF)
83 dev_dbg(dev, "isr: Start of Tx word detected\n");
85 if (flags & FSL_SAI_CSR_SEF)
86 dev_dbg(dev, "isr: Tx Frame sync error detected\n");
88 if (flags & FSL_SAI_CSR_FEF) {
89 dev_dbg(dev, "isr: Transmit underrun detected\n");
90 /* FIFO reset for safety */
91 xcsr |= FSL_SAI_CSR_FR;
94 if (flags & FSL_SAI_CSR_FWF)
95 dev_dbg(dev, "isr: Enabled transmit FIFO is empty\n");
97 if (flags & FSL_SAI_CSR_FRF)
98 dev_dbg(dev, "isr: Transmit FIFO watermark has been reached\n");
100 flags &= FSL_SAI_CSR_xF_W_MASK;
101 xcsr &= ~FSL_SAI_CSR_xF_MASK;
104 regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), flags | xcsr);
108 regmap_read(sai->regmap, FSL_SAI_RCSR(ofs), &xcsr);
116 if (flags & FSL_SAI_CSR_WSF)
117 dev_dbg(dev, "isr: Start of Rx word detected\n");
119 if (flags & FSL_SAI_CSR_SEF)
120 dev_dbg(dev, "isr: Rx Frame sync error detected\n");
122 if (flags & FSL_SAI_CSR_FEF) {
123 dev_dbg(dev, "isr: Receive overflow detected\n");
124 /* FIFO reset for safety */
125 xcsr |= FSL_SAI_CSR_FR;
128 if (flags & FSL_SAI_CSR_FWF)
129 dev_dbg(dev, "isr: Enabled receive FIFO is full\n");
131 if (flags & FSL_SAI_CSR_FRF)
132 dev_dbg(dev, "isr: Receive FIFO watermark has been reached\n");
134 flags &= FSL_SAI_CSR_xF_W_MASK;
135 xcsr &= ~FSL_SAI_CSR_xF_MASK;
138 regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), flags | xcsr);
147 static int fsl_sai_set_dai_tdm_slot(struct snd_soc_dai *cpu_dai, u32 tx_mask,
148 u32 rx_mask, int slots, int slot_width)
150 struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
153 sai->slot_width = slot_width;
158 static int fsl_sai_set_dai_bclk_ratio(struct snd_soc_dai *dai,
161 struct fsl_sai *sai = snd_soc_dai_get_drvdata(dai);
163 sai->bclk_ratio = ratio;
168 static int fsl_sai_set_dai_sysclk_tr(struct snd_soc_dai *cpu_dai,
169 int clk_id, unsigned int freq, int fsl_dir)
171 struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
172 unsigned int ofs = sai->soc_data->reg_offset;
173 bool tx = fsl_dir == FSL_FMT_TRANSMITTER;
177 case FSL_SAI_CLK_BUS:
178 val_cr2 |= FSL_SAI_CR2_MSEL_BUS;
180 case FSL_SAI_CLK_MAST1:
181 val_cr2 |= FSL_SAI_CR2_MSEL_MCLK1;
183 case FSL_SAI_CLK_MAST2:
184 val_cr2 |= FSL_SAI_CR2_MSEL_MCLK2;
186 case FSL_SAI_CLK_MAST3:
187 val_cr2 |= FSL_SAI_CR2_MSEL_MCLK3;
193 regmap_update_bits(sai->regmap, FSL_SAI_xCR2(tx, ofs),
194 FSL_SAI_CR2_MSEL_MASK, val_cr2);
199 static int fsl_sai_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
200 int clk_id, unsigned int freq, int dir)
204 if (dir == SND_SOC_CLOCK_IN)
207 ret = fsl_sai_set_dai_sysclk_tr(cpu_dai, clk_id, freq,
208 FSL_FMT_TRANSMITTER);
210 dev_err(cpu_dai->dev, "Cannot set tx sysclk: %d\n", ret);
214 ret = fsl_sai_set_dai_sysclk_tr(cpu_dai, clk_id, freq,
217 dev_err(cpu_dai->dev, "Cannot set rx sysclk: %d\n", ret);
222 static int fsl_sai_set_dai_fmt_tr(struct snd_soc_dai *cpu_dai,
223 unsigned int fmt, int fsl_dir)
225 struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
226 unsigned int ofs = sai->soc_data->reg_offset;
227 bool tx = fsl_dir == FSL_FMT_TRANSMITTER;
228 u32 val_cr2 = 0, val_cr4 = 0;
230 if (!sai->is_lsb_first)
231 val_cr4 |= FSL_SAI_CR4_MF;
234 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
235 case SND_SOC_DAIFMT_I2S:
237 * Frame low, 1clk before data, one word length for frame sync,
238 * frame sync starts one serial clock cycle earlier,
239 * that is, together with the last bit of the previous
242 val_cr2 |= FSL_SAI_CR2_BCP;
243 val_cr4 |= FSL_SAI_CR4_FSE | FSL_SAI_CR4_FSP;
245 case SND_SOC_DAIFMT_LEFT_J:
247 * Frame high, one word length for frame sync,
248 * frame sync asserts with the first bit of the frame.
250 val_cr2 |= FSL_SAI_CR2_BCP;
252 case SND_SOC_DAIFMT_DSP_A:
254 * Frame high, 1clk before data, one bit for frame sync,
255 * frame sync starts one serial clock cycle earlier,
256 * that is, together with the last bit of the previous
259 val_cr2 |= FSL_SAI_CR2_BCP;
260 val_cr4 |= FSL_SAI_CR4_FSE;
261 sai->is_dsp_mode = true;
263 case SND_SOC_DAIFMT_DSP_B:
265 * Frame high, one bit for frame sync,
266 * frame sync asserts with the first bit of the frame.
268 val_cr2 |= FSL_SAI_CR2_BCP;
269 sai->is_dsp_mode = true;
271 case SND_SOC_DAIFMT_RIGHT_J:
277 /* DAI clock inversion */
278 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
279 case SND_SOC_DAIFMT_IB_IF:
280 /* Invert both clocks */
281 val_cr2 ^= FSL_SAI_CR2_BCP;
282 val_cr4 ^= FSL_SAI_CR4_FSP;
284 case SND_SOC_DAIFMT_IB_NF:
285 /* Invert bit clock */
286 val_cr2 ^= FSL_SAI_CR2_BCP;
288 case SND_SOC_DAIFMT_NB_IF:
289 /* Invert frame clock */
290 val_cr4 ^= FSL_SAI_CR4_FSP;
292 case SND_SOC_DAIFMT_NB_NF:
293 /* Nothing to do for both normal cases */
299 /* DAI clock master masks */
300 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
301 case SND_SOC_DAIFMT_CBS_CFS:
302 val_cr2 |= FSL_SAI_CR2_BCD_MSTR;
303 val_cr4 |= FSL_SAI_CR4_FSD_MSTR;
304 sai->is_slave_mode = false;
306 case SND_SOC_DAIFMT_CBM_CFM:
307 sai->is_slave_mode = true;
309 case SND_SOC_DAIFMT_CBS_CFM:
310 val_cr2 |= FSL_SAI_CR2_BCD_MSTR;
311 sai->is_slave_mode = false;
313 case SND_SOC_DAIFMT_CBM_CFS:
314 val_cr4 |= FSL_SAI_CR4_FSD_MSTR;
315 sai->is_slave_mode = true;
321 regmap_update_bits(sai->regmap, FSL_SAI_xCR2(tx, ofs),
322 FSL_SAI_CR2_BCP | FSL_SAI_CR2_BCD_MSTR, val_cr2);
323 regmap_update_bits(sai->regmap, FSL_SAI_xCR4(tx, ofs),
324 FSL_SAI_CR4_MF | FSL_SAI_CR4_FSE |
325 FSL_SAI_CR4_FSP | FSL_SAI_CR4_FSD_MSTR, val_cr4);
330 static int fsl_sai_set_dai_fmt(struct snd_soc_dai *cpu_dai, unsigned int fmt)
334 ret = fsl_sai_set_dai_fmt_tr(cpu_dai, fmt, FSL_FMT_TRANSMITTER);
336 dev_err(cpu_dai->dev, "Cannot set tx format: %d\n", ret);
340 ret = fsl_sai_set_dai_fmt_tr(cpu_dai, fmt, FSL_FMT_RECEIVER);
342 dev_err(cpu_dai->dev, "Cannot set rx format: %d\n", ret);
347 static int fsl_sai_set_bclk(struct snd_soc_dai *dai, bool tx, u32 freq)
349 struct fsl_sai *sai = snd_soc_dai_get_drvdata(dai);
350 unsigned int ofs = sai->soc_data->reg_offset;
351 unsigned long clk_rate;
352 u32 savediv = 0, ratio, savesub = freq;
353 int adir = tx ? RX : TX;
354 int dir = tx ? TX : RX;
358 /* Don't apply to slave mode */
359 if (sai->is_slave_mode)
363 * There is no point in polling MCLK0 if it is identical to MCLK1.
364 * And given that MQS use case has to use MCLK1 though two clocks
365 * are the same, we simply skip MCLK0 and start to find from MCLK1.
367 id = sai->soc_data->mclk0_is_mclk1 ? 1 : 0;
369 for (; id < FSL_SAI_MCLK_MAX; id++) {
370 clk_rate = clk_get_rate(sai->mclk_clk[id]);
374 ratio = clk_rate / freq;
376 ret = clk_rate - ratio * freq;
379 * Drop the source that can not be
380 * divided into the required rate.
382 if (ret != 0 && clk_rate / ret < 1000)
386 "ratio %d for freq %dHz based on clock %ldHz\n",
387 ratio, freq, clk_rate);
389 if (ratio % 2 == 0 && ratio >= 2 && ratio <= 512)
396 sai->mclk_id[tx] = id;
405 dev_err(dai->dev, "failed to derive required %cx rate: %d\n",
406 tx ? 'T' : 'R', freq);
411 * 1) For Asynchronous mode, we must set RCR2 register for capture, and
412 * set TCR2 register for playback.
413 * 2) For Tx sync with Rx clock, we must set RCR2 register for playback
415 * 3) For Rx sync with Tx clock, we must set TCR2 register for playback
417 * 4) For Tx and Rx are both Synchronous with another SAI, we just
420 if (fsl_sai_dir_is_synced(sai, adir)) {
421 regmap_update_bits(sai->regmap, FSL_SAI_xCR2(!tx, ofs),
422 FSL_SAI_CR2_MSEL_MASK,
423 FSL_SAI_CR2_MSEL(sai->mclk_id[tx]));
424 regmap_update_bits(sai->regmap, FSL_SAI_xCR2(!tx, ofs),
425 FSL_SAI_CR2_DIV_MASK, savediv - 1);
426 } else if (!sai->synchronous[dir]) {
427 regmap_update_bits(sai->regmap, FSL_SAI_xCR2(tx, ofs),
428 FSL_SAI_CR2_MSEL_MASK,
429 FSL_SAI_CR2_MSEL(sai->mclk_id[tx]));
430 regmap_update_bits(sai->regmap, FSL_SAI_xCR2(tx, ofs),
431 FSL_SAI_CR2_DIV_MASK, savediv - 1);
434 dev_dbg(dai->dev, "best fit: clock id=%d, div=%d, deviation =%d\n",
435 sai->mclk_id[tx], savediv, savesub);
440 static int fsl_sai_hw_params(struct snd_pcm_substream *substream,
441 struct snd_pcm_hw_params *params,
442 struct snd_soc_dai *cpu_dai)
444 struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
445 unsigned int ofs = sai->soc_data->reg_offset;
446 bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
447 unsigned int channels = params_channels(params);
448 u32 word_width = params_width(params);
449 u32 val_cr4 = 0, val_cr5 = 0;
450 u32 slots = (channels == 1) ? 2 : channels;
451 u32 slot_width = word_width;
452 int adir = tx ? RX : TX;
460 slot_width = sai->slot_width;
462 pins = DIV_ROUND_UP(channels, slots);
464 if (!sai->is_slave_mode) {
466 ret = fsl_sai_set_bclk(cpu_dai, tx,
468 params_rate(params));
470 ret = fsl_sai_set_bclk(cpu_dai, tx,
472 params_rate(params));
476 /* Do not enable the clock if it is already enabled */
477 if (!(sai->mclk_streams & BIT(substream->stream))) {
478 ret = clk_prepare_enable(sai->mclk_clk[sai->mclk_id[tx]]);
482 sai->mclk_streams |= BIT(substream->stream);
486 if (!sai->is_dsp_mode)
487 val_cr4 |= FSL_SAI_CR4_SYWD(slot_width);
489 val_cr5 |= FSL_SAI_CR5_WNW(slot_width);
490 val_cr5 |= FSL_SAI_CR5_W0W(slot_width);
492 if (sai->is_lsb_first)
493 val_cr5 |= FSL_SAI_CR5_FBT(0);
495 val_cr5 |= FSL_SAI_CR5_FBT(word_width - 1);
497 val_cr4 |= FSL_SAI_CR4_FRSZ(slots);
499 /* Set to output mode to avoid tri-stated data pins */
501 val_cr4 |= FSL_SAI_CR4_CHMOD;
504 * For SAI master mode, when Tx(Rx) sync with Rx(Tx) clock, Rx(Tx) will
505 * generate bclk and frame clock for Tx(Rx), we should set RCR4(TCR4),
506 * RCR5(TCR5) for playback(capture), or there will be sync error.
509 if (!sai->is_slave_mode && fsl_sai_dir_is_synced(sai, adir)) {
510 regmap_update_bits(sai->regmap, FSL_SAI_xCR4(!tx, ofs),
511 FSL_SAI_CR4_SYWD_MASK | FSL_SAI_CR4_FRSZ_MASK |
512 FSL_SAI_CR4_CHMOD_MASK,
514 regmap_update_bits(sai->regmap, FSL_SAI_xCR5(!tx, ofs),
515 FSL_SAI_CR5_WNW_MASK | FSL_SAI_CR5_W0W_MASK |
516 FSL_SAI_CR5_FBT_MASK, val_cr5);
519 regmap_update_bits(sai->regmap, FSL_SAI_xCR3(tx, ofs),
520 FSL_SAI_CR3_TRCE_MASK,
521 FSL_SAI_CR3_TRCE((1 << pins) - 1));
522 regmap_update_bits(sai->regmap, FSL_SAI_xCR4(tx, ofs),
523 FSL_SAI_CR4_SYWD_MASK | FSL_SAI_CR4_FRSZ_MASK |
524 FSL_SAI_CR4_CHMOD_MASK,
526 regmap_update_bits(sai->regmap, FSL_SAI_xCR5(tx, ofs),
527 FSL_SAI_CR5_WNW_MASK | FSL_SAI_CR5_W0W_MASK |
528 FSL_SAI_CR5_FBT_MASK, val_cr5);
529 regmap_write(sai->regmap, FSL_SAI_xMR(tx),
530 ~0UL - ((1 << min(channels, slots)) - 1));
535 static int fsl_sai_hw_free(struct snd_pcm_substream *substream,
536 struct snd_soc_dai *cpu_dai)
538 struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
539 bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
540 unsigned int ofs = sai->soc_data->reg_offset;
542 regmap_update_bits(sai->regmap, FSL_SAI_xCR3(tx, ofs),
543 FSL_SAI_CR3_TRCE_MASK, 0);
545 if (!sai->is_slave_mode &&
546 sai->mclk_streams & BIT(substream->stream)) {
547 clk_disable_unprepare(sai->mclk_clk[sai->mclk_id[tx]]);
548 sai->mclk_streams &= ~BIT(substream->stream);
554 static void fsl_sai_config_disable(struct fsl_sai *sai, int dir)
556 unsigned int ofs = sai->soc_data->reg_offset;
558 u32 xcsr, count = 100;
560 regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
561 FSL_SAI_CSR_TERE, 0);
563 /* TERE will remain set till the end of current frame */
566 regmap_read(sai->regmap, FSL_SAI_xCSR(tx, ofs), &xcsr);
567 } while (--count && xcsr & FSL_SAI_CSR_TERE);
569 regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
570 FSL_SAI_CSR_FR, FSL_SAI_CSR_FR);
573 * For sai master mode, after several open/close sai,
574 * there will be no frame clock, and can't recover
575 * anymore. Add software reset to fix this issue.
576 * This is a hardware bug, and will be fix in the
579 if (!sai->is_slave_mode) {
581 regmap_write(sai->regmap, FSL_SAI_xCSR(tx, ofs), FSL_SAI_CSR_SR);
582 /* Clear SR bit to finish the reset */
583 regmap_write(sai->regmap, FSL_SAI_xCSR(tx, ofs), 0);
587 static int fsl_sai_trigger(struct snd_pcm_substream *substream, int cmd,
588 struct snd_soc_dai *cpu_dai)
590 struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
591 unsigned int ofs = sai->soc_data->reg_offset;
593 bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
594 int adir = tx ? RX : TX;
595 int dir = tx ? TX : RX;
599 * Asynchronous mode: Clear SYNC for both Tx and Rx.
600 * Rx sync with Tx clocks: Clear SYNC for Tx, set it for Rx.
601 * Tx sync with Rx clocks: Clear SYNC for Rx, set it for Tx.
603 regmap_update_bits(sai->regmap, FSL_SAI_TCR2(ofs), FSL_SAI_CR2_SYNC,
604 sai->synchronous[TX] ? FSL_SAI_CR2_SYNC : 0);
605 regmap_update_bits(sai->regmap, FSL_SAI_RCR2(ofs), FSL_SAI_CR2_SYNC,
606 sai->synchronous[RX] ? FSL_SAI_CR2_SYNC : 0);
609 * It is recommended that the transmitter is the last enabled
610 * and the first disabled.
613 case SNDRV_PCM_TRIGGER_START:
614 case SNDRV_PCM_TRIGGER_RESUME:
615 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
616 regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
617 FSL_SAI_CSR_FRDE, FSL_SAI_CSR_FRDE);
619 regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
620 FSL_SAI_CSR_TERE, FSL_SAI_CSR_TERE);
622 * Enable the opposite direction for synchronous mode
623 * 1. Tx sync with Rx: only set RE for Rx; set TE & RE for Tx
624 * 2. Rx sync with Tx: only set TE for Tx; set RE & TE for Rx
626 * RM recommends to enable RE after TE for case 1 and to enable
627 * TE after RE for case 2, but we here may not always guarantee
628 * that happens: "arecord 1.wav; aplay 2.wav" in case 1 enables
629 * TE after RE, which is against what RM recommends but should
630 * be safe to do, judging by years of testing results.
632 if (fsl_sai_dir_is_synced(sai, adir))
633 regmap_update_bits(sai->regmap, FSL_SAI_xCSR((!tx), ofs),
634 FSL_SAI_CSR_TERE, FSL_SAI_CSR_TERE);
636 regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
637 FSL_SAI_CSR_xIE_MASK, FSL_SAI_FLAGS);
639 case SNDRV_PCM_TRIGGER_STOP:
640 case SNDRV_PCM_TRIGGER_SUSPEND:
641 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
642 regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
643 FSL_SAI_CSR_FRDE, 0);
644 regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
645 FSL_SAI_CSR_xIE_MASK, 0);
647 /* Check if the opposite FRDE is also disabled */
648 regmap_read(sai->regmap, FSL_SAI_xCSR(!tx, ofs), &xcsr);
651 * If opposite stream provides clocks for synchronous mode and
652 * it is inactive, disable it before disabling the current one
654 if (fsl_sai_dir_is_synced(sai, adir) && !(xcsr & FSL_SAI_CSR_FRDE))
655 fsl_sai_config_disable(sai, adir);
658 * Disable current stream if either of:
659 * 1. current stream doesn't provide clocks for synchronous mode
660 * 2. current stream provides clocks for synchronous mode but no
661 * more stream is active.
663 if (!fsl_sai_dir_is_synced(sai, dir) || !(xcsr & FSL_SAI_CSR_FRDE))
664 fsl_sai_config_disable(sai, dir);
674 static int fsl_sai_startup(struct snd_pcm_substream *substream,
675 struct snd_soc_dai *cpu_dai)
677 struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
678 bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
682 * EDMA controller needs period size to be a multiple of
685 if (sai->soc_data->use_edma)
686 snd_pcm_hw_constraint_step(substream->runtime, 0,
687 SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
688 tx ? sai->dma_params_tx.maxburst :
689 sai->dma_params_rx.maxburst);
691 ret = snd_pcm_hw_constraint_list(substream->runtime, 0,
692 SNDRV_PCM_HW_PARAM_RATE, &fsl_sai_rate_constraints);
697 static const struct snd_soc_dai_ops fsl_sai_pcm_dai_ops = {
698 .set_bclk_ratio = fsl_sai_set_dai_bclk_ratio,
699 .set_sysclk = fsl_sai_set_dai_sysclk,
700 .set_fmt = fsl_sai_set_dai_fmt,
701 .set_tdm_slot = fsl_sai_set_dai_tdm_slot,
702 .hw_params = fsl_sai_hw_params,
703 .hw_free = fsl_sai_hw_free,
704 .trigger = fsl_sai_trigger,
705 .startup = fsl_sai_startup,
708 static int fsl_sai_dai_probe(struct snd_soc_dai *cpu_dai)
710 struct fsl_sai *sai = dev_get_drvdata(cpu_dai->dev);
711 unsigned int ofs = sai->soc_data->reg_offset;
713 /* Software Reset for both Tx and Rx */
714 regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), FSL_SAI_CSR_SR);
715 regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), FSL_SAI_CSR_SR);
716 /* Clear SR bit to finish the reset */
717 regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), 0);
718 regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), 0);
720 regmap_update_bits(sai->regmap, FSL_SAI_TCR1(ofs),
721 FSL_SAI_CR1_RFW_MASK(sai->soc_data->fifo_depth),
722 sai->soc_data->fifo_depth - FSL_SAI_MAXBURST_TX);
723 regmap_update_bits(sai->regmap, FSL_SAI_RCR1(ofs),
724 FSL_SAI_CR1_RFW_MASK(sai->soc_data->fifo_depth),
725 FSL_SAI_MAXBURST_RX - 1);
727 snd_soc_dai_init_dma_data(cpu_dai, &sai->dma_params_tx,
728 &sai->dma_params_rx);
730 snd_soc_dai_set_drvdata(cpu_dai, sai);
735 static struct snd_soc_dai_driver fsl_sai_dai_template = {
736 .probe = fsl_sai_dai_probe,
738 .stream_name = "CPU-Playback",
743 .rates = SNDRV_PCM_RATE_KNOT,
744 .formats = FSL_SAI_FORMATS,
747 .stream_name = "CPU-Capture",
752 .rates = SNDRV_PCM_RATE_KNOT,
753 .formats = FSL_SAI_FORMATS,
755 .ops = &fsl_sai_pcm_dai_ops,
758 static const struct snd_soc_component_driver fsl_component = {
762 static struct reg_default fsl_sai_reg_defaults_ofs0[] = {
763 {FSL_SAI_TCR1(0), 0},
764 {FSL_SAI_TCR2(0), 0},
765 {FSL_SAI_TCR3(0), 0},
766 {FSL_SAI_TCR4(0), 0},
767 {FSL_SAI_TCR5(0), 0},
777 {FSL_SAI_RCR1(0), 0},
778 {FSL_SAI_RCR2(0), 0},
779 {FSL_SAI_RCR3(0), 0},
780 {FSL_SAI_RCR4(0), 0},
781 {FSL_SAI_RCR5(0), 0},
785 static struct reg_default fsl_sai_reg_defaults_ofs8[] = {
786 {FSL_SAI_TCR1(8), 0},
787 {FSL_SAI_TCR2(8), 0},
788 {FSL_SAI_TCR3(8), 0},
789 {FSL_SAI_TCR4(8), 0},
790 {FSL_SAI_TCR5(8), 0},
800 {FSL_SAI_RCR1(8), 0},
801 {FSL_SAI_RCR2(8), 0},
802 {FSL_SAI_RCR3(8), 0},
803 {FSL_SAI_RCR4(8), 0},
804 {FSL_SAI_RCR5(8), 0},
810 static bool fsl_sai_readable_reg(struct device *dev, unsigned int reg)
812 struct fsl_sai *sai = dev_get_drvdata(dev);
813 unsigned int ofs = sai->soc_data->reg_offset;
815 if (reg >= FSL_SAI_TCSR(ofs) && reg <= FSL_SAI_TCR5(ofs))
818 if (reg >= FSL_SAI_RCSR(ofs) && reg <= FSL_SAI_RCR5(ofs))
866 static bool fsl_sai_volatile_reg(struct device *dev, unsigned int reg)
868 struct fsl_sai *sai = dev_get_drvdata(dev);
869 unsigned int ofs = sai->soc_data->reg_offset;
871 if (reg == FSL_SAI_TCSR(ofs) || reg == FSL_SAI_RCSR(ofs))
874 /* Set VERID and PARAM be volatile for reading value in probe */
875 if (ofs == 8 && (reg == FSL_SAI_VERID || reg == FSL_SAI_PARAM))
909 static bool fsl_sai_writeable_reg(struct device *dev, unsigned int reg)
911 struct fsl_sai *sai = dev_get_drvdata(dev);
912 unsigned int ofs = sai->soc_data->reg_offset;
914 if (reg >= FSL_SAI_TCSR(ofs) && reg <= FSL_SAI_TCR5(ofs))
917 if (reg >= FSL_SAI_RCSR(ofs) && reg <= FSL_SAI_RCR5(ofs))
941 static struct regmap_config fsl_sai_regmap_config = {
947 .max_register = FSL_SAI_RMR,
948 .reg_defaults = fsl_sai_reg_defaults_ofs0,
949 .num_reg_defaults = ARRAY_SIZE(fsl_sai_reg_defaults_ofs0),
950 .readable_reg = fsl_sai_readable_reg,
951 .volatile_reg = fsl_sai_volatile_reg,
952 .writeable_reg = fsl_sai_writeable_reg,
953 .cache_type = REGCACHE_FLAT,
956 static int fsl_sai_check_version(struct device *dev)
958 struct fsl_sai *sai = dev_get_drvdata(dev);
959 unsigned char ofs = sai->soc_data->reg_offset;
963 if (FSL_SAI_TCSR(ofs) == FSL_SAI_VERID)
966 ret = regmap_read(sai->regmap, FSL_SAI_VERID, &val);
970 dev_dbg(dev, "VERID: 0x%016X\n", val);
972 sai->verid.major = (val & FSL_SAI_VERID_MAJOR_MASK) >>
973 FSL_SAI_VERID_MAJOR_SHIFT;
974 sai->verid.minor = (val & FSL_SAI_VERID_MINOR_MASK) >>
975 FSL_SAI_VERID_MINOR_SHIFT;
976 sai->verid.feature = val & FSL_SAI_VERID_FEATURE_MASK;
978 ret = regmap_read(sai->regmap, FSL_SAI_PARAM, &val);
982 dev_dbg(dev, "PARAM: 0x%016X\n", val);
984 /* Max slots per frame, power of 2 */
985 sai->param.slot_num = 1 <<
986 ((val & FSL_SAI_PARAM_SPF_MASK) >> FSL_SAI_PARAM_SPF_SHIFT);
988 /* Words per fifo, power of 2 */
989 sai->param.fifo_depth = 1 <<
990 ((val & FSL_SAI_PARAM_WPF_MASK) >> FSL_SAI_PARAM_WPF_SHIFT);
992 /* Number of datalines implemented */
993 sai->param.dataline = val & FSL_SAI_PARAM_DLN_MASK;
998 static int fsl_sai_probe(struct platform_device *pdev)
1000 struct device_node *np = pdev->dev.of_node;
1001 struct fsl_sai *sai;
1003 struct resource *res;
1009 sai = devm_kzalloc(&pdev->dev, sizeof(*sai), GFP_KERNEL);
1014 sai->soc_data = of_device_get_match_data(&pdev->dev);
1016 sai->is_lsb_first = of_property_read_bool(np, "lsb-first");
1018 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1019 base = devm_ioremap_resource(&pdev->dev, res);
1021 return PTR_ERR(base);
1023 if (sai->soc_data->reg_offset == 8) {
1024 fsl_sai_regmap_config.reg_defaults = fsl_sai_reg_defaults_ofs8;
1025 fsl_sai_regmap_config.max_register = FSL_SAI_MDIV;
1026 fsl_sai_regmap_config.num_reg_defaults =
1027 ARRAY_SIZE(fsl_sai_reg_defaults_ofs8);
1030 sai->regmap = devm_regmap_init_mmio_clk(&pdev->dev,
1031 "bus", base, &fsl_sai_regmap_config);
1033 /* Compatible with old DTB cases */
1034 if (IS_ERR(sai->regmap) && PTR_ERR(sai->regmap) != -EPROBE_DEFER)
1035 sai->regmap = devm_regmap_init_mmio_clk(&pdev->dev,
1036 "sai", base, &fsl_sai_regmap_config);
1037 if (IS_ERR(sai->regmap)) {
1038 dev_err(&pdev->dev, "regmap init failed\n");
1039 return PTR_ERR(sai->regmap);
1042 /* No error out for old DTB cases but only mark the clock NULL */
1043 sai->bus_clk = devm_clk_get(&pdev->dev, "bus");
1044 if (IS_ERR(sai->bus_clk)) {
1045 dev_err(&pdev->dev, "failed to get bus clock: %ld\n",
1046 PTR_ERR(sai->bus_clk));
1047 sai->bus_clk = NULL;
1050 for (i = 1; i < FSL_SAI_MCLK_MAX; i++) {
1051 sprintf(tmp, "mclk%d", i);
1052 sai->mclk_clk[i] = devm_clk_get(&pdev->dev, tmp);
1053 if (IS_ERR(sai->mclk_clk[i])) {
1054 dev_err(&pdev->dev, "failed to get mclk%d clock: %ld\n",
1055 i + 1, PTR_ERR(sai->mclk_clk[i]));
1056 sai->mclk_clk[i] = NULL;
1060 if (sai->soc_data->mclk0_is_mclk1)
1061 sai->mclk_clk[0] = sai->mclk_clk[1];
1063 sai->mclk_clk[0] = sai->bus_clk;
1065 irq = platform_get_irq(pdev, 0);
1069 ret = devm_request_irq(&pdev->dev, irq, fsl_sai_isr, IRQF_SHARED,
1072 dev_err(&pdev->dev, "failed to claim irq %u\n", irq);
1076 memcpy(&sai->cpu_dai_drv, &fsl_sai_dai_template,
1077 sizeof(fsl_sai_dai_template));
1079 /* Sync Tx with Rx as default by following old DT binding */
1080 sai->synchronous[RX] = true;
1081 sai->synchronous[TX] = false;
1082 sai->cpu_dai_drv.symmetric_rate = 1;
1083 sai->cpu_dai_drv.symmetric_channels = 1;
1084 sai->cpu_dai_drv.symmetric_sample_bits = 1;
1086 if (of_find_property(np, "fsl,sai-synchronous-rx", NULL) &&
1087 of_find_property(np, "fsl,sai-asynchronous", NULL)) {
1088 /* error out if both synchronous and asynchronous are present */
1089 dev_err(&pdev->dev, "invalid binding for synchronous mode\n");
1093 if (of_find_property(np, "fsl,sai-synchronous-rx", NULL)) {
1094 /* Sync Rx with Tx */
1095 sai->synchronous[RX] = false;
1096 sai->synchronous[TX] = true;
1097 } else if (of_find_property(np, "fsl,sai-asynchronous", NULL)) {
1098 /* Discard all settings for asynchronous mode */
1099 sai->synchronous[RX] = false;
1100 sai->synchronous[TX] = false;
1101 sai->cpu_dai_drv.symmetric_rate = 0;
1102 sai->cpu_dai_drv.symmetric_channels = 0;
1103 sai->cpu_dai_drv.symmetric_sample_bits = 0;
1106 if (of_find_property(np, "fsl,sai-mclk-direction-output", NULL) &&
1107 of_device_is_compatible(np, "fsl,imx6ul-sai")) {
1108 gpr = syscon_regmap_lookup_by_compatible("fsl,imx6ul-iomuxc-gpr");
1110 dev_err(&pdev->dev, "cannot find iomuxc registers\n");
1111 return PTR_ERR(gpr);
1114 index = of_alias_get_id(np, "sai");
1118 regmap_update_bits(gpr, IOMUXC_GPR1, MCLK_DIR(index),
1122 sai->dma_params_rx.addr = res->start + FSL_SAI_RDR0;
1123 sai->dma_params_tx.addr = res->start + FSL_SAI_TDR0;
1124 sai->dma_params_rx.maxburst = FSL_SAI_MAXBURST_RX;
1125 sai->dma_params_tx.maxburst = FSL_SAI_MAXBURST_TX;
1127 platform_set_drvdata(pdev, sai);
1129 /* Get sai version */
1130 ret = fsl_sai_check_version(&pdev->dev);
1132 dev_warn(&pdev->dev, "Error reading SAI version: %d\n", ret);
1134 /* Select MCLK direction */
1135 if (of_find_property(np, "fsl,sai-mclk-direction-output", NULL) &&
1136 sai->verid.major >= 3 && sai->verid.minor >= 1) {
1137 regmap_update_bits(sai->regmap, FSL_SAI_MCTL,
1138 FSL_SAI_MCTL_MCLK_EN, FSL_SAI_MCTL_MCLK_EN);
1141 pm_runtime_enable(&pdev->dev);
1142 regcache_cache_only(sai->regmap, true);
1144 ret = devm_snd_soc_register_component(&pdev->dev, &fsl_component,
1145 &sai->cpu_dai_drv, 1);
1147 goto err_pm_disable;
1149 if (sai->soc_data->use_imx_pcm) {
1150 ret = imx_pcm_dma_init(pdev, IMX_SAI_DMABUF_SIZE);
1152 goto err_pm_disable;
1154 ret = devm_snd_dmaengine_pcm_register(&pdev->dev, NULL, 0);
1156 goto err_pm_disable;
1162 pm_runtime_disable(&pdev->dev);
1167 static int fsl_sai_remove(struct platform_device *pdev)
1169 pm_runtime_disable(&pdev->dev);
1174 static const struct fsl_sai_soc_data fsl_sai_vf610_data = {
1175 .use_imx_pcm = false,
1179 .mclk0_is_mclk1 = false,
1182 static const struct fsl_sai_soc_data fsl_sai_imx6sx_data = {
1183 .use_imx_pcm = true,
1187 .mclk0_is_mclk1 = true,
1190 static const struct fsl_sai_soc_data fsl_sai_imx7ulp_data = {
1191 .use_imx_pcm = true,
1195 .mclk0_is_mclk1 = false,
1198 static const struct fsl_sai_soc_data fsl_sai_imx8mq_data = {
1199 .use_imx_pcm = true,
1203 .mclk0_is_mclk1 = false,
1206 static const struct fsl_sai_soc_data fsl_sai_imx8qm_data = {
1207 .use_imx_pcm = true,
1211 .mclk0_is_mclk1 = false,
1214 static const struct of_device_id fsl_sai_ids[] = {
1215 { .compatible = "fsl,vf610-sai", .data = &fsl_sai_vf610_data },
1216 { .compatible = "fsl,imx6sx-sai", .data = &fsl_sai_imx6sx_data },
1217 { .compatible = "fsl,imx6ul-sai", .data = &fsl_sai_imx6sx_data },
1218 { .compatible = "fsl,imx7ulp-sai", .data = &fsl_sai_imx7ulp_data },
1219 { .compatible = "fsl,imx8mq-sai", .data = &fsl_sai_imx8mq_data },
1220 { .compatible = "fsl,imx8qm-sai", .data = &fsl_sai_imx8qm_data },
1223 MODULE_DEVICE_TABLE(of, fsl_sai_ids);
1226 static int fsl_sai_runtime_suspend(struct device *dev)
1228 struct fsl_sai *sai = dev_get_drvdata(dev);
1230 if (sai->mclk_streams & BIT(SNDRV_PCM_STREAM_CAPTURE))
1231 clk_disable_unprepare(sai->mclk_clk[sai->mclk_id[0]]);
1233 if (sai->mclk_streams & BIT(SNDRV_PCM_STREAM_PLAYBACK))
1234 clk_disable_unprepare(sai->mclk_clk[sai->mclk_id[1]]);
1236 clk_disable_unprepare(sai->bus_clk);
1238 regcache_cache_only(sai->regmap, true);
1243 static int fsl_sai_runtime_resume(struct device *dev)
1245 struct fsl_sai *sai = dev_get_drvdata(dev);
1246 unsigned int ofs = sai->soc_data->reg_offset;
1249 ret = clk_prepare_enable(sai->bus_clk);
1251 dev_err(dev, "failed to enable bus clock: %d\n", ret);
1255 if (sai->mclk_streams & BIT(SNDRV_PCM_STREAM_PLAYBACK)) {
1256 ret = clk_prepare_enable(sai->mclk_clk[sai->mclk_id[1]]);
1258 goto disable_bus_clk;
1261 if (sai->mclk_streams & BIT(SNDRV_PCM_STREAM_CAPTURE)) {
1262 ret = clk_prepare_enable(sai->mclk_clk[sai->mclk_id[0]]);
1264 goto disable_tx_clk;
1267 regcache_cache_only(sai->regmap, false);
1268 regcache_mark_dirty(sai->regmap);
1269 regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), FSL_SAI_CSR_SR);
1270 regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), FSL_SAI_CSR_SR);
1271 usleep_range(1000, 2000);
1272 regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), 0);
1273 regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), 0);
1275 ret = regcache_sync(sai->regmap);
1277 goto disable_rx_clk;
1282 if (sai->mclk_streams & BIT(SNDRV_PCM_STREAM_CAPTURE))
1283 clk_disable_unprepare(sai->mclk_clk[sai->mclk_id[0]]);
1285 if (sai->mclk_streams & BIT(SNDRV_PCM_STREAM_PLAYBACK))
1286 clk_disable_unprepare(sai->mclk_clk[sai->mclk_id[1]]);
1288 clk_disable_unprepare(sai->bus_clk);
1292 #endif /* CONFIG_PM */
1294 static const struct dev_pm_ops fsl_sai_pm_ops = {
1295 SET_RUNTIME_PM_OPS(fsl_sai_runtime_suspend,
1296 fsl_sai_runtime_resume, NULL)
1297 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
1298 pm_runtime_force_resume)
1301 static struct platform_driver fsl_sai_driver = {
1302 .probe = fsl_sai_probe,
1303 .remove = fsl_sai_remove,
1306 .pm = &fsl_sai_pm_ops,
1307 .of_match_table = fsl_sai_ids,
1310 module_platform_driver(fsl_sai_driver);
1312 MODULE_DESCRIPTION("Freescale Soc SAI Interface");
1313 MODULE_AUTHOR("Xiubo Li, <Li.Xiubo@freescale.com>");
1314 MODULE_ALIAS("platform:fsl-sai");
1315 MODULE_LICENSE("GPL");