dma.c 18.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/*
 * Renesas R-Car Audio DMAC support
 *
 * Copyright (C) 2015 Renesas Electronics Corp.
 * Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@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.
 */
11
#include <linux/delay.h>
12
#include <linux/of_dma.h>
13 14
#include "rsnd.h"

15 16 17 18 19 20 21 22 23 24
/*
 * Audio DMAC peri peri register
 */
#define PDMASAR		0x00
#define PDMADAR		0x04
#define PDMACHCR	0x0c

/* PDMACHCR */
#define PDMACHCR_DE		(1 << 0)

25 26 27 28 29 30 31 32 33 34 35 36

struct rsnd_dmaen {
	struct dma_chan		*chan;
};

struct rsnd_dmapp {
	int			dmapp_id;
	u32			chcr;
};

struct rsnd_dma {
	struct rsnd_dma_ops	*ops;
37 38
	struct rsnd_mod		mod;
	struct rsnd_mod		*user_mod;
39 40 41 42 43 44 45 46
	dma_addr_t		src_addr;
	dma_addr_t		dst_addr;
	union {
		struct rsnd_dmaen en;
		struct rsnd_dmapp pp;
	} dma;
};

47 48
struct rsnd_dma_ctrl {
	void __iomem *base;
49
	int dmaen_num;
50 51 52
	int dmapp_num;
};

53
struct rsnd_dma_ops {
54
	char *name;
55 56 57 58 59 60 61 62 63
	void (*start)(struct rsnd_mod *mod,
		      struct rsnd_dai_stream *io,
		      struct rsnd_priv *priv);
	void (*stop)(struct rsnd_mod *mod,
		     struct rsnd_dai_stream *io,
		     struct rsnd_priv *priv);
	void (*quit)(struct rsnd_mod *mod,
		     struct rsnd_dai_stream *io,
		     struct rsnd_priv *priv);
64 65
};

66
#define rsnd_priv_to_dmac(p)	((struct rsnd_dma_ctrl *)(p)->dma)
67
#define rsnd_mod_to_dma(_mod) container_of((_mod), struct rsnd_dma, mod)
68 69
#define rsnd_dma_to_dmaen(dma)	(&(dma)->dma.en)
#define rsnd_dma_to_dmapp(dma)	(&(dma)->dma.pp)
70 71 72 73

/*
 *		Audio DMAC
 */
74 75
static void __rsnd_dmaen_complete(struct rsnd_mod *mod,
				  struct rsnd_dai_stream *io)
76
{
77 78 79
	struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
	bool elapsed = false;
	unsigned long flags;
80 81 82 83 84 85 86 87 88 89 90 91

	/*
	 * Renesas sound Gen1 needs 1 DMAC,
	 * Gen2 needs 2 DMAC.
	 * In Gen2 case, it are Audio-DMAC, and Audio-DMAC-peri-peri.
	 * But, Audio-DMAC-peri-peri doesn't have interrupt,
	 * and this driver is assuming that here.
	 *
	 * If Audio-DMAC-peri-peri has interrpt,
	 * rsnd_dai_pointer_update() will be called twice,
	 * ant it will breaks io->byte_pos
	 */
92 93
	spin_lock_irqsave(&priv->lock, flags);

94
	if (rsnd_io_is_working(io))
95
		elapsed = rsnd_dai_pointer_update(io, io->byte_per_period);
96

97
	spin_unlock_irqrestore(&priv->lock, flags);
98

99 100
	if (elapsed)
		rsnd_dai_period_elapsed(io);
101 102
}

103 104 105 106 107 108 109
static void rsnd_dmaen_complete(void *data)
{
	struct rsnd_mod *mod = data;

	rsnd_mod_interrupt(mod, __rsnd_dmaen_complete);
}

110 111 112
static void rsnd_dmaen_stop(struct rsnd_mod *mod,
			    struct rsnd_dai_stream *io,
			    struct rsnd_priv *priv)
113
{
114
	struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
115 116 117
	struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);

	dmaengine_terminate_all(dmaen->chan);
118 119
}

120 121 122
static void rsnd_dmaen_start(struct rsnd_mod *mod,
			     struct rsnd_dai_stream *io,
			     struct rsnd_priv *priv)
123
{
124
	struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
125
	struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);
126
	struct rsnd_mod *user_mod = dma->user_mod;
127 128 129
	struct snd_pcm_substream *substream = io->substream;
	struct device *dev = rsnd_priv_to_dev(priv);
	struct dma_async_tx_descriptor *desc;
130
	int is_play = rsnd_io_is_play(io);
131

132
	desc = dmaengine_prep_dma_cyclic(dmaen->chan,
133 134 135
					 substream->runtime->dma_addr,
					 snd_pcm_lib_buffer_bytes(substream),
					 snd_pcm_lib_period_bytes(substream),
136
					 is_play ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
137 138 139 140 141 142 143
					 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);

	if (!desc) {
		dev_err(dev, "dmaengine_prep_slave_sg() fail\n");
		return;
	}

144
	desc->callback		= rsnd_dmaen_complete;
145
	desc->callback_param	= user_mod;
146 147 148 149 150 151

	if (dmaengine_submit(desc) < 0) {
		dev_err(dev, "dmaengine_submit() fail\n");
		return;
	}

152
	dma_async_issue_pending(dmaen->chan);
153 154
}

155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
struct dma_chan *rsnd_dma_request_channel(struct device_node *of_node,
					  struct rsnd_mod *mod, char *name)
{
	struct dma_chan *chan;
	struct device_node *np;
	int i = 0;

	for_each_child_of_node(of_node, np) {
		if (i == rsnd_mod_id(mod))
			break;
		i++;
	}

	chan = of_dma_request_slave_channel(np, name);

	of_node_put(np);
	of_node_put(of_node);

	return chan;
}

176 177
static struct dma_chan *rsnd_dmaen_request_channel(struct rsnd_dai_stream *io,
						   struct rsnd_mod *mod_from,
178 179 180 181 182 183 184
						   struct rsnd_mod *mod_to)
{
	if ((!mod_from && !mod_to) ||
	    (mod_from && mod_to))
		return NULL;

	if (mod_from)
185
		return rsnd_mod_dma_req(io, mod_from);
186
	else
187
		return rsnd_mod_dma_req(io, mod_to);
188 189
}

190
static int rsnd_dmaen_attach(struct rsnd_dai_stream *io,
191
			   struct rsnd_dma *dma, int id,
192
			   struct rsnd_mod *mod_from, struct rsnd_mod *mod_to)
193
{
194
	struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);
195
	struct rsnd_priv *priv = rsnd_io_to_priv(io);
196
	struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
197 198 199 200 201
	struct device *dev = rsnd_priv_to_dev(priv);
	struct dma_slave_config cfg = {};
	int is_play = rsnd_io_is_play(io);
	int ret;

202
	if (dmaen->chan) {
203 204 205 206
		dev_err(dev, "it already has dma channel\n");
		return -EIO;
	}

207
	if (dev->of_node) {
208
		dmaen->chan = rsnd_dmaen_request_channel(io, mod_from, mod_to);
209 210
	} else {
		dma_cap_mask_t mask;
211

212 213 214 215
		dma_cap_zero(mask);
		dma_cap_set(DMA_SLAVE, mask);

		dmaen->chan = dma_request_channel(mask, shdma_chan_filter,
216
						  (void *)(uintptr_t)id);
217 218
	}
	if (IS_ERR_OR_NULL(dmaen->chan)) {
219
		dmaen->chan = NULL;
220 221 222
		dev_err(dev, "can't get dma channel\n");
		goto rsnd_dma_channel_err;
	}
223 224

	cfg.direction	= is_play ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM;
225 226
	cfg.src_addr	= dma->src_addr;
	cfg.dst_addr	= dma->dst_addr;
227 228 229
	cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
	cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;

230 231
	dev_dbg(dev, "%s %pad -> %pad\n",
		dma->ops->name,
232
		&cfg.src_addr, &cfg.dst_addr);
233

234
	ret = dmaengine_slave_config(dmaen->chan, &cfg);
235
	if (ret < 0)
236
		goto rsnd_dma_attach_err;
237

238 239
	dmac->dmaen_num++;

240 241
	return 0;

242
rsnd_dma_attach_err:
243
	rsnd_dma_quit(rsnd_mod_get(dma), io, priv);
244 245 246 247 248 249 250 251 252 253 254
rsnd_dma_channel_err:

	/*
	 * DMA failed. try to PIO mode
	 * see
	 *	rsnd_ssi_fallback()
	 *	rsnd_rdai_continuance_probe()
	 */
	return -EAGAIN;
}

255 256 257
static void rsnd_dmaen_quit(struct rsnd_mod *mod,
			    struct rsnd_dai_stream *io,
			    struct rsnd_priv *priv)
258
{
259
	struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
260 261 262 263
	struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);

	if (dmaen->chan)
		dma_release_channel(dmaen->chan);
264

265
	dmaen->chan = NULL;
266 267
}

268
static struct rsnd_dma_ops rsnd_dmaen_ops = {
269
	.name	= "audmac",
270 271 272 273 274
	.start	= rsnd_dmaen_start,
	.stop	= rsnd_dmaen_stop,
	.quit	= rsnd_dmaen_quit,
};

275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
/*
 *		Audio DMAC peri peri
 */
static const u8 gen2_id_table_ssiu[] = {
	0x00, /* SSI00 */
	0x04, /* SSI10 */
	0x08, /* SSI20 */
	0x0c, /* SSI3  */
	0x0d, /* SSI4  */
	0x0e, /* SSI5  */
	0x0f, /* SSI6  */
	0x10, /* SSI7  */
	0x11, /* SSI8  */
	0x12, /* SSI90 */
};
static const u8 gen2_id_table_scu[] = {
	0x2d, /* SCU_SRCI0 */
	0x2e, /* SCU_SRCI1 */
	0x2f, /* SCU_SRCI2 */
	0x30, /* SCU_SRCI3 */
	0x31, /* SCU_SRCI4 */
	0x32, /* SCU_SRCI5 */
	0x33, /* SCU_SRCI6 */
	0x34, /* SCU_SRCI7 */
	0x35, /* SCU_SRCI8 */
	0x36, /* SCU_SRCI9 */
};
static const u8 gen2_id_table_cmd[] = {
	0x37, /* SCU_CMD0 */
	0x38, /* SCU_CMD1 */
};

307 308
static u32 rsnd_dmapp_get_id(struct rsnd_dai_stream *io,
			     struct rsnd_mod *mod)
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
{
	struct rsnd_mod *ssi = rsnd_io_to_mod_ssi(io);
	struct rsnd_mod *src = rsnd_io_to_mod_src(io);
	struct rsnd_mod *dvc = rsnd_io_to_mod_dvc(io);
	const u8 *entry = NULL;
	int id = rsnd_mod_id(mod);
	int size = 0;

	if (mod == ssi) {
		entry = gen2_id_table_ssiu;
		size = ARRAY_SIZE(gen2_id_table_ssiu);
	} else if (mod == src) {
		entry = gen2_id_table_scu;
		size = ARRAY_SIZE(gen2_id_table_scu);
	} else if (mod == dvc) {
		entry = gen2_id_table_cmd;
		size = ARRAY_SIZE(gen2_id_table_cmd);
	}

	if (!entry)
		return 0xFF;

	if (size <= id)
		return 0xFF;

	return entry[id];
}

337 338
static u32 rsnd_dmapp_get_chcr(struct rsnd_dai_stream *io,
			       struct rsnd_mod *mod_from,
339 340
			       struct rsnd_mod *mod_to)
{
341 342
	return	(rsnd_dmapp_get_id(io, mod_from) << 24) +
		(rsnd_dmapp_get_id(io, mod_to) << 16);
343 344 345
}

#define rsnd_dmapp_addr(dmac, dma, reg) \
346 347
	(dmac->base + 0x20 + reg + \
	 (0x10 * rsnd_dma_to_dmapp(dma)->dmapp_id))
348 349
static void rsnd_dmapp_write(struct rsnd_dma *dma, u32 data, u32 reg)
{
350
	struct rsnd_mod *mod = rsnd_mod_get(dma);
351 352 353 354 355 356 357 358 359 360 361
	struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
	struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
	struct device *dev = rsnd_priv_to_dev(priv);

	dev_dbg(dev, "w %p : %08x\n", rsnd_dmapp_addr(dmac, dma, reg), data);

	iowrite32(data, rsnd_dmapp_addr(dmac, dma, reg));
}

static u32 rsnd_dmapp_read(struct rsnd_dma *dma, u32 reg)
{
362
	struct rsnd_mod *mod = rsnd_mod_get(dma);
363 364 365 366 367 368
	struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
	struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);

	return ioread32(rsnd_dmapp_addr(dmac, dma, reg));
}

369 370 371
static void rsnd_dmapp_stop(struct rsnd_mod *mod,
			    struct rsnd_dai_stream *io,
			    struct rsnd_priv *priv)
372
{
373
	struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
374 375 376 377 378 379 380 381 382 383 384
	int i;

	rsnd_dmapp_write(dma, 0, PDMACHCR);

	for (i = 0; i < 1024; i++) {
		if (0 == rsnd_dmapp_read(dma, PDMACHCR))
			return;
		udelay(1);
	}
}

385 386 387
static void rsnd_dmapp_start(struct rsnd_mod *mod,
			     struct rsnd_dai_stream *io,
			     struct rsnd_priv *priv)
388
{
389
	struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
390 391
	struct rsnd_dmapp *dmapp = rsnd_dma_to_dmapp(dma);

392 393
	rsnd_dmapp_write(dma, dma->src_addr,	PDMASAR);
	rsnd_dmapp_write(dma, dma->dst_addr,	PDMADAR);
394
	rsnd_dmapp_write(dma, dmapp->chcr,	PDMACHCR);
395 396
}

397 398 399
static int rsnd_dmapp_attach(struct rsnd_dai_stream *io,
			     struct rsnd_dma *dma, int id,
			     struct rsnd_mod *mod_from, struct rsnd_mod *mod_to)
400
{
401
	struct rsnd_dmapp *dmapp = rsnd_dma_to_dmapp(dma);
402
	struct rsnd_priv *priv = rsnd_io_to_priv(io);
403 404 405
	struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
	struct device *dev = rsnd_priv_to_dev(priv);

406
	dmapp->dmapp_id = dmac->dmapp_num;
407
	dmapp->chcr = rsnd_dmapp_get_chcr(io, mod_from, mod_to) | PDMACHCR_DE;
408 409 410

	dmac->dmapp_num++;

411 412
	dev_dbg(dev, "id/src/dst/chcr = %d/%pad/%pad/%08x\n",
		dmapp->dmapp_id, &dma->src_addr, &dma->dst_addr, dmapp->chcr);
413 414 415 416 417

	return 0;
}

static struct rsnd_dma_ops rsnd_dmapp_ops = {
418
	.name	= "audmac-pp",
419 420 421 422 423 424 425 426 427
	.start	= rsnd_dmapp_start,
	.stop	= rsnd_dmapp_stop,
	.quit	= rsnd_dmapp_stop,
};

/*
 *		Common DMAC Interface
 */

428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
/*
 *	DMA read/write register offset
 *
 *	RSND_xxx_I_N	for Audio DMAC input
 *	RSND_xxx_O_N	for Audio DMAC output
 *	RSND_xxx_I_P	for Audio DMAC peri peri input
 *	RSND_xxx_O_P	for Audio DMAC peri peri output
 *
 *	ex) R-Car H2 case
 *	      mod        / DMAC in    / DMAC out   / DMAC PP in / DMAC pp out
 *	SSI : 0xec541000 / 0xec241008 / 0xec24100c
 *	SSIU: 0xec541000 / 0xec100000 / 0xec100000 / 0xec400000 / 0xec400000
 *	SCU : 0xec500000 / 0xec000000 / 0xec004000 / 0xec300000 / 0xec304000
 *	CMD : 0xec500000 /            / 0xec008000                0xec308000
 */
#define RDMA_SSI_I_N(addr, i)	(addr ##_reg - 0x00300000 + (0x40 * i) + 0x8)
#define RDMA_SSI_O_N(addr, i)	(addr ##_reg - 0x00300000 + (0x40 * i) + 0xc)

#define RDMA_SSIU_I_N(addr, i)	(addr ##_reg - 0x00441000 + (0x1000 * i))
#define RDMA_SSIU_O_N(addr, i)	(addr ##_reg - 0x00441000 + (0x1000 * i))

#define RDMA_SSIU_I_P(addr, i)	(addr ##_reg - 0x00141000 + (0x1000 * i))
#define RDMA_SSIU_O_P(addr, i)	(addr ##_reg - 0x00141000 + (0x1000 * i))

#define RDMA_SRC_I_N(addr, i)	(addr ##_reg - 0x00500000 + (0x400 * i))
#define RDMA_SRC_O_N(addr, i)	(addr ##_reg - 0x004fc000 + (0x400 * i))

#define RDMA_SRC_I_P(addr, i)	(addr ##_reg - 0x00200000 + (0x400 * i))
#define RDMA_SRC_O_P(addr, i)	(addr ##_reg - 0x001fc000 + (0x400 * i))

#define RDMA_CMD_O_N(addr, i)	(addr ##_reg - 0x004f8000 + (0x400 * i))
#define RDMA_CMD_O_P(addr, i)	(addr ##_reg - 0x001f8000 + (0x400 * i))

static dma_addr_t
462
rsnd_gen2_dma_addr(struct rsnd_dai_stream *io,
463 464 465
		   struct rsnd_mod *mod,
		   int is_play, int is_from)
{
466
	struct rsnd_priv *priv = rsnd_io_to_priv(io);
467 468 469 470 471
	struct device *dev = rsnd_priv_to_dev(priv);
	phys_addr_t ssi_reg = rsnd_gen_get_phy_addr(priv, RSND_GEN2_SSI);
	phys_addr_t src_reg = rsnd_gen_get_phy_addr(priv, RSND_GEN2_SCU);
	int is_ssi = !!(rsnd_io_to_mod_ssi(io) == mod);
	int use_src = !!rsnd_io_to_mod_src(io);
472
	int use_cmd = !!rsnd_io_to_mod_dvc(io) ||
473
		      !!rsnd_io_to_mod_mix(io) ||
474
		      !!rsnd_io_to_mod_ctu(io);
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
	int id = rsnd_mod_id(mod);
	struct dma_addr {
		dma_addr_t out_addr;
		dma_addr_t in_addr;
	} dma_addrs[3][2][3] = {
		/* SRC */
		{{{ 0,				0 },
		  /* Capture */
		  { RDMA_SRC_O_N(src, id),	RDMA_SRC_I_P(src, id) },
		  { RDMA_CMD_O_N(src, id),	RDMA_SRC_I_P(src, id) } },
		 /* Playback */
		 {{ 0,				0, },
		  { RDMA_SRC_O_P(src, id),	RDMA_SRC_I_N(src, id) },
		  { RDMA_CMD_O_P(src, id),	RDMA_SRC_I_N(src, id) } }
		},
		/* SSI */
		/* Capture */
		{{{ RDMA_SSI_O_N(ssi, id),	0 },
		  { RDMA_SSIU_O_P(ssi, id),	0 },
		  { RDMA_SSIU_O_P(ssi, id),	0 } },
		 /* Playback */
		 {{ 0,				RDMA_SSI_I_N(ssi, id) },
		  { 0,				RDMA_SSIU_I_P(ssi, id) },
		  { 0,				RDMA_SSIU_I_P(ssi, id) } }
		},
		/* SSIU */
		/* Capture */
		{{{ RDMA_SSIU_O_N(ssi, id),	0 },
		  { RDMA_SSIU_O_P(ssi, id),	0 },
		  { RDMA_SSIU_O_P(ssi, id),	0 } },
		 /* Playback */
		 {{ 0,				RDMA_SSIU_I_N(ssi, id) },
		  { 0,				RDMA_SSIU_I_P(ssi, id) },
		  { 0,				RDMA_SSIU_I_P(ssi, id) } } },
	};

	/* it shouldn't happen */
512
	if (use_cmd && !use_src)
513 514 515
		dev_err(dev, "DVC is selected without SRC\n");

	/* use SSIU or SSI ? */
516
	if (is_ssi && rsnd_ssi_use_busif(io))
517 518 519
		is_ssi++;

	return (is_from) ?
520 521
		dma_addrs[is_ssi][is_play][use_src + use_cmd].out_addr :
		dma_addrs[is_ssi][is_play][use_src + use_cmd].in_addr;
522 523
}

524
static dma_addr_t rsnd_dma_addr(struct rsnd_dai_stream *io,
525 526 527
				struct rsnd_mod *mod,
				int is_play, int is_from)
{
528 529
	struct rsnd_priv *priv = rsnd_io_to_priv(io);

530 531 532 533 534 535 536 537 538
	/*
	 * gen1 uses default DMA addr
	 */
	if (rsnd_is_gen1(priv))
		return 0;

	if (!mod)
		return 0;

539
	return rsnd_gen2_dma_addr(io, mod, is_play, is_from);
540 541
}

542
#define MOD_MAX (RSND_MOD_MAX + 1) /* +Memory */
543
static void rsnd_dma_of_path(struct rsnd_mod *this,
544
			     struct rsnd_dai_stream *io,
545 546 547 548 549 550
			     int is_play,
			     struct rsnd_mod **mod_from,
			     struct rsnd_mod **mod_to)
{
	struct rsnd_mod *ssi = rsnd_io_to_mod_ssi(io);
	struct rsnd_mod *src = rsnd_io_to_mod_src(io);
551
	struct rsnd_mod *ctu = rsnd_io_to_mod_ctu(io);
552
	struct rsnd_mod *mix = rsnd_io_to_mod_mix(io);
553 554
	struct rsnd_mod *dvc = rsnd_io_to_mod_dvc(io);
	struct rsnd_mod *mod[MOD_MAX];
555 556 557
	struct rsnd_mod *mod_start, *mod_end;
	struct rsnd_priv *priv = rsnd_mod_to_priv(this);
	struct device *dev = rsnd_priv_to_dev(priv);
558
	int nr, i, idx;
559

560 561
	if (!ssi)
		return;
562

563 564
	nr = 0;
	for (i = 0; i < MOD_MAX; i++) {
565
		mod[i] = NULL;
566 567
		nr += !!rsnd_io_to_mod(io, i);
	}
568 569

	/*
570 571 572 573 574 575 576
	 * [S] -*-> [E]
	 * [S] -*-> SRC -o-> [E]
	 * [S] -*-> SRC -> DVC -o-> [E]
	 * [S] -*-> SRC -> CTU -> MIX -> DVC -o-> [E]
	 *
	 * playback	[S] = mem
	 *		[E] = SSI
577
	 *
578 579
	 * capture	[S] = SSI
	 *		[E] = mem
580
	 *
581 582
	 * -*->		Audio DMAC
	 * -o->		Audio DMAC peri peri
583
	 */
584 585
	mod_start	= (is_play) ? NULL : ssi;
	mod_end		= (is_play) ? ssi  : NULL;
586

587 588
	idx = 0;
	mod[idx++] = mod_start;
589 590
	for (i = 1; i < nr; i++) {
		if (src) {
591
			mod[idx++] = src;
592
			src = NULL;
593
		} else if (ctu) {
594
			mod[idx++] = ctu;
595
			ctu = NULL;
596
		} else if (mix) {
597
			mod[idx++] = mix;
598
			mix = NULL;
599
		} else if (dvc) {
600
			mod[idx++] = dvc;
601 602 603
			dvc = NULL;
		}
	}
604
	mod[idx] = mod_end;
605

606 607 608 609 610 611 612
	/*
	 *		| SSI | SRC |
	 * -------------+-----+-----+
	 *  is_play	|  o  |  *  |
	 * !is_play	|  *  |  o  |
	 */
	if ((this == ssi) == (is_play)) {
613 614
		*mod_from	= mod[idx - 1];
		*mod_to		= mod[idx];
615
	} else {
616 617 618 619 620 621
		*mod_from	= mod[0];
		*mod_to		= mod[1];
	}

	dev_dbg(dev, "module connection (this is %s[%d])\n",
		rsnd_mod_name(this), rsnd_mod_id(this));
622
	for (i = 0; i <= idx; i++) {
623 624 625 626
		dev_dbg(dev, "  %s[%d]%s\n",
		       rsnd_mod_name(mod[i]), rsnd_mod_id(mod[i]),
		       (mod[i] == *mod_from) ? " from" :
		       (mod[i] == *mod_to)   ? " to" : "");
627 628 629
	}
}

630 631 632 633
void rsnd_dma_stop(struct rsnd_mod *mod,
		   struct rsnd_dai_stream *io,
		   struct rsnd_priv *priv)

634
{
635 636
	struct rsnd_dma *dma = rsnd_mod_to_dma(mod);

637
	dma->ops->stop(mod, io, priv);
638 639
}

640 641 642
void rsnd_dma_start(struct rsnd_mod *mod,
		    struct rsnd_dai_stream *io,
		    struct rsnd_priv *priv)
643
{
644 645
	struct rsnd_dma *dma = rsnd_mod_to_dma(mod);

646
	dma->ops->start(mod, io, priv);
647 648
}

649 650 651
void rsnd_dma_quit(struct rsnd_mod *mod,
		   struct rsnd_dai_stream *io,
		   struct rsnd_priv *priv)
652
{
653
	struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
654 655 656 657 658
	struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);

	if (!dmac)
		return;

659
	dma->ops->quit(mod, io, priv);
660 661
}

662 663 664 665
static struct rsnd_mod_ops rsnd_dma_ops = {
};

struct rsnd_mod *rsnd_dma_attach(struct rsnd_dai_stream *io,
666
				 struct rsnd_mod *mod, int id)
667
{
668
	struct rsnd_mod *dma_mod;
669 670
	struct rsnd_mod *mod_from = NULL;
	struct rsnd_mod *mod_to = NULL;
671
	struct rsnd_priv *priv = rsnd_io_to_priv(io);
672
	struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
673
	struct rsnd_dma *dma;
674
	struct device *dev = rsnd_priv_to_dev(priv);
675 676
	int (*attach)(struct rsnd_dai_stream *io, struct rsnd_dma *dma, int id,
		      struct rsnd_mod *mod_from, struct rsnd_mod *mod_to);
677
	int is_play = rsnd_io_is_play(io);
678
	int ret, dma_id;
679

680 681 682 683 684 685 686
	/*
	 * DMA failed. try to PIO mode
	 * see
	 *	rsnd_ssi_fallback()
	 *	rsnd_rdai_continuance_probe()
	 */
	if (!dmac)
687 688 689 690 691 692
		return ERR_PTR(-EAGAIN);

	dma = devm_kzalloc(dev, sizeof(*dma), GFP_KERNEL);
	if (!dma)
		return ERR_PTR(-ENOMEM);

693
	rsnd_dma_of_path(mod, io, is_play, &mod_from, &mod_to);
694

695
	dma->user_mod = mod;
696 697
	dma->src_addr = rsnd_dma_addr(io, mod_from, is_play, 1);
	dma->dst_addr = rsnd_dma_addr(io, mod_to,   is_play, 0);
698

699
	/* for Gen2 */
700
	if (mod_from && mod_to) {
701
		dma->ops = &rsnd_dmapp_ops;
702
		attach	= rsnd_dmapp_attach;
703
		dma_id	= dmac->dmapp_num;
704
	} else {
705
		dma->ops = &rsnd_dmaen_ops;
706
		attach	= rsnd_dmaen_attach;
707
		dma_id	= dmac->dmaen_num;
708
	}
709 710

	/* for Gen1, overwrite */
711
	if (rsnd_is_gen1(priv)) {
712
		dma->ops = &rsnd_dmaen_ops;
713
		attach	= rsnd_dmaen_attach;
714
		dma_id	= dmac->dmaen_num;
715
	}
716

717 718
	dma_mod = rsnd_mod_get(dma);

719 720 721 722 723
	dev_dbg(dev, "%s %s[%d] -> %s[%d]\n",
		dma->ops->name,
		rsnd_mod_name(mod_from), rsnd_mod_id(mod_from),
		rsnd_mod_name(mod_to),   rsnd_mod_id(mod_to));

724 725 726 727 728
	ret = rsnd_mod_init(priv, dma_mod,
			    &rsnd_dma_ops, NULL, 0, dma_id);
	if (ret < 0)
		return ERR_PTR(ret);

729
	ret = attach(io, dma, id, mod_from, mod_to);
730 731 732
	if (ret < 0)
		return ERR_PTR(ret);

733
	return rsnd_mod_get(dma);
734
}
735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756

int rsnd_dma_probe(struct platform_device *pdev,
		   const struct rsnd_of_data *of_data,
		   struct rsnd_priv *priv)
{
	struct device *dev = rsnd_priv_to_dev(priv);
	struct rsnd_dma_ctrl *dmac;
	struct resource *res;

	/*
	 * for Gen1
	 */
	if (rsnd_is_gen1(priv))
		return 0;

	/*
	 * for Gen2
	 */
	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "audmapp");
	dmac = devm_kzalloc(dev, sizeof(*dmac), GFP_KERNEL);
	if (!dmac || !res) {
		dev_err(dev, "dma allocate failed\n");
757
		return 0; /* it will be PIO mode */
758 759 760 761 762 763 764 765 766 767 768
	}

	dmac->dmapp_num = 0;
	dmac->base = devm_ioremap_resource(dev, res);
	if (IS_ERR(dmac->base))
		return PTR_ERR(dmac->base);

	priv->dma = dmac;

	return 0;
}