fsl_sai.c 34.7 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_qos.h>
14
#include <linux/pm_runtime.h>
15
#include <linux/regmap.h>
16
#include <linux/slab.h>
17
#include <linux/time.h>
18 19 20
#include <sound/core.h>
#include <sound/dmaengine_pcm.h>
#include <sound/pcm_params.h>
21 22
#include <linux/mfd/syscon.h>
#include <linux/mfd/syscon/imx6q-iomuxc-gpr.h>
23 24

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

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

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

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

41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
/**
 * fsl_sai_dir_is_synced - Check if stream is synced by the opposite stream
 *
 * SAI supports synchronous mode using bit/frame clocks of either Transmitter's
 * or Receiver's for both streams. This function is used to check if clocks of
 * the stream's are synced by the opposite stream.
 *
 * @sai: SAI context
 * @dir: stream direction
 */
static inline bool fsl_sai_dir_is_synced(struct fsl_sai *sai, int dir)
{
	int adir = (dir == TX) ? RX : TX;

	/* current dir in async mode while opposite dir in sync mode */
	return !sai->synchronous[dir] && sai->synchronous[adir];
}

59 60 61
static irqreturn_t fsl_sai_isr(int irq, void *devid)
{
	struct fsl_sai *sai = (struct fsl_sai *)devid;
62
	unsigned int ofs = sai->soc_data->reg_offset;
63
	struct device *dev = &sai->pdev->dev;
64
	u32 flags, xcsr, mask;
65
	irqreturn_t iret = IRQ_NONE;
66 67 68 69 70 71

	/*
	 * 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.
	 */
72 73 74
	mask = (FSL_SAI_FLAGS >> FSL_SAI_CSR_xIE_SHIFT) << FSL_SAI_CSR_xF_SHIFT;

	/* Tx IRQ */
75
	regmap_read(sai->regmap, FSL_SAI_TCSR(ofs), &xcsr);
76 77 78
	flags = xcsr & mask;

	if (flags)
79
		iret = IRQ_HANDLED;
80 81
	else
		goto irq_rx;
82

83
	if (flags & FSL_SAI_CSR_WSF)
84 85
		dev_dbg(dev, "isr: Start of Tx word detected\n");

86
	if (flags & FSL_SAI_CSR_SEF)
87
		dev_dbg(dev, "isr: Tx Frame sync error detected\n");
88

89
	if (flags & FSL_SAI_CSR_FEF) {
90
		dev_dbg(dev, "isr: Transmit underrun detected\n");
91 92 93 94
		/* FIFO reset for safety */
		xcsr |= FSL_SAI_CSR_FR;
	}

95
	if (flags & FSL_SAI_CSR_FWF)
96 97
		dev_dbg(dev, "isr: Enabled transmit FIFO is empty\n");

98
	if (flags & FSL_SAI_CSR_FRF)
99 100
		dev_dbg(dev, "isr: Transmit FIFO watermark has been reached\n");

101 102 103 104
	flags &= FSL_SAI_CSR_xF_W_MASK;
	xcsr &= ~FSL_SAI_CSR_xF_MASK;

	if (flags)
105
		regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), flags | xcsr);
106

107
irq_rx:
108
	/* Rx IRQ */
109
	regmap_read(sai->regmap, FSL_SAI_RCSR(ofs), &xcsr);
110
	flags = xcsr & mask;
111

112
	if (flags)
113
		iret = IRQ_HANDLED;
114 115 116 117
	else
		goto out;

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

120
	if (flags & FSL_SAI_CSR_SEF)
121
		dev_dbg(dev, "isr: Rx Frame sync error detected\n");
122

123
	if (flags & FSL_SAI_CSR_FEF) {
124
		dev_dbg(dev, "isr: Receive overflow detected\n");
125 126 127 128
		/* FIFO reset for safety */
		xcsr |= FSL_SAI_CSR_FR;
	}

129
	if (flags & FSL_SAI_CSR_FWF)
130 131
		dev_dbg(dev, "isr: Enabled receive FIFO is full\n");

132
	if (flags & FSL_SAI_CSR_FRF)
133 134
		dev_dbg(dev, "isr: Receive FIFO watermark has been reached\n");

135 136
	flags &= FSL_SAI_CSR_xF_W_MASK;
	xcsr &= ~FSL_SAI_CSR_xF_MASK;
137

138
	if (flags)
139
		regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), flags | xcsr);
140 141

out:
142
	return iret;
143 144
}

145 146 147 148 149 150 151 152 153 154 155
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;
}

156 157 158 159 160 161 162 163 164 165
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;
}

166
static int fsl_sai_set_dai_sysclk_tr(struct snd_soc_dai *cpu_dai,
167
		int clk_id, unsigned int freq, bool tx)
168 169
{
	struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
170
	unsigned int ofs = sai->soc_data->reg_offset;
171
	u32 val_cr2 = 0;
X
Xiubo Li 已提交
172

173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
	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 已提交
189

190
	regmap_update_bits(sai->regmap, FSL_SAI_xCR2(tx, ofs),
191
			   FSL_SAI_CR2_MSEL_MASK, val_cr2);
192 193 194 195 196 197 198

	return 0;
}

static int fsl_sai_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
		int clk_id, unsigned int freq, int dir)
{
199
	int ret;
200 201 202 203

	if (dir == SND_SOC_CLOCK_IN)
		return 0;

204
	ret = fsl_sai_set_dai_sysclk_tr(cpu_dai, clk_id, freq, true);
205
	if (ret) {
206
		dev_err(cpu_dai->dev, "Cannot set tx sysclk: %d\n", ret);
207
		return ret;
208 209
	}

210
	ret = fsl_sai_set_dai_sysclk_tr(cpu_dai, clk_id, freq, false);
211
	if (ret)
212
		dev_err(cpu_dai->dev, "Cannot set rx sysclk: %d\n", ret);
213

214
	return ret;
215 216 217
}

static int fsl_sai_set_dai_fmt_tr(struct snd_soc_dai *cpu_dai,
218
				unsigned int fmt, bool tx)
219 220
{
	struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
221
	unsigned int ofs = sai->soc_data->reg_offset;
222
	u32 val_cr2 = 0, val_cr4 = 0;
223

224
	if (!sai->is_lsb_first)
225
		val_cr4 |= FSL_SAI_CR4_MF;
226

227
	/* DAI mode */
228 229
	switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
	case SND_SOC_DAIFMT_I2S:
230 231 232 233 234 235
		/*
		 * 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.
		 */
236
		val_cr2 |= FSL_SAI_CR2_BCP;
237 238 239
		val_cr4 |= FSL_SAI_CR4_FSE | FSL_SAI_CR4_FSP;
		break;
	case SND_SOC_DAIFMT_LEFT_J:
240 241 242 243
		/*
		 * Frame high, one word length for frame sync,
		 * frame sync asserts with the first bit of the frame.
		 */
244
		val_cr2 |= FSL_SAI_CR2_BCP;
245
		break;
246 247 248 249 250 251 252
	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.
		 */
253
		val_cr2 |= FSL_SAI_CR2_BCP;
254 255 256 257 258 259 260 261
		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.
		 */
262
		val_cr2 |= FSL_SAI_CR2_BCP;
263 264
		sai->is_dsp_mode = true;
		break;
265 266
	case SND_SOC_DAIFMT_RIGHT_J:
		/* To be done */
267 268 269 270
	default:
		return -EINVAL;
	}

271
	/* DAI clock inversion */
272 273
	switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
	case SND_SOC_DAIFMT_IB_IF:
274 275 276
		/* Invert both clocks */
		val_cr2 ^= FSL_SAI_CR2_BCP;
		val_cr4 ^= FSL_SAI_CR4_FSP;
277 278
		break;
	case SND_SOC_DAIFMT_IB_NF:
279 280
		/* Invert bit clock */
		val_cr2 ^= FSL_SAI_CR2_BCP;
281 282
		break;
	case SND_SOC_DAIFMT_NB_IF:
283 284
		/* Invert frame clock */
		val_cr4 ^= FSL_SAI_CR4_FSP;
285 286
		break;
	case SND_SOC_DAIFMT_NB_NF:
287
		/* Nothing to do for both normal cases */
288 289 290 291 292
		break;
	default:
		return -EINVAL;
	}

293 294 295
	/* DAI clock provider masks */
	switch (fmt & SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) {
	case SND_SOC_DAIFMT_CBC_CFC:
296 297
		val_cr2 |= FSL_SAI_CR2_BCD_MSTR;
		val_cr4 |= FSL_SAI_CR4_FSD_MSTR;
298
		sai->is_consumer_mode = false;
299
		break;
300 301
	case SND_SOC_DAIFMT_CBP_CFP:
		sai->is_consumer_mode = true;
302
		break;
303
	case SND_SOC_DAIFMT_CBC_CFP:
304
		val_cr2 |= FSL_SAI_CR2_BCD_MSTR;
305
		sai->is_consumer_mode = false;
306
		break;
307
	case SND_SOC_DAIFMT_CBP_CFC:
308
		val_cr4 |= FSL_SAI_CR4_FSD_MSTR;
309
		sai->is_consumer_mode = true;
310
		break;
311 312 313 314
	default:
		return -EINVAL;
	}

315
	regmap_update_bits(sai->regmap, FSL_SAI_xCR2(tx, ofs),
316
			   FSL_SAI_CR2_BCP | FSL_SAI_CR2_BCD_MSTR, val_cr2);
317
	regmap_update_bits(sai->regmap, FSL_SAI_xCR4(tx, ofs),
318 319
			   FSL_SAI_CR4_MF | FSL_SAI_CR4_FSE |
			   FSL_SAI_CR4_FSP | FSL_SAI_CR4_FSD_MSTR, val_cr4);
320 321 322 323 324 325

	return 0;
}

static int fsl_sai_set_dai_fmt(struct snd_soc_dai *cpu_dai, unsigned int fmt)
{
326
	int ret;
327

328
	ret = fsl_sai_set_dai_fmt_tr(cpu_dai, fmt, true);
329
	if (ret) {
330
		dev_err(cpu_dai->dev, "Cannot set tx format: %d\n", ret);
331
		return ret;
332 333
	}

334
	ret = fsl_sai_set_dai_fmt_tr(cpu_dai, fmt, false);
335
	if (ret)
336
		dev_err(cpu_dai->dev, "Cannot set rx format: %d\n", ret);
337

338
	return ret;
339 340
}

341 342 343
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);
344
	unsigned int reg, ofs = sai->soc_data->reg_offset;
345 346
	unsigned long clk_rate;
	u32 savediv = 0, ratio, savesub = freq;
347 348
	int adir = tx ? RX : TX;
	int dir = tx ? TX : RX;
349 350 351
	u32 id;
	int ret = 0;

352 353
	/* Don't apply to consumer mode */
	if (sai->is_consumer_mode)
354 355
		return 0;

356 357 358 359 360 361 362 363
	/*
	 * There is no point in polling MCLK0 if it is identical to MCLK1.
	 * And given that MQS use case has to use MCLK1 though two clocks
	 * are the same, we simply skip MCLK0 and start to find from MCLK1.
	 */
	id = sai->soc_data->mclk0_is_mclk1 ? 1 : 0;

	for (; id < FSL_SAI_MCLK_MAX; id++) {
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
		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;
	}

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

407 408 409 410 411 412 413 414 415 416
	/*
	 * 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.
	 */
417 418 419 420 421 422
	if (fsl_sai_dir_is_synced(sai, adir))
		reg = FSL_SAI_xCR2(!tx, ofs);
	else if (!sai->synchronous[dir])
		reg = FSL_SAI_xCR2(tx, ofs);
	else
		return 0;
423

424 425 426
	regmap_update_bits(sai->regmap, reg, FSL_SAI_CR2_MSEL_MASK,
			   FSL_SAI_CR2_MSEL(sai->mclk_id[tx]));
	regmap_update_bits(sai->regmap, reg, FSL_SAI_CR2_DIV_MASK, savediv - 1);
427 428 429 430

	return 0;
}

431 432 433 434
static int fsl_sai_hw_params(struct snd_pcm_substream *substream,
		struct snd_pcm_hw_params *params,
		struct snd_soc_dai *cpu_dai)
{
435
	struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai);
436
	unsigned int ofs = sai->soc_data->reg_offset;
437
	bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
438
	unsigned int channels = params_channels(params);
439
	u32 word_width = params_width(params);
440
	u32 val_cr4 = 0, val_cr5 = 0;
441 442
	u32 slots = (channels == 1) ? 2 : channels;
	u32 slot_width = word_width;
443
	int adir = tx ? RX : TX;
444
	u32 pins;
445 446
	int ret;

447 448 449 450 451 452
	if (sai->slots)
		slots = sai->slots;

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

453 454
	pins = DIV_ROUND_UP(channels, slots);

455
	if (!sai->is_consumer_mode) {
456 457 458 459 460 461 462 463
		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));
464 465 466 467 468 469 470 471 472 473 474 475
		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);
		}
	}
476

477
	if (!sai->is_dsp_mode)
478
		val_cr4 |= FSL_SAI_CR4_SYWD(slot_width);
479

480 481
	val_cr5 |= FSL_SAI_CR5_WNW(slot_width);
	val_cr5 |= FSL_SAI_CR5_W0W(slot_width);
482

483
	if (sai->is_lsb_first)
484
		val_cr5 |= FSL_SAI_CR5_FBT(0);
485 486
	else
		val_cr5 |= FSL_SAI_CR5_FBT(word_width - 1);
487

488
	val_cr4 |= FSL_SAI_CR4_FRSZ(slots);
489

490 491 492 493
	/* Set to output mode to avoid tri-stated data pins */
	if (tx)
		val_cr4 |= FSL_SAI_CR4_CHMOD;

494
	/*
495
	 * For SAI provider mode, when Tx(Rx) sync with Rx(Tx) clock, Rx(Tx) will
496
	 * generate bclk and frame clock for Tx(Rx), we should set RCR4(TCR4),
497
	 * RCR5(TCR5) for playback(capture), or there will be sync error.
498 499
	 */

500
	if (!sai->is_consumer_mode && fsl_sai_dir_is_synced(sai, adir)) {
501
		regmap_update_bits(sai->regmap, FSL_SAI_xCR4(!tx, ofs),
502 503
				   FSL_SAI_CR4_SYWD_MASK | FSL_SAI_CR4_FRSZ_MASK |
				   FSL_SAI_CR4_CHMOD_MASK,
504 505 506 507
				   val_cr4);
		regmap_update_bits(sai->regmap, FSL_SAI_xCR5(!tx, ofs),
				   FSL_SAI_CR5_WNW_MASK | FSL_SAI_CR5_W0W_MASK |
				   FSL_SAI_CR5_FBT_MASK, val_cr5);
508
	}
509

510 511 512 513
	if (sai->soc_data->pins > 1)
		regmap_update_bits(sai->regmap, FSL_SAI_xCR4(tx, ofs),
				   FSL_SAI_CR4_FCOMB_MASK, FSL_SAI_CR4_FCOMB_SOFT);

514 515 516
	regmap_update_bits(sai->regmap, FSL_SAI_xCR3(tx, ofs),
			   FSL_SAI_CR3_TRCE_MASK,
			   FSL_SAI_CR3_TRCE((1 << pins) - 1));
517
	regmap_update_bits(sai->regmap, FSL_SAI_xCR4(tx, ofs),
518 519
			   FSL_SAI_CR4_SYWD_MASK | FSL_SAI_CR4_FRSZ_MASK |
			   FSL_SAI_CR4_CHMOD_MASK,
520
			   val_cr4);
521
	regmap_update_bits(sai->regmap, FSL_SAI_xCR5(tx, ofs),
522 523
			   FSL_SAI_CR5_WNW_MASK | FSL_SAI_CR5_W0W_MASK |
			   FSL_SAI_CR5_FBT_MASK, val_cr5);
524 525
	regmap_write(sai->regmap, FSL_SAI_xMR(tx),
		     ~0UL - ((1 << min(channels, slots)) - 1));
526 527 528 529

	return 0;
}

530 531 532 533 534
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;
535 536 537 538
	unsigned int ofs = sai->soc_data->reg_offset;

	regmap_update_bits(sai->regmap, FSL_SAI_xCR3(tx, ofs),
			   FSL_SAI_CR3_TRCE_MASK, 0);
539

540
	if (!sai->is_consumer_mode &&
541 542 543 544 545 546 547 548
			sai->mclk_streams & BIT(substream->stream)) {
		clk_disable_unprepare(sai->mclk_clk[sai->mclk_id[tx]]);
		sai->mclk_streams &= ~BIT(substream->stream);
	}

	return 0;
}

549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
static void fsl_sai_config_disable(struct fsl_sai *sai, int dir)
{
	unsigned int ofs = sai->soc_data->reg_offset;
	bool tx = dir == TX;
	u32 xcsr, count = 100;

	regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
			   FSL_SAI_CSR_TERE, 0);

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

	regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
			   FSL_SAI_CSR_FR, FSL_SAI_CSR_FR);

	/*
	 * 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.
	 */
574
	if (!sai->is_consumer_mode) {
575 576 577 578 579 580
		/* Software Reset */
		regmap_write(sai->regmap, FSL_SAI_xCSR(tx, ofs), FSL_SAI_CSR_SR);
		/* Clear SR bit to finish the reset */
		regmap_write(sai->regmap, FSL_SAI_xCSR(tx, ofs), 0);
	}
}
581

582 583 584 585
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);
586 587
	unsigned int ofs = sai->soc_data->reg_offset;

588
	bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
589 590 591
	int adir = tx ? RX : TX;
	int dir = tx ? TX : RX;
	u32 xcsr;
592

593
	/*
594 595 596
	 * 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.
597
	 */
598 599 600
	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,
601
			   sai->synchronous[RX] ? FSL_SAI_CR2_SYNC : 0);
602

603 604 605 606
	/*
	 * It is recommended that the transmitter is the last enabled
	 * and the first disabled.
	 */
607 608 609 610
	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
	case SNDRV_PCM_TRIGGER_RESUME:
	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
611
		regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
612 613
				   FSL_SAI_CSR_FRDE, FSL_SAI_CSR_FRDE);

614
		regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
615
				   FSL_SAI_CSR_TERE, FSL_SAI_CSR_TERE);
616 617 618 619 620 621 622 623 624 625 626 627 628 629
		/*
		 * Enable the opposite direction for synchronous mode
		 * 1. Tx sync with Rx: only set RE for Rx; set TE & RE for Tx
		 * 2. Rx sync with Tx: only set TE for Tx; set RE & TE for Rx
		 *
		 * RM recommends to enable RE after TE for case 1 and to enable
		 * TE after RE for case 2, but we here may not always guarantee
		 * that happens: "arecord 1.wav; aplay 2.wav" in case 1 enables
		 * TE after RE, which is against what RM recommends but should
		 * be safe to do, judging by years of testing results.
		 */
		if (fsl_sai_dir_is_synced(sai, adir))
			regmap_update_bits(sai->regmap, FSL_SAI_xCSR((!tx), ofs),
					   FSL_SAI_CSR_TERE, FSL_SAI_CSR_TERE);
630

631
		regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
632
				   FSL_SAI_CSR_xIE_MASK, FSL_SAI_FLAGS);
633 634 635 636
		break;
	case SNDRV_PCM_TRIGGER_STOP:
	case SNDRV_PCM_TRIGGER_SUSPEND:
	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
637
		regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
638
				   FSL_SAI_CSR_FRDE, 0);
639
		regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs),
640
				   FSL_SAI_CSR_xIE_MASK, 0);
641

642
		/* Check if the opposite FRDE is also disabled */
643
		regmap_read(sai->regmap, FSL_SAI_xCSR(!tx, ofs), &xcsr);
644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660

		/*
		 * If opposite stream provides clocks for synchronous mode and
		 * it is inactive, disable it before disabling the current one
		 */
		if (fsl_sai_dir_is_synced(sai, adir) && !(xcsr & FSL_SAI_CSR_FRDE))
			fsl_sai_config_disable(sai, adir);

		/*
		 * Disable current stream if either of:
		 * 1. current stream doesn't provide clocks for synchronous mode
		 * 2. current stream provides clocks for synchronous mode but no
		 *    more stream is active.
		 */
		if (!fsl_sai_dir_is_synced(sai, dir) || !(xcsr & FSL_SAI_CSR_FRDE))
			fsl_sai_config_disable(sai, dir);

661 662 663 664 665 666 667 668 669 670 671 672
		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);
673
	bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
674 675
	int ret;

676 677 678 679 680 681 682 683 684 685
	/*
	 * 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);

686 687 688 689
	ret = snd_pcm_hw_constraint_list(substream->runtime, 0,
			SNDRV_PCM_HW_PARAM_RATE, &fsl_sai_rate_constraints);

	return ret;
690 691 692
}

static const struct snd_soc_dai_ops fsl_sai_pcm_dai_ops = {
693
	.set_bclk_ratio	= fsl_sai_set_dai_bclk_ratio,
694 695
	.set_sysclk	= fsl_sai_set_dai_sysclk,
	.set_fmt	= fsl_sai_set_dai_fmt,
696
	.set_tdm_slot	= fsl_sai_set_dai_tdm_slot,
697
	.hw_params	= fsl_sai_hw_params,
698
	.hw_free	= fsl_sai_hw_free,
699 700 701 702 703 704 705
	.trigger	= fsl_sai_trigger,
	.startup	= fsl_sai_startup,
};

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

708
	/* Software Reset for both Tx and Rx */
709 710
	regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), FSL_SAI_CSR_SR);
	regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), FSL_SAI_CSR_SR);
711
	/* Clear SR bit to finish the reset */
712 713
	regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), 0);
	regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), 0);
714

715
	regmap_update_bits(sai->regmap, FSL_SAI_TCR1(ofs),
716
			   FSL_SAI_CR1_RFW_MASK(sai->soc_data->fifo_depth),
717
			   sai->soc_data->fifo_depth - FSL_SAI_MAXBURST_TX);
718
	regmap_update_bits(sai->regmap, FSL_SAI_RCR1(ofs),
719 720
			   FSL_SAI_CR1_RFW_MASK(sai->soc_data->fifo_depth),
			   FSL_SAI_MAXBURST_RX - 1);
721

722 723
	snd_soc_dai_init_dma_data(cpu_dai, &sai->dma_params_tx,
				&sai->dma_params_rx);
724 725 726 727

	return 0;
}

728
static struct snd_soc_dai_driver fsl_sai_dai_template = {
729 730
	.probe = fsl_sai_dai_probe,
	.playback = {
731
		.stream_name = "CPU-Playback",
732
		.channels_min = 1,
733
		.channels_max = 32,
734 735 736
		.rate_min = 8000,
		.rate_max = 192000,
		.rates = SNDRV_PCM_RATE_KNOT,
737 738 739
		.formats = FSL_SAI_FORMATS,
	},
	.capture = {
740
		.stream_name = "CPU-Capture",
741
		.channels_min = 1,
742
		.channels_max = 32,
743 744 745
		.rate_min = 8000,
		.rate_max = 192000,
		.rates = SNDRV_PCM_RATE_KNOT,
746 747 748 749 750 751 752 753 754
		.formats = FSL_SAI_FORMATS,
	},
	.ops = &fsl_sai_pcm_dai_ops,
};

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

755 756 757 758 759 760
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},
761 762 763 764 765 766 767 768
	{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},
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798
	{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},
799 800
	{FSL_SAI_MCTL, 0},
	{FSL_SAI_MDIV, 0},
801 802
};

803 804
static bool fsl_sai_readable_reg(struct device *dev, unsigned int reg)
{
805 806 807 808 809 810 811 812 813
	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;

814
	switch (reg) {
815 816 817 818 819 820 821 822
	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:
823
	case FSL_SAI_TMR:
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
	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:
840
	case FSL_SAI_RMR:
841 842 843 844 845 846 847 848 849 850 851 852
	case FSL_SAI_MCTL:
	case FSL_SAI_MDIV:
	case FSL_SAI_VERID:
	case FSL_SAI_PARAM:
	case FSL_SAI_TTCTN:
	case FSL_SAI_RTCTN:
	case FSL_SAI_TTCTL:
	case FSL_SAI_TBCTN:
	case FSL_SAI_TTCAP:
	case FSL_SAI_RTCTL:
	case FSL_SAI_RBCTN:
	case FSL_SAI_RTCAP:
853 854 855 856 857 858 859 860
		return true;
	default:
		return false;
	}
}

static bool fsl_sai_volatile_reg(struct device *dev, unsigned int reg)
{
861 862 863 864 865 866
	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;

867 868 869 870
	/* Set VERID and PARAM be volatile for reading value in probe */
	if (ofs == 8 && (reg == FSL_SAI_VERID || reg == FSL_SAI_PARAM))
		return true;

871
	switch (reg) {
872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895
	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:
896 897 898 899 900 901 902 903
		return true;
	default:
		return false;
	}
}

static bool fsl_sai_writeable_reg(struct device *dev, unsigned int reg)
{
904 905 906 907 908 909 910 911 912
	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;

913
	switch (reg) {
914 915 916 917 918 919 920 921
	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:
922 923
	case FSL_SAI_TMR:
	case FSL_SAI_RMR:
924 925 926 927
	case FSL_SAI_MCTL:
	case FSL_SAI_MDIV:
	case FSL_SAI_TTCTL:
	case FSL_SAI_RTCTL:
928 929 930 931 932 933
		return true;
	default:
		return false;
	}
}

934
static struct regmap_config fsl_sai_regmap_config = {
935 936 937
	.reg_bits = 32,
	.reg_stride = 4,
	.val_bits = 32,
938
	.fast_io = true,
939 940

	.max_register = FSL_SAI_RMR,
941 942
	.reg_defaults = fsl_sai_reg_defaults_ofs0,
	.num_reg_defaults = ARRAY_SIZE(fsl_sai_reg_defaults_ofs0),
943 944 945
	.readable_reg = fsl_sai_readable_reg,
	.volatile_reg = fsl_sai_volatile_reg,
	.writeable_reg = fsl_sai_writeable_reg,
946
	.cache_type = REGCACHE_FLAT,
947 948
};

949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990
static int fsl_sai_check_version(struct device *dev)
{
	struct fsl_sai *sai = dev_get_drvdata(dev);
	unsigned char ofs = sai->soc_data->reg_offset;
	unsigned int val;
	int ret;

	if (FSL_SAI_TCSR(ofs) == FSL_SAI_VERID)
		return 0;

	ret = regmap_read(sai->regmap, FSL_SAI_VERID, &val);
	if (ret < 0)
		return ret;

	dev_dbg(dev, "VERID: 0x%016X\n", val);

	sai->verid.major = (val & FSL_SAI_VERID_MAJOR_MASK) >>
			   FSL_SAI_VERID_MAJOR_SHIFT;
	sai->verid.minor = (val & FSL_SAI_VERID_MINOR_MASK) >>
			   FSL_SAI_VERID_MINOR_SHIFT;
	sai->verid.feature = val & FSL_SAI_VERID_FEATURE_MASK;

	ret = regmap_read(sai->regmap, FSL_SAI_PARAM, &val);
	if (ret < 0)
		return ret;

	dev_dbg(dev, "PARAM: 0x%016X\n", val);

	/* Max slots per frame, power of 2 */
	sai->param.slot_num = 1 <<
		((val & FSL_SAI_PARAM_SPF_MASK) >> FSL_SAI_PARAM_SPF_SHIFT);

	/* Words per fifo, power of 2 */
	sai->param.fifo_depth = 1 <<
		((val & FSL_SAI_PARAM_WPF_MASK) >> FSL_SAI_PARAM_WPF_SHIFT);

	/* Number of datalines implemented */
	sai->param.dataline = val & FSL_SAI_PARAM_DLN_MASK;

	return 0;
}

991 992 993
static int fsl_sai_runtime_suspend(struct device *dev);
static int fsl_sai_runtime_resume(struct device *dev);

994 995
static int fsl_sai_probe(struct platform_device *pdev)
{
996
	struct device_node *np = pdev->dev.of_node;
997
	struct fsl_sai *sai;
998
	struct regmap *gpr;
999
	struct resource *res;
1000
	void __iomem *base;
1001 1002
	char tmp[8];
	int irq, ret, i;
1003
	int index;
1004 1005 1006 1007 1008

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

1009
	sai->pdev = pdev;
L
Lucas Stach 已提交
1010
	sai->soc_data = of_device_get_match_data(&pdev->dev);
1011

1012
	sai->is_lsb_first = of_property_read_bool(np, "lsb-first");
1013

1014
	base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
1015 1016 1017
	if (IS_ERR(base))
		return PTR_ERR(base);

1018 1019
	if (sai->soc_data->reg_offset == 8) {
		fsl_sai_regmap_config.reg_defaults = fsl_sai_reg_defaults_ofs8;
1020
		fsl_sai_regmap_config.max_register = FSL_SAI_MDIV;
1021 1022 1023 1024
		fsl_sai_regmap_config.num_reg_defaults =
			ARRAY_SIZE(fsl_sai_reg_defaults_ofs8);
	}

1025
	sai->regmap = devm_regmap_init_mmio(&pdev->dev, base, &fsl_sai_regmap_config);
1026 1027 1028
	if (IS_ERR(sai->regmap)) {
		dev_err(&pdev->dev, "regmap init failed\n");
		return PTR_ERR(sai->regmap);
1029 1030
	}

1031
	sai->bus_clk = devm_clk_get(&pdev->dev, "bus");
1032 1033 1034
	/* Compatible with old DTB cases */
	if (IS_ERR(sai->bus_clk) && PTR_ERR(sai->bus_clk) != -EPROBE_DEFER)
		sai->bus_clk = devm_clk_get(&pdev->dev, "sai");
1035 1036 1037
	if (IS_ERR(sai->bus_clk)) {
		dev_err(&pdev->dev, "failed to get bus clock: %ld\n",
				PTR_ERR(sai->bus_clk));
1038 1039
		/* -EPROBE_DEFER */
		return PTR_ERR(sai->bus_clk);
1040 1041
	}

1042 1043
	for (i = 1; i < FSL_SAI_MCLK_MAX; i++) {
		sprintf(tmp, "mclk%d", i);
1044 1045 1046 1047 1048 1049 1050 1051
		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;
		}
	}

1052 1053 1054 1055 1056
	if (sai->soc_data->mclk0_is_mclk1)
		sai->mclk_clk[0] = sai->mclk_clk[1];
	else
		sai->mclk_clk[0] = sai->bus_clk;

1057
	irq = platform_get_irq(pdev, 0);
1058
	if (irq < 0)
1059 1060
		return irq;

M
Michael Walle 已提交
1061 1062
	ret = devm_request_irq(&pdev->dev, irq, fsl_sai_isr, IRQF_SHARED,
			       np->name, sai);
1063 1064 1065 1066 1067
	if (ret) {
		dev_err(&pdev->dev, "failed to claim irq %u\n", irq);
		return ret;
	}

1068 1069 1070
	memcpy(&sai->cpu_dai_drv, &fsl_sai_dai_template,
	       sizeof(fsl_sai_dai_template));

1071 1072 1073
	/* Sync Tx with Rx as default by following old DT binding */
	sai->synchronous[RX] = true;
	sai->synchronous[TX] = false;
1074
	sai->cpu_dai_drv.symmetric_rate = 1;
1075
	sai->cpu_dai_drv.symmetric_channels = 1;
1076
	sai->cpu_dai_drv.symmetric_sample_bits = 1;
1077

1078 1079 1080 1081 1082 1083 1084
	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;
	}

1085 1086 1087 1088 1089 1090 1091 1092
	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;
1093
		sai->cpu_dai_drv.symmetric_rate = 0;
1094
		sai->cpu_dai_drv.symmetric_channels = 0;
1095
		sai->cpu_dai_drv.symmetric_sample_bits = 0;
1096 1097
	}

1098
	if (of_find_property(np, "fsl,sai-mclk-direction-output", NULL) &&
F
Fabio Estevam 已提交
1099
	    of_device_is_compatible(np, "fsl,imx6ul-sai")) {
1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
		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));
	}

1114 1115
	sai->dma_params_rx.addr = res->start + FSL_SAI_RDR0;
	sai->dma_params_tx.addr = res->start + FSL_SAI_TDR0;
1116 1117 1118 1119
	sai->dma_params_rx.maxburst = FSL_SAI_MAXBURST_RX;
	sai->dma_params_tx.maxburst = FSL_SAI_MAXBURST_TX;

	platform_set_drvdata(pdev, sai);
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
	pm_runtime_enable(&pdev->dev);
	if (!pm_runtime_enabled(&pdev->dev)) {
		ret = fsl_sai_runtime_resume(&pdev->dev);
		if (ret)
			goto err_pm_disable;
	}

	ret = pm_runtime_get_sync(&pdev->dev);
	if (ret < 0) {
		pm_runtime_put_noidle(&pdev->dev);
		goto err_pm_get_sync;
	}
1132

1133 1134 1135 1136 1137
	/* Get sai version */
	ret = fsl_sai_check_version(&pdev->dev);
	if (ret < 0)
		dev_warn(&pdev->dev, "Error reading SAI version: %d\n", ret);

1138 1139 1140 1141 1142 1143 1144
	/* Select MCLK direction */
	if (of_find_property(np, "fsl,sai-mclk-direction-output", NULL) &&
	    sai->verid.major >= 3 && sai->verid.minor >= 1) {
		regmap_update_bits(sai->regmap, FSL_SAI_MCTL,
				   FSL_SAI_MCTL_MCLK_EN, FSL_SAI_MCTL_MCLK_EN);
	}

1145 1146 1147
	ret = pm_runtime_put_sync(&pdev->dev);
	if (ret < 0)
		goto err_pm_get_sync;
1148

1149 1150 1151 1152
	/*
	 * Register platform component before registering cpu dai for there
	 * is not defer probe for platform component in snd_soc_add_pcm_runtime().
	 */
1153
	if (sai->soc_data->use_imx_pcm) {
1154
		ret = imx_pcm_dma_init(pdev);
1155
		if (ret)
1156
			goto err_pm_get_sync;
1157 1158 1159
	} else {
		ret = devm_snd_dmaengine_pcm_register(&pdev->dev, NULL, 0);
		if (ret)
1160
			goto err_pm_get_sync;
1161 1162
	}

1163 1164 1165 1166 1167
	ret = devm_snd_soc_register_component(&pdev->dev, &fsl_component,
					      &sai->cpu_dai_drv, 1);
	if (ret)
		goto err_pm_get_sync;

1168 1169
	return ret;

1170 1171 1172
err_pm_get_sync:
	if (!pm_runtime_status_suspended(&pdev->dev))
		fsl_sai_runtime_suspend(&pdev->dev);
1173 1174 1175 1176
err_pm_disable:
	pm_runtime_disable(&pdev->dev);

	return ret;
1177 1178
}

1179 1180 1181
static int fsl_sai_remove(struct platform_device *pdev)
{
	pm_runtime_disable(&pdev->dev);
1182 1183
	if (!pm_runtime_status_suspended(&pdev->dev))
		fsl_sai_runtime_suspend(&pdev->dev);
1184 1185

	return 0;
1186 1187
}

L
Lucas Stach 已提交
1188 1189
static const struct fsl_sai_soc_data fsl_sai_vf610_data = {
	.use_imx_pcm = false,
1190
	.use_edma = false,
1191
	.fifo_depth = 32,
1192
	.pins = 1,
1193
	.reg_offset = 0,
1194
	.mclk0_is_mclk1 = false,
1195
	.flags = 0,
L
Lucas Stach 已提交
1196 1197 1198 1199
};

static const struct fsl_sai_soc_data fsl_sai_imx6sx_data = {
	.use_imx_pcm = true,
1200
	.use_edma = false,
1201
	.fifo_depth = 32,
1202
	.pins = 1,
1203
	.reg_offset = 0,
1204
	.mclk0_is_mclk1 = true,
1205
	.flags = 0,
L
Lucas Stach 已提交
1206 1207
};

1208 1209
static const struct fsl_sai_soc_data fsl_sai_imx7ulp_data = {
	.use_imx_pcm = true,
1210
	.use_edma = false,
1211
	.fifo_depth = 16,
1212
	.pins = 2,
1213
	.reg_offset = 8,
1214
	.mclk0_is_mclk1 = false,
1215
	.flags = PMQOS_CPU_LATENCY,
1216 1217 1218 1219
};

static const struct fsl_sai_soc_data fsl_sai_imx8mq_data = {
	.use_imx_pcm = true,
1220
	.use_edma = false,
1221
	.fifo_depth = 128,
1222
	.pins = 8,
1223
	.reg_offset = 8,
1224
	.mclk0_is_mclk1 = false,
1225
	.flags = 0,
1226 1227
};

1228 1229
static const struct fsl_sai_soc_data fsl_sai_imx8qm_data = {
	.use_imx_pcm = true,
1230
	.use_edma = true,
1231
	.fifo_depth = 64,
1232
	.pins = 1,
1233
	.reg_offset = 0,
1234
	.mclk0_is_mclk1 = false,
1235
	.flags = 0,
1236 1237
};

1238
static const struct of_device_id fsl_sai_ids[] = {
L
Lucas Stach 已提交
1239 1240 1241
	{ .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 },
1242 1243
	{ .compatible = "fsl,imx7ulp-sai", .data = &fsl_sai_imx7ulp_data },
	{ .compatible = "fsl,imx8mq-sai", .data = &fsl_sai_imx8mq_data },
1244
	{ .compatible = "fsl,imx8qm-sai", .data = &fsl_sai_imx8qm_data },
1245 1246
	{ /* sentinel */ }
};
1247
MODULE_DEVICE_TABLE(of, fsl_sai_ids);
1248

1249
static int fsl_sai_runtime_suspend(struct device *dev)
1250 1251 1252
{
	struct fsl_sai *sai = dev_get_drvdata(dev);

1253 1254 1255 1256 1257 1258 1259 1260
	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);

1261 1262 1263
	if (sai->soc_data->flags & PMQOS_CPU_LATENCY)
		cpu_latency_qos_remove_request(&sai->pm_qos_req);

1264 1265 1266 1267 1268
	regcache_cache_only(sai->regmap, true);

	return 0;
}

1269
static int fsl_sai_runtime_resume(struct device *dev)
1270 1271
{
	struct fsl_sai *sai = dev_get_drvdata(dev);
1272
	unsigned int ofs = sai->soc_data->reg_offset;
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
	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;
	}
1292

1293 1294 1295
	if (sai->soc_data->flags & PMQOS_CPU_LATENCY)
		cpu_latency_qos_add_request(&sai->pm_qos_req, 0);

1296
	regcache_cache_only(sai->regmap, false);
1297
	regcache_mark_dirty(sai->regmap);
1298 1299
	regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), FSL_SAI_CSR_SR);
	regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), FSL_SAI_CSR_SR);
1300
	usleep_range(1000, 2000);
1301 1302
	regmap_write(sai->regmap, FSL_SAI_TCSR(ofs), 0);
	regmap_write(sai->regmap, FSL_SAI_RCSR(ofs), 0);
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319

	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;
1320 1321 1322
}

static const struct dev_pm_ops fsl_sai_pm_ops = {
1323 1324 1325 1326
	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)
1327 1328
};

1329 1330
static struct platform_driver fsl_sai_driver = {
	.probe = fsl_sai_probe,
1331
	.remove = fsl_sai_remove,
1332 1333
	.driver = {
		.name = "fsl-sai",
1334
		.pm = &fsl_sai_pm_ops,
1335 1336 1337 1338 1339 1340 1341 1342 1343
		.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");