ssi.c 25.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Renesas R-Car SSIU/SSI support
 *
 * Copyright (C) 2013 Renesas Solutions Corp.
 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
 *
 * Based on fsi.c
 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
14
#include <sound/simple_card_utils.h>
15 16 17 18 19 20 21 22
#include <linux/delay.h>
#include "rsnd.h"
#define RSND_SSI_NAME_SIZE 16

/*
 * SSICR
 */
#define	FORCE		(1 << 31)	/* Fixed */
23
#define	DMEN		(1 << 28)	/* DMA Enable */
24 25 26 27
#define	UIEN		(1 << 27)	/* Underflow Interrupt Enable */
#define	OIEN		(1 << 26)	/* Overflow Interrupt Enable */
#define	IIEN		(1 << 25)	/* Idle Mode Interrupt Enable */
#define	DIEN		(1 << 24)	/* Data Interrupt Enable */
28 29 30
#define	CHNL_4		(1 << 22)	/* Channels */
#define	CHNL_6		(2 << 22)	/* Channels */
#define	CHNL_8		(3 << 22)	/* Channels */
31 32 33 34 35 36 37 38 39 40 41 42 43 44
#define	DWL_8		(0 << 19)	/* Data Word Length */
#define	DWL_16		(1 << 19)	/* Data Word Length */
#define	DWL_18		(2 << 19)	/* Data Word Length */
#define	DWL_20		(3 << 19)	/* Data Word Length */
#define	DWL_22		(4 << 19)	/* Data Word Length */
#define	DWL_24		(5 << 19)	/* Data Word Length */
#define	DWL_32		(6 << 19)	/* Data Word Length */

#define	SWL_32		(3 << 16)	/* R/W System Word Length */
#define	SCKD		(1 << 15)	/* Serial Bit Clock Direction */
#define	SWSD		(1 << 14)	/* Serial WS Direction */
#define	SCKP		(1 << 13)	/* Serial Bit Clock Polarity */
#define	SWSP		(1 << 12)	/* Serial WS Polarity */
#define	SDTA		(1 << 10)	/* Serial Data Alignment */
45
#define	PDTA		(1 <<  9)	/* Parallel Data Alignment */
46 47 48 49 50 51 52 53 54 55 56 57 58
#define	DEL		(1 <<  8)	/* Serial Data Delay */
#define	CKDV(v)		(v <<  4)	/* Serial Clock Division Ratio */
#define	TRMD		(1 <<  1)	/* Transmit/Receive Mode Select */
#define	EN		(1 <<  0)	/* SSI Module Enable */

/*
 * SSISR
 */
#define	UIRQ		(1 << 27)	/* Underflow Error Interrupt Status */
#define	OIRQ		(1 << 26)	/* Overflow Error Interrupt Status */
#define	IIRQ		(1 << 25)	/* Idle Mode Interrupt Status */
#define	DIRQ		(1 << 24)	/* Data Interrupt Status Flag */

59 60 61 62
/*
 * SSIWSR
 */
#define CONT		(1 << 8)	/* WS Continue Function */
63
#define WS_MODE		(1 << 0)	/* WS Mode */
64

65 66
#define SSI_NAME "ssi"

67 68
struct rsnd_ssi {
	struct rsnd_mod mod;
69
	struct rsnd_mod *dma;
70

71
	u32 flags;
72 73
	u32 cr_own;
	u32 cr_clk;
74
	u32 cr_mode;
75
	u32 cr_en;
76
	u32 wsr;
77
	int chan;
78
	int rate;
79
	int irq;
80
	unsigned int usrcnt;
81 82 83 84

	int byte_pos;
	int byte_per_period;
	int next_period_byte;
85 86
};

87 88 89
/* flags */
#define RSND_SSI_CLK_PIN_SHARE		(1 << 0)
#define RSND_SSI_NO_BUSIF		(1 << 1) /* SSI+DMA without BUSIF */
90 91
#define RSND_SSI_HDMI0			(1 << 2) /* for HDMI0 */
#define RSND_SSI_HDMI1			(1 << 3) /* for HDMI1 */
92
#define RSND_SSI_PROBED			(1 << 4)
93

94 95 96
#define for_each_rsnd_ssi(pos, priv, i)					\
	for (i = 0;							\
	     (i < rsnd_ssi_nr(priv)) &&					\
97
		((pos) = ((struct rsnd_ssi *)(priv)->ssi + i));		\
98 99
	     i++)

100
#define rsnd_ssi_get(priv, id) ((struct rsnd_ssi *)(priv->ssi) + id)
101
#define rsnd_ssi_nr(priv) ((priv)->ssi_nr)
102
#define rsnd_mod_to_ssi(_mod) container_of((_mod), struct rsnd_ssi, mod)
103
#define rsnd_ssi_is_parent(ssi, io) ((ssi) == rsnd_io_to_mod_ssip(io))
104 105
#define rsnd_ssi_is_multi_slave(mod, io) \
	(rsnd_ssi_multi_slaves(io) & (1 << rsnd_mod_id(mod)))
106 107
#define rsnd_ssi_is_run_mods(mod, io) \
	(rsnd_ssi_run_mods(io) & (1 << rsnd_mod_id(mod)))
108
#define rsnd_ssi_can_output_clk(mod) (!__rsnd_ssi_is_pin_sharing(mod))
109

110 111 112 113 114
int rsnd_ssi_hdmi_port(struct rsnd_dai_stream *io)
{
	struct rsnd_mod *mod = rsnd_io_to_mod_ssi(io);
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);

115
	if (rsnd_flags_has(ssi, RSND_SSI_HDMI0))
116 117
		return RSND_SSI_HDMI_PORT0;

118
	if (rsnd_flags_has(ssi, RSND_SSI_HDMI1))
119 120 121 122 123
		return RSND_SSI_HDMI_PORT1;

	return 0;
}

124
int rsnd_ssi_use_busif(struct rsnd_dai_stream *io)
125
{
126
	struct rsnd_mod *mod = rsnd_io_to_mod_ssi(io);
127 128 129
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
	int use_busif = 0;

130 131 132
	if (!rsnd_ssi_is_dma_mode(mod))
		return 0;

133
	if (!(rsnd_flags_has(ssi, RSND_SSI_NO_BUSIF)))
134 135 136 137 138 139 140
		use_busif = 1;
	if (rsnd_io_to_mod_src(io))
		use_busif = 1;

	return use_busif;
}

141 142 143 144 145 146 147 148 149 150
static void rsnd_ssi_status_clear(struct rsnd_mod *mod)
{
	rsnd_mod_write(mod, SSISR, 0);
}

static u32 rsnd_ssi_status_get(struct rsnd_mod *mod)
{
	return rsnd_mod_read(mod, SSISR);
}

151 152 153 154 155 156 157 158 159
static void rsnd_ssi_status_check(struct rsnd_mod *mod,
				  u32 bit)
{
	struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
	struct device *dev = rsnd_priv_to_dev(priv);
	u32 status;
	int i;

	for (i = 0; i < 1024; i++) {
160
		status = rsnd_ssi_status_get(mod);
161 162 163 164 165 166
		if (status & bit)
			return;

		udelay(50);
	}

167 168
	dev_warn(dev, "%s[%d] status check failed\n",
		 rsnd_mod_name(mod), rsnd_mod_id(mod));
169 170
}

171
static u32 rsnd_ssi_multi_slaves(struct rsnd_dai_stream *io)
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
{
	struct rsnd_mod *mod;
	enum rsnd_mod_type types[] = {
		RSND_MOD_SSIM1,
		RSND_MOD_SSIM2,
		RSND_MOD_SSIM3,
	};
	int i, mask;

	mask = 0;
	for (i = 0; i < ARRAY_SIZE(types); i++) {
		mod = rsnd_io_to_mod(io, types[i]);
		if (!mod)
			continue;

		mask |= 1 << rsnd_mod_id(mod);
	}

	return mask;
}

193 194 195 196
static u32 rsnd_ssi_run_mods(struct rsnd_dai_stream *io)
{
	struct rsnd_mod *ssi_mod = rsnd_io_to_mod_ssi(io);
	struct rsnd_mod *ssi_parent_mod = rsnd_io_to_mod_ssip(io);
197
	u32 mods;
198

199 200 201 202 203 204 205
	mods = rsnd_ssi_multi_slaves_runtime(io) |
		1 << rsnd_mod_id(ssi_mod);

	if (ssi_parent_mod)
		mods |= 1 << rsnd_mod_id(ssi_parent_mod);

	return mods;
206 207
}

208 209
u32 rsnd_ssi_multi_slaves_runtime(struct rsnd_dai_stream *io)
{
210 211
	if (rsnd_runtime_is_ssi_multi(io))
		return rsnd_ssi_multi_slaves(io);
212 213 214 215

	return 0;
}

216
unsigned int rsnd_ssi_clk_query(struct rsnd_priv *priv,
217 218 219 220 221 222
		       int param1, int param2, int *idx)
{
	int ssi_clk_mul_table[] = {
		1, 2, 4, 8, 16, 6, 12,
	};
	int j, ret;
223
	unsigned int main_rate;
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252

	for (j = 0; j < ARRAY_SIZE(ssi_clk_mul_table); j++) {

		/*
		 * It will set SSIWSR.CONT here, but SSICR.CKDV = 000
		 * with it is not allowed. (SSIWSR.WS_MODE with
		 * SSICR.CKDV = 000 is not allowed either).
		 * Skip it. See SSICR.CKDV
		 */
		if (j == 0)
			continue;

		/*
		 * this driver is assuming that
		 * system word is 32bit x chan
		 * see rsnd_ssi_init()
		 */
		main_rate = 32 * param1 * param2 * ssi_clk_mul_table[j];

		ret = rsnd_adg_clk_query(priv, main_rate);
		if (ret < 0)
			continue;

		if (idx)
			*idx = j;

		return main_rate;
	}

253
	return 0;
254 255
}

256
static int rsnd_ssi_master_clk_start(struct rsnd_mod *mod,
257
				     struct rsnd_dai_stream *io)
258
{
259
	struct rsnd_priv *priv = rsnd_io_to_priv(io);
260
	struct device *dev = rsnd_priv_to_dev(priv);
261
	struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
262
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
263
	int chan = rsnd_runtime_channel_for_ssi(io);
264
	int idx, ret;
265
	unsigned int main_rate;
266 267 268
	unsigned int rate = rsnd_io_is_play(io) ?
		rsnd_src_get_out_rate(priv, io) :
		rsnd_src_get_in_rate(priv, io);
269

270 271 272
	if (!rsnd_rdai_is_clk_master(rdai))
		return 0;

273
	if (!rsnd_ssi_can_output_clk(mod))
274 275
		return 0;

276 277 278
	if (rsnd_ssi_is_multi_slave(mod, io))
		return 0;

279 280 281 282 283 284 285 286 287
	if (ssi->usrcnt > 1) {
		if (ssi->rate != rate) {
			dev_err(dev, "SSI parent/child should use same rate\n");
			return -EINVAL;
		}

		return 0;
	}

288
	main_rate = rsnd_ssi_clk_query(priv, rate, chan, &idx);
289
	if (!main_rate) {
290 291 292
		dev_err(dev, "unsupported clock rate\n");
		return -EIO;
	}
293

294 295 296
	ret = rsnd_adg_ssi_clk_try_start(mod, main_rate);
	if (ret < 0)
		return ret;
297

298 299 300 301 302 303 304 305 306 307
	/*
	 * SSI clock will be output contiguously
	 * by below settings.
	 * This means, rsnd_ssi_master_clk_start()
	 * and rsnd_ssi_register_setup() are necessary
	 * for SSI parent
	 *
	 * SSICR  : FORCE, SCKD, SWSD
	 * SSIWSR : CONT
	 */
308 309 310
	ssi->cr_clk = FORCE | SWL_32 | SCKD | SWSD | CKDV(idx);
	ssi->wsr = CONT;
	ssi->rate = rate;
311

312 313 314
	dev_dbg(dev, "%s[%d] outputs %u Hz\n",
		rsnd_mod_name(mod),
		rsnd_mod_id(mod), rate);
315

316
	return 0;
317 318
}

319
static void rsnd_ssi_master_clk_stop(struct rsnd_mod *mod,
320
				     struct rsnd_dai_stream *io)
321
{
322
	struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
323
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
324

325
	if (!rsnd_rdai_is_clk_master(rdai))
326 327
		return;

328
	if (!rsnd_ssi_can_output_clk(mod))
329
		return;
330

331 332
	if (ssi->usrcnt > 1)
		return;
333

334 335
	ssi->cr_clk	= 0;
	ssi->rate	= 0;
336

337
	rsnd_adg_ssi_clk_stop(mod);
338 339
}

340
static void rsnd_ssi_config_init(struct rsnd_mod *mod,
341 342 343 344
				struct rsnd_dai_stream *io)
{
	struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
	struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
345
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
346 347
	u32 cr_own;
	u32 cr_mode;
348
	u32 wsr;
349 350
	int is_tdm;

351 352 353
	if (rsnd_ssi_is_parent(mod, io))
		return;

354
	is_tdm = rsnd_runtime_is_ssi_tdm(io);
355 356 357 358 359

	/*
	 * always use 32bit system word.
	 * see also rsnd_ssi_master_clk_enable()
	 */
360
	cr_own = FORCE | SWL_32;
361 362 363

	if (rdai->bit_clk_inv)
		cr_own |= SCKP;
364
	if (rdai->frm_clk_inv ^ is_tdm)
365 366 367 368 369 370 371 372
		cr_own |= SWSP;
	if (rdai->data_alignment)
		cr_own |= SDTA;
	if (rdai->sys_delay)
		cr_own |= DEL;
	if (rsnd_io_is_play(io))
		cr_own |= TRMD;

373
	switch (snd_pcm_format_width(runtime->format)) {
374 375 376
	case 16:
		cr_own |= DWL_16;
		break;
377
	case 24:
378 379 380 381
		cr_own |= DWL_24;
		break;
	}

382
	if (rsnd_ssi_is_dma_mode(mod)) {
383 384 385 386 387 388
		cr_mode = UIEN | OIEN |	/* over/under run */
			  DMEN;		/* DMA : enable DMA */
	} else {
		cr_mode = DIEN;		/* PIO : enable Data interrupt */
	}

389 390 391 392 393 394
	/*
	 * TDM Extend Mode
	 * see
	 *	rsnd_ssiu_init_gen2()
	 */
	wsr = ssi->wsr;
395
	if (is_tdm) {
396 397 398 399
		wsr	|= WS_MODE;
		cr_own	|= CHNL_8;
	}

400 401
	ssi->cr_own	= cr_own;
	ssi->cr_mode	= cr_mode;
402
	ssi->wsr	= wsr;
403
}
404

405 406 407 408 409 410 411
static void rsnd_ssi_register_setup(struct rsnd_mod *mod)
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);

	rsnd_mod_write(mod, SSIWSR,	ssi->wsr);
	rsnd_mod_write(mod, SSICR,	ssi->cr_own	|
					ssi->cr_clk	|
412 413
					ssi->cr_mode	|
					ssi->cr_en);
414 415
}

416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
static void rsnd_ssi_pointer_init(struct rsnd_mod *mod,
				  struct rsnd_dai_stream *io)
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
	struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);

	ssi->byte_pos		= 0;
	ssi->byte_per_period	= runtime->period_size *
				  runtime->channels *
				  samples_to_bytes(runtime, 1);
	ssi->next_period_byte	= ssi->byte_per_period;
}

static int rsnd_ssi_pointer_offset(struct rsnd_mod *mod,
				   struct rsnd_dai_stream *io,
				   int additional)
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
	struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
	int pos = ssi->byte_pos + additional;

	pos %= (runtime->periods * ssi->byte_per_period);

	return pos;
}

static bool rsnd_ssi_pointer_update(struct rsnd_mod *mod,
				    struct rsnd_dai_stream *io,
				    int byte)
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
447 448
	bool ret = false;
	int byte_pos;
449

450
	byte_pos = ssi->byte_pos + byte;
451

452
	if (byte_pos >= ssi->next_period_byte) {
453
		struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
454
		int period_pos = byte_pos / ssi->byte_per_period;
455

456
		ssi->next_period_byte = (period_pos + 1) * ssi->byte_per_period;
457

458
		if (period_pos >= runtime->periods) {
459
			byte_pos = 0;
460 461 462
			ssi->next_period_byte = ssi->byte_per_period;
		}

463
		ret = true;
464 465
	}

466 467 468
	WRITE_ONCE(ssi->byte_pos, byte_pos);

	return ret;
469 470
}

471 472 473 474
/*
 *	SSI mod common functions
 */
static int rsnd_ssi_init(struct rsnd_mod *mod,
475
			 struct rsnd_dai_stream *io,
476
			 struct rsnd_priv *priv)
477 478
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
479 480
	int ret;

481 482 483
	if (!rsnd_ssi_is_run_mods(mod, io))
		return 0;

484 485
	rsnd_ssi_pointer_init(mod, io);

486 487 488 489
	ssi->usrcnt++;

	rsnd_mod_power_on(mod);

490
	ret = rsnd_ssi_master_clk_start(mod, io);
491 492 493
	if (ret < 0)
		return ret;

494
	rsnd_ssi_config_init(mod, io);
495

496
	rsnd_ssi_register_setup(mod);
497 498 499 500

	/* clear error status */
	rsnd_ssi_status_clear(mod);

501 502 503 504
	return 0;
}

static int rsnd_ssi_quit(struct rsnd_mod *mod,
505
			 struct rsnd_dai_stream *io,
506
			 struct rsnd_priv *priv)
507 508 509 510
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
	struct device *dev = rsnd_priv_to_dev(priv);

511 512 513
	if (!rsnd_ssi_is_run_mods(mod, io))
		return 0;

514 515 516 517 518
	if (!ssi->usrcnt) {
		dev_err(dev, "%s[%d] usrcnt error\n",
			rsnd_mod_name(mod), rsnd_mod_id(mod));
		return -EIO;
	}
519

520
	if (!rsnd_ssi_is_parent(mod, io))
521
		ssi->cr_own	= 0;
522

523
	rsnd_ssi_master_clk_stop(mod, io);
524 525 526 527 528

	rsnd_mod_power_off(mod);

	ssi->usrcnt--;

529 530 531
	return 0;
}

532
static int rsnd_ssi_hw_params(struct rsnd_mod *mod,
533
			      struct rsnd_dai_stream *io,
534 535 536 537 538 539 540
			      struct snd_pcm_substream *substream,
			      struct snd_pcm_hw_params *params)
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
	int chan = params_channels(params);

	/*
541 542 543
	 * snd_pcm_ops::hw_params will be called *before*
	 * snd_soc_dai_ops::trigger. Thus, ssi->usrcnt is 0
	 * in 1st call.
544
	 */
545
	if (ssi->usrcnt) {
546
		/*
547 548
		 * Already working.
		 * It will happen if SSI has parent/child connection.
549 550 551 552 553 554 555 556 557 558 559 560
		 * it is error if child <-> parent SSI uses
		 * different channels.
		 */
		if (ssi->chan != chan)
			return -EIO;
	}

	ssi->chan = chan;

	return 0;
}

561 562 563
static int rsnd_ssi_start(struct rsnd_mod *mod,
			  struct rsnd_dai_stream *io,
			  struct rsnd_priv *priv)
564
{
565 566
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);

567 568 569
	if (!rsnd_ssi_is_run_mods(mod, io))
		return 0;

570 571 572 573
	/*
	 * EN will be set via SSIU :: SSI_CONTROL
	 * if Multi channel mode
	 */
574
	if (rsnd_ssi_multi_slaves_runtime(io))
575
		return 0;
576

577 578 579 580 581 582 583 584 585 586 587 588 589
	/*
	 * EN is for data output.
	 * SSI parent EN is not needed.
	 */
	if (rsnd_ssi_is_parent(mod, io))
		return 0;

	ssi->cr_en = EN;

	rsnd_mod_write(mod, SSICR,	ssi->cr_own	|
					ssi->cr_clk	|
					ssi->cr_mode	|
					ssi->cr_en);
590 591 592 593

	return 0;
}

594 595 596
static int rsnd_ssi_stop(struct rsnd_mod *mod,
			 struct rsnd_dai_stream *io,
			 struct rsnd_priv *priv)
597
{
598 599 600
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
	u32 cr;

601 602 603
	if (!rsnd_ssi_is_run_mods(mod, io))
		return 0;

604
	if (rsnd_ssi_is_parent(mod, io))
605
		return 0;
606 607 608

	cr  =	ssi->cr_own	|
		ssi->cr_clk;
609

610 611 612 613 614 615 616 617 618
	/*
	 * disable all IRQ,
	 * Playback: Wait all data was sent
	 * Capture:  It might not receave data. Do nothing
	 */
	if (rsnd_io_is_play(io)) {
		rsnd_mod_write(mod, SSICR, cr | EN);
		rsnd_ssi_status_check(mod, DIRQ);
	}
619

620 621 622 623 624 625
	/*
	 * disable SSI,
	 * and, wait idle state
	 */
	rsnd_mod_write(mod, SSICR, cr);	/* disabled all */
	rsnd_ssi_status_check(mod, IIRQ);
626

627 628
	ssi->cr_en = 0;

629 630 631
	return 0;
}

632 633 634 635 636 637 638 639 640 641 642 643 644
static int rsnd_ssi_irq(struct rsnd_mod *mod,
			struct rsnd_dai_stream *io,
			struct rsnd_priv *priv,
			int enable)
{
	u32 val = 0;

	if (rsnd_is_gen1(priv))
		return 0;

	if (rsnd_ssi_is_parent(mod, io))
		return 0;

645 646 647
	if (!rsnd_ssi_is_run_mods(mod, io))
		return 0;

648 649 650 651 652 653 654 655
	if (enable)
		val = rsnd_ssi_is_dma_mode(mod) ? 0x0e000000 : 0x0f000000;

	rsnd_mod_write(mod, SSI_INT_ENABLE, val);

	return 0;
}

656 657
static void __rsnd_ssi_interrupt(struct rsnd_mod *mod,
				 struct rsnd_dai_stream *io)
658
{
659
	struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
660
	int is_dma = rsnd_ssi_is_dma_mode(mod);
661
	u32 status;
662
	bool elapsed = false;
663
	bool stop = false;
664 665

	spin_lock(&priv->lock);
666

667
	/* ignore all cases if not working */
668
	if (!rsnd_io_is_working(io))
669 670
		goto rsnd_ssi_interrupt_out;

671
	status = rsnd_ssi_status_get(mod);
672 673

	/* PIO only */
674
	if (!is_dma && (status & DIRQ)) {
675 676
		struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
		u32 *buf = (u32 *)(runtime->dma_area +
677
				   rsnd_ssi_pointer_offset(mod, io, 0));
678 679
		int shift = 0;

680
		if (snd_pcm_format_width(runtime->format) == 24)
681
			shift = 8;
682 683 684 685 686 687

		/*
		 * 8/16/32 data can be assesse to TDR/RDR register
		 * directly as 32bit data
		 * see rsnd_ssi_init()
		 */
688
		if (rsnd_io_is_play(io))
689
			rsnd_mod_write(mod, SSITDR, (*buf) << shift);
690
		else
691
			*buf = (rsnd_mod_read(mod, SSIRDR) >> shift);
692

693
		elapsed = rsnd_ssi_pointer_update(mod, io, sizeof(*buf));
694
	}
695

696
	/* DMA only */
697 698
	if (is_dma && (status & (UIRQ | OIRQ)))
		stop = true;
699

700
	rsnd_ssi_status_clear(mod);
701 702 703
rsnd_ssi_interrupt_out:
	spin_unlock(&priv->lock);

704 705
	if (elapsed)
		rsnd_dai_period_elapsed(io);
706 707 708 709

	if (stop)
		snd_pcm_stop_xrun(io->substream);

710 711 712 713 714 715 716
}

static irqreturn_t rsnd_ssi_interrupt(int irq, void *data)
{
	struct rsnd_mod *mod = data;

	rsnd_mod_interrupt(mod, __rsnd_ssi_interrupt);
717

718
	return IRQ_HANDLED;
719 720
}

721 722 723
/*
 *		SSI PIO
 */
724
static void rsnd_ssi_parent_attach(struct rsnd_mod *mod,
725
				   struct rsnd_dai_stream *io)
726
{
727 728 729
	struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
	struct rsnd_priv *priv = rsnd_mod_to_priv(mod);

730 731 732
	if (!__rsnd_ssi_is_pin_sharing(mod))
		return;

733 734 735
	if (!rsnd_rdai_is_clk_master(rdai))
		return;

736 737 738 739 740 741 742 743 744 745 746 747 748 749
	switch (rsnd_mod_id(mod)) {
	case 1:
	case 2:
		rsnd_dai_connect(rsnd_ssi_mod_get(priv, 0), io, RSND_MOD_SSIP);
		break;
	case 4:
		rsnd_dai_connect(rsnd_ssi_mod_get(priv, 3), io, RSND_MOD_SSIP);
		break;
	case 8:
		rsnd_dai_connect(rsnd_ssi_mod_get(priv, 7), io, RSND_MOD_SSIP);
		break;
	}
}

750 751 752 753 754 755 756 757 758 759 760 761 762 763
static int rsnd_ssi_pcm_new(struct rsnd_mod *mod,
			    struct rsnd_dai_stream *io,
			    struct snd_soc_pcm_runtime *rtd)
{
	/*
	 * rsnd_rdai_is_clk_master() will be enabled after set_fmt,
	 * and, pcm_new will be called after it.
	 * This function reuse pcm_new at this point.
	 */
	rsnd_ssi_parent_attach(mod, io);

	return 0;
}

764 765 766
static int rsnd_ssi_common_probe(struct rsnd_mod *mod,
				 struct rsnd_dai_stream *io,
				 struct rsnd_priv *priv)
767 768 769 770 771
{
	struct device *dev = rsnd_priv_to_dev(priv);
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
	int ret;

772 773 774 775 776 777 778
	/*
	 * SSIP/SSIU/IRQ are not needed on
	 * SSI Multi slaves
	 */
	if (rsnd_ssi_is_multi_slave(mod, io))
		return 0;

779 780 781 782
	/*
	 * It can't judge ssi parent at this point
	 * see rsnd_ssi_pcm_new()
	 */
783

784 785 786 787
	ret = rsnd_ssiu_attach(io, mod);
	if (ret < 0)
		return ret;

788 789 790
	/*
	 * SSI might be called again as PIO fallback
	 * It is easy to manual handling for IRQ request/free
791 792 793 794 795 796 797
	 *
	 * OTOH, this function might be called many times if platform is
	 * using MIX. It needs xxx_attach() many times on xxx_probe().
	 * Because of it, we can't control .probe/.remove calling count by
	 * mod->status.
	 * But it don't need to call request_irq() many times.
	 * Let's control it by RSND_SSI_PROBED flag.
798
	 */
799
	if (!rsnd_flags_has(ssi, RSND_SSI_PROBED)) {
800 801 802 803 804
		ret = request_irq(ssi->irq,
				  rsnd_ssi_interrupt,
				  IRQF_SHARED,
				  dev_name(dev), mod);

805
		rsnd_flags_set(ssi, RSND_SSI_PROBED);
806
	}
807

808 809 810
	return ret;
}

811 812 813 814 815 816 817 818 819 820 821 822
static int rsnd_ssi_common_remove(struct rsnd_mod *mod,
				  struct rsnd_dai_stream *io,
				  struct rsnd_priv *priv)
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
	struct rsnd_mod *pure_ssi_mod = rsnd_io_to_mod_ssi(io);

	/* Do nothing if non SSI (= SSI parent, multi SSI) mod */
	if (pure_ssi_mod != mod)
		return 0;

	/* PIO will request IRQ again */
823
	if (rsnd_flags_has(ssi, RSND_SSI_PROBED)) {
824 825
		free_irq(ssi->irq, mod);

826
		rsnd_flags_del(ssi, RSND_SSI_PROBED);
827
	}
828 829 830 831

	return 0;
}

832 833 834 835
static int rsnd_ssi_pointer(struct rsnd_mod *mod,
			    struct rsnd_dai_stream *io,
			    snd_pcm_uframes_t *pointer)
{
836
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
837 838
	struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);

839
	*pointer = bytes_to_frames(runtime, READ_ONCE(ssi->byte_pos));
840 841 842 843

	return 0;
}

844
static struct rsnd_mod_ops rsnd_ssi_pio_ops = {
845
	.name	= SSI_NAME,
846
	.probe	= rsnd_ssi_common_probe,
847
	.remove	= rsnd_ssi_common_remove,
848 849
	.init	= rsnd_ssi_init,
	.quit	= rsnd_ssi_quit,
850 851
	.start	= rsnd_ssi_start,
	.stop	= rsnd_ssi_stop,
852
	.irq	= rsnd_ssi_irq,
853
	.pointer= rsnd_ssi_pointer,
854
	.pcm_new = rsnd_ssi_pcm_new,
855
	.hw_params = rsnd_ssi_hw_params,
856 857
};

858
static int rsnd_ssi_dma_probe(struct rsnd_mod *mod,
859
			      struct rsnd_dai_stream *io,
860
			      struct rsnd_priv *priv)
861 862 863 864
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
	int ret;

865 866 867 868 869 870 871
	/*
	 * SSIP/SSIU/IRQ/DMA are not needed on
	 * SSI Multi slaves
	 */
	if (rsnd_ssi_is_multi_slave(mod, io))
		return 0;

872
	ret = rsnd_ssi_common_probe(mod, io, priv);
873
	if (ret)
874
		return ret;
875

876
	/* SSI probe might be called many times in MUX multi path */
877
	ret = rsnd_dma_attach(io, mod, &ssi->dma);
878

879 880 881
	return ret;
}

882
static int rsnd_ssi_fallback(struct rsnd_mod *mod,
883
			     struct rsnd_dai_stream *io,
884
			     struct rsnd_priv *priv)
885
{
886 887 888 889 890 891 892 893 894 895 896 897 898 899
	struct device *dev = rsnd_priv_to_dev(priv);

	/*
	 * fallback to PIO
	 *
	 * SSI .probe might be called again.
	 * see
	 *	rsnd_rdai_continuance_probe()
	 */
	mod->ops = &rsnd_ssi_pio_ops;

	dev_info(dev, "%s[%d] fallback to PIO mode\n",
		 rsnd_mod_name(mod), rsnd_mod_id(mod));

900 901 902
	return 0;
}

903 904
static struct dma_chan *rsnd_ssi_dma_req(struct rsnd_dai_stream *io,
					 struct rsnd_mod *mod)
905
{
906 907 908 909
	struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
	int is_play = rsnd_io_is_play(io);
	char *name;

910
	if (rsnd_ssi_use_busif(io))
911 912 913 914 915 916
		name = is_play ? "rxu" : "txu";
	else
		name = is_play ? "rx" : "tx";

	return rsnd_dma_request_channel(rsnd_ssi_of_node(priv),
					mod, name);
917 918
}

919
static struct rsnd_mod_ops rsnd_ssi_dma_ops = {
920
	.name	= SSI_NAME,
921
	.dma_req = rsnd_ssi_dma_req,
922
	.probe	= rsnd_ssi_dma_probe,
923
	.remove	= rsnd_ssi_common_remove,
924 925
	.init	= rsnd_ssi_init,
	.quit	= rsnd_ssi_quit,
926 927
	.start	= rsnd_ssi_start,
	.stop	= rsnd_ssi_stop,
928
	.irq	= rsnd_ssi_irq,
929
	.pcm_new = rsnd_ssi_pcm_new,
930
	.fallback = rsnd_ssi_fallback,
931
	.hw_params = rsnd_ssi_hw_params,
932 933
};

934 935 936 937 938 939
int rsnd_ssi_is_dma_mode(struct rsnd_mod *mod)
{
	return mod->ops == &rsnd_ssi_dma_ops;
}


940 941 942
/*
 *		ssi mod function
 */
943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960
static void rsnd_ssi_connect(struct rsnd_mod *mod,
			     struct rsnd_dai_stream *io)
{
	struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
	enum rsnd_mod_type types[] = {
		RSND_MOD_SSI,
		RSND_MOD_SSIM1,
		RSND_MOD_SSIM2,
		RSND_MOD_SSIM3,
	};
	enum rsnd_mod_type type;
	int i;

	/* try SSI -> SSIM1 -> SSIM2 -> SSIM3 */
	for (i = 0; i < ARRAY_SIZE(types); i++) {
		type = types[i];
		if (!rsnd_io_to_mod(io, type)) {
			rsnd_dai_connect(mod, io, type);
961 962
			rsnd_rdai_channels_set(rdai, (i + 1) * 2);
			rsnd_rdai_ssi_lane_set(rdai, (i + 1));
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 991 992 993 994
			return;
		}
	}
}

void rsnd_parse_connect_ssi(struct rsnd_dai *rdai,
			    struct device_node *playback,
			    struct device_node *capture)
{
	struct rsnd_priv *priv = rsnd_rdai_to_priv(rdai);
	struct device_node *node;
	struct device_node *np;
	struct rsnd_mod *mod;
	int i;

	node = rsnd_ssi_of_node(priv);
	if (!node)
		return;

	i = 0;
	for_each_child_of_node(node, np) {
		mod = rsnd_ssi_mod_get(priv, i);
		if (np == playback)
			rsnd_ssi_connect(mod, &rdai->playback);
		if (np == capture)
			rsnd_ssi_connect(mod, &rdai->capture);
		i++;
	}

	of_node_put(node);
}

995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
static void __rsnd_ssi_parse_hdmi_connection(struct rsnd_priv *priv,
					     struct rsnd_dai_stream *io,
					     struct device_node *remote_ep)
{
	struct device *dev = rsnd_priv_to_dev(priv);
	struct rsnd_mod *mod = rsnd_io_to_mod_ssi(io);
	struct rsnd_ssi *ssi;

	if (!mod)
		return;

	ssi  = rsnd_mod_to_ssi(mod);

	if (strstr(remote_ep->full_name, "hdmi0")) {
1009
		rsnd_flags_set(ssi, RSND_SSI_HDMI0);
1010 1011 1012 1013 1014
		dev_dbg(dev, "%s[%d] connected to HDMI0\n",
			 rsnd_mod_name(mod), rsnd_mod_id(mod));
	}

	if (strstr(remote_ep->full_name, "hdmi1")) {
1015
		rsnd_flags_set(ssi, RSND_SSI_HDMI1);
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
		dev_dbg(dev, "%s[%d] connected to HDMI1\n",
			rsnd_mod_name(mod), rsnd_mod_id(mod));
	}
}

void rsnd_ssi_parse_hdmi_connection(struct rsnd_priv *priv,
				    struct device_node *endpoint,
				    int dai_i)
{
	struct rsnd_dai *rdai = rsnd_rdai_get(priv, dai_i);
	struct device_node *remote_ep;

	remote_ep = of_graph_get_remote_endpoint(endpoint);
	if (!remote_ep)
		return;

	__rsnd_ssi_parse_hdmi_connection(priv, &rdai->playback, remote_ep);
	__rsnd_ssi_parse_hdmi_connection(priv, &rdai->capture,  remote_ep);
}

1036 1037
struct rsnd_mod *rsnd_ssi_mod_get(struct rsnd_priv *priv, int id)
{
1038 1039
	if (WARN_ON(id < 0 || id >= rsnd_ssi_nr(priv)))
		id = 0;
1040

1041
	return rsnd_mod_get(rsnd_ssi_get(priv, id));
1042 1043
}

1044
int __rsnd_ssi_is_pin_sharing(struct rsnd_mod *mod)
1045 1046 1047
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);

1048
	return !!(rsnd_flags_has(ssi, RSND_SSI_CLK_PIN_SHARE));
1049 1050
}

1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
static u32 *rsnd_ssi_get_status(struct rsnd_dai_stream *io,
				struct rsnd_mod *mod,
				enum rsnd_mod_type type)
{
	/*
	 * SSIP (= SSI parent) needs to be special, otherwise,
	 * 2nd SSI might doesn't start. see also rsnd_mod_call()
	 *
	 * We can't include parent SSI status on SSI, because we don't know
	 * how many SSI requests parent SSI. Thus, it is localed on "io" now.
	 * ex) trouble case
	 *	Playback: SSI0
	 *	Capture : SSI1 (needs SSI0)
	 *
	 * 1) start Capture  ->	SSI0/SSI1 are started.
	 * 2) start Playback ->	SSI0 doesn't work, because it is already
	 *			marked as "started" on 1)
	 *
	 * OTOH, using each mod's status is good for MUX case.
	 * It doesn't need to start in 2nd start
	 * ex)
	 *	IO-0: SRC0 -> CTU1 -+-> MUX -> DVC -> SSIU -> SSI0
	 *			    |
	 *	IO-1: SRC1 -> CTU2 -+
	 *
	 * 1) start IO-0 ->	start SSI0
	 * 2) start IO-1 ->	SSI0 doesn't need to start, because it is
	 *			already started on 1)
	 */
	if (type == RSND_MOD_SSIP)
		return &io->parent_ssi_status;

	return rsnd_mod_get_status(io, mod, type);
}

1086
int rsnd_ssi_probe(struct rsnd_priv *priv)
1087
{
1088 1089
	struct device_node *node;
	struct device_node *np;
1090 1091 1092 1093 1094
	struct device *dev = rsnd_priv_to_dev(priv);
	struct rsnd_mod_ops *ops;
	struct clk *clk;
	struct rsnd_ssi *ssi;
	char name[RSND_SSI_NAME_SIZE];
1095
	int i, nr, ret;
1096

1097 1098 1099 1100 1101 1102 1103 1104 1105
	node = rsnd_ssi_of_node(priv);
	if (!node)
		return -EINVAL;

	nr = of_get_child_count(node);
	if (!nr) {
		ret = -EINVAL;
		goto rsnd_ssi_probe_done;
	}
1106

1107
	ssi	= devm_kzalloc(dev, sizeof(*ssi) * nr, GFP_KERNEL);
1108 1109 1110 1111
	if (!ssi) {
		ret = -ENOMEM;
		goto rsnd_ssi_probe_done;
	}
1112

1113 1114
	priv->ssi	= ssi;
	priv->ssi_nr	= nr;
1115

1116 1117
	i = 0;
	for_each_child_of_node(node, np) {
1118 1119 1120
		if (!of_device_is_available(np))
			goto skip;

1121
		ssi = rsnd_ssi_get(priv, i);
1122

1123 1124
		snprintf(name, RSND_SSI_NAME_SIZE, "%s.%d",
			 SSI_NAME, i);
1125

1126
		clk = devm_clk_get(dev, name);
1127 1128
		if (IS_ERR(clk)) {
			ret = PTR_ERR(clk);
1129
			of_node_put(np);
1130 1131
			goto rsnd_ssi_probe_done;
		}
1132

1133
		if (of_get_property(np, "shared-pin", NULL))
1134
			rsnd_flags_set(ssi, RSND_SSI_CLK_PIN_SHARE);
1135 1136

		if (of_get_property(np, "no-busif", NULL))
1137
			rsnd_flags_set(ssi, RSND_SSI_NO_BUSIF);
1138 1139 1140 1141

		ssi->irq = irq_of_parse_and_map(np, 0);
		if (!ssi->irq) {
			ret = -EINVAL;
1142
			of_node_put(np);
1143 1144
			goto rsnd_ssi_probe_done;
		}
1145

J
Julia Lawall 已提交
1146
		if (of_property_read_bool(np, "pio-transfer"))
1147
			ops = &rsnd_ssi_pio_ops;
1148 1149
		else
			ops = &rsnd_ssi_dma_ops;
1150

1151
		ret = rsnd_mod_init(priv, rsnd_mod_get(ssi), ops, clk,
1152
				    rsnd_ssi_get_status, RSND_MOD_SSI, i);
1153 1154
		if (ret) {
			of_node_put(np);
1155
			goto rsnd_ssi_probe_done;
1156
		}
1157
skip:
1158
		i++;
1159 1160
	}

1161 1162 1163 1164 1165 1166
	ret = 0;

rsnd_ssi_probe_done:
	of_node_put(node);

	return ret;
1167
}
1168

1169
void rsnd_ssi_remove(struct rsnd_priv *priv)
1170 1171 1172 1173 1174
{
	struct rsnd_ssi *ssi;
	int i;

	for_each_rsnd_ssi(ssi, priv, i) {
1175
		rsnd_mod_quit(rsnd_mod_get(ssi));
1176 1177
	}
}