core.c 36.6 KB
Newer Older
1
/*
2
 * Core driver for the Synopsys DesignWare DMA Controller
3 4
 *
 * Copyright (C) 2007-2008 Atmel Corporation
5
 * Copyright (C) 2010-2011 ST Microelectronics
6
 * Copyright (C) 2013 Intel Corporation
7 8 9 10 11
 *
 * 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.
 */
12

13
#include <linux/bitops.h>
14 15 16
#include <linux/delay.h>
#include <linux/dmaengine.h>
#include <linux/dma-mapping.h>
17
#include <linux/dmapool.h>
18
#include <linux/err.h>
19 20 21 22 23 24
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/mm.h>
#include <linux/module.h>
#include <linux/slab.h>
A
Andy Shevchenko 已提交
25
#include <linux/pm_runtime.h>
26

27
#include "../dmaengine.h"
28
#include "internal.h"
29 30 31 32 33 34 35

/*
 * This supports the Synopsys "DesignWare AHB Central DMA Controller",
 * (DW_ahb_dmac) which is used with various AMBA 2.0 systems (not all
 * of which use ARM any more).  See the "Databook" from Synopsys for
 * information beyond what licensees probably provide.
 *
36 37
 * The driver has been tested with the Atmel AT32AP7000, which does not
 * support descriptor writeback.
38 39
 */

40 41 42
#define DWC_DEFAULT_CTLLO(_chan) ({				\
		struct dw_dma_chan *_dwc = to_dw_dma_chan(_chan);	\
		struct dma_slave_config	*_sconfig = &_dwc->dma_sconfig;	\
43 44
		bool _is_slave = is_slave_direction(_dwc->direction);	\
		u8 _smsize = _is_slave ? _sconfig->src_maxburst :	\
45
			DW_DMA_MSIZE_16;			\
46
		u8 _dmsize = _is_slave ? _sconfig->dst_maxburst :	\
47
			DW_DMA_MSIZE_16;			\
48
		u8 _dms = (_dwc->direction == DMA_MEM_TO_DEV) ?		\
49
			_dwc->dws.p_master : _dwc->dws.m_master;	\
50
		u8 _sms = (_dwc->direction == DMA_DEV_TO_MEM) ?		\
51
			_dwc->dws.p_master : _dwc->dws.m_master;	\
52
								\
53 54
		(DWC_CTLL_DST_MSIZE(_dmsize)			\
		 | DWC_CTLL_SRC_MSIZE(_smsize)			\
55 56
		 | DWC_CTLL_LLP_D_EN				\
		 | DWC_CTLL_LLP_S_EN				\
57 58
		 | DWC_CTLL_DMS(_dms)				\
		 | DWC_CTLL_SMS(_sms));				\
59
	})
60

61 62 63 64 65 66 67
/* The set of bus widths supported by the DMA controller */
#define DW_DMA_BUSWIDTHS			  \
	BIT(DMA_SLAVE_BUSWIDTH_UNDEFINED)	| \
	BIT(DMA_SLAVE_BUSWIDTH_1_BYTE)		| \
	BIT(DMA_SLAVE_BUSWIDTH_2_BYTES)		| \
	BIT(DMA_SLAVE_BUSWIDTH_4_BYTES)

68 69
/*----------------------------------------------------------------------*/

70 71 72 73 74
static struct device *chan2dev(struct dma_chan *chan)
{
	return &chan->dev->device;
}

75 76
static struct dw_desc *dwc_first_active(struct dw_dma_chan *dwc)
{
77
	return to_dw_desc(dwc->active_list.next);
78 79
}

80
static dma_cookie_t dwc_tx_submit(struct dma_async_tx_descriptor *tx)
81
{
82 83 84 85
	struct dw_desc		*desc = txd_to_dw_desc(tx);
	struct dw_dma_chan	*dwc = to_dw_dma_chan(tx->chan);
	dma_cookie_t		cookie;
	unsigned long		flags;
86

87
	spin_lock_irqsave(&dwc->lock, flags);
88 89 90 91 92 93 94 95 96
	cookie = dma_cookie_assign(tx);

	/*
	 * REVISIT: We should attempt to chain as many descriptors as
	 * possible, perhaps even appending to those already submitted
	 * for DMA. But this is hard to do in a race-free manner.
	 */

	list_add_tail(&desc->desc_node, &dwc->queue);
97
	spin_unlock_irqrestore(&dwc->lock, flags);
98 99
	dev_vdbg(chan2dev(tx->chan), "%s: queued %u\n",
		 __func__, desc->txd.cookie);
100

101 102
	return cookie;
}
103

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
static struct dw_desc *dwc_desc_get(struct dw_dma_chan *dwc)
{
	struct dw_dma *dw = to_dw_dma(dwc->chan.device);
	struct dw_desc *desc;
	dma_addr_t phys;

	desc = dma_pool_zalloc(dw->desc_pool, GFP_ATOMIC, &phys);
	if (!desc)
		return NULL;

	dwc->descs_allocated++;
	INIT_LIST_HEAD(&desc->tx_list);
	dma_async_tx_descriptor_init(&desc->txd, &dwc->chan);
	desc->txd.tx_submit = dwc_tx_submit;
	desc->txd.flags = DMA_CTRL_ACK;
	desc->txd.phys = phys;
	return desc;
121 122 123 124
}

static void dwc_desc_put(struct dw_dma_chan *dwc, struct dw_desc *desc)
{
125 126
	struct dw_dma *dw = to_dw_dma(dwc->chan.device);
	struct dw_desc *child, *_next;
127

128 129
	if (unlikely(!desc))
		return;
130

131 132 133 134
	list_for_each_entry_safe(child, _next, &desc->tx_list, desc_node) {
		list_del(&child->desc_node);
		dma_pool_free(dw->desc_pool, child, child->txd.phys);
		dwc->descs_allocated--;
135
	}
136 137 138

	dma_pool_free(dw->desc_pool, desc, desc->txd.phys);
	dwc->descs_allocated--;
139 140
}

141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
static void dwc_initialize_chan_idma32(struct dw_dma_chan *dwc)
{
	u32 cfghi = 0;
	u32 cfglo = 0;

	/* Set default burst alignment */
	cfglo |= IDMA32C_CFGL_DST_BURST_ALIGN | IDMA32C_CFGL_SRC_BURST_ALIGN;

	/* Low 4 bits of the request lines */
	cfghi |= IDMA32C_CFGH_DST_PER(dwc->dws.dst_id & 0xf);
	cfghi |= IDMA32C_CFGH_SRC_PER(dwc->dws.src_id & 0xf);

	/* Request line extension (2 bits) */
	cfghi |= IDMA32C_CFGH_DST_PER_EXT(dwc->dws.dst_id >> 4 & 0x3);
	cfghi |= IDMA32C_CFGH_SRC_PER_EXT(dwc->dws.src_id >> 4 & 0x3);

	channel_writel(dwc, CFG_LO, cfglo);
	channel_writel(dwc, CFG_HI, cfghi);
}

static void dwc_initialize_chan_dw(struct dw_dma_chan *dwc)
162 163 164
{
	u32 cfghi = DWC_CFGH_FIFO_MODE;
	u32 cfglo = DWC_CFGL_CH_PRIOR(dwc->priority);
165
	bool hs_polarity = dwc->dws.hs_polarity;
166

167 168
	cfghi |= DWC_CFGH_DST_PER(dwc->dws.dst_id);
	cfghi |= DWC_CFGH_SRC_PER(dwc->dws.src_id);
169

170 171 172
	/* Set polarity of handshake interface */
	cfglo |= hs_polarity ? DWC_CFGL_HS_DST_POL | DWC_CFGL_HS_SRC_POL : 0;

173 174
	channel_writel(dwc, CFG_LO, cfglo);
	channel_writel(dwc, CFG_HI, cfghi);
175 176 177 178 179 180 181 182 183 184 185 186 187
}

static void dwc_initialize(struct dw_dma_chan *dwc)
{
	struct dw_dma *dw = to_dw_dma(dwc->chan.device);

	if (test_bit(DW_DMA_IS_INITIALIZED, &dwc->flags))
		return;

	if (dw->pdata->is_idma32)
		dwc_initialize_chan_idma32(dwc);
	else
		dwc_initialize_chan_dw(dwc);
188 189 190 191 192

	/* Enable interrupts */
	channel_set_bit(dw, MASK.XFER, dwc->mask);
	channel_set_bit(dw, MASK.ERROR, dwc->mask);

193
	set_bit(DW_DMA_IS_INITIALIZED, &dwc->flags);
194 195
}

196 197
/*----------------------------------------------------------------------*/

198
static inline void dwc_dump_chan_regs(struct dw_dma_chan *dwc)
199 200 201 202 203 204 205 206 207 208
{
	dev_err(chan2dev(&dwc->chan),
		"  SAR: 0x%x DAR: 0x%x LLP: 0x%x CTL: 0x%x:%08x\n",
		channel_readl(dwc, SAR),
		channel_readl(dwc, DAR),
		channel_readl(dwc, LLP),
		channel_readl(dwc, CTL_HI),
		channel_readl(dwc, CTL_LO));
}

209 210 211 212 213 214 215
static inline void dwc_chan_disable(struct dw_dma *dw, struct dw_dma_chan *dwc)
{
	channel_clear_bit(dw, CH_EN, dwc->mask);
	while (dma_readl(dw, CH_EN) & dwc->mask)
		cpu_relax();
}

216 217 218
static u32 bytes2block(struct dw_dma_chan *dwc, size_t bytes,
			  unsigned int width, size_t *len)
{
219
	struct dw_dma *dw = to_dw_dma(dwc->chan.device);
220 221
	u32 block;

222 223 224 225
	/* Always in bytes for iDMA 32-bit */
	if (dw->pdata->is_idma32)
		width = 0;

226 227 228 229 230 231 232 233 234 235 236 237 238
	if ((bytes >> width) > dwc->block_size) {
		block = dwc->block_size;
		*len = block << width;
	} else {
		block = bytes >> width;
		*len = bytes;
	}

	return block;
}

static size_t block2bytes(struct dw_dma_chan *dwc, u32 block, u32 width)
{
239 240 241 242 243
	struct dw_dma *dw = to_dw_dma(dwc->chan.device);

	if (dw->pdata->is_idma32)
		return IDMA32C_CTLH_BLOCK_TS(block);

244 245 246
	return DWC_CTLH_BLOCK_TS(block) << width;
}

247 248
/*----------------------------------------------------------------------*/

249 250 251 252 253 254 255
/* Perform single block transfer */
static inline void dwc_do_single_block(struct dw_dma_chan *dwc,
				       struct dw_desc *desc)
{
	struct dw_dma	*dw = to_dw_dma(dwc->chan.device);
	u32		ctllo;

256 257 258 259
	/*
	 * Software emulation of LLP mode relies on interrupts to continue
	 * multi block transfer.
	 */
260
	ctllo = lli_read(desc, ctllo) | DWC_CTLL_INT_EN;
261

262 263
	channel_writel(dwc, SAR, lli_read(desc, sar));
	channel_writel(dwc, DAR, lli_read(desc, dar));
264
	channel_writel(dwc, CTL_LO, ctllo);
265
	channel_writel(dwc, CTL_HI, lli_read(desc, ctlhi));
266
	channel_set_bit(dw, CH_EN, dwc->mask);
267 268 269

	/* Move pointer to next descriptor */
	dwc->tx_node_active = dwc->tx_node_active->next;
270 271
}

272 273 274 275
/* Called with dwc->lock held and bh disabled */
static void dwc_dostart(struct dw_dma_chan *dwc, struct dw_desc *first)
{
	struct dw_dma	*dw = to_dw_dma(dwc->chan.device);
276
	u8		lms = DWC_LLP_LMS(dwc->dws.m_master);
277
	unsigned long	was_soft_llp;
278 279 280

	/* ASSERT:  channel is idle */
	if (dma_readl(dw, CH_EN) & dwc->mask) {
281
		dev_err(chan2dev(&dwc->chan),
282 283
			"%s: BUG: Attempted to start non-idle channel\n",
			__func__);
284
		dwc_dump_chan_regs(dwc);
285 286 287 288 289

		/* The tasklet will hopefully advance the queue... */
		return;
	}

290 291 292 293 294
	if (dwc->nollp) {
		was_soft_llp = test_and_set_bit(DW_DMA_IS_SOFT_LLP,
						&dwc->flags);
		if (was_soft_llp) {
			dev_err(chan2dev(&dwc->chan),
295
				"BUG: Attempted to start new LLP transfer inside ongoing one\n");
296 297 298 299 300
			return;
		}

		dwc_initialize(dwc);

301
		first->residue = first->total_len;
302
		dwc->tx_node_active = &first->tx_list;
303

304
		/* Submit first block */
305 306 307 308 309
		dwc_do_single_block(dwc, first);

		return;
	}

310 311
	dwc_initialize(dwc);

312 313
	channel_writel(dwc, LLP, first->txd.phys | lms);
	channel_writel(dwc, CTL_LO, DWC_CTLL_LLP_D_EN | DWC_CTLL_LLP_S_EN);
314 315 316 317
	channel_writel(dwc, CTL_HI, 0);
	channel_set_bit(dw, CH_EN, dwc->mask);
}

318 319
static void dwc_dostart_first_queued(struct dw_dma_chan *dwc)
{
320 321
	struct dw_desc *desc;

322 323 324 325
	if (list_empty(&dwc->queue))
		return;

	list_move(dwc->queue.next, &dwc->active_list);
326 327 328
	desc = dwc_first_active(dwc);
	dev_vdbg(chan2dev(&dwc->chan), "%s: started %u\n", __func__, desc->txd.cookie);
	dwc_dostart(dwc, desc);
329 330
}

331 332 333
/*----------------------------------------------------------------------*/

static void
334 335
dwc_descriptor_complete(struct dw_dma_chan *dwc, struct dw_desc *desc,
		bool callback_required)
336 337
{
	struct dma_async_tx_descriptor	*txd = &desc->txd;
338
	struct dw_desc			*child;
339
	unsigned long			flags;
340
	struct dmaengine_desc_callback	cb;
341

342
	dev_vdbg(chan2dev(&dwc->chan), "descriptor %u complete\n", txd->cookie);
343

344
	spin_lock_irqsave(&dwc->lock, flags);
345
	dma_cookie_complete(txd);
346 347 348 349
	if (callback_required)
		dmaengine_desc_get_callback(txd, &cb);
	else
		memset(&cb, 0, sizeof(cb));
350

351 352 353 354
	/* async_tx_ack */
	list_for_each_entry(child, &desc->tx_list, desc_node)
		async_tx_ack(&child->txd);
	async_tx_ack(&desc->txd);
355
	dwc_desc_put(dwc, desc);
356 357
	spin_unlock_irqrestore(&dwc->lock, flags);

358
	dmaengine_desc_callback_invoke(&cb, NULL);
359 360 361 362 363 364
}

static void dwc_complete_all(struct dw_dma *dw, struct dw_dma_chan *dwc)
{
	struct dw_desc *desc, *_desc;
	LIST_HEAD(list);
365
	unsigned long flags;
366

367
	spin_lock_irqsave(&dwc->lock, flags);
368
	if (dma_readl(dw, CH_EN) & dwc->mask) {
369
		dev_err(chan2dev(&dwc->chan),
370 371 372
			"BUG: XFER bit set, but channel not idle!\n");

		/* Try to continue after resetting the channel... */
373
		dwc_chan_disable(dw, dwc);
374 375 376 377 378 379 380
	}

	/*
	 * Submit queued descriptors ASAP, i.e. before we go through
	 * the completed ones.
	 */
	list_splice_init(&dwc->active_list, &list);
381
	dwc_dostart_first_queued(dwc);
382

383 384
	spin_unlock_irqrestore(&dwc->lock, flags);

385
	list_for_each_entry_safe(desc, _desc, &list, desc_node)
386
		dwc_descriptor_complete(dwc, desc, true);
387 388
}

389 390 391 392 393 394
/* Returns how many bytes were already received from source */
static inline u32 dwc_get_sent(struct dw_dma_chan *dwc)
{
	u32 ctlhi = channel_readl(dwc, CTL_HI);
	u32 ctllo = channel_readl(dwc, CTL_LO);

395
	return block2bytes(dwc, ctlhi, ctllo >> 4 & 7);
396 397
}

398 399 400 401 402 403
static void dwc_scan_descriptors(struct dw_dma *dw, struct dw_dma_chan *dwc)
{
	dma_addr_t llp;
	struct dw_desc *desc, *_desc;
	struct dw_desc *child;
	u32 status_xfer;
404
	unsigned long flags;
405

406
	spin_lock_irqsave(&dwc->lock, flags);
407 408 409 410 411 412
	llp = channel_readl(dwc, LLP);
	status_xfer = dma_readl(dw, RAW.XFER);

	if (status_xfer & dwc->mask) {
		/* Everything we've submitted is done */
		dma_writel(dw, CLEAR.XFER, dwc->mask);
413 414

		if (test_bit(DW_DMA_IS_SOFT_LLP, &dwc->flags)) {
415 416 417 418 419 420 421 422 423 424
			struct list_head *head, *active = dwc->tx_node_active;

			/*
			 * We are inside first active descriptor.
			 * Otherwise something is really wrong.
			 */
			desc = dwc_first_active(dwc);

			head = &desc->tx_list;
			if (active != head) {
425 426 427 428 429
				/* Update residue to reflect last sent descriptor */
				if (active == head->next)
					desc->residue -= desc->len;
				else
					desc->residue -= to_dw_desc(active->prev)->len;
430

431
				child = to_dw_desc(active);
432 433

				/* Submit next block */
434
				dwc_do_single_block(dwc, child);
435

436
				spin_unlock_irqrestore(&dwc->lock, flags);
437 438
				return;
			}
439

440 441 442
			/* We are done here */
			clear_bit(DW_DMA_IS_SOFT_LLP, &dwc->flags);
		}
443

444 445
		spin_unlock_irqrestore(&dwc->lock, flags);

446 447 448 449
		dwc_complete_all(dw, dwc);
		return;
	}

450 451
	if (list_empty(&dwc->active_list)) {
		spin_unlock_irqrestore(&dwc->lock, flags);
452
		return;
453
	}
454

455 456
	if (test_bit(DW_DMA_IS_SOFT_LLP, &dwc->flags)) {
		dev_vdbg(chan2dev(&dwc->chan), "%s: soft LLP mode\n", __func__);
457
		spin_unlock_irqrestore(&dwc->lock, flags);
458
		return;
459
	}
460

461
	dev_vdbg(chan2dev(&dwc->chan), "%s: llp=%pad\n", __func__, &llp);
462 463

	list_for_each_entry_safe(desc, _desc, &dwc->active_list, desc_node) {
464
		/* Initial residue value */
465
		desc->residue = desc->total_len;
466

467
		/* Check first descriptors addr */
468
		if (desc->txd.phys == DWC_LLP_LOC(llp)) {
469
			spin_unlock_irqrestore(&dwc->lock, flags);
470
			return;
471
		}
472

473
		/* Check first descriptors llp */
474
		if (lli_read(desc, llp) == llp) {
475
			/* This one is currently in progress */
476
			desc->residue -= dwc_get_sent(dwc);
477
			spin_unlock_irqrestore(&dwc->lock, flags);
478
			return;
479
		}
480

481
		desc->residue -= desc->len;
482
		list_for_each_entry(child, &desc->tx_list, desc_node) {
483
			if (lli_read(child, llp) == llp) {
484
				/* Currently in progress */
485
				desc->residue -= dwc_get_sent(dwc);
486
				spin_unlock_irqrestore(&dwc->lock, flags);
487
				return;
488
			}
489
			desc->residue -= child->len;
490
		}
491 492 493 494 495

		/*
		 * No descriptors so far seem to be in progress, i.e.
		 * this one must be done.
		 */
496
		spin_unlock_irqrestore(&dwc->lock, flags);
497
		dwc_descriptor_complete(dwc, desc, true);
498
		spin_lock_irqsave(&dwc->lock, flags);
499 500
	}

501
	dev_err(chan2dev(&dwc->chan),
502 503 504
		"BUG: All descriptors done, but channel not idle!\n");

	/* Try to continue after resetting the channel... */
505
	dwc_chan_disable(dw, dwc);
506

507
	dwc_dostart_first_queued(dwc);
508
	spin_unlock_irqrestore(&dwc->lock, flags);
509 510
}

511
static inline void dwc_dump_lli(struct dw_dma_chan *dwc, struct dw_desc *desc)
512
{
513
	dev_crit(chan2dev(&dwc->chan), "  desc: s0x%x d0x%x l0x%x c0x%x:%x\n",
514 515 516 517 518
		 lli_read(desc, sar),
		 lli_read(desc, dar),
		 lli_read(desc, llp),
		 lli_read(desc, ctlhi),
		 lli_read(desc, ctllo));
519 520 521 522 523 524
}

static void dwc_handle_error(struct dw_dma *dw, struct dw_dma_chan *dwc)
{
	struct dw_desc *bad_desc;
	struct dw_desc *child;
525
	unsigned long flags;
526 527 528

	dwc_scan_descriptors(dw, dwc);

529 530
	spin_lock_irqsave(&dwc->lock, flags);

531 532 533 534 535 536 537
	/*
	 * The descriptor currently at the head of the active list is
	 * borked. Since we don't have any way to report errors, we'll
	 * just have to scream loudly and try to carry on.
	 */
	bad_desc = dwc_first_active(dwc);
	list_del_init(&bad_desc->desc_node);
538
	list_move(dwc->queue.next, dwc->active_list.prev);
539 540 541 542 543 544 545

	/* Clear the error flag and try to restart the controller */
	dma_writel(dw, CLEAR.ERROR, dwc->mask);
	if (!list_empty(&dwc->active_list))
		dwc_dostart(dwc, dwc_first_active(dwc));

	/*
546
	 * WARN may seem harsh, but since this only happens
547 548 549 550 551
	 * when someone submits a bad physical address in a
	 * descriptor, we should consider ourselves lucky that the
	 * controller flagged an error instead of scribbling over
	 * random memory locations.
	 */
552 553
	dev_WARN(chan2dev(&dwc->chan), "Bad descriptor submitted for DMA!\n"
				       "  cookie: %d\n", bad_desc->txd.cookie);
554
	dwc_dump_lli(dwc, bad_desc);
555
	list_for_each_entry(child, &bad_desc->tx_list, desc_node)
556
		dwc_dump_lli(dwc, child);
557

558 559
	spin_unlock_irqrestore(&dwc->lock, flags);

560
	/* Pretend the descriptor completed successfully */
561
	dwc_descriptor_complete(dwc, bad_desc, true);
562 563 564 565 566 567 568 569
}

static void dw_dma_tasklet(unsigned long data)
{
	struct dw_dma *dw = (struct dw_dma *)data;
	struct dw_dma_chan *dwc;
	u32 status_xfer;
	u32 status_err;
570
	unsigned int i;
571

572
	status_xfer = dma_readl(dw, RAW.XFER);
573 574
	status_err = dma_readl(dw, RAW.ERROR);

575
	dev_vdbg(dw->dma.dev, "%s: status_err=%x\n", __func__, status_err);
576 577 578

	for (i = 0; i < dw->dma.chancnt; i++) {
		dwc = &dw->chan[i];
579
		if (test_bit(DW_DMA_IS_CYCLIC, &dwc->flags))
580
			dev_vdbg(dw->dma.dev, "Cyclic xfer is not implemented\n");
581
		else if (status_err & (1 << i))
582
			dwc_handle_error(dw, dwc);
583
		else if (status_xfer & (1 << i))
584 585 586
			dwc_scan_descriptors(dw, dwc);
	}

587
	/* Re-enable interrupts */
588 589 590 591 592 593 594
	channel_set_bit(dw, MASK.XFER, dw->all_chan_mask);
	channel_set_bit(dw, MASK.ERROR, dw->all_chan_mask);
}

static irqreturn_t dw_dma_interrupt(int irq, void *dev_id)
{
	struct dw_dma *dw = dev_id;
595
	u32 status;
596

597 598 599 600 601
	/* Check if we have any interrupt from the DMAC which is not in use */
	if (!dw->in_use)
		return IRQ_NONE;

	status = dma_readl(dw, STATUS_INT);
602 603 604
	dev_vdbg(dw->dma.dev, "%s: status=0x%x\n", __func__, status);

	/* Check if we have any interrupt from the DMAC */
605
	if (!status)
606
		return IRQ_NONE;
607 608 609 610 611 612

	/*
	 * Just disable the interrupts. We'll turn them back on in the
	 * softirq handler.
	 */
	channel_clear_bit(dw, MASK.XFER, dw->all_chan_mask);
613
	channel_clear_bit(dw, MASK.BLOCK, dw->all_chan_mask);
614 615 616 617 618 619 620 621 622 623
	channel_clear_bit(dw, MASK.ERROR, dw->all_chan_mask);

	status = dma_readl(dw, STATUS_INT);
	if (status) {
		dev_err(dw->dma.dev,
			"BUG: Unexpected interrupts pending: 0x%x\n",
			status);

		/* Try to recover */
		channel_clear_bit(dw, MASK.XFER, (1 << 8) - 1);
624
		channel_clear_bit(dw, MASK.BLOCK, (1 << 8) - 1);
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641
		channel_clear_bit(dw, MASK.SRC_TRAN, (1 << 8) - 1);
		channel_clear_bit(dw, MASK.DST_TRAN, (1 << 8) - 1);
		channel_clear_bit(dw, MASK.ERROR, (1 << 8) - 1);
	}

	tasklet_schedule(&dw->tasklet);

	return IRQ_HANDLED;
}

/*----------------------------------------------------------------------*/

static struct dma_async_tx_descriptor *
dwc_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
		size_t len, unsigned long flags)
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
642
	struct dw_dma		*dw = to_dw_dma(chan->device);
643 644 645 646 647
	struct dw_desc		*desc;
	struct dw_desc		*first;
	struct dw_desc		*prev;
	size_t			xfer_count;
	size_t			offset;
648
	u8			m_master = dwc->dws.m_master;
649 650
	unsigned int		src_width;
	unsigned int		dst_width;
651
	unsigned int		data_width = dw->pdata->data_width[m_master];
652
	u32			ctllo;
653
	u8			lms = DWC_LLP_LMS(m_master);
654

655
	dev_vdbg(chan2dev(chan),
656 657
			"%s: d%pad s%pad l0x%zx f0x%lx\n", __func__,
			&dest, &src, len, flags);
658 659

	if (unlikely(!len)) {
660
		dev_dbg(chan2dev(chan), "%s: length is zero!\n", __func__);
661 662 663
		return NULL;
	}

664 665
	dwc->direction = DMA_MEM_TO_MEM;

666
	src_width = dst_width = __ffs(data_width | src | dest | len);
667

668
	ctllo = DWC_DEFAULT_CTLLO(chan)
669 670 671 672 673 674 675
			| DWC_CTLL_DST_WIDTH(dst_width)
			| DWC_CTLL_SRC_WIDTH(src_width)
			| DWC_CTLL_DST_INC
			| DWC_CTLL_SRC_INC
			| DWC_CTLL_FC_M2M;
	prev = first = NULL;

676
	for (offset = 0; offset < len; offset += xfer_count) {
677 678 679 680
		desc = dwc_desc_get(dwc);
		if (!desc)
			goto err_desc_get;

681 682 683
		lli_write(desc, sar, src + offset);
		lli_write(desc, dar, dest + offset);
		lli_write(desc, ctllo, ctllo);
684 685
		lli_write(desc, ctlhi, bytes2block(dwc, len - offset, src_width, &xfer_count));
		desc->len = xfer_count;
686 687 688 689

		if (!first) {
			first = desc;
		} else {
690
			lli_write(prev, llp, desc->txd.phys | lms);
691
			list_add_tail(&desc->desc_node, &first->tx_list);
692 693 694 695 696 697
		}
		prev = desc;
	}

	if (flags & DMA_PREP_INTERRUPT)
		/* Trigger interrupt after last block */
698
		lli_set(prev, ctllo, DWC_CTLL_INT_EN);
699 700

	prev->lli.llp = 0;
701
	lli_clear(prev, ctllo, DWC_CTLL_LLP_D_EN | DWC_CTLL_LLP_S_EN);
702
	first->txd.flags = flags;
703
	first->total_len = len;
704 705 706 707 708 709 710 711 712 713

	return &first->txd;

err_desc_get:
	dwc_desc_put(dwc, first);
	return NULL;
}

static struct dma_async_tx_descriptor *
dwc_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
714
		unsigned int sg_len, enum dma_transfer_direction direction,
715
		unsigned long flags, void *context)
716 717
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
718
	struct dw_dma		*dw = to_dw_dma(chan->device);
719
	struct dma_slave_config	*sconfig = &dwc->dma_sconfig;
720 721 722
	struct dw_desc		*prev;
	struct dw_desc		*first;
	u32			ctllo;
723
	u8			m_master = dwc->dws.m_master;
724
	u8			lms = DWC_LLP_LMS(m_master);
725 726 727
	dma_addr_t		reg;
	unsigned int		reg_width;
	unsigned int		mem_width;
728
	unsigned int		data_width = dw->pdata->data_width[m_master];
729 730 731 732
	unsigned int		i;
	struct scatterlist	*sg;
	size_t			total_len = 0;

733
	dev_vdbg(chan2dev(chan), "%s\n", __func__);
734

735
	if (unlikely(!is_slave_direction(direction) || !sg_len))
736 737
		return NULL;

738 739
	dwc->direction = direction;

740 741 742
	prev = first = NULL;

	switch (direction) {
743
	case DMA_MEM_TO_DEV:
744
		reg_width = __ffs(sconfig->dst_addr_width);
745 746
		reg = sconfig->dst_addr;
		ctllo = (DWC_DEFAULT_CTLLO(chan)
747 748
				| DWC_CTLL_DST_WIDTH(reg_width)
				| DWC_CTLL_DST_FIX
749 750 751 752 753
				| DWC_CTLL_SRC_INC);

		ctllo |= sconfig->device_fc ? DWC_CTLL_FC(DW_DMA_FC_P_M2P) :
			DWC_CTLL_FC(DW_DMA_FC_D_M2P);

754 755
		for_each_sg(sgl, sg, sg_len, i) {
			struct dw_desc	*desc;
756 757
			u32		len, mem;
			size_t		dlen;
758

759
			mem = sg_dma_address(sg);
760
			len = sg_dma_len(sg);
761

762
			mem_width = __ffs(data_width | mem | len);
763

764
slave_sg_todev_fill_desc:
765
			desc = dwc_desc_get(dwc);
766
			if (!desc)
767 768
				goto err_desc_get;

769 770
			lli_write(desc, sar, mem);
			lli_write(desc, dar, reg);
771
			lli_write(desc, ctlhi, bytes2block(dwc, len, mem_width, &dlen));
772
			lli_write(desc, ctllo, ctllo | DWC_CTLL_SRC_WIDTH(mem_width));
773
			desc->len = dlen;
774 775 776 777

			if (!first) {
				first = desc;
			} else {
778
				lli_write(prev, llp, desc->txd.phys | lms);
779
				list_add_tail(&desc->desc_node, &first->tx_list);
780 781
			}
			prev = desc;
782 783 784

			mem += dlen;
			len -= dlen;
785 786 787 788
			total_len += dlen;

			if (len)
				goto slave_sg_todev_fill_desc;
789 790
		}
		break;
791
	case DMA_DEV_TO_MEM:
792
		reg_width = __ffs(sconfig->src_addr_width);
793 794
		reg = sconfig->src_addr;
		ctllo = (DWC_DEFAULT_CTLLO(chan)
795 796
				| DWC_CTLL_SRC_WIDTH(reg_width)
				| DWC_CTLL_DST_INC
797 798 799 800
				| DWC_CTLL_SRC_FIX);

		ctllo |= sconfig->device_fc ? DWC_CTLL_FC(DW_DMA_FC_P_P2M) :
			DWC_CTLL_FC(DW_DMA_FC_D_P2M);
801 802 803

		for_each_sg(sgl, sg, sg_len, i) {
			struct dw_desc	*desc;
804 805
			u32		len, mem;
			size_t		dlen;
806

807
			mem = sg_dma_address(sg);
808
			len = sg_dma_len(sg);
809

810 811
slave_sg_fromdev_fill_desc:
			desc = dwc_desc_get(dwc);
812
			if (!desc)
813 814
				goto err_desc_get;

815 816
			lli_write(desc, sar, reg);
			lli_write(desc, dar, mem);
817
			lli_write(desc, ctlhi, bytes2block(dwc, len, reg_width, &dlen));
818 819
			mem_width = __ffs(data_width | mem | dlen);
			lli_write(desc, ctllo, ctllo | DWC_CTLL_DST_WIDTH(mem_width));
820
			desc->len = dlen;
821 822 823 824

			if (!first) {
				first = desc;
			} else {
825
				lli_write(prev, llp, desc->txd.phys | lms);
826
				list_add_tail(&desc->desc_node, &first->tx_list);
827 828
			}
			prev = desc;
829 830 831

			mem += dlen;
			len -= dlen;
832 833 834 835
			total_len += dlen;

			if (len)
				goto slave_sg_fromdev_fill_desc;
836 837 838 839 840 841 842 843
		}
		break;
	default:
		return NULL;
	}

	if (flags & DMA_PREP_INTERRUPT)
		/* Trigger interrupt after last block */
844
		lli_set(prev, ctllo, DWC_CTLL_INT_EN);
845 846

	prev->lli.llp = 0;
847
	lli_clear(prev, ctllo, DWC_CTLL_LLP_D_EN | DWC_CTLL_LLP_S_EN);
848
	first->total_len = total_len;
849 850 851 852

	return &first->txd;

err_desc_get:
853 854
	dev_err(chan2dev(chan),
		"not enough descriptors available. Direction %d\n", direction);
855 856 857 858
	dwc_desc_put(dwc, first);
	return NULL;
}

859 860 861 862 863
bool dw_dma_filter(struct dma_chan *chan, void *param)
{
	struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
	struct dw_dma_slave *dws = param;

864
	if (dws->dma_dev != chan->device->dev)
865 866 867
		return false;

	/* We have to copy data since dws can be temporary storage */
868
	memcpy(&dwc->dws, dws, sizeof(struct dw_dma_slave));
869 870 871 872 873

	return true;
}
EXPORT_SYMBOL_GPL(dw_dma_filter);

874
static int dwc_config(struct dma_chan *chan, struct dma_slave_config *sconfig)
875 876
{
	struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
877
	struct dma_slave_config *sc = &dwc->dma_sconfig;
878
	struct dw_dma *dw = to_dw_dma(chan->device);
879 880 881 882 883 884
	/*
	 * Fix sconfig's burst size according to dw_dmac. We need to convert
	 * them as:
	 * 1 -> 0, 4 -> 1, 8 -> 2, 16 -> 3.
	 *
	 * NOTE: burst size 2 is not supported by DesignWare controller.
885
	 *       iDMA 32-bit supports it.
886
	 */
887
	u32 s = dw->pdata->is_idma32 ? 1 : 2;
888 889 890

	memcpy(&dwc->dma_sconfig, sconfig, sizeof(*sconfig));

891 892
	sc->src_maxburst = sc->src_maxburst > 1 ? fls(sc->src_maxburst) - s : 0;
	sc->dst_maxburst = sc->dst_maxburst > 1 ? fls(sc->dst_maxburst) - s : 0;
893 894 895 896

	return 0;
}

897
static void dwc_chan_pause(struct dw_dma_chan *dwc, bool drain)
898
{
899
	struct dw_dma *dw = to_dw_dma(dwc->chan.device);
900 901 902 903
	unsigned int		count = 20;	/* timeout iterations */
	u32			cfglo;

	cfglo = channel_readl(dwc, CFG_LO);
904 905 906 907 908 909
	if (dw->pdata->is_idma32) {
		if (drain)
			cfglo |= IDMA32C_CFGL_CH_DRAIN;
		else
			cfglo &= ~IDMA32C_CFGL_CH_DRAIN;
	}
910
	channel_writel(dwc, CFG_LO, cfglo | DWC_CFGL_CH_SUSP);
911 912
	while (!(channel_readl(dwc, CFG_LO) & DWC_CFGL_FIFO_EMPTY) && count--)
		udelay(2);
913

914
	set_bit(DW_DMA_IS_PAUSED, &dwc->flags);
915
}
916

917 918 919 920 921 922
static int dwc_pause(struct dma_chan *chan)
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
	unsigned long		flags;

	spin_lock_irqsave(&dwc->lock, flags);
923
	dwc_chan_pause(dwc, false);
924 925 926
	spin_unlock_irqrestore(&dwc->lock, flags);

	return 0;
927 928 929 930 931 932 933 934
}

static inline void dwc_chan_resume(struct dw_dma_chan *dwc)
{
	u32 cfglo = channel_readl(dwc, CFG_LO);

	channel_writel(dwc, CFG_LO, cfglo & ~DWC_CFGL_CH_SUSP);

935
	clear_bit(DW_DMA_IS_PAUSED, &dwc->flags);
936 937
}

938
static int dwc_resume(struct dma_chan *chan)
939 940
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
941
	unsigned long		flags;
942

943
	spin_lock_irqsave(&dwc->lock, flags);
944

945 946
	if (test_bit(DW_DMA_IS_PAUSED, &dwc->flags))
		dwc_chan_resume(dwc);
947

948
	spin_unlock_irqrestore(&dwc->lock, flags);
949

950 951
	return 0;
}
952

953 954 955 956 957 958 959
static int dwc_terminate_all(struct dma_chan *chan)
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
	struct dw_dma		*dw = to_dw_dma(chan->device);
	struct dw_desc		*desc, *_desc;
	unsigned long		flags;
	LIST_HEAD(list);
960

961
	spin_lock_irqsave(&dwc->lock, flags);
962

963
	clear_bit(DW_DMA_IS_SOFT_LLP, &dwc->flags);
964

965 966
	dwc_chan_pause(dwc, true);

967
	dwc_chan_disable(dw, dwc);
968

969
	dwc_chan_resume(dwc);
970

971 972 973
	/* active_list entries will end up before queued entries */
	list_splice_init(&dwc->queue, &list);
	list_splice_init(&dwc->active_list, &list);
974

975
	spin_unlock_irqrestore(&dwc->lock, flags);
976

977 978 979
	/* Flush all pending and queued descriptors */
	list_for_each_entry_safe(desc, _desc, &list, desc_node)
		dwc_descriptor_complete(dwc, desc, false);
980 981

	return 0;
982 983
}

984 985 986 987 988 989 990 991 992 993 994 995
static struct dw_desc *dwc_find_desc(struct dw_dma_chan *dwc, dma_cookie_t c)
{
	struct dw_desc *desc;

	list_for_each_entry(desc, &dwc->active_list, desc_node)
		if (desc->txd.cookie == c)
			return desc;

	return NULL;
}

static u32 dwc_get_residue(struct dw_dma_chan *dwc, dma_cookie_t cookie)
996
{
997
	struct dw_desc *desc;
998 999 1000 1001 1002
	unsigned long flags;
	u32 residue;

	spin_lock_irqsave(&dwc->lock, flags);

1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
	desc = dwc_find_desc(dwc, cookie);
	if (desc) {
		if (desc == dwc_first_active(dwc)) {
			residue = desc->residue;
			if (test_bit(DW_DMA_IS_SOFT_LLP, &dwc->flags) && residue)
				residue -= dwc_get_sent(dwc);
		} else {
			residue = desc->total_len;
		}
	} else {
		residue = 0;
	}
1015 1016 1017 1018 1019

	spin_unlock_irqrestore(&dwc->lock, flags);
	return residue;
}

1020
static enum dma_status
1021 1022 1023
dwc_tx_status(struct dma_chan *chan,
	      dma_cookie_t cookie,
	      struct dma_tx_state *txstate)
1024 1025
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
1026
	enum dma_status		ret;
1027

1028
	ret = dma_cookie_status(chan, cookie, txstate);
1029
	if (ret == DMA_COMPLETE)
1030
		return ret;
1031

1032
	dwc_scan_descriptors(to_dw_dma(chan->device), dwc);
1033

1034
	ret = dma_cookie_status(chan, cookie, txstate);
1035 1036 1037 1038
	if (ret == DMA_COMPLETE)
		return ret;

	dma_set_residue(txstate, dwc_get_residue(dwc, cookie));
1039

1040
	if (test_bit(DW_DMA_IS_PAUSED, &dwc->flags) && ret == DMA_IN_PROGRESS)
1041
		return DMA_PAUSED;
1042 1043 1044 1045 1046 1047 1048

	return ret;
}

static void dwc_issue_pending(struct dma_chan *chan)
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
1049
	unsigned long		flags;
1050

1051 1052 1053 1054
	spin_lock_irqsave(&dwc->lock, flags);
	if (list_empty(&dwc->active_list))
		dwc_dostart_first_queued(dwc);
	spin_unlock_irqrestore(&dwc->lock, flags);
1055 1056
}

1057 1058
/*----------------------------------------------------------------------*/

1059 1060 1061
/*
 * Program FIFO size of channels.
 *
1062
 * By default full FIFO (512 bytes) is assigned to channel 0. Here we
1063 1064 1065 1066
 * slice FIFO on equal parts between channels.
 */
static void idma32_fifo_partition(struct dw_dma *dw)
{
1067
	u64 value = IDMA32C_FP_PSIZE_CH0(64) | IDMA32C_FP_PSIZE_CH1(64) |
1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079
		    IDMA32C_FP_UPDATE;
	u64 fifo_partition = 0;

	if (!dw->pdata->is_idma32)
		return;

	/* Fill FIFO_PARTITION low bits (Channels 0..1, 4..5) */
	fifo_partition |= value << 0;

	/* Fill FIFO_PARTITION high bits (Channels 2..3, 6..7) */
	fifo_partition |= value << 32;

1080
	/* Program FIFO Partition registers - 64 bytes per channel */
1081 1082 1083 1084
	idma32_writeq(dw, FIFO_PARTITION1, fifo_partition);
	idma32_writeq(dw, FIFO_PARTITION0, fifo_partition);
}

1085 1086
static void dw_dma_off(struct dw_dma *dw)
{
1087
	unsigned int i;
1088 1089 1090 1091

	dma_writel(dw, CFG, 0);

	channel_clear_bit(dw, MASK.XFER, dw->all_chan_mask);
1092
	channel_clear_bit(dw, MASK.BLOCK, dw->all_chan_mask);
1093 1094 1095 1096 1097 1098 1099 1100
	channel_clear_bit(dw, MASK.SRC_TRAN, dw->all_chan_mask);
	channel_clear_bit(dw, MASK.DST_TRAN, dw->all_chan_mask);
	channel_clear_bit(dw, MASK.ERROR, dw->all_chan_mask);

	while (dma_readl(dw, CFG) & DW_CFG_DMA_EN)
		cpu_relax();

	for (i = 0; i < dw->dma.chancnt; i++)
1101
		clear_bit(DW_DMA_IS_INITIALIZED, &dw->chan[i].flags);
1102 1103 1104 1105 1106 1107 1108
}

static void dw_dma_on(struct dw_dma *dw)
{
	dma_writel(dw, CFG, DW_CFG_DMA_EN);
}

1109
static int dwc_alloc_chan_resources(struct dma_chan *chan)
1110 1111 1112 1113
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
	struct dw_dma		*dw = to_dw_dma(chan->device);

1114
	dev_vdbg(chan2dev(chan), "%s\n", __func__);
1115 1116 1117

	/* ASSERT:  channel is idle */
	if (dma_readl(dw, CH_EN) & dwc->mask) {
1118
		dev_dbg(chan2dev(chan), "DMA channel not idle?\n");
1119 1120 1121
		return -EIO;
	}

1122
	dma_cookie_init(chan);
1123 1124 1125 1126 1127 1128 1129

	/*
	 * NOTE: some controllers may have additional features that we
	 * need to initialize here, like "scatter-gather" (which
	 * doesn't mean what you think it means), and status writeback.
	 */

1130 1131 1132 1133 1134 1135 1136 1137
	/*
	 * We need controller-specific data to set up slave transfers.
	 */
	if (chan->private && !dw_dma_filter(chan, chan->private)) {
		dev_warn(chan2dev(chan), "Wrong controller-specific data\n");
		return -EINVAL;
	}

1138 1139 1140 1141 1142
	/* Enable controller here if needed */
	if (!dw->in_use)
		dw_dma_on(dw);
	dw->in_use |= dwc->mask;

1143
	return 0;
1144 1145 1146 1147 1148 1149
}

static void dwc_free_chan_resources(struct dma_chan *chan)
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
	struct dw_dma		*dw = to_dw_dma(chan->device);
1150
	unsigned long		flags;
1151 1152
	LIST_HEAD(list);

1153
	dev_dbg(chan2dev(chan), "%s: descs allocated=%u\n", __func__,
1154 1155 1156 1157 1158 1159 1160
			dwc->descs_allocated);

	/* ASSERT:  channel is idle */
	BUG_ON(!list_empty(&dwc->active_list));
	BUG_ON(!list_empty(&dwc->queue));
	BUG_ON(dma_readl(to_dw_dma(chan->device), CH_EN) & dwc->mask);

1161
	spin_lock_irqsave(&dwc->lock, flags);
1162 1163

	/* Clear custom channel configuration */
1164
	memset(&dwc->dws, 0, sizeof(struct dw_dma_slave));
1165

1166
	clear_bit(DW_DMA_IS_INITIALIZED, &dwc->flags);
1167 1168 1169

	/* Disable interrupts */
	channel_clear_bit(dw, MASK.XFER, dwc->mask);
1170
	channel_clear_bit(dw, MASK.BLOCK, dwc->mask);
1171 1172
	channel_clear_bit(dw, MASK.ERROR, dwc->mask);

1173
	spin_unlock_irqrestore(&dwc->lock, flags);
1174

1175 1176 1177 1178 1179
	/* Disable controller in case it was a last user */
	dw->in_use &= ~dwc->mask;
	if (!dw->in_use)
		dw_dma_off(dw);

1180
	dev_vdbg(chan2dev(chan), "%s: done\n", __func__);
1181 1182
}

1183
int dw_dma_probe(struct dw_dma_chip *chip)
1184
{
1185
	struct dw_dma_platform_data *pdata;
1186
	struct dw_dma		*dw;
1187
	bool			autocfg = false;
1188
	unsigned int		dw_params;
1189
	unsigned int		i;
1190 1191
	int			err;

1192 1193 1194 1195
	dw = devm_kzalloc(chip->dev, sizeof(*dw), GFP_KERNEL);
	if (!dw)
		return -ENOMEM;

1196 1197 1198 1199
	dw->pdata = devm_kzalloc(chip->dev, sizeof(*dw->pdata), GFP_KERNEL);
	if (!dw->pdata)
		return -ENOMEM;

1200 1201 1202
	dw->regs = chip->regs;
	chip->dw = dw;

A
Andy Shevchenko 已提交
1203 1204
	pm_runtime_get_sync(chip->dev);

1205
	if (!chip->pdata) {
1206
		dw_params = dma_readl(dw, DW_PARAMS);
1207
		dev_dbg(chip->dev, "DW_PARAMS: 0x%08x\n", dw_params);
1208

1209 1210 1211 1212 1213
		autocfg = dw_params >> DW_PARAMS_EN & 1;
		if (!autocfg) {
			err = -EINVAL;
			goto err_pdata;
		}
1214

1215 1216
		/* Reassign the platform data pointer */
		pdata = dw->pdata;
1217

1218 1219 1220 1221 1222
		/* Get hardware configuration parameters */
		pdata->nr_channels = (dw_params >> DW_PARAMS_NR_CHAN & 7) + 1;
		pdata->nr_masters = (dw_params >> DW_PARAMS_NR_MASTER & 3) + 1;
		for (i = 0; i < pdata->nr_masters; i++) {
			pdata->data_width[i] =
1223
				4 << (dw_params >> DW_PARAMS_DATA_WIDTH(i) & 3);
1224
		}
1225
		pdata->block_size = dma_readl(dw, MAX_BLK_SIZE);
1226

1227 1228
		/* Fill platform data with the default values */
		pdata->is_private = true;
1229
		pdata->is_memcpy = true;
1230 1231
		pdata->chan_allocation_order = CHAN_ALLOCATION_ASCENDING;
		pdata->chan_priority = CHAN_PRIORITY_ASCENDING;
1232
	} else if (chip->pdata->nr_channels > DW_DMA_MAX_NR_CHANNELS) {
1233 1234
		err = -EINVAL;
		goto err_pdata;
1235
	} else {
1236
		memcpy(dw->pdata, chip->pdata, sizeof(*dw->pdata));
1237 1238 1239

		/* Reassign the platform data pointer */
		pdata = dw->pdata;
1240
	}
1241

1242
	dw->chan = devm_kcalloc(chip->dev, pdata->nr_channels, sizeof(*dw->chan),
1243
				GFP_KERNEL);
1244 1245 1246 1247
	if (!dw->chan) {
		err = -ENOMEM;
		goto err_pdata;
	}
1248

1249
	/* Calculate all channel mask before DMA setup */
1250
	dw->all_chan_mask = (1 << pdata->nr_channels) - 1;
1251

1252
	/* Force dma off, just in case */
1253 1254
	dw_dma_off(dw);

1255 1256
	idma32_fifo_partition(dw);

1257
	/* Device and instance ID for IRQ and DMA pool */
1258 1259 1260 1261
	if (pdata->is_idma32)
		snprintf(dw->name, sizeof(dw->name), "idma32:dmac%d", chip->id);
	else
		snprintf(dw->name, sizeof(dw->name), "dw:dmac%d", chip->id);
1262

1263
	/* Create a pool of consistent memory blocks for hardware descriptors */
1264
	dw->desc_pool = dmam_pool_create(dw->name, chip->dev,
1265 1266
					 sizeof(struct dw_desc), 4, 0);
	if (!dw->desc_pool) {
1267
		dev_err(chip->dev, "No memory for descriptors dma pool\n");
1268 1269
		err = -ENOMEM;
		goto err_pdata;
1270 1271
	}

1272 1273
	tasklet_init(&dw->tasklet, dw_dma_tasklet, (unsigned long)dw);

1274
	err = request_irq(chip->irq, dw_dma_interrupt, IRQF_SHARED,
1275
			  dw->name, dw);
1276
	if (err)
1277
		goto err_pdata;
1278

1279
	INIT_LIST_HEAD(&dw->dma.channels);
1280
	for (i = 0; i < pdata->nr_channels; i++) {
1281 1282 1283
		struct dw_dma_chan	*dwc = &dw->chan[i];

		dwc->chan.device = &dw->dma;
1284
		dma_cookie_init(&dwc->chan);
1285 1286 1287 1288 1289
		if (pdata->chan_allocation_order == CHAN_ALLOCATION_ASCENDING)
			list_add_tail(&dwc->chan.device_node,
					&dw->dma.channels);
		else
			list_add(&dwc->chan.device_node, &dw->dma.channels);
1290

1291 1292
		/* 7 is highest priority & 0 is lowest. */
		if (pdata->chan_priority == CHAN_PRIORITY_ASCENDING)
1293
			dwc->priority = pdata->nr_channels - i - 1;
1294 1295 1296
		else
			dwc->priority = i;

1297 1298 1299 1300 1301 1302 1303 1304
		dwc->ch_regs = &__dw_regs(dw)->CHAN[i];
		spin_lock_init(&dwc->lock);
		dwc->mask = 1 << i;

		INIT_LIST_HEAD(&dwc->active_list);
		INIT_LIST_HEAD(&dwc->queue);

		channel_clear_bit(dw, CH_EN, dwc->mask);
1305

1306
		dwc->direction = DMA_TRANS_NONE;
1307

1308
		/* Hardware configuration */
1309
		if (autocfg) {
1310
			unsigned int r = DW_DMA_MAX_NR_CHANNELS - i - 1;
1311
			void __iomem *addr = &__dw_regs(dw)->DWC_PARAMS[r];
1312
			unsigned int dwc_params = readl(addr);
1313

1314 1315
			dev_dbg(chip->dev, "DWC_PARAMS[%d]: 0x%08x\n", i,
					   dwc_params);
1316

1317 1318
			/*
			 * Decode maximum block size for given channel. The
1319
			 * stored 4 bit value represents blocks from 0x00 for 3
1320 1321
			 * up to 0x0a for 4095.
			 */
1322
			dwc->block_size =
1323
				(4 << ((pdata->block_size >> 4 * i) & 0xf)) - 1;
1324 1325 1326
			dwc->nollp =
				(dwc_params >> DWC_PARAMS_MBLK_EN & 0x1) == 0;
		} else {
1327
			dwc->block_size = pdata->block_size;
1328
			dwc->nollp = !pdata->multi_block[i];
1329
		}
1330 1331
	}

1332
	/* Clear all interrupts on all channels. */
1333
	dma_writel(dw, CLEAR.XFER, dw->all_chan_mask);
1334
	dma_writel(dw, CLEAR.BLOCK, dw->all_chan_mask);
1335 1336 1337 1338
	dma_writel(dw, CLEAR.SRC_TRAN, dw->all_chan_mask);
	dma_writel(dw, CLEAR.DST_TRAN, dw->all_chan_mask);
	dma_writel(dw, CLEAR.ERROR, dw->all_chan_mask);

1339
	/* Set capabilities */
1340
	dma_cap_set(DMA_SLAVE, dw->dma.cap_mask);
1341 1342
	if (pdata->is_private)
		dma_cap_set(DMA_PRIVATE, dw->dma.cap_mask);
1343 1344 1345
	if (pdata->is_memcpy)
		dma_cap_set(DMA_MEMCPY, dw->dma.cap_mask);

1346
	dw->dma.dev = chip->dev;
1347 1348 1349 1350 1351
	dw->dma.device_alloc_chan_resources = dwc_alloc_chan_resources;
	dw->dma.device_free_chan_resources = dwc_free_chan_resources;

	dw->dma.device_prep_dma_memcpy = dwc_prep_dma_memcpy;
	dw->dma.device_prep_slave_sg = dwc_prep_slave_sg;
1352

1353 1354 1355 1356
	dw->dma.device_config = dwc_config;
	dw->dma.device_pause = dwc_pause;
	dw->dma.device_resume = dwc_resume;
	dw->dma.device_terminate_all = dwc_terminate_all;
1357

1358
	dw->dma.device_tx_status = dwc_tx_status;
1359 1360
	dw->dma.device_issue_pending = dwc_issue_pending;

1361 1362 1363 1364 1365 1366 1367
	/* DMA capabilities */
	dw->dma.src_addr_widths = DW_DMA_BUSWIDTHS;
	dw->dma.dst_addr_widths = DW_DMA_BUSWIDTHS;
	dw->dma.directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV) |
			     BIT(DMA_MEM_TO_MEM);
	dw->dma.residue_granularity = DMA_RESIDUE_GRANULARITY_BURST;

1368 1369 1370 1371
	err = dma_async_device_register(&dw->dma);
	if (err)
		goto err_dma_register;

1372
	dev_info(chip->dev, "DesignWare DMA Controller, %d channels\n",
1373
		 pdata->nr_channels);
1374

A
Andy Shevchenko 已提交
1375 1376
	pm_runtime_put_sync_suspend(chip->dev);

1377
	return 0;
1378

1379 1380
err_dma_register:
	free_irq(chip->irq, dw);
1381
err_pdata:
A
Andy Shevchenko 已提交
1382
	pm_runtime_put_sync_suspend(chip->dev);
1383
	return err;
1384
}
1385
EXPORT_SYMBOL_GPL(dw_dma_probe);
1386

1387
int dw_dma_remove(struct dw_dma_chip *chip)
1388
{
1389
	struct dw_dma		*dw = chip->dw;
1390 1391
	struct dw_dma_chan	*dwc, *_dwc;

A
Andy Shevchenko 已提交
1392 1393
	pm_runtime_get_sync(chip->dev);

1394 1395 1396
	dw_dma_off(dw);
	dma_async_device_unregister(&dw->dma);

1397
	free_irq(chip->irq, dw);
1398 1399 1400 1401 1402 1403 1404 1405
	tasklet_kill(&dw->tasklet);

	list_for_each_entry_safe(dwc, _dwc, &dw->dma.channels,
			chan.device_node) {
		list_del(&dwc->chan.device_node);
		channel_clear_bit(dw, CH_EN, dwc->mask);
	}

A
Andy Shevchenko 已提交
1406
	pm_runtime_put_sync_suspend(chip->dev);
1407 1408
	return 0;
}
1409
EXPORT_SYMBOL_GPL(dw_dma_remove);
1410

1411
int dw_dma_disable(struct dw_dma_chip *chip)
1412
{
1413
	struct dw_dma *dw = chip->dw;
1414

1415
	dw_dma_off(dw);
1416 1417
	return 0;
}
1418
EXPORT_SYMBOL_GPL(dw_dma_disable);
1419

1420
int dw_dma_enable(struct dw_dma_chip *chip)
1421
{
1422
	struct dw_dma *dw = chip->dw;
1423

1424 1425
	idma32_fifo_partition(dw);

1426
	dw_dma_on(dw);
1427 1428
	return 0;
}
1429
EXPORT_SYMBOL_GPL(dw_dma_enable);
1430 1431

MODULE_LICENSE("GPL v2");
1432
MODULE_DESCRIPTION("Synopsys DesignWare DMA Controller core driver");
J
Jean Delvare 已提交
1433
MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
1434
MODULE_AUTHOR("Viresh Kumar <vireshk@kernel.org>");