ssi.c 20.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * 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.
 */
#include <linux/delay.h>
#include "rsnd.h"
#define RSND_SSI_NAME_SIZE 16

/*
 * SSICR
 */
#define	FORCE		(1 << 31)	/* Fixed */
22
#define	DMEN		(1 << 28)	/* DMA Enable */
23 24 25 26
#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 */
27 28 29
#define	CHNL_4		(1 << 22)	/* Channels */
#define	CHNL_6		(2 << 22)	/* Channels */
#define	CHNL_8		(3 << 22)	/* Channels */
30 31 32 33 34 35 36 37 38 39 40 41 42 43
#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 */
44
#define	PDTA		(1 <<  9)	/* Parallel Data Alignment */
45 46 47 48 49 50 51 52 53 54 55 56 57
#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 */

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

64 65
#define SSI_NAME "ssi"

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

70
	u32 flags;
71 72
	u32 cr_own;
	u32 cr_clk;
73
	u32 cr_mode;
74
	u32 wsr;
75
	int chan;
76
	int rate;
77
	int err;
78
	int irq;
79 80 81
	unsigned int usrcnt;
};

82 83 84 85
/* flags */
#define RSND_SSI_CLK_PIN_SHARE		(1 << 0)
#define RSND_SSI_NO_BUSIF		(1 << 1) /* SSI+DMA without BUSIF */

86 87 88
#define for_each_rsnd_ssi(pos, priv, i)					\
	for (i = 0;							\
	     (i < rsnd_ssi_nr(priv)) &&					\
89
		((pos) = ((struct rsnd_ssi *)(priv)->ssi + i));		\
90 91
	     i++)

92
#define rsnd_ssi_get(priv, id) ((struct rsnd_ssi *)(priv->ssi) + id)
93
#define rsnd_ssi_to_dma(mod) ((ssi)->dma)
94
#define rsnd_ssi_nr(priv) ((priv)->ssi_nr)
95
#define rsnd_mod_to_ssi(_mod) container_of((_mod), struct rsnd_ssi, mod)
96
#define rsnd_ssi_mode_flags(p) ((p)->flags)
97
#define rsnd_ssi_is_parent(ssi, io) ((ssi) == rsnd_io_to_mod_ssip(io))
98
#define rsnd_ssi_is_multi_slave(ssi, io) ((mod) != rsnd_io_to_mod_ssi(io))
99

100
int rsnd_ssi_use_busif(struct rsnd_dai_stream *io)
101
{
102
	struct rsnd_mod *mod = rsnd_io_to_mod_ssi(io);
103 104 105
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
	int use_busif = 0;

106 107 108
	if (!rsnd_ssi_is_dma_mode(mod))
		return 0;

109 110 111 112 113 114 115 116
	if (!(rsnd_ssi_mode_flags(ssi) & RSND_SSI_NO_BUSIF))
		use_busif = 1;
	if (rsnd_io_to_mod_src(io))
		use_busif = 1;

	return use_busif;
}

117 118 119 120 121 122 123 124 125 126
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);
}

127 128 129 130 131 132 133 134 135
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++) {
136
		status = rsnd_ssi_status_get(mod);
137 138 139 140 141 142 143 144 145
		if (status & bit)
			return;

		udelay(50);
	}

	dev_warn(dev, "status check failed\n");
}

146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
static int rsnd_ssi_irq_enable(struct rsnd_mod *ssi_mod)
{
	struct rsnd_priv *priv = rsnd_mod_to_priv(ssi_mod);

	if (rsnd_is_gen1(priv))
		return 0;

	/* enable SSI interrupt if Gen2 */
	rsnd_mod_write(ssi_mod, SSI_INT_ENABLE,
		       rsnd_ssi_is_dma_mode(ssi_mod) ?
		       0x0e000000 : 0x0f000000);

	return 0;
}

static int rsnd_ssi_irq_disable(struct rsnd_mod *ssi_mod)
{
	struct rsnd_priv *priv = rsnd_mod_to_priv(ssi_mod);

	if (rsnd_is_gen1(priv))
		return 0;

	/* disable SSI interrupt if Gen2 */
	rsnd_mod_write(ssi_mod, SSI_INT_ENABLE, 0x00000000);

	return 0;
}

174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
u32 rsnd_ssi_multi_slaves(struct rsnd_dai_stream *io)
{
	struct rsnd_mod *mod;
	struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
	struct rsnd_priv *priv = rsnd_io_to_priv(io);
	struct device *dev = rsnd_priv_to_dev(priv);
	enum rsnd_mod_type types[] = {
		RSND_MOD_SSIM1,
		RSND_MOD_SSIM2,
		RSND_MOD_SSIM3,
	};
	int i, mask;

	switch (runtime->channels) {
	case 2: /* Multi channel is not needed for Stereo */
		return 0;
	case 6:
		break;
	default:
		dev_err(dev, "unsupported channel\n");
		return 0;
	}

	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;
}

209
static int rsnd_ssi_master_clk_start(struct rsnd_ssi *ssi,
210
				     struct rsnd_dai_stream *io)
211
{
212
	struct rsnd_priv *priv = rsnd_io_to_priv(io);
213
	struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
214
	struct device *dev = rsnd_priv_to_dev(priv);
215
	struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
216
	struct rsnd_mod *mod = rsnd_mod_get(ssi);
217
	struct rsnd_mod *ssi_parent_mod = rsnd_io_to_mod_ssip(io);
218
	int slots = rsnd_get_slot_width(io);
219
	int j, ret;
220 221 222 223
	int ssi_clk_mul_table[] = {
		1, 2, 4, 8, 16, 6, 12,
	};
	unsigned int main_rate;
224
	unsigned int rate = rsnd_src_get_ssi_rate(priv, io, runtime);
225

226 227 228 229 230 231
	if (!rsnd_rdai_is_clk_master(rdai))
		return 0;

	if (ssi_parent_mod && !rsnd_ssi_is_parent(mod, io))
		return 0;

232 233 234
	if (rsnd_ssi_is_multi_slave(mod, io))
		return 0;

235 236 237 238 239 240 241 242 243
	if (ssi->usrcnt > 1) {
		if (ssi->rate != rate) {
			dev_err(dev, "SSI parent/child should use same rate\n");
			return -EINVAL;
		}

		return 0;
	}

244 245 246
	/*
	 * Find best clock, and try to start ADG
	 */
247 248 249 250
	for (j = 0; j < ARRAY_SIZE(ssi_clk_mul_table); j++) {

		/*
		 * this driver is assuming that
251
		 * system word is 32bit x slots
252 253
		 * see rsnd_ssi_init()
		 */
254
		main_rate = rate * 32 * slots * ssi_clk_mul_table[j];
255 256 257 258 259

		ret = rsnd_adg_ssi_clk_try_start(mod, main_rate);
		if (0 == ret) {
			ssi->cr_clk	= FORCE | SWL_32 |
				SCKD | SWSD | CKDV(j);
260
			ssi->wsr = CONT;
261

262 263
			ssi->rate = rate;

264 265 266 267 268
			dev_dbg(dev, "%s[%d] outputs %u Hz\n",
				rsnd_mod_name(mod),
				rsnd_mod_id(mod), rate);

			return 0;
269 270 271 272 273 274 275
		}
	}

	dev_err(dev, "unsupported clock rate\n");
	return -EIO;
}

276 277
static void rsnd_ssi_master_clk_stop(struct rsnd_ssi *ssi,
				     struct rsnd_dai_stream *io)
278
{
279
	struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
280
	struct rsnd_mod *mod = rsnd_mod_get(ssi);
281
	struct rsnd_mod *ssi_parent_mod = rsnd_io_to_mod_ssip(io);
282

283
	if (!rsnd_rdai_is_clk_master(rdai))
284 285
		return;

286 287
	if (ssi_parent_mod && !rsnd_ssi_is_parent(mod, io))
		return;
288

289 290
	if (ssi->usrcnt > 1)
		return;
291

292 293
	ssi->cr_clk	= 0;
	ssi->rate	= 0;
294

295
	rsnd_adg_ssi_clk_stop(mod);
296 297
}

298 299 300 301 302 303 304
static int rsnd_ssi_config_init(struct rsnd_ssi *ssi,
				struct rsnd_dai_stream *io)
{
	struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
	struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
	u32 cr_own;
	u32 cr_mode;
305
	u32 wsr;
306 307
	int is_tdm;

308
	is_tdm = (rsnd_get_slot_width(io) >= 6) ? 1 : 0;
309 310 311 312 313 314 315 316 317

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

	if (rdai->bit_clk_inv)
		cr_own |= SCKP;
318
	if (rdai->frm_clk_inv ^ is_tdm)
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
		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;

	switch (runtime->sample_bits) {
	case 16:
		cr_own |= DWL_16;
		break;
	case 32:
		cr_own |= DWL_24;
		break;
	default:
		return -EINVAL;
	}

	if (rsnd_ssi_is_dma_mode(rsnd_mod_get(ssi))) {
		cr_mode = UIEN | OIEN |	/* over/under run */
			  DMEN;		/* DMA : enable DMA */
	} else {
		cr_mode = DIEN;		/* PIO : enable Data interrupt */
	}

345 346 347 348 349 350
	/*
	 * TDM Extend Mode
	 * see
	 *	rsnd_ssiu_init_gen2()
	 */
	wsr = ssi->wsr;
351
	if (is_tdm) {
352 353 354 355
		wsr	|= WS_MODE;
		cr_own	|= CHNL_8;
	}

356 357
	ssi->cr_own	= cr_own;
	ssi->cr_mode	= cr_mode;
358
	ssi->wsr	= wsr;
359 360 361 362

	return 0;
}

363 364 365 366
/*
 *	SSI mod common functions
 */
static int rsnd_ssi_init(struct rsnd_mod *mod,
367
			 struct rsnd_dai_stream *io,
368
			 struct rsnd_priv *priv)
369 370
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
371 372 373 374 375 376 377 378 379 380 381 382
	int ret;

	ssi->usrcnt++;

	rsnd_mod_power_on(mod);

	ret = rsnd_ssi_master_clk_start(ssi, io);
	if (ret < 0)
		return ret;

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

384 385 386
	ret = rsnd_ssi_config_init(ssi, io);
	if (ret < 0)
		return ret;
387

388 389
	ssi->err	= -1; /* ignore 1st error */

390 391 392 393 394
	/* clear error status */
	rsnd_ssi_status_clear(mod);

	rsnd_ssi_irq_enable(mod);

395 396 397 398
	return 0;
}

static int rsnd_ssi_quit(struct rsnd_mod *mod,
399
			 struct rsnd_dai_stream *io,
400
			 struct rsnd_priv *priv)
401 402 403 404
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
	struct device *dev = rsnd_priv_to_dev(priv);

405 406 407 408 409
	if (!ssi->usrcnt) {
		dev_err(dev, "%s[%d] usrcnt error\n",
			rsnd_mod_name(mod), rsnd_mod_id(mod));
		return -EIO;
	}
410

411 412 413 414 415
	if (!rsnd_ssi_is_parent(mod, io)) {
		if (ssi->err > 0)
			dev_warn(dev, "%s[%d] under/over flow err = %d\n",
				 rsnd_mod_name(mod), rsnd_mod_id(mod),
				 ssi->err);
416

417 418
		ssi->cr_own	= 0;
		ssi->err	= 0;
419

420 421
		rsnd_ssi_irq_disable(mod);
	}
422 423 424 425 426 427 428

	rsnd_ssi_master_clk_stop(ssi, io);

	rsnd_mod_power_off(mod);

	ssi->usrcnt--;

429 430 431
	return 0;
}

432
static int rsnd_ssi_hw_params(struct rsnd_mod *mod,
433
			      struct rsnd_dai_stream *io,
434 435 436 437 438 439 440 441 442 443
			      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);

	/*
	 * Already working.
	 * It will happen if SSI has parent/child connection.
	 */
444
	if (ssi->usrcnt > 1) {
445 446 447 448 449 450 451 452 453 454 455 456 457
		/*
		 * it is error if child <-> parent SSI uses
		 * different channels.
		 */
		if (ssi->chan != chan)
			return -EIO;
	}

	ssi->chan = chan;

	return 0;
}

458
static u32 rsnd_ssi_record_error(struct rsnd_ssi *ssi)
459
{
460
	struct rsnd_mod *mod = rsnd_mod_get(ssi);
461
	u32 status = rsnd_ssi_status_get(mod);
462

463
	/* under/over flow error */
464
	if (status & (UIRQ | OIRQ))
465 466
		ssi->err++;

467
	return status;
468 469
}

470 471 472 473 474 475 476 477 478
static int __rsnd_ssi_start(struct rsnd_mod *mod,
			    struct rsnd_dai_stream *io,
			    struct rsnd_priv *priv)
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
	u32 cr;

	cr  =	ssi->cr_own	|
		ssi->cr_clk	|
479 480 481 482 483 484 485 486
		ssi->cr_mode;

	/*
	 * EN will be set via SSIU :: SSI_CONTROL
	 * if Multi channel mode
	 */
	if (!rsnd_ssi_multi_slaves(io))
		cr |= EN;
487 488

	rsnd_mod_write(mod, SSICR, cr);
489
	rsnd_mod_write(mod, SSIWSR, ssi->wsr);
490 491 492 493

	return 0;
}

494
static int rsnd_ssi_start(struct rsnd_mod *mod,
495
			  struct rsnd_dai_stream *io,
496
			  struct rsnd_priv *priv)
497 498 499 500 501 502 503 504 505 506 507 508 509
{
	/*
	 * no limit to start
	 * see also
	 *	rsnd_ssi_stop
	 *	rsnd_ssi_interrupt
	 */
	return __rsnd_ssi_start(mod, io, priv);
}

static int __rsnd_ssi_stop(struct rsnd_mod *mod,
			   struct rsnd_dai_stream *io,
			   struct rsnd_priv *priv)
510 511
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
512 513 514 515 516 517 518 519
	u32 cr;

	/*
	 * disable all IRQ,
	 * and, wait all data was sent
	 */
	cr  =	ssi->cr_own	|
		ssi->cr_clk;
520

521 522
	rsnd_mod_write(mod, SSICR, cr | EN);
	rsnd_ssi_status_check(mod, DIRQ);
523

524 525 526 527 528 529
	/*
	 * disable SSI,
	 * and, wait idle state
	 */
	rsnd_mod_write(mod, SSICR, cr);	/* disabled all */
	rsnd_ssi_status_check(mod, IIRQ);
530 531 532 533 534

	return 0;
}

static int rsnd_ssi_stop(struct rsnd_mod *mod,
535
			 struct rsnd_dai_stream *io,
536
			 struct rsnd_priv *priv)
537 538 539
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);

540 541 542 543 544 545 546 547
	/*
	 * don't stop if not last user
	 * see also
	 *	rsnd_ssi_start
	 *	rsnd_ssi_interrupt
	 */
	if (ssi->usrcnt > 1)
		return 0;
548

549
	return __rsnd_ssi_stop(mod, io, priv);
550 551
}

552 553
static void __rsnd_ssi_interrupt(struct rsnd_mod *mod,
				 struct rsnd_dai_stream *io)
554
{
555
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
556
	struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
557
	struct device *dev = rsnd_priv_to_dev(priv);
558
	int is_dma = rsnd_ssi_is_dma_mode(mod);
559
	u32 status;
560
	bool elapsed = false;
561 562

	spin_lock(&priv->lock);
563

564
	/* ignore all cases if not working */
565
	if (!rsnd_io_is_working(io))
566 567
		goto rsnd_ssi_interrupt_out;

568
	status = rsnd_ssi_record_error(ssi);
569 570

	/* PIO only */
571
	if (!is_dma && (status & DIRQ)) {
572 573 574 575 576 577 578 579 580
		struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
		u32 *buf = (u32 *)(runtime->dma_area +
				   rsnd_dai_pointer_offset(io, 0));

		/*
		 * 8/16/32 data can be assesse to TDR/RDR register
		 * directly as 32bit data
		 * see rsnd_ssi_init()
		 */
581
		if (rsnd_io_is_play(io))
582
			rsnd_mod_write(mod, SSITDR, *buf);
583
		else
584
			*buf = rsnd_mod_read(mod, SSIRDR);
585

586
		elapsed = rsnd_dai_pointer_update(io, sizeof(*buf));
587
	}
588

589 590
	/* DMA only */
	if (is_dma && (status & (UIRQ | OIRQ))) {
591 592 593 594 595
		/*
		 * restart SSI
		 */
		dev_dbg(dev, "%s[%d] restart\n",
			rsnd_mod_name(mod), rsnd_mod_id(mod));
596

597 598
		__rsnd_ssi_stop(mod, io, priv);
		__rsnd_ssi_start(mod, io, priv);
599 600
	}

601 602 603 604 605 606 607
	if (ssi->err > 1024) {
		rsnd_ssi_irq_disable(mod);

		dev_warn(dev, "no more %s[%d] restart\n",
			 rsnd_mod_name(mod), rsnd_mod_id(mod));
	}

608
	rsnd_ssi_status_clear(mod);
609 610 611
rsnd_ssi_interrupt_out:
	spin_unlock(&priv->lock);

612 613
	if (elapsed)
		rsnd_dai_period_elapsed(io);
614 615 616 617 618 619 620
}

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

	rsnd_mod_interrupt(mod, __rsnd_ssi_interrupt);
621

622
	return IRQ_HANDLED;
623 624
}

625 626 627
/*
 *		SSI PIO
 */
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
static void rsnd_ssi_parent_attach(struct rsnd_mod *mod,
				   struct rsnd_dai_stream *io,
				   struct rsnd_priv *priv)
{
	if (!__rsnd_ssi_is_pin_sharing(mod))
		return;

	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;
	}
}

649 650 651
static int rsnd_ssi_common_probe(struct rsnd_mod *mod,
				 struct rsnd_dai_stream *io,
				 struct rsnd_priv *priv)
652 653 654 655 656
{
	struct device *dev = rsnd_priv_to_dev(priv);
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
	int ret;

657 658 659 660 661 662 663
	/*
	 * SSIP/SSIU/IRQ are not needed on
	 * SSI Multi slaves
	 */
	if (rsnd_ssi_is_multi_slave(mod, io))
		return 0;

664 665
	rsnd_ssi_parent_attach(mod, io, priv);

666 667 668 669
	ret = rsnd_ssiu_attach(io, mod);
	if (ret < 0)
		return ret;

670
	ret = devm_request_irq(dev, ssi->irq,
671
			       rsnd_ssi_interrupt,
672
			       IRQF_SHARED,
673
			       dev_name(dev), mod);
674

675 676 677
	return ret;
}

678
static struct rsnd_mod_ops rsnd_ssi_pio_ops = {
679
	.name	= SSI_NAME,
680
	.probe	= rsnd_ssi_common_probe,
681 682
	.init	= rsnd_ssi_init,
	.quit	= rsnd_ssi_quit,
683 684
	.start	= rsnd_ssi_start,
	.stop	= rsnd_ssi_stop,
685
	.hw_params = rsnd_ssi_hw_params,
686 687
};

688
static int rsnd_ssi_dma_probe(struct rsnd_mod *mod,
689
			      struct rsnd_dai_stream *io,
690
			      struct rsnd_priv *priv)
691 692
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
693
	int dma_id = 0; /* not needed */
694 695
	int ret;

696 697 698 699 700 701 702
	/*
	 * SSIP/SSIU/IRQ/DMA are not needed on
	 * SSI Multi slaves
	 */
	if (rsnd_ssi_is_multi_slave(mod, io))
		return 0;

703
	ret = rsnd_ssi_common_probe(mod, io, priv);
704
	if (ret)
705
		return ret;
706

707 708
	/* SSI probe might be called many times in MUX multi path */
	ret = rsnd_dma_attach(io, mod, &ssi->dma, dma_id);
709

710 711 712 713
	return ret;
}

static int rsnd_ssi_dma_remove(struct rsnd_mod *mod,
714
			       struct rsnd_dai_stream *io,
715
			       struct rsnd_priv *priv)
716
{
717 718
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
	struct device *dev = rsnd_priv_to_dev(priv);
719
	int irq = ssi->irq;
720 721

	/* PIO will request IRQ again */
722
	devm_free_irq(dev, irq, mod);
723

724 725 726 727
	return 0;
}

static int rsnd_ssi_fallback(struct rsnd_mod *mod,
728
			     struct rsnd_dai_stream *io,
729
			     struct rsnd_priv *priv)
730
{
731 732 733 734 735 736 737 738 739 740 741 742 743 744
	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));

745 746 747
	return 0;
}

748 749
static struct dma_chan *rsnd_ssi_dma_req(struct rsnd_dai_stream *io,
					 struct rsnd_mod *mod)
750
{
751 752 753 754
	struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
	int is_play = rsnd_io_is_play(io);
	char *name;

755
	if (rsnd_ssi_use_busif(io))
756 757 758 759 760 761
		name = is_play ? "rxu" : "txu";
	else
		name = is_play ? "rx" : "tx";

	return rsnd_dma_request_channel(rsnd_ssi_of_node(priv),
					mod, name);
762 763
}

764
static struct rsnd_mod_ops rsnd_ssi_dma_ops = {
765
	.name	= SSI_NAME,
766
	.dma_req = rsnd_ssi_dma_req,
767 768
	.probe	= rsnd_ssi_dma_probe,
	.remove	= rsnd_ssi_dma_remove,
769 770
	.init	= rsnd_ssi_init,
	.quit	= rsnd_ssi_quit,
771 772
	.start	= rsnd_ssi_start,
	.stop	= rsnd_ssi_stop,
773
	.fallback = rsnd_ssi_fallback,
774
	.hw_params = rsnd_ssi_hw_params,
775 776
};

777 778 779 780 781 782
int rsnd_ssi_is_dma_mode(struct rsnd_mod *mod)
{
	return mod->ops == &rsnd_ssi_dma_ops;
}


783 784 785 786
/*
 *		Non SSI
 */
static struct rsnd_mod_ops rsnd_ssi_non_ops = {
787
	.name	= SSI_NAME,
788 789 790 791 792
};

/*
 *		ssi mod function
 */
793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
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);
			rsnd_set_slot(rdai, 2 * (i + 1), (i + 1));
			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);
}

844 845
struct rsnd_mod *rsnd_ssi_mod_get(struct rsnd_priv *priv, int id)
{
846 847
	if (WARN_ON(id < 0 || id >= rsnd_ssi_nr(priv)))
		id = 0;
848

849
	return rsnd_mod_get(rsnd_ssi_get(priv, id));
850 851
}

852
int __rsnd_ssi_is_pin_sharing(struct rsnd_mod *mod)
853 854 855 856 857 858
{
	struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);

	return !!(rsnd_ssi_mode_flags(ssi) & RSND_SSI_CLK_PIN_SHARE);
}

859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893
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);
}

894
int rsnd_ssi_probe(struct rsnd_priv *priv)
895
{
896 897
	struct device_node *node;
	struct device_node *np;
898 899 900 901 902
	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];
903
	int i, nr, ret;
904

905 906 907 908 909 910 911 912 913
	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;
	}
914

915
	ssi	= devm_kzalloc(dev, sizeof(*ssi) * nr, GFP_KERNEL);
916 917 918 919
	if (!ssi) {
		ret = -ENOMEM;
		goto rsnd_ssi_probe_done;
	}
920

921 922
	priv->ssi	= ssi;
	priv->ssi_nr	= nr;
923

924 925 926
	i = 0;
	for_each_child_of_node(node, np) {
		ssi = rsnd_ssi_get(priv, i);
927

928 929
		snprintf(name, RSND_SSI_NAME_SIZE, "%s.%d",
			 SSI_NAME, i);
930

931
		clk = devm_clk_get(dev, name);
932 933 934 935
		if (IS_ERR(clk)) {
			ret = PTR_ERR(clk);
			goto rsnd_ssi_probe_done;
		}
936

937 938 939 940 941 942 943 944 945 946 947
		if (of_get_property(np, "shared-pin", NULL))
			ssi->flags |= RSND_SSI_CLK_PIN_SHARE;

		if (of_get_property(np, "no-busif", NULL))
			ssi->flags |= RSND_SSI_NO_BUSIF;

		ssi->irq = irq_of_parse_and_map(np, 0);
		if (!ssi->irq) {
			ret = -EINVAL;
			goto rsnd_ssi_probe_done;
		}
948 949

		ops = &rsnd_ssi_non_ops;
950
		if (of_get_property(np, "pio-transfer", NULL))
951
			ops = &rsnd_ssi_pio_ops;
952 953
		else
			ops = &rsnd_ssi_dma_ops;
954

955
		ret = rsnd_mod_init(priv, rsnd_mod_get(ssi), ops, clk,
956
				    rsnd_ssi_get_status, RSND_MOD_SSI, i);
957
		if (ret)
958 959 960
			goto rsnd_ssi_probe_done;

		i++;
961 962
	}

963 964 965 966 967 968
	ret = 0;

rsnd_ssi_probe_done:
	of_node_put(node);

	return ret;
969
}
970

971
void rsnd_ssi_remove(struct rsnd_priv *priv)
972 973 974 975 976
{
	struct rsnd_ssi *ssi;
	int i;

	for_each_rsnd_ssi(ssi, priv, i) {
977
		rsnd_mod_quit(rsnd_mod_get(ssi));
978 979
	}
}