fsl_sai.c 30.4 KB
Newer Older
1 2 3 4 5
// SPDX-License-Identifier: GPL-2.0+
//
// Freescale ALSA SoC Digital Audio Interface (SAI) driver.
//
// Copyright 2012-2015 Freescale Semiconductor, Inc.
6 7 8 9 10 11

#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/dmaengine.h>
#include <linux/module.h>
#include <linux/of_address.h>
L
Lucas Stach 已提交
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 18 19
#include <sound/core.h>
#include <sound/dmaengine_pcm.h>
#include <sound/pcm_params.h>
20 21
#include <linux/mfd/syscon.h>
#include <linux/mfd/syscon/imx6q-iomuxc-gpr.h>
22 23

#include "fsl_sai.h"
24
#include "imx-pcm.h"
25

26 27 28
#define FSL_SAI_FLAGS (FSL_SAI_CSR_SEIE |\
		       FSL_SAI_CSR_FEIE)

29
static const unsigned int fsl_sai_rates[] = {
30 31 32 33 34
	8000, 11025, 12000, 16000, 22050,
	24000, 32000, 44100, 48000, 64000,
	88200, 96000, 176400, 192000
};

35
static const struct snd_pcm_hw_constraint_list fsl_sai_rate_constraints = {
36 37 38 39
	.count = ARRAY_SIZE(fsl_sai_rates),
	.list = fsl_sai_rates,
};

40 41 42
static irqreturn_t fsl_sai_isr(int irq, void *devid)
{
	struct fsl_sai *sai = (struct fsl_sai *)devid;
43
	unsigned int ofs = sai->soc_data->reg_offset;
44
	struct device *dev = &sai->pdev->dev;
45 46 47 48 49 50 51 52
	u32 flags, xcsr, mask;
	bool irq_none = true;

	/*
	 * Both IRQ status bits and IRQ mask bits are in the xCSR but
	 * different shifts. And we here create a mask only for those
	 * IRQs that we activated.
	 */
53 54 55
	mask = (FSL_SAI_FLAGS >> FSL_SAI_CSR_xIE_SHIFT) << FSL_SAI_CSR_xF_SHIFT;

	/* Tx IRQ */
56
	regmap_read(sai->regmap, FSL_SAI_TCSR(ofs), &xcsr);
57 58 59 60 61 62
	flags = xcsr & mask;

	if (flags)
		irq_none = false;
	else
		goto irq_rx;
63

64
	if (flags & FSL_SAI_CSR_WSF)
65 66
		dev_dbg(dev, "isr: Start of Tx word detected\n");

67
	if (flags & FSL_SAI_CSR_SEF)
68
		dev_dbg(dev, "isr: Tx Frame sync error detected\n");
69

70
	if (flags & FSL_SAI_CSR_FEF) {
71
		dev_dbg(dev, "isr: Transmit underrun detected\n");
72 73 74 75
		/* FIFO reset for safety */
		xcsr |= FSL_SAI_CSR_FR;
	}

76
	if (flags & FSL_SAI_CSR_FWF)
77 78
		dev_dbg(dev, "isr: Enabled transmit FIFO is empty\n");

79
	if (flags & FSL_SAI_CSR_FRF)
80 81
		dev_dbg(dev, "isr: Transmit FIFO watermark has been reached\n");

82 83 84 85
	flags &= FSL_SAI_CSR_xF_W_MASK;
	xcsr &= ~FSL_SAI_CSR_xF_MASK;

	if (flags)
86
		regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), flags | xcsr);
87

88
irq_rx:
89
	/* Rx IRQ */
90
	regmap_read(sai->regmap, FSL_SAI_RCSR(ofs), &xcsr);
91
	flags = xcsr & mask;
92

93 94 95 96 97 98
	if (flags)
		irq_none = false;
	else
		goto out;

	if (flags & FSL_SAI_CSR_WSF)
99 100
		dev_dbg(dev, "isr: Start of Rx word detected\n");

101
	if (flags & FSL_SAI_CSR_SEF)
102
		dev_dbg(dev, "isr: Rx Frame sync error detected\n");
103

104
	if (flags & FSL_SAI_CSR_FEF) {
105
		dev_dbg(dev, "isr: Receive overflow detected\n");
106 107 108 109
		/* FIFO reset for safety */
		xcsr |= FSL_SAI_CSR_FR;
	}

110
	if (flags & FSL_SAI_CSR_FWF)
111 112
		dev_dbg(dev, "isr: Enabled receive FIFO is full\n");

113
	if (flags & FSL_SAI_CSR_FRF)
114 115
		dev_dbg(dev, "isr: Receive FIFO watermark has been reached\n");

116 117
	flags &= FSL_SAI_CSR_xF_W_MASK;
	xcsr &= ~FSL_SAI_CSR_xF_MASK;
118

119
	if (flags)
120
		regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), flags | xcsr);
121 122 123 124 125 126

out:
	if (irq_none)
		return IRQ_NONE;
	else
		return IRQ_HANDLED;
127 128
}

129 130 131 132 133 134 135 136 137 138 139
static int fsl_sai_set_dai_tdm_slot(struct snd_soc_dai *cpu_dai, u32 tx_mask,
				u32 rx_mask, int slots, int slot_width)
{
	struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);

	sai->slots = slots;
	sai->slot_width = slot_width;

	return 0;
}

140 141 142 143 144 145 146 147 148 149
static int fsl_sai_set_dai_bclk_ratio(struct snd_soc_dai *dai,
				      unsigned int ratio)
{
	struct fsl_sai *sai = snd_soc_dai_get_drvdata(dai);

	sai->bclk_ratio = ratio;

	return 0;
}

150 151 152 153
static int fsl_sai_set_dai_sysclk_tr(struct snd_soc_dai *cpu_dai,
		int clk_id, unsigned int freq, int fsl_dir)
{
	struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
154
	unsigned int ofs = sai->soc_data->reg_offset;
155 156
	bool tx = fsl_dir == FSL_FMT_TRANSMITTER;
	u32 val_cr2 = 0;
X
Xiubo Li 已提交
157

158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
	switch (clk_id) {
	case FSL_SAI_CLK_BUS:
		val_cr2 |= FSL_SAI_CR2_MSEL_BUS;
		break;
	case FSL_SAI_CLK_MAST1:
		val_cr2 |= FSL_SAI_CR2_MSEL_MCLK1;
		break;
	case FSL_SAI_CLK_MAST2:
		val_cr2 |= FSL_SAI_CR2_MSEL_MCLK2;
		break;
	case FSL_SAI_CLK_MAST3:
		val_cr2 |= FSL_SAI_CR2_MSEL_MCLK3;
		break;
	default:
		return -EINVAL;
	}
X
Xiubo Li 已提交
174

175
	regmap_update_bits(sai->regmap, FSL_SAI_xCR2(tx, ofs),
176
			   FSL_SAI_CR2_MSEL_MASK, val_cr2);
177 178 179 180 181 182 183

	return 0;
}

static int fsl_sai_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
		int clk_id, unsigned int freq, int dir)
{
184
	int ret;
185 186 187 188 189 190 191

	if (dir == SND_SOC_CLOCK_IN)
		return 0;

	ret = fsl_sai_set_dai_sysclk_tr(cpu_dai, clk_id, freq,
					FSL_FMT_TRANSMITTER);
	if (ret) {
192
		dev_err(cpu_dai->dev, "Cannot set tx sysclk: %d\n", ret);
193
		return ret;
194 195 196 197
	}

	ret = fsl_sai_set_dai_sysclk_tr(cpu_dai, clk_id, freq,
					FSL_FMT_RECEIVER);
198
	if (ret)
199
		dev_err(cpu_dai->dev, "Cannot set rx sysclk: %d\n", ret);
200

201
	return ret;
202 203 204 205 206 207
}

static int fsl_sai_set_dai_fmt_tr(struct snd_soc_dai *cpu_dai,
				unsigned int fmt, int fsl_dir)
{
	struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
208
	unsigned int ofs = sai->soc_data->reg_offset;
209 210
	bool tx = fsl_dir == FSL_FMT_TRANSMITTER;
	u32 val_cr2 = 0, val_cr4 = 0;
211

212
	if (!sai->is_lsb_first)
213
		val_cr4 |= FSL_SAI_CR4_MF;
214

215
	/* DAI mode */
216 217
	switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
	case SND_SOC_DAIFMT_I2S:
218 219 220 221 222 223
		/*
		 * Frame low, 1clk before data, one word length for frame sync,
		 * frame sync starts one serial clock cycle earlier,
		 * that is, together with the last bit of the previous
		 * data word.
		 */
224
		val_cr2 |= FSL_SAI_CR2_BCP;
225 226 227
		val_cr4 |= FSL_SAI_CR4_FSE | FSL_SAI_CR4_FSP;
		break;
	case SND_SOC_DAIFMT_LEFT_J:
228 229 230 231
		/*
		 * Frame high, one word length for frame sync,
		 * frame sync asserts with the first bit of the frame.
		 */
232
		val_cr2 |= FSL_SAI_CR2_BCP;
233
		break;
234 235 236 237 238 239 240
	case SND_SOC_DAIFMT_DSP_A:
		/*
		 * Frame high, 1clk before data, one bit for frame sync,
		 * frame sync starts one serial clock cycle earlier,
		 * that is, together with the last bit of the previous
		 * data word.
		 */
241
		val_cr2 |= FSL_SAI_CR2_BCP;
242 243 244 245 246 247 248 249
		val_cr4 |= FSL_SAI_CR4_FSE;
		sai->is_dsp_mode = true;
		break;
	case SND_SOC_DAIFMT_DSP_B:
		/*
		 * Frame high, one bit for frame sync,
		 * frame sync asserts with the first bit of the frame.
		 */
250
		val_cr2 |= FSL_SAI_CR2_BCP;
251 252
		sai->is_dsp_mode = true;
		break;
253 254
	case SND_SOC_DAIFMT_RIGHT_J:
		/* To be done */
255 256 257 258
	default:
		return -EINVAL;
	}

259
	/* DAI clock inversion */
260 261
	switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
	case SND_SOC_DAIFMT_IB_IF:
262 263 264
		/* Invert both clocks */
		val_cr2 ^= FSL_SAI_CR2_BCP;
		val_cr4 ^= FSL_SAI_CR4_FSP;
265 266
		break;
	case SND_SOC_DAIFMT_IB_NF:
267 268
		/* Invert bit clock */
		val_cr2 ^= FSL_SAI_CR2_BCP;
269 270
		break;
	case SND_SOC_DAIFMT_NB_IF:
271 272
		/* Invert frame clock */
		val_cr4 ^= FSL_SAI_CR4_FSP;
273 274
		break;
	case SND_SOC_DAIFMT_NB_NF:
275
		/* Nothing to do for both normal cases */
276 277 278 279 280
		break;
	default:
		return -EINVAL;
	}

281
	/* DAI clock master masks */
282 283 284 285
	switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
	case SND_SOC_DAIFMT_CBS_CFS:
		val_cr2 |= FSL_SAI_CR2_BCD_MSTR;
		val_cr4 |= FSL_SAI_CR4_FSD_MSTR;
286
		sai->is_slave_mode = false;
287 288
		break;
	case SND_SOC_DAIFMT_CBM_CFM:
289
		sai->is_slave_mode = true;
290
		break;
291 292
	case SND_SOC_DAIFMT_CBS_CFM:
		val_cr2 |= FSL_SAI_CR2_BCD_MSTR;
293
		sai->is_slave_mode = false;
294 295 296
		break;
	case SND_SOC_DAIFMT_CBM_CFS:
		val_cr4 |= FSL_SAI_CR4_FSD_MSTR;
297
		sai->is_slave_mode = true;
298
		break;
299 300 301 302
	default:
		return -EINVAL;
	}

303
	regmap_update_bits(sai->regmap, FSL_SAI_xCR2(tx, ofs),
304
			   FSL_SAI_CR2_BCP | FSL_SAI_CR2_BCD_MSTR, val_cr2);
305
	regmap_update_bits(sai->regmap, FSL_SAI_xCR4(tx, ofs),
306 307
			   FSL_SAI_CR4_MF | FSL_SAI_CR4_FSE |
			   FSL_SAI_CR4_FSP | FSL_SAI_CR4_FSD_MSTR, val_cr4);
308 309 310 311 312 313

	return 0;
}

static int fsl_sai_set_dai_fmt(struct snd_soc_dai *cpu_dai, unsigned int fmt)
{
314
	int ret;
315 316 317

	ret = fsl_sai_set_dai_fmt_tr(cpu_dai, fmt, FSL_FMT_TRANSMITTER);
	if (ret) {
318
		dev_err(cpu_dai->dev, "Cannot set tx format: %d\n", ret);
319
		return ret;
320 321 322
	}

	ret = fsl_sai_set_dai_fmt_tr(cpu_dai, fmt, FSL_FMT_RECEIVER);
323
	if (ret)
324
		dev_err(cpu_dai->dev, "Cannot set rx format: %d\n", ret);
325

326
	return ret;
327 328
}

329 330 331
static int fsl_sai_set_bclk(struct snd_soc_dai *dai, bool tx, u32 freq)
{
	struct fsl_sai *sai = snd_soc_dai_get_drvdata(dai);
332
	unsigned int ofs = sai->soc_data->reg_offset;
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
	unsigned long clk_rate;
	u32 savediv = 0, ratio, savesub = freq;
	u32 id;
	int ret = 0;

	/* Don't apply to slave mode */
	if (sai->is_slave_mode)
		return 0;

	for (id = 0; id < FSL_SAI_MCLK_MAX; id++) {
		clk_rate = clk_get_rate(sai->mclk_clk[id]);
		if (!clk_rate)
			continue;

		ratio = clk_rate / freq;

		ret = clk_rate - ratio * freq;

		/*
		 * Drop the source that can not be
		 * divided into the required rate.
		 */
		if (ret != 0 && clk_rate / ret < 1000)
			continue;

		dev_dbg(dai->dev,
			"ratio %d for freq %dHz based on clock %ldHz\n",
			ratio, freq, clk_rate);

		if (ratio % 2 == 0 && ratio >= 2 && ratio <= 512)
			ratio /= 2;
		else
			continue;

		if (ret < savesub) {
			savediv = ratio;
			sai->mclk_id[tx] = id;
			savesub = ret;
		}

		if (ret == 0)
			break;
	}

	if (savediv == 0) {
		dev_err(dai->dev, "failed to derive required %cx rate: %d\n",
				tx ? 'T' : 'R', freq);
		return -EINVAL;
	}

383 384 385 386 387 388 389 390 391 392 393 394
	/*
	 * 1) For Asynchronous mode, we must set RCR2 register for capture, and
	 *    set TCR2 register for playback.
	 * 2) For Tx sync with Rx clock, we must set RCR2 register for playback
	 *    and capture.
	 * 3) For Rx sync with Tx clock, we must set TCR2 register for playback
	 *    and capture.
	 * 4) For Tx and Rx are both Synchronous with another SAI, we just
	 *    ignore it.
	 */
	if ((sai->synchronous[TX] && !sai->synchronous[RX]) ||
	    (!tx && !sai->synchronous[RX])) {
395
		regmap_update_bits(sai->regmap, FSL_SAI_RCR2(ofs),
396 397
				   FSL_SAI_CR2_MSEL_MASK,
				   FSL_SAI_CR2_MSEL(sai->mclk_id[tx]));
398
		regmap_update_bits(sai->regmap, FSL_SAI_RCR2(ofs),
399
				   FSL_SAI_CR2_DIV_MASK, savediv - 1);
400 401
	} else if ((sai->synchronous[RX] && !sai->synchronous[TX]) ||
		   (tx && !sai->synchronous[TX])) {
402
		regmap_update_bits(sai->regmap, FSL_SAI_TCR2(ofs),
403 404
				   FSL_SAI_CR2_MSEL_MASK,
				   FSL_SAI_CR2_MSEL(sai->mclk_id[tx]));
405
		regmap_update_bits(sai->regmap, FSL_SAI_TCR2(ofs),
406 407 408 409 410 411 412 413 414
				   FSL_SAI_CR2_DIV_MASK, savediv - 1);
	}

	dev_dbg(dai->dev, "best fit: clock id=%d, div=%d, deviation =%d\n",
			sai->mclk_id[tx], savediv, savesub);

	return 0;
}

415 416 417 418
static int fsl_sai_hw_params(struct snd_pcm_substream *substream,
		struct snd_pcm_hw_params *params,
		struct snd_soc_dai *cpu_dai)
{
419
	struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
420
	unsigned int ofs = sai->soc_data->reg_offset;
421
	bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
422
	unsigned int channels = params_channels(params);
423
	u32 word_width = params_width(params);
424
	u32 val_cr4 = 0, val_cr5 = 0;
425 426
	u32 slots = (channels == 1) ? 2 : channels;
	u32 slot_width = word_width;
427 428
	int ret;

429 430 431 432 433 434
	if (sai->slots)
		slots = sai->slots;

	if (sai->slot_width)
		slot_width = sai->slot_width;

435
	if (!sai->is_slave_mode) {
436 437 438 439 440 441 442 443
		if (sai->bclk_ratio)
			ret = fsl_sai_set_bclk(cpu_dai, tx,
					       sai->bclk_ratio *
					       params_rate(params));
		else
			ret = fsl_sai_set_bclk(cpu_dai, tx,
					       slots * slot_width *
					       params_rate(params));
444 445 446 447 448 449 450 451 452 453 454 455
		if (ret)
			return ret;

		/* Do not enable the clock if it is already enabled */
		if (!(sai->mclk_streams & BIT(substream->stream))) {
			ret = clk_prepare_enable(sai->mclk_clk[sai->mclk_id[tx]]);
			if (ret)
				return ret;

			sai->mclk_streams |= BIT(substream->stream);
		}
	}
456

457
	if (!sai->is_dsp_mode)
458
		val_cr4 |= FSL_SAI_CR4_SYWD(slot_width);
459

460 461
	val_cr5 |= FSL_SAI_CR5_WNW(slot_width);
	val_cr5 |= FSL_SAI_CR5_W0W(slot_width);
462

463
	if (sai->is_lsb_first)
464
		val_cr5 |= FSL_SAI_CR5_FBT(0);
465 466
	else
		val_cr5 |= FSL_SAI_CR5_FBT(word_width - 1);
467

468
	val_cr4 |= FSL_SAI_CR4_FRSZ(slots);
469

470 471 472 473 474 475 476 477 478
	/*
	 * For SAI master mode, when Tx(Rx) sync with Rx(Tx) clock, Rx(Tx) will
	 * generate bclk and frame clock for Tx(Rx), we should set RCR4(TCR4),
	 * RCR5(TCR5) and RMR(TMR) for playback(capture), or there will be sync
	 * error.
	 */

	if (!sai->is_slave_mode) {
		if (!sai->synchronous[TX] && sai->synchronous[RX] && !tx) {
479
			regmap_update_bits(sai->regmap, FSL_SAI_TCR4(ofs),
480 481
				FSL_SAI_CR4_SYWD_MASK | FSL_SAI_CR4_FRSZ_MASK,
				val_cr4);
482
			regmap_update_bits(sai->regmap, FSL_SAI_TCR5(ofs),
483 484 485 486 487
				FSL_SAI_CR5_WNW_MASK | FSL_SAI_CR5_W0W_MASK |
				FSL_SAI_CR5_FBT_MASK, val_cr5);
			regmap_write(sai->regmap, FSL_SAI_TMR,
				~0UL - ((1 << channels) - 1));
		} else if (!sai->synchronous[RX] && sai->synchronous[TX] && tx) {
488
			regmap_update_bits(sai->regmap, FSL_SAI_RCR4(ofs),
489 490
				FSL_SAI_CR4_SYWD_MASK | FSL_SAI_CR4_FRSZ_MASK,
				val_cr4);
491
			regmap_update_bits(sai->regmap, FSL_SAI_RCR5(ofs),
492 493 494 495 496 497
				FSL_SAI_CR5_WNW_MASK | FSL_SAI_CR5_W0W_MASK |
				FSL_SAI_CR5_FBT_MASK, val_cr5);
			regmap_write(sai->regmap, FSL_SAI_RMR,
				~0UL - ((1 << channels) - 1));
		}
	}
498

499
	regmap_update_bits(sai->regmap, FSL_SAI_xCR4(tx, ofs),
500 501
			   FSL_SAI_CR4_SYWD_MASK | FSL_SAI_CR4_FRSZ_MASK,
			   val_cr4);
502
	regmap_update_bits(sai->regmap, FSL_SAI_xCR5(tx, ofs),
503 504 505
			   FSL_SAI_CR5_WNW_MASK | FSL_SAI_CR5_W0W_MASK |
			   FSL_SAI_CR5_FBT_MASK, val_cr5);
	regmap_write(sai->regmap, FSL_SAI_xMR(tx), ~0UL - ((1 << channels) - 1));
506 507 508 509

	return 0;
}

510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
static int fsl_sai_hw_free(struct snd_pcm_substream *substream,
		struct snd_soc_dai *cpu_dai)
{
	struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
	bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;

	if (!sai->is_slave_mode &&
			sai->mclk_streams & BIT(substream->stream)) {
		clk_disable_unprepare(sai->mclk_clk[sai->mclk_id[tx]]);
		sai->mclk_streams &= ~BIT(substream->stream);
	}

	return 0;
}


526 527 528 529
static int fsl_sai_trigger(struct snd_pcm_substream *substream, int cmd,
		struct snd_soc_dai *cpu_dai)
{
	struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
530 531
	unsigned int ofs = sai->soc_data->reg_offset;

532
	bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
533
	u32 xcsr, count = 100;
534

535
	/*
536 537 538
	 * Asynchronous mode: Clear SYNC for both Tx and Rx.
	 * Rx sync with Tx clocks: Clear SYNC for Tx, set it for Rx.
	 * Tx sync with Rx clocks: Clear SYNC for Rx, set it for Tx.
539
	 */
540 541 542
	regmap_update_bits(sai->regmap, FSL_SAI_TCR2(ofs), FSL_SAI_CR2_SYNC,
			   sai->synchronous[TX] ? FSL_SAI_CR2_SYNC : 0);
	regmap_update_bits(sai->regmap, FSL_SAI_RCR2(ofs), FSL_SAI_CR2_SYNC,
543
			   sai->synchronous[RX] ? FSL_SAI_CR2_SYNC : 0);
544

545 546 547 548
	/*
	 * It is recommended that the transmitter is the last enabled
	 * and the first disabled.
	 */
549 550 551 552
	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
	case SNDRV_PCM_TRIGGER_RESUME:
	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
553
		regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
554 555
				   FSL_SAI_CSR_FRDE, FSL_SAI_CSR_FRDE);

556
		regmap_update_bits(sai->regmap, FSL_SAI_RCSR(ofs),
557
				   FSL_SAI_CSR_TERE, FSL_SAI_CSR_TERE);
558
		regmap_update_bits(sai->regmap, FSL_SAI_TCSR(ofs),
559
				   FSL_SAI_CSR_TERE, FSL_SAI_CSR_TERE);
560

561
		regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
562
				   FSL_SAI_CSR_xIE_MASK, FSL_SAI_FLAGS);
563 564 565 566
		break;
	case SNDRV_PCM_TRIGGER_STOP:
	case SNDRV_PCM_TRIGGER_SUSPEND:
	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
567
		regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
568
				   FSL_SAI_CSR_FRDE, 0);
569
		regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
570
				   FSL_SAI_CSR_xIE_MASK, 0);
571

572
		/* Check if the opposite FRDE is also disabled */
573
		regmap_read(sai->regmap, FSL_SAI_xCSR(!tx, ofs), &xcsr);
574
		if (!(xcsr & FSL_SAI_CSR_FRDE)) {
575
			/* Disable both directions and reset their FIFOs */
576
			regmap_update_bits(sai->regmap, FSL_SAI_TCSR(ofs),
577
					   FSL_SAI_CSR_TERE, 0);
578
			regmap_update_bits(sai->regmap, FSL_SAI_RCSR(ofs),
579 580 581 582 583
					   FSL_SAI_CSR_TERE, 0);

			/* TERE will remain set till the end of current frame */
			do {
				udelay(10);
584 585
				regmap_read(sai->regmap,
					    FSL_SAI_xCSR(tx, ofs), &xcsr);
586 587
			} while (--count && xcsr & FSL_SAI_CSR_TERE);

588
			regmap_update_bits(sai->regmap, FSL_SAI_TCSR(ofs),
589
					   FSL_SAI_CSR_FR, FSL_SAI_CSR_FR);
590
			regmap_update_bits(sai->regmap, FSL_SAI_RCSR(ofs),
591
					   FSL_SAI_CSR_FR, FSL_SAI_CSR_FR);
592 593 594 595 596 597 598 599 600 601

			/*
			 * For sai master mode, after several open/close sai,
			 * there will be no frame clock, and can't recover
			 * anymore. Add software reset to fix this issue.
			 * This is a hardware bug, and will be fix in the
			 * next sai version.
			 */
			if (!sai->is_slave_mode) {
				/* Software Reset for both Tx and Rx */
602 603 604 605
				regmap_write(sai->regmap, FSL_SAI_TCSR(ofs),
					     FSL_SAI_CSR_SR);
				regmap_write(sai->regmap, FSL_SAI_RCSR(ofs),
					     FSL_SAI_CSR_SR);
606
				/* Clear SR bit to finish the reset */
607 608
				regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), 0);
				regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), 0);
609
			}
610 611 612 613 614 615 616 617 618 619 620 621 622
		}
		break;
	default:
		return -EINVAL;
	}

	return 0;
}

static int fsl_sai_startup(struct snd_pcm_substream *substream,
		struct snd_soc_dai *cpu_dai)
{
	struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
623
	unsigned int ofs = sai->soc_data->reg_offset;
624
	bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
625 626
	int ret;

627
	regmap_update_bits(sai->regmap, FSL_SAI_xCR3(tx, ofs),
628
			   FSL_SAI_CR3_TRCE_MASK,
629 630
			   FSL_SAI_CR3_TRCE);

631 632 633 634 635 636 637 638 639 640
	/*
	 * EDMA controller needs period size to be a multiple of
	 * tx/rx maxburst
	 */
	if (sai->soc_data->use_edma)
		snd_pcm_hw_constraint_step(substream->runtime, 0,
					   SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
					   tx ? sai->dma_params_tx.maxburst :
					   sai->dma_params_rx.maxburst);

641 642 643 644
	ret = snd_pcm_hw_constraint_list(substream->runtime, 0,
			SNDRV_PCM_HW_PARAM_RATE, &fsl_sai_rate_constraints);

	return ret;
645 646 647 648 649 650
}

static void fsl_sai_shutdown(struct snd_pcm_substream *substream,
		struct snd_soc_dai *cpu_dai)
{
	struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
651
	unsigned int ofs = sai->soc_data->reg_offset;
652
	bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
653

654
	regmap_update_bits(sai->regmap, FSL_SAI_xCR3(tx, ofs),
655
			   FSL_SAI_CR3_TRCE_MASK, 0);
656 657 658
}

static const struct snd_soc_dai_ops fsl_sai_pcm_dai_ops = {
659
	.set_bclk_ratio	= fsl_sai_set_dai_bclk_ratio,
660 661
	.set_sysclk	= fsl_sai_set_dai_sysclk,
	.set_fmt	= fsl_sai_set_dai_fmt,
662
	.set_tdm_slot	= fsl_sai_set_dai_tdm_slot,
663
	.hw_params	= fsl_sai_hw_params,
664
	.hw_free	= fsl_sai_hw_free,
665 666 667 668 669 670 671 672
	.trigger	= fsl_sai_trigger,
	.startup	= fsl_sai_startup,
	.shutdown	= fsl_sai_shutdown,
};

static int fsl_sai_dai_probe(struct snd_soc_dai *cpu_dai)
{
	struct fsl_sai *sai = dev_get_drvdata(cpu_dai->dev);
673
	unsigned int ofs = sai->soc_data->reg_offset;
674

675
	/* Software Reset for both Tx and Rx */
676 677
	regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), FSL_SAI_CSR_SR);
	regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), FSL_SAI_CSR_SR);
678
	/* Clear SR bit to finish the reset */
679 680
	regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), 0);
	regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), 0);
681

682 683
	regmap_update_bits(sai->regmap, FSL_SAI_TCR1(ofs),
			   FSL_SAI_CR1_RFW_MASK,
684
			   sai->soc_data->fifo_depth - FSL_SAI_MAXBURST_TX);
685 686
	regmap_update_bits(sai->regmap, FSL_SAI_RCR1(ofs),
			   FSL_SAI_CR1_RFW_MASK, FSL_SAI_MAXBURST_RX - 1);
687

688 689
	snd_soc_dai_init_dma_data(cpu_dai, &sai->dma_params_tx,
				&sai->dma_params_rx);
690 691 692 693 694 695 696 697 698

	snd_soc_dai_set_drvdata(cpu_dai, sai);

	return 0;
}

static struct snd_soc_dai_driver fsl_sai_dai = {
	.probe = fsl_sai_dai_probe,
	.playback = {
699
		.stream_name = "CPU-Playback",
700
		.channels_min = 1,
701
		.channels_max = 32,
702 703 704
		.rate_min = 8000,
		.rate_max = 192000,
		.rates = SNDRV_PCM_RATE_KNOT,
705 706 707
		.formats = FSL_SAI_FORMATS,
	},
	.capture = {
708
		.stream_name = "CPU-Capture",
709
		.channels_min = 1,
710
		.channels_max = 32,
711 712 713
		.rate_min = 8000,
		.rate_max = 192000,
		.rates = SNDRV_PCM_RATE_KNOT,
714 715 716 717 718 719 720 721 722
		.formats = FSL_SAI_FORMATS,
	},
	.ops = &fsl_sai_pcm_dai_ops,
};

static const struct snd_soc_component_driver fsl_component = {
	.name           = "fsl-sai",
};

723 724 725 726 727 728
static struct reg_default fsl_sai_reg_defaults_ofs0[] = {
	{FSL_SAI_TCR1(0), 0},
	{FSL_SAI_TCR2(0), 0},
	{FSL_SAI_TCR3(0), 0},
	{FSL_SAI_TCR4(0), 0},
	{FSL_SAI_TCR5(0), 0},
729 730 731 732 733 734 735 736
	{FSL_SAI_TDR0, 0},
	{FSL_SAI_TDR1, 0},
	{FSL_SAI_TDR2, 0},
	{FSL_SAI_TDR3, 0},
	{FSL_SAI_TDR4, 0},
	{FSL_SAI_TDR5, 0},
	{FSL_SAI_TDR6, 0},
	{FSL_SAI_TDR7, 0},
737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766
	{FSL_SAI_TMR, 0},
	{FSL_SAI_RCR1(0), 0},
	{FSL_SAI_RCR2(0), 0},
	{FSL_SAI_RCR3(0), 0},
	{FSL_SAI_RCR4(0), 0},
	{FSL_SAI_RCR5(0), 0},
	{FSL_SAI_RMR, 0},
};

static struct reg_default fsl_sai_reg_defaults_ofs8[] = {
	{FSL_SAI_TCR1(8), 0},
	{FSL_SAI_TCR2(8), 0},
	{FSL_SAI_TCR3(8), 0},
	{FSL_SAI_TCR4(8), 0},
	{FSL_SAI_TCR5(8), 0},
	{FSL_SAI_TDR0, 0},
	{FSL_SAI_TDR1, 0},
	{FSL_SAI_TDR2, 0},
	{FSL_SAI_TDR3, 0},
	{FSL_SAI_TDR4, 0},
	{FSL_SAI_TDR5, 0},
	{FSL_SAI_TDR6, 0},
	{FSL_SAI_TDR7, 0},
	{FSL_SAI_TMR, 0},
	{FSL_SAI_RCR1(8), 0},
	{FSL_SAI_RCR2(8), 0},
	{FSL_SAI_RCR3(8), 0},
	{FSL_SAI_RCR4(8), 0},
	{FSL_SAI_RCR5(8), 0},
	{FSL_SAI_RMR, 0},
767 768
};

769 770
static bool fsl_sai_readable_reg(struct device *dev, unsigned int reg)
{
771 772 773 774 775 776 777 778 779
	struct fsl_sai *sai = dev_get_drvdata(dev);
	unsigned int ofs = sai->soc_data->reg_offset;

	if (reg >= FSL_SAI_TCSR(ofs) && reg <= FSL_SAI_TCR5(ofs))
		return true;

	if (reg >= FSL_SAI_RCSR(ofs) && reg <= FSL_SAI_RCR5(ofs))
		return true;

780
	switch (reg) {
781 782 783 784 785 786 787 788
	case FSL_SAI_TFR0:
	case FSL_SAI_TFR1:
	case FSL_SAI_TFR2:
	case FSL_SAI_TFR3:
	case FSL_SAI_TFR4:
	case FSL_SAI_TFR5:
	case FSL_SAI_TFR6:
	case FSL_SAI_TFR7:
789
	case FSL_SAI_TMR:
790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805
	case FSL_SAI_RDR0:
	case FSL_SAI_RDR1:
	case FSL_SAI_RDR2:
	case FSL_SAI_RDR3:
	case FSL_SAI_RDR4:
	case FSL_SAI_RDR5:
	case FSL_SAI_RDR6:
	case FSL_SAI_RDR7:
	case FSL_SAI_RFR0:
	case FSL_SAI_RFR1:
	case FSL_SAI_RFR2:
	case FSL_SAI_RFR3:
	case FSL_SAI_RFR4:
	case FSL_SAI_RFR5:
	case FSL_SAI_RFR6:
	case FSL_SAI_RFR7:
806 807 808 809 810 811 812 813 814
	case FSL_SAI_RMR:
		return true;
	default:
		return false;
	}
}

static bool fsl_sai_volatile_reg(struct device *dev, unsigned int reg)
{
815 816 817 818 819 820
	struct fsl_sai *sai = dev_get_drvdata(dev);
	unsigned int ofs = sai->soc_data->reg_offset;

	if (reg == FSL_SAI_TCSR(ofs) || reg == FSL_SAI_RCSR(ofs))
		return true;

821
	switch (reg) {
822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845
	case FSL_SAI_TFR0:
	case FSL_SAI_TFR1:
	case FSL_SAI_TFR2:
	case FSL_SAI_TFR3:
	case FSL_SAI_TFR4:
	case FSL_SAI_TFR5:
	case FSL_SAI_TFR6:
	case FSL_SAI_TFR7:
	case FSL_SAI_RFR0:
	case FSL_SAI_RFR1:
	case FSL_SAI_RFR2:
	case FSL_SAI_RFR3:
	case FSL_SAI_RFR4:
	case FSL_SAI_RFR5:
	case FSL_SAI_RFR6:
	case FSL_SAI_RFR7:
	case FSL_SAI_RDR0:
	case FSL_SAI_RDR1:
	case FSL_SAI_RDR2:
	case FSL_SAI_RDR3:
	case FSL_SAI_RDR4:
	case FSL_SAI_RDR5:
	case FSL_SAI_RDR6:
	case FSL_SAI_RDR7:
846 847 848 849 850 851 852 853
		return true;
	default:
		return false;
	}
}

static bool fsl_sai_writeable_reg(struct device *dev, unsigned int reg)
{
854 855 856 857 858 859 860 861 862
	struct fsl_sai *sai = dev_get_drvdata(dev);
	unsigned int ofs = sai->soc_data->reg_offset;

	if (reg >= FSL_SAI_TCSR(ofs) && reg <= FSL_SAI_TCR5(ofs))
		return true;

	if (reg >= FSL_SAI_RCSR(ofs) && reg <= FSL_SAI_RCR5(ofs))
		return true;

863
	switch (reg) {
864 865 866 867 868 869 870 871
	case FSL_SAI_TDR0:
	case FSL_SAI_TDR1:
	case FSL_SAI_TDR2:
	case FSL_SAI_TDR3:
	case FSL_SAI_TDR4:
	case FSL_SAI_TDR5:
	case FSL_SAI_TDR6:
	case FSL_SAI_TDR7:
872 873 874 875 876 877 878 879
	case FSL_SAI_TMR:
	case FSL_SAI_RMR:
		return true;
	default:
		return false;
	}
}

880
static struct regmap_config fsl_sai_regmap_config = {
881 882 883
	.reg_bits = 32,
	.reg_stride = 4,
	.val_bits = 32,
884
	.fast_io = true,
885 886

	.max_register = FSL_SAI_RMR,
887 888
	.reg_defaults = fsl_sai_reg_defaults_ofs0,
	.num_reg_defaults = ARRAY_SIZE(fsl_sai_reg_defaults_ofs0),
889 890 891
	.readable_reg = fsl_sai_readable_reg,
	.volatile_reg = fsl_sai_volatile_reg,
	.writeable_reg = fsl_sai_writeable_reg,
892
	.cache_type = REGCACHE_FLAT,
893 894
};

895 896
static int fsl_sai_probe(struct platform_device *pdev)
{
897
	struct device_node *np = pdev->dev.of_node;
898
	struct fsl_sai *sai;
899
	struct regmap *gpr;
900
	struct resource *res;
901
	void __iomem *base;
902 903
	char tmp[8];
	int irq, ret, i;
904
	int index;
905 906 907 908 909

	sai = devm_kzalloc(&pdev->dev, sizeof(*sai), GFP_KERNEL);
	if (!sai)
		return -ENOMEM;

910
	sai->pdev = pdev;
L
Lucas Stach 已提交
911
	sai->soc_data = of_device_get_match_data(&pdev->dev);
912

913
	sai->is_lsb_first = of_property_read_bool(np, "lsb-first");
914

915
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
916 917 918 919
	base = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(base))
		return PTR_ERR(base);

920 921 922 923 924 925
	if (sai->soc_data->reg_offset == 8) {
		fsl_sai_regmap_config.reg_defaults = fsl_sai_reg_defaults_ofs8;
		fsl_sai_regmap_config.num_reg_defaults =
			ARRAY_SIZE(fsl_sai_reg_defaults_ofs8);
	}

926
	sai->regmap = devm_regmap_init_mmio_clk(&pdev->dev,
927 928 929 930 931 932
			"bus", base, &fsl_sai_regmap_config);

	/* Compatible with old DTB cases */
	if (IS_ERR(sai->regmap))
		sai->regmap = devm_regmap_init_mmio_clk(&pdev->dev,
				"sai", base, &fsl_sai_regmap_config);
933 934 935
	if (IS_ERR(sai->regmap)) {
		dev_err(&pdev->dev, "regmap init failed\n");
		return PTR_ERR(sai->regmap);
936 937
	}

938 939 940 941 942 943 944 945
	/* No error out for old DTB cases but only mark the clock NULL */
	sai->bus_clk = devm_clk_get(&pdev->dev, "bus");
	if (IS_ERR(sai->bus_clk)) {
		dev_err(&pdev->dev, "failed to get bus clock: %ld\n",
				PTR_ERR(sai->bus_clk));
		sai->bus_clk = NULL;
	}

946 947 948
	sai->mclk_clk[0] = sai->bus_clk;
	for (i = 1; i < FSL_SAI_MCLK_MAX; i++) {
		sprintf(tmp, "mclk%d", i);
949 950 951 952 953 954 955 956
		sai->mclk_clk[i] = devm_clk_get(&pdev->dev, tmp);
		if (IS_ERR(sai->mclk_clk[i])) {
			dev_err(&pdev->dev, "failed to get mclk%d clock: %ld\n",
					i + 1, PTR_ERR(sai->mclk_clk[i]));
			sai->mclk_clk[i] = NULL;
		}
	}

957
	irq = platform_get_irq(pdev, 0);
958
	if (irq < 0)
959 960
		return irq;

M
Michael Walle 已提交
961 962
	ret = devm_request_irq(&pdev->dev, irq, fsl_sai_isr, IRQF_SHARED,
			       np->name, sai);
963 964 965 966 967
	if (ret) {
		dev_err(&pdev->dev, "failed to claim irq %u\n", irq);
		return ret;
	}

968 969 970 971 972 973 974
	/* Sync Tx with Rx as default by following old DT binding */
	sai->synchronous[RX] = true;
	sai->synchronous[TX] = false;
	fsl_sai_dai.symmetric_rates = 1;
	fsl_sai_dai.symmetric_channels = 1;
	fsl_sai_dai.symmetric_samplebits = 1;

975 976 977 978 979 980 981
	if (of_find_property(np, "fsl,sai-synchronous-rx", NULL) &&
	    of_find_property(np, "fsl,sai-asynchronous", NULL)) {
		/* error out if both synchronous and asynchronous are present */
		dev_err(&pdev->dev, "invalid binding for synchronous mode\n");
		return -EINVAL;
	}

982 983 984 985 986 987 988 989 990 991 992 993 994
	if (of_find_property(np, "fsl,sai-synchronous-rx", NULL)) {
		/* Sync Rx with Tx */
		sai->synchronous[RX] = false;
		sai->synchronous[TX] = true;
	} else if (of_find_property(np, "fsl,sai-asynchronous", NULL)) {
		/* Discard all settings for asynchronous mode */
		sai->synchronous[RX] = false;
		sai->synchronous[TX] = false;
		fsl_sai_dai.symmetric_rates = 0;
		fsl_sai_dai.symmetric_channels = 0;
		fsl_sai_dai.symmetric_samplebits = 0;
	}

995
	if (of_find_property(np, "fsl,sai-mclk-direction-output", NULL) &&
F
Fabio Estevam 已提交
996
	    of_device_is_compatible(np, "fsl,imx6ul-sai")) {
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
		gpr = syscon_regmap_lookup_by_compatible("fsl,imx6ul-iomuxc-gpr");
		if (IS_ERR(gpr)) {
			dev_err(&pdev->dev, "cannot find iomuxc registers\n");
			return PTR_ERR(gpr);
		}

		index = of_alias_get_id(np, "sai");
		if (index < 0)
			return index;

		regmap_update_bits(gpr, IOMUXC_GPR1, MCLK_DIR(index),
				   MCLK_DIR(index));
	}

1011 1012
	sai->dma_params_rx.addr = res->start + FSL_SAI_RDR0;
	sai->dma_params_tx.addr = res->start + FSL_SAI_TDR0;
1013 1014 1015 1016 1017
	sai->dma_params_rx.maxburst = FSL_SAI_MAXBURST_RX;
	sai->dma_params_tx.maxburst = FSL_SAI_MAXBURST_TX;

	platform_set_drvdata(pdev, sai);

1018 1019
	pm_runtime_enable(&pdev->dev);

1020 1021 1022
	ret = devm_snd_soc_register_component(&pdev->dev, &fsl_component,
			&fsl_sai_dai, 1);
	if (ret)
1023
		goto err_pm_disable;
1024

1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
	if (sai->soc_data->use_imx_pcm) {
		ret = imx_pcm_dma_init(pdev, IMX_SAI_DMABUF_SIZE);
		if (ret)
			goto err_pm_disable;
	} else {
		ret = devm_snd_dmaengine_pcm_register(&pdev->dev, NULL, 0);
		if (ret)
			goto err_pm_disable;
	}

	return ret;

err_pm_disable:
	pm_runtime_disable(&pdev->dev);

	return ret;
1041 1042
}

1043 1044 1045
static int fsl_sai_remove(struct platform_device *pdev)
{
	pm_runtime_disable(&pdev->dev);
1046 1047

	return 0;
1048 1049
}

L
Lucas Stach 已提交
1050 1051
static const struct fsl_sai_soc_data fsl_sai_vf610_data = {
	.use_imx_pcm = false,
1052
	.use_edma = false,
1053
	.fifo_depth = 32,
1054
	.reg_offset = 0,
L
Lucas Stach 已提交
1055 1056 1057 1058
};

static const struct fsl_sai_soc_data fsl_sai_imx6sx_data = {
	.use_imx_pcm = true,
1059
	.use_edma = false,
1060
	.fifo_depth = 32,
1061
	.reg_offset = 0,
L
Lucas Stach 已提交
1062 1063
};

1064 1065
static const struct fsl_sai_soc_data fsl_sai_imx7ulp_data = {
	.use_imx_pcm = true,
1066
	.use_edma = false,
1067 1068 1069 1070 1071 1072
	.fifo_depth = 16,
	.reg_offset = 8,
};

static const struct fsl_sai_soc_data fsl_sai_imx8mq_data = {
	.use_imx_pcm = true,
1073
	.use_edma = false,
1074 1075 1076 1077
	.fifo_depth = 128,
	.reg_offset = 8,
};

1078 1079
static const struct fsl_sai_soc_data fsl_sai_imx8qm_data = {
	.use_imx_pcm = true,
1080
	.use_edma = true,
1081 1082 1083 1084
	.fifo_depth = 64,
	.reg_offset = 0,
};

1085
static const struct of_device_id fsl_sai_ids[] = {
L
Lucas Stach 已提交
1086 1087 1088
	{ .compatible = "fsl,vf610-sai", .data = &fsl_sai_vf610_data },
	{ .compatible = "fsl,imx6sx-sai", .data = &fsl_sai_imx6sx_data },
	{ .compatible = "fsl,imx6ul-sai", .data = &fsl_sai_imx6sx_data },
1089 1090
	{ .compatible = "fsl,imx7ulp-sai", .data = &fsl_sai_imx7ulp_data },
	{ .compatible = "fsl,imx8mq-sai", .data = &fsl_sai_imx8mq_data },
1091
	{ .compatible = "fsl,imx8qm-sai", .data = &fsl_sai_imx8qm_data },
1092 1093
	{ /* sentinel */ }
};
1094
MODULE_DEVICE_TABLE(of, fsl_sai_ids);
1095

1096 1097
#ifdef CONFIG_PM
static int fsl_sai_runtime_suspend(struct device *dev)
1098 1099 1100
{
	struct fsl_sai *sai = dev_get_drvdata(dev);

1101 1102 1103 1104 1105 1106 1107 1108
	if (sai->mclk_streams & BIT(SNDRV_PCM_STREAM_CAPTURE))
		clk_disable_unprepare(sai->mclk_clk[sai->mclk_id[0]]);

	if (sai->mclk_streams & BIT(SNDRV_PCM_STREAM_PLAYBACK))
		clk_disable_unprepare(sai->mclk_clk[sai->mclk_id[1]]);

	clk_disable_unprepare(sai->bus_clk);

1109 1110 1111 1112 1113 1114
	regcache_cache_only(sai->regmap, true);
	regcache_mark_dirty(sai->regmap);

	return 0;
}

1115
static int fsl_sai_runtime_resume(struct device *dev)
1116 1117
{
	struct fsl_sai *sai = dev_get_drvdata(dev);
1118
	unsigned int ofs = sai->soc_data->reg_offset;
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
	int ret;

	ret = clk_prepare_enable(sai->bus_clk);
	if (ret) {
		dev_err(dev, "failed to enable bus clock: %d\n", ret);
		return ret;
	}

	if (sai->mclk_streams & BIT(SNDRV_PCM_STREAM_PLAYBACK)) {
		ret = clk_prepare_enable(sai->mclk_clk[sai->mclk_id[1]]);
		if (ret)
			goto disable_bus_clk;
	}

	if (sai->mclk_streams & BIT(SNDRV_PCM_STREAM_CAPTURE)) {
		ret = clk_prepare_enable(sai->mclk_clk[sai->mclk_id[0]]);
		if (ret)
			goto disable_tx_clk;
	}
1138 1139

	regcache_cache_only(sai->regmap, false);
1140 1141
	regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), FSL_SAI_CSR_SR);
	regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), FSL_SAI_CSR_SR);
1142
	usleep_range(1000, 2000);
1143 1144
	regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), 0);
	regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), 0);
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161

	ret = regcache_sync(sai->regmap);
	if (ret)
		goto disable_rx_clk;

	return 0;

disable_rx_clk:
	if (sai->mclk_streams & BIT(SNDRV_PCM_STREAM_CAPTURE))
		clk_disable_unprepare(sai->mclk_clk[sai->mclk_id[0]]);
disable_tx_clk:
	if (sai->mclk_streams & BIT(SNDRV_PCM_STREAM_PLAYBACK))
		clk_disable_unprepare(sai->mclk_clk[sai->mclk_id[1]]);
disable_bus_clk:
	clk_disable_unprepare(sai->bus_clk);

	return ret;
1162
}
1163
#endif /* CONFIG_PM */
1164 1165

static const struct dev_pm_ops fsl_sai_pm_ops = {
1166 1167 1168 1169
	SET_RUNTIME_PM_OPS(fsl_sai_runtime_suspend,
			   fsl_sai_runtime_resume, NULL)
	SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
				pm_runtime_force_resume)
1170 1171
};

1172 1173
static struct platform_driver fsl_sai_driver = {
	.probe = fsl_sai_probe,
1174
	.remove = fsl_sai_remove,
1175 1176
	.driver = {
		.name = "fsl-sai",
1177
		.pm = &fsl_sai_pm_ops,
1178 1179 1180 1181 1182 1183 1184 1185 1186
		.of_match_table = fsl_sai_ids,
	},
};
module_platform_driver(fsl_sai_driver);

MODULE_DESCRIPTION("Freescale Soc SAI Interface");
MODULE_AUTHOR("Xiubo Li, <Li.Xiubo@freescale.com>");
MODULE_ALIAS("platform:fsl-sai");
MODULE_LICENSE("GPL");