core.c 42.9 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 49 50 51
		u8 _dms = (_dwc->direction == DMA_MEM_TO_DEV) ?		\
			_dwc->p_master : _dwc->m_master;		\
		u8 _sms = (_dwc->direction == DMA_DEV_TO_MEM) ?		\
			_dwc->p_master : _dwc->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
static void dwc_initialize(struct dw_dma_chan *dwc)
{
	struct dw_dma *dw = to_dw_dma(dwc->chan.device);
	u32 cfghi = DWC_CFGH_FIFO_MODE;
	u32 cfglo = DWC_CFGL_CH_PRIOR(dwc->priority);

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

150 151
	cfghi |= DWC_CFGH_DST_PER(dwc->dst_id);
	cfghi |= DWC_CFGH_SRC_PER(dwc->src_id);
152 153 154 155 156 157 158 159

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

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

160
	set_bit(DW_DMA_IS_INITIALIZED, &dwc->flags);
161 162
}

163 164
/*----------------------------------------------------------------------*/

165
static inline void dwc_dump_chan_regs(struct dw_dma_chan *dwc)
166 167 168 169 170 171 172 173 174 175
{
	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));
}

176 177 178 179 180 181 182
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();
}

183 184
/*----------------------------------------------------------------------*/

185 186 187 188 189 190 191
/* 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;

192 193 194 195
	/*
	 * Software emulation of LLP mode relies on interrupts to continue
	 * multi block transfer.
	 */
196
	ctllo = lli_read(desc, ctllo) | DWC_CTLL_INT_EN;
197

198 199
	channel_writel(dwc, SAR, lli_read(desc, sar));
	channel_writel(dwc, DAR, lli_read(desc, dar));
200
	channel_writel(dwc, CTL_LO, ctllo);
201
	channel_writel(dwc, CTL_HI, lli_read(desc, ctlhi));
202
	channel_set_bit(dw, CH_EN, dwc->mask);
203 204 205

	/* Move pointer to next descriptor */
	dwc->tx_node_active = dwc->tx_node_active->next;
206 207
}

208 209 210 211
/* 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);
212
	u8		lms = DWC_LLP_LMS(dwc->m_master);
213
	unsigned long	was_soft_llp;
214 215 216

	/* ASSERT:  channel is idle */
	if (dma_readl(dw, CH_EN) & dwc->mask) {
217
		dev_err(chan2dev(&dwc->chan),
218 219
			"%s: BUG: Attempted to start non-idle channel\n",
			__func__);
220
		dwc_dump_chan_regs(dwc);
221 222 223 224 225

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

226 227 228 229 230
	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),
231
				"BUG: Attempted to start new LLP transfer inside ongoing one\n");
232 233 234 235 236
			return;
		}

		dwc_initialize(dwc);

237
		first->residue = first->total_len;
238
		dwc->tx_node_active = &first->tx_list;
239

240
		/* Submit first block */
241 242 243 244 245
		dwc_do_single_block(dwc, first);

		return;
	}

246 247
	dwc_initialize(dwc);

248 249
	channel_writel(dwc, LLP, first->txd.phys | lms);
	channel_writel(dwc, CTL_LO, DWC_CTLL_LLP_D_EN | DWC_CTLL_LLP_S_EN);
250 251 252 253
	channel_writel(dwc, CTL_HI, 0);
	channel_set_bit(dw, CH_EN, dwc->mask);
}

254 255
static void dwc_dostart_first_queued(struct dw_dma_chan *dwc)
{
256 257
	struct dw_desc *desc;

258 259 260 261
	if (list_empty(&dwc->queue))
		return;

	list_move(dwc->queue.next, &dwc->active_list);
262 263 264
	desc = dwc_first_active(dwc);
	dev_vdbg(chan2dev(&dwc->chan), "%s: started %u\n", __func__, desc->txd.cookie);
	dwc_dostart(dwc, desc);
265 266
}

267 268 269
/*----------------------------------------------------------------------*/

static void
270 271
dwc_descriptor_complete(struct dw_dma_chan *dwc, struct dw_desc *desc,
		bool callback_required)
272
{
273 274
	dma_async_tx_callback		callback = NULL;
	void				*param = NULL;
275
	struct dma_async_tx_descriptor	*txd = &desc->txd;
276
	struct dw_desc			*child;
277
	unsigned long			flags;
278

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

281
	spin_lock_irqsave(&dwc->lock, flags);
282
	dma_cookie_complete(txd);
283 284 285 286
	if (callback_required) {
		callback = txd->callback;
		param = txd->callback_param;
	}
287

288 289 290 291
	/* async_tx_ack */
	list_for_each_entry(child, &desc->tx_list, desc_node)
		async_tx_ack(&child->txd);
	async_tx_ack(&desc->txd);
292
	dwc_desc_put(dwc, desc);
293 294
	spin_unlock_irqrestore(&dwc->lock, flags);

295
	if (callback)
296 297 298 299 300 301 302
		callback(param);
}

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

305
	spin_lock_irqsave(&dwc->lock, flags);
306
	if (dma_readl(dw, CH_EN) & dwc->mask) {
307
		dev_err(chan2dev(&dwc->chan),
308 309 310
			"BUG: XFER bit set, but channel not idle!\n");

		/* Try to continue after resetting the channel... */
311
		dwc_chan_disable(dw, dwc);
312 313 314 315 316 317 318
	}

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

321 322
	spin_unlock_irqrestore(&dwc->lock, flags);

323
	list_for_each_entry_safe(desc, _desc, &list, desc_node)
324
		dwc_descriptor_complete(dwc, desc, true);
325 326
}

327 328 329 330 331 332 333 334 335
/* 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);

	return (ctlhi & DWC_CTLH_BLOCK_TS_MASK) * (1 << (ctllo >> 4 & 7));
}

336 337 338 339 340 341
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;
342
	unsigned long flags;
343

344
	spin_lock_irqsave(&dwc->lock, flags);
345 346 347 348 349 350
	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);
351 352

		if (test_bit(DW_DMA_IS_SOFT_LLP, &dwc->flags)) {
353 354 355 356 357 358 359 360 361 362
			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) {
363 364 365 366 367
				/* Update residue to reflect last sent descriptor */
				if (active == head->next)
					desc->residue -= desc->len;
				else
					desc->residue -= to_dw_desc(active->prev)->len;
368

369
				child = to_dw_desc(active);
370 371

				/* Submit next block */
372
				dwc_do_single_block(dwc, child);
373

374
				spin_unlock_irqrestore(&dwc->lock, flags);
375 376
				return;
			}
377

378 379 380
			/* We are done here */
			clear_bit(DW_DMA_IS_SOFT_LLP, &dwc->flags);
		}
381

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

384 385 386 387
		dwc_complete_all(dw, dwc);
		return;
	}

388 389
	if (list_empty(&dwc->active_list)) {
		spin_unlock_irqrestore(&dwc->lock, flags);
390
		return;
391
	}
392

393 394
	if (test_bit(DW_DMA_IS_SOFT_LLP, &dwc->flags)) {
		dev_vdbg(chan2dev(&dwc->chan), "%s: soft LLP mode\n", __func__);
395
		spin_unlock_irqrestore(&dwc->lock, flags);
396
		return;
397
	}
398

399
	dev_vdbg(chan2dev(&dwc->chan), "%s: llp=%pad\n", __func__, &llp);
400 401

	list_for_each_entry_safe(desc, _desc, &dwc->active_list, desc_node) {
402
		/* Initial residue value */
403
		desc->residue = desc->total_len;
404

405
		/* Check first descriptors addr */
406
		if (desc->txd.phys == DWC_LLP_LOC(llp)) {
407
			spin_unlock_irqrestore(&dwc->lock, flags);
408
			return;
409
		}
410

411
		/* Check first descriptors llp */
412
		if (lli_read(desc, llp) == llp) {
413
			/* This one is currently in progress */
414
			desc->residue -= dwc_get_sent(dwc);
415
			spin_unlock_irqrestore(&dwc->lock, flags);
416
			return;
417
		}
418

419
		desc->residue -= desc->len;
420
		list_for_each_entry(child, &desc->tx_list, desc_node) {
421
			if (lli_read(child, llp) == llp) {
422
				/* Currently in progress */
423
				desc->residue -= dwc_get_sent(dwc);
424
				spin_unlock_irqrestore(&dwc->lock, flags);
425
				return;
426
			}
427
			desc->residue -= child->len;
428
		}
429 430 431 432 433

		/*
		 * No descriptors so far seem to be in progress, i.e.
		 * this one must be done.
		 */
434
		spin_unlock_irqrestore(&dwc->lock, flags);
435
		dwc_descriptor_complete(dwc, desc, true);
436
		spin_lock_irqsave(&dwc->lock, flags);
437 438
	}

439
	dev_err(chan2dev(&dwc->chan),
440 441 442
		"BUG: All descriptors done, but channel not idle!\n");

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

445
	dwc_dostart_first_queued(dwc);
446
	spin_unlock_irqrestore(&dwc->lock, flags);
447 448
}

449
static inline void dwc_dump_lli(struct dw_dma_chan *dwc, struct dw_desc *desc)
450
{
451
	dev_crit(chan2dev(&dwc->chan), "  desc: s0x%x d0x%x l0x%x c0x%x:%x\n",
452 453 454 455 456
		 lli_read(desc, sar),
		 lli_read(desc, dar),
		 lli_read(desc, llp),
		 lli_read(desc, ctlhi),
		 lli_read(desc, ctllo));
457 458 459 460 461 462
}

static void dwc_handle_error(struct dw_dma *dw, struct dw_dma_chan *dwc)
{
	struct dw_desc *bad_desc;
	struct dw_desc *child;
463
	unsigned long flags;
464 465 466

	dwc_scan_descriptors(dw, dwc);

467 468
	spin_lock_irqsave(&dwc->lock, flags);

469 470 471 472 473 474 475
	/*
	 * 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);
476
	list_move(dwc->queue.next, dwc->active_list.prev);
477 478 479 480 481 482 483

	/* 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));

	/*
484
	 * WARN may seem harsh, but since this only happens
485 486 487 488 489
	 * 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.
	 */
490 491
	dev_WARN(chan2dev(&dwc->chan), "Bad descriptor submitted for DMA!\n"
				       "  cookie: %d\n", bad_desc->txd.cookie);
492
	dwc_dump_lli(dwc, bad_desc);
493
	list_for_each_entry(child, &bad_desc->tx_list, desc_node)
494
		dwc_dump_lli(dwc, child);
495

496 497
	spin_unlock_irqrestore(&dwc->lock, flags);

498
	/* Pretend the descriptor completed successfully */
499
	dwc_descriptor_complete(dwc, bad_desc, true);
500 501
}

502 503
/* --------------------- Cyclic DMA API extensions -------------------- */

504
dma_addr_t dw_dma_get_src_addr(struct dma_chan *chan)
505 506 507 508 509 510
{
	struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
	return channel_readl(dwc, SAR);
}
EXPORT_SYMBOL(dw_dma_get_src_addr);

511
dma_addr_t dw_dma_get_dst_addr(struct dma_chan *chan)
512 513 514 515 516 517
{
	struct dw_dma_chan *dwc = to_dw_dma_chan(chan);
	return channel_readl(dwc, DAR);
}
EXPORT_SYMBOL(dw_dma_get_dst_addr);

518
/* Called with dwc->lock held and all DMAC interrupts disabled */
519
static void dwc_handle_cyclic(struct dw_dma *dw, struct dw_dma_chan *dwc,
520
		u32 status_block, u32 status_err, u32 status_xfer)
521
{
522 523
	unsigned long flags;

524
	if (status_block & dwc->mask) {
525 526 527 528 529
		void (*callback)(void *param);
		void *callback_param;

		dev_vdbg(chan2dev(&dwc->chan), "new cyclic period llp 0x%08x\n",
				channel_readl(dwc, LLP));
530
		dma_writel(dw, CLEAR.BLOCK, dwc->mask);
531 532 533

		callback = dwc->cdesc->period_callback;
		callback_param = dwc->cdesc->period_callback_param;
534 535

		if (callback)
536 537 538 539 540 541 542 543 544
			callback(callback_param);
	}

	/*
	 * Error and transfer complete are highly unlikely, and will most
	 * likely be due to a configuration error by the user.
	 */
	if (unlikely(status_err & dwc->mask) ||
			unlikely(status_xfer & dwc->mask)) {
545
		unsigned int i;
546

547 548 549
		dev_err(chan2dev(&dwc->chan),
			"cyclic DMA unexpected %s interrupt, stopping DMA transfer\n",
			status_xfer ? "xfer" : "error");
550 551 552

		spin_lock_irqsave(&dwc->lock, flags);

553
		dwc_dump_chan_regs(dwc);
554

555
		dwc_chan_disable(dw, dwc);
556

557
		/* Make sure DMA does not restart by loading a new list */
558 559 560 561
		channel_writel(dwc, LLP, 0);
		channel_writel(dwc, CTL_LO, 0);
		channel_writel(dwc, CTL_HI, 0);

562
		dma_writel(dw, CLEAR.BLOCK, dwc->mask);
563 564 565 566
		dma_writel(dw, CLEAR.ERROR, dwc->mask);
		dma_writel(dw, CLEAR.XFER, dwc->mask);

		for (i = 0; i < dwc->cdesc->periods; i++)
567
			dwc_dump_lli(dwc, dwc->cdesc->desc[i]);
568 569

		spin_unlock_irqrestore(&dwc->lock, flags);
570
	}
571 572 573

	/* Re-enable interrupts */
	channel_set_bit(dw, MASK.BLOCK, dwc->mask);
574 575 576 577
}

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

578 579 580 581
static void dw_dma_tasklet(unsigned long data)
{
	struct dw_dma *dw = (struct dw_dma *)data;
	struct dw_dma_chan *dwc;
582
	u32 status_block;
583 584
	u32 status_xfer;
	u32 status_err;
585
	unsigned int i;
586

587
	status_block = dma_readl(dw, RAW.BLOCK);
588
	status_xfer = dma_readl(dw, RAW.XFER);
589 590
	status_err = dma_readl(dw, RAW.ERROR);

591
	dev_vdbg(dw->dma.dev, "%s: status_err=%x\n", __func__, status_err);
592 593 594

	for (i = 0; i < dw->dma.chancnt; i++) {
		dwc = &dw->chan[i];
595
		if (test_bit(DW_DMA_IS_CYCLIC, &dwc->flags))
596 597
			dwc_handle_cyclic(dw, dwc, status_block, status_err,
					status_xfer);
598
		else if (status_err & (1 << i))
599
			dwc_handle_error(dw, dwc);
600
		else if (status_xfer & (1 << i))
601 602 603
			dwc_scan_descriptors(dw, dwc);
	}

604
	/* Re-enable interrupts */
605 606 607 608 609 610 611
	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;
612
	u32 status;
613

614 615 616 617 618
	/* 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);
619 620 621
	dev_vdbg(dw->dma.dev, "%s: status=0x%x\n", __func__, status);

	/* Check if we have any interrupt from the DMAC */
622
	if (!status)
623
		return IRQ_NONE;
624 625 626 627 628 629

	/*
	 * Just disable the interrupts. We'll turn them back on in the
	 * softirq handler.
	 */
	channel_clear_bit(dw, MASK.XFER, dw->all_chan_mask);
630
	channel_clear_bit(dw, MASK.BLOCK, dw->all_chan_mask);
631 632 633 634 635 636 637 638 639 640
	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);
641
		channel_clear_bit(dw, MASK.BLOCK, (1 << 8) - 1);
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
		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);
659
	struct dw_dma		*dw = to_dw_dma(chan->device);
660 661 662 663 664
	struct dw_desc		*desc;
	struct dw_desc		*first;
	struct dw_desc		*prev;
	size_t			xfer_count;
	size_t			offset;
665
	u8			m_master = dwc->m_master;
666 667
	unsigned int		src_width;
	unsigned int		dst_width;
668
	unsigned int		data_width = dw->pdata->data_width[m_master];
669
	u32			ctllo;
670
	u8			lms = DWC_LLP_LMS(m_master);
671

672
	dev_vdbg(chan2dev(chan),
673 674
			"%s: d%pad s%pad l0x%zx f0x%lx\n", __func__,
			&dest, &src, len, flags);
675 676

	if (unlikely(!len)) {
677
		dev_dbg(chan2dev(chan), "%s: length is zero!\n", __func__);
678 679 680
		return NULL;
	}

681 682
	dwc->direction = DMA_MEM_TO_MEM;

683
	src_width = dst_width = __ffs(data_width | src | dest | len);
684

685
	ctllo = DWC_DEFAULT_CTLLO(chan)
686 687 688 689 690 691 692 693 694
			| 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;

	for (offset = 0; offset < len; offset += xfer_count << src_width) {
		xfer_count = min_t(size_t, (len - offset) >> src_width,
695
					   dwc->block_size);
696 697 698 699 700

		desc = dwc_desc_get(dwc);
		if (!desc)
			goto err_desc_get;

701 702 703 704
		lli_write(desc, sar, src + offset);
		lli_write(desc, dar, dest + offset);
		lli_write(desc, ctllo, ctllo);
		lli_write(desc, ctlhi, xfer_count);
705
		desc->len = xfer_count << src_width;
706 707 708 709

		if (!first) {
			first = desc;
		} else {
710
			lli_write(prev, llp, desc->txd.phys | lms);
711
			list_add_tail(&desc->desc_node, &first->tx_list);
712 713 714 715 716 717
		}
		prev = desc;
	}

	if (flags & DMA_PREP_INTERRUPT)
		/* Trigger interrupt after last block */
718
		lli_set(prev, ctllo, DWC_CTLL_INT_EN);
719 720

	prev->lli.llp = 0;
721
	lli_clear(prev, ctllo, DWC_CTLL_LLP_D_EN | DWC_CTLL_LLP_S_EN);
722
	first->txd.flags = flags;
723
	first->total_len = len;
724 725 726 727 728 729 730 731 732 733

	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,
734
		unsigned int sg_len, enum dma_transfer_direction direction,
735
		unsigned long flags, void *context)
736 737
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
738
	struct dw_dma		*dw = to_dw_dma(chan->device);
739
	struct dma_slave_config	*sconfig = &dwc->dma_sconfig;
740 741 742
	struct dw_desc		*prev;
	struct dw_desc		*first;
	u32			ctllo;
743 744
	u8			m_master = dwc->m_master;
	u8			lms = DWC_LLP_LMS(m_master);
745 746 747
	dma_addr_t		reg;
	unsigned int		reg_width;
	unsigned int		mem_width;
748
	unsigned int		data_width = dw->pdata->data_width[m_master];
749 750 751 752
	unsigned int		i;
	struct scatterlist	*sg;
	size_t			total_len = 0;

753
	dev_vdbg(chan2dev(chan), "%s\n", __func__);
754

755
	if (unlikely(!is_slave_direction(direction) || !sg_len))
756 757
		return NULL;

758 759
	dwc->direction = direction;

760 761 762
	prev = first = NULL;

	switch (direction) {
763
	case DMA_MEM_TO_DEV:
764
		reg_width = __ffs(sconfig->dst_addr_width);
765 766
		reg = sconfig->dst_addr;
		ctllo = (DWC_DEFAULT_CTLLO(chan)
767 768
				| DWC_CTLL_DST_WIDTH(reg_width)
				| DWC_CTLL_DST_FIX
769 770 771 772 773
				| DWC_CTLL_SRC_INC);

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

774 775
		for_each_sg(sgl, sg, sg_len, i) {
			struct dw_desc	*desc;
776
			u32		len, dlen, mem;
777

778
			mem = sg_dma_address(sg);
779
			len = sg_dma_len(sg);
780

781
			mem_width = __ffs(data_width | mem | len);
782

783
slave_sg_todev_fill_desc:
784
			desc = dwc_desc_get(dwc);
785
			if (!desc)
786 787
				goto err_desc_get;

788 789 790
			lli_write(desc, sar, mem);
			lli_write(desc, dar, reg);
			lli_write(desc, ctllo, ctllo | DWC_CTLL_SRC_WIDTH(mem_width));
791 792
			if ((len >> mem_width) > dwc->block_size) {
				dlen = dwc->block_size << mem_width;
793 794 795 796 797 798 799
				mem += dlen;
				len -= dlen;
			} else {
				dlen = len;
				len = 0;
			}

800
			lli_write(desc, ctlhi, dlen >> mem_width);
801
			desc->len = dlen;
802 803 804 805

			if (!first) {
				first = desc;
			} else {
806
				lli_write(prev, llp, desc->txd.phys | lms);
807
				list_add_tail(&desc->desc_node, &first->tx_list);
808 809
			}
			prev = desc;
810 811 812 813
			total_len += dlen;

			if (len)
				goto slave_sg_todev_fill_desc;
814 815
		}
		break;
816
	case DMA_DEV_TO_MEM:
817
		reg_width = __ffs(sconfig->src_addr_width);
818 819
		reg = sconfig->src_addr;
		ctllo = (DWC_DEFAULT_CTLLO(chan)
820 821
				| DWC_CTLL_SRC_WIDTH(reg_width)
				| DWC_CTLL_DST_INC
822 823 824 825
				| DWC_CTLL_SRC_FIX);

		ctllo |= sconfig->device_fc ? DWC_CTLL_FC(DW_DMA_FC_P_P2M) :
			DWC_CTLL_FC(DW_DMA_FC_D_P2M);
826 827 828

		for_each_sg(sgl, sg, sg_len, i) {
			struct dw_desc	*desc;
829
			u32		len, dlen, mem;
830

831
			mem = sg_dma_address(sg);
832
			len = sg_dma_len(sg);
833

834
			mem_width = __ffs(data_width | mem | len);
835

836 837
slave_sg_fromdev_fill_desc:
			desc = dwc_desc_get(dwc);
838
			if (!desc)
839 840
				goto err_desc_get;

841 842 843
			lli_write(desc, sar, reg);
			lli_write(desc, dar, mem);
			lli_write(desc, ctllo, ctllo | DWC_CTLL_DST_WIDTH(mem_width));
844 845
			if ((len >> reg_width) > dwc->block_size) {
				dlen = dwc->block_size << reg_width;
846 847 848 849 850 851
				mem += dlen;
				len -= dlen;
			} else {
				dlen = len;
				len = 0;
			}
852
			lli_write(desc, ctlhi, dlen >> reg_width);
853
			desc->len = dlen;
854 855 856 857

			if (!first) {
				first = desc;
			} else {
858
				lli_write(prev, llp, desc->txd.phys | lms);
859
				list_add_tail(&desc->desc_node, &first->tx_list);
860 861
			}
			prev = desc;
862 863 864 865
			total_len += dlen;

			if (len)
				goto slave_sg_fromdev_fill_desc;
866 867 868 869 870 871 872 873
		}
		break;
	default:
		return NULL;
	}

	if (flags & DMA_PREP_INTERRUPT)
		/* Trigger interrupt after last block */
874
		lli_set(prev, ctllo, DWC_CTLL_INT_EN);
875 876

	prev->lli.llp = 0;
877
	lli_clear(prev, ctllo, DWC_CTLL_LLP_D_EN | DWC_CTLL_LLP_S_EN);
878
	first->total_len = total_len;
879 880 881 882

	return &first->txd;

err_desc_get:
883 884
	dev_err(chan2dev(chan),
		"not enough descriptors available. Direction %d\n", direction);
885 886 887 888
	dwc_desc_put(dwc, first);
	return NULL;
}

889 890 891 892 893
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;

894
	if (dws->dma_dev != chan->device->dev)
895 896 897 898 899 900 901
		return false;

	/* We have to copy data since dws can be temporary storage */

	dwc->src_id = dws->src_id;
	dwc->dst_id = dws->dst_id;

902 903
	dwc->m_master = dws->m_master;
	dwc->p_master = dws->p_master;
904 905 906 907 908

	return true;
}
EXPORT_SYMBOL_GPL(dw_dma_filter);

909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924
/*
 * 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 controller.
 *
 * This can be done by finding least significant bit set: n & (n - 1)
 */
static inline void convert_burst(u32 *maxburst)
{
	if (*maxburst > 1)
		*maxburst = fls(*maxburst) - 2;
	else
		*maxburst = 0;
}

925
static int dwc_config(struct dma_chan *chan, struct dma_slave_config *sconfig)
926 927 928
{
	struct dw_dma_chan *dwc = to_dw_dma_chan(chan);

929 930
	/* Check if chan will be configured for slave transfers */
	if (!is_slave_direction(sconfig->direction))
931 932 933
		return -EINVAL;

	memcpy(&dwc->dma_sconfig, sconfig, sizeof(*sconfig));
934
	dwc->direction = sconfig->direction;
935 936 937 938 939 940 941

	convert_burst(&dwc->dma_sconfig.src_maxburst);
	convert_burst(&dwc->dma_sconfig.dst_maxburst);

	return 0;
}

942
static int dwc_pause(struct dma_chan *chan)
943
{
944 945 946 947 948 949
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
	unsigned long		flags;
	unsigned int		count = 20;	/* timeout iterations */
	u32			cfglo;

	spin_lock_irqsave(&dwc->lock, flags);
950

951
	cfglo = channel_readl(dwc, CFG_LO);
952
	channel_writel(dwc, CFG_LO, cfglo | DWC_CFGL_CH_SUSP);
953 954
	while (!(channel_readl(dwc, CFG_LO) & DWC_CFGL_FIFO_EMPTY) && count--)
		udelay(2);
955

956
	set_bit(DW_DMA_IS_PAUSED, &dwc->flags);
957 958 959 960

	spin_unlock_irqrestore(&dwc->lock, flags);

	return 0;
961 962 963 964 965 966 967 968
}

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

969
	clear_bit(DW_DMA_IS_PAUSED, &dwc->flags);
970 971
}

972
static int dwc_resume(struct dma_chan *chan)
973 974
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
975
	unsigned long		flags;
976

977
	spin_lock_irqsave(&dwc->lock, flags);
978

979 980
	if (test_bit(DW_DMA_IS_PAUSED, &dwc->flags))
		dwc_chan_resume(dwc);
981

982
	spin_unlock_irqrestore(&dwc->lock, flags);
983

984 985
	return 0;
}
986

987 988 989 990 991 992 993
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);
994

995
	spin_lock_irqsave(&dwc->lock, flags);
996

997
	clear_bit(DW_DMA_IS_SOFT_LLP, &dwc->flags);
998

999
	dwc_chan_disable(dw, dwc);
1000

1001
	dwc_chan_resume(dwc);
1002

1003 1004 1005
	/* active_list entries will end up before queued entries */
	list_splice_init(&dwc->queue, &list);
	list_splice_init(&dwc->active_list, &list);
1006

1007
	spin_unlock_irqrestore(&dwc->lock, flags);
1008

1009 1010 1011
	/* Flush all pending and queued descriptors */
	list_for_each_entry_safe(desc, _desc, &list, desc_node)
		dwc_descriptor_complete(dwc, desc, false);
1012 1013

	return 0;
1014 1015
}

1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
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)
1028
{
1029
	struct dw_desc *desc;
1030 1031 1032 1033 1034
	unsigned long flags;
	u32 residue;

	spin_lock_irqsave(&dwc->lock, flags);

1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
	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;
	}
1047 1048 1049 1050 1051

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

1052
static enum dma_status
1053 1054 1055
dwc_tx_status(struct dma_chan *chan,
	      dma_cookie_t cookie,
	      struct dma_tx_state *txstate)
1056 1057
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
1058
	enum dma_status		ret;
1059

1060
	ret = dma_cookie_status(chan, cookie, txstate);
1061
	if (ret == DMA_COMPLETE)
1062
		return ret;
1063

1064
	dwc_scan_descriptors(to_dw_dma(chan->device), dwc);
1065

1066
	ret = dma_cookie_status(chan, cookie, txstate);
1067 1068 1069 1070
	if (ret == DMA_COMPLETE)
		return ret;

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

1072
	if (test_bit(DW_DMA_IS_PAUSED, &dwc->flags) && ret == DMA_IN_PROGRESS)
1073
		return DMA_PAUSED;
1074 1075 1076 1077 1078 1079 1080

	return ret;
}

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

1083 1084 1085 1086
	spin_lock_irqsave(&dwc->lock, flags);
	if (list_empty(&dwc->active_list))
		dwc_dostart_first_queued(dwc);
	spin_unlock_irqrestore(&dwc->lock, flags);
1087 1088
}

1089 1090 1091 1092
/*----------------------------------------------------------------------*/

static void dw_dma_off(struct dw_dma *dw)
{
1093
	unsigned int i;
1094 1095 1096 1097

	dma_writel(dw, CFG, 0);

	channel_clear_bit(dw, MASK.XFER, dw->all_chan_mask);
1098
	channel_clear_bit(dw, MASK.BLOCK, dw->all_chan_mask);
1099 1100 1101 1102 1103 1104 1105 1106
	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++)
1107
		clear_bit(DW_DMA_IS_INITIALIZED, &dw->chan[i].flags);
1108 1109 1110 1111 1112 1113 1114
}

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

1115
static int dwc_alloc_chan_resources(struct dma_chan *chan)
1116 1117 1118 1119
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
	struct dw_dma		*dw = to_dw_dma(chan->device);

1120
	dev_vdbg(chan2dev(chan), "%s\n", __func__);
1121 1122 1123

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

1128
	dma_cookie_init(chan);
1129 1130 1131 1132 1133 1134 1135

	/*
	 * 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.
	 */

1136 1137 1138 1139 1140 1141 1142 1143
	/*
	 * 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;
	}

1144 1145 1146 1147 1148
	/* Enable controller here if needed */
	if (!dw->in_use)
		dw_dma_on(dw);
	dw->in_use |= dwc->mask;

1149
	return 0;
1150 1151 1152 1153 1154 1155
}

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);
1156
	unsigned long		flags;
1157 1158
	LIST_HEAD(list);

1159
	dev_dbg(chan2dev(chan), "%s: descs allocated=%u\n", __func__,
1160 1161 1162 1163 1164 1165 1166
			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);

1167
	spin_lock_irqsave(&dwc->lock, flags);
1168 1169 1170 1171 1172

	/* Clear custom channel configuration */
	dwc->src_id = 0;
	dwc->dst_id = 0;

1173 1174
	dwc->m_master = 0;
	dwc->p_master = 0;
1175

1176
	clear_bit(DW_DMA_IS_INITIALIZED, &dwc->flags);
1177 1178 1179

	/* Disable interrupts */
	channel_clear_bit(dw, MASK.XFER, dwc->mask);
1180
	channel_clear_bit(dw, MASK.BLOCK, dwc->mask);
1181 1182
	channel_clear_bit(dw, MASK.ERROR, dwc->mask);

1183
	spin_unlock_irqrestore(&dwc->lock, flags);
1184

1185 1186 1187 1188 1189
	/* Disable controller in case it was a last user */
	dw->in_use &= ~dwc->mask;
	if (!dw->in_use)
		dw_dma_off(dw);

1190
	dev_vdbg(chan2dev(chan), "%s: done\n", __func__);
1191 1192
}

1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
/* --------------------- Cyclic DMA API extensions -------------------- */

/**
 * dw_dma_cyclic_start - start the cyclic DMA transfer
 * @chan: the DMA channel to start
 *
 * Must be called with soft interrupts disabled. Returns zero on success or
 * -errno on failure.
 */
int dw_dma_cyclic_start(struct dma_chan *chan)
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
1205
	struct dw_dma		*dw = to_dw_dma(chan->device);
1206
	unsigned long		flags;
1207 1208 1209 1210 1211 1212

	if (!test_bit(DW_DMA_IS_CYCLIC, &dwc->flags)) {
		dev_err(chan2dev(&dwc->chan), "missing prep for cyclic DMA\n");
		return -ENODEV;
	}

1213
	spin_lock_irqsave(&dwc->lock, flags);
1214 1215 1216 1217

	/* Enable interrupts to perform cyclic transfer */
	channel_set_bit(dw, MASK.BLOCK, dwc->mask);

1218
	dwc_dostart(dwc, dwc->cdesc->desc[0]);
1219

1220
	spin_unlock_irqrestore(&dwc->lock, flags);
1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235

	return 0;
}
EXPORT_SYMBOL(dw_dma_cyclic_start);

/**
 * dw_dma_cyclic_stop - stop the cyclic DMA transfer
 * @chan: the DMA channel to stop
 *
 * Must be called with soft interrupts disabled.
 */
void dw_dma_cyclic_stop(struct dma_chan *chan)
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
	struct dw_dma		*dw = to_dw_dma(dwc->chan.device);
1236
	unsigned long		flags;
1237

1238
	spin_lock_irqsave(&dwc->lock, flags);
1239

1240
	dwc_chan_disable(dw, dwc);
1241

1242
	spin_unlock_irqrestore(&dwc->lock, flags);
1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
}
EXPORT_SYMBOL(dw_dma_cyclic_stop);

/**
 * dw_dma_cyclic_prep - prepare the cyclic DMA transfer
 * @chan: the DMA channel to prepare
 * @buf_addr: physical DMA address where the buffer starts
 * @buf_len: total number of bytes for the entire buffer
 * @period_len: number of bytes for each period
 * @direction: transfer direction, to or from device
 *
 * Must be called before trying to start the transfer. Returns a valid struct
 * dw_cyclic_desc if successful or an ERR_PTR(-errno) if not successful.
 */
struct dw_cyclic_desc *dw_dma_cyclic_prep(struct dma_chan *chan,
		dma_addr_t buf_addr, size_t buf_len, size_t period_len,
1259
		enum dma_transfer_direction direction)
1260 1261
{
	struct dw_dma_chan		*dwc = to_dw_dma_chan(chan);
1262
	struct dma_slave_config		*sconfig = &dwc->dma_sconfig;
1263 1264 1265 1266
	struct dw_cyclic_desc		*cdesc;
	struct dw_cyclic_desc		*retval = NULL;
	struct dw_desc			*desc;
	struct dw_desc			*last = NULL;
1267
	u8				lms = DWC_LLP_LMS(dwc->m_master);
1268 1269 1270 1271
	unsigned long			was_cyclic;
	unsigned int			reg_width;
	unsigned int			periods;
	unsigned int			i;
1272
	unsigned long			flags;
1273

1274
	spin_lock_irqsave(&dwc->lock, flags);
1275 1276 1277 1278 1279 1280 1281
	if (dwc->nollp) {
		spin_unlock_irqrestore(&dwc->lock, flags);
		dev_dbg(chan2dev(&dwc->chan),
				"channel doesn't support LLP transfers\n");
		return ERR_PTR(-EINVAL);
	}

1282
	if (!list_empty(&dwc->queue) || !list_empty(&dwc->active_list)) {
1283
		spin_unlock_irqrestore(&dwc->lock, flags);
1284 1285 1286 1287 1288 1289
		dev_dbg(chan2dev(&dwc->chan),
				"queue and/or active list are not empty\n");
		return ERR_PTR(-EBUSY);
	}

	was_cyclic = test_and_set_bit(DW_DMA_IS_CYCLIC, &dwc->flags);
1290
	spin_unlock_irqrestore(&dwc->lock, flags);
1291 1292 1293 1294 1295 1296 1297
	if (was_cyclic) {
		dev_dbg(chan2dev(&dwc->chan),
				"channel already prepared for cyclic DMA\n");
		return ERR_PTR(-EBUSY);
	}

	retval = ERR_PTR(-EINVAL);
1298

1299 1300 1301
	if (unlikely(!is_slave_direction(direction)))
		goto out_err;

1302 1303
	dwc->direction = direction;

1304 1305 1306 1307 1308
	if (direction == DMA_MEM_TO_DEV)
		reg_width = __ffs(sconfig->dst_addr_width);
	else
		reg_width = __ffs(sconfig->src_addr_width);

1309 1310 1311
	periods = buf_len / period_len;

	/* Check for too big/unaligned periods and unaligned DMA buffer. */
1312
	if (period_len > (dwc->block_size << reg_width))
1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334
		goto out_err;
	if (unlikely(period_len & ((1 << reg_width) - 1)))
		goto out_err;
	if (unlikely(buf_addr & ((1 << reg_width) - 1)))
		goto out_err;

	retval = ERR_PTR(-ENOMEM);

	cdesc = kzalloc(sizeof(struct dw_cyclic_desc), GFP_KERNEL);
	if (!cdesc)
		goto out_err;

	cdesc->desc = kzalloc(sizeof(struct dw_desc *) * periods, GFP_KERNEL);
	if (!cdesc->desc)
		goto out_err_alloc;

	for (i = 0; i < periods; i++) {
		desc = dwc_desc_get(dwc);
		if (!desc)
			goto out_err_desc_get;

		switch (direction) {
1335
		case DMA_MEM_TO_DEV:
1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347
			lli_write(desc, dar, sconfig->dst_addr);
			lli_write(desc, sar, buf_addr + period_len * i);
			lli_write(desc, ctllo, (DWC_DEFAULT_CTLLO(chan)
				| DWC_CTLL_DST_WIDTH(reg_width)
				| DWC_CTLL_SRC_WIDTH(reg_width)
				| DWC_CTLL_DST_FIX
				| DWC_CTLL_SRC_INC
				| DWC_CTLL_INT_EN));

			lli_set(desc, ctllo, sconfig->device_fc ?
					DWC_CTLL_FC(DW_DMA_FC_P_M2P) :
					DWC_CTLL_FC(DW_DMA_FC_D_M2P));
1348

1349
			break;
1350
		case DMA_DEV_TO_MEM:
1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
			lli_write(desc, dar, buf_addr + period_len * i);
			lli_write(desc, sar, sconfig->src_addr);
			lli_write(desc, ctllo, (DWC_DEFAULT_CTLLO(chan)
				| DWC_CTLL_SRC_WIDTH(reg_width)
				| DWC_CTLL_DST_WIDTH(reg_width)
				| DWC_CTLL_DST_INC
				| DWC_CTLL_SRC_FIX
				| DWC_CTLL_INT_EN));

			lli_set(desc, ctllo, sconfig->device_fc ?
					DWC_CTLL_FC(DW_DMA_FC_P_P2M) :
					DWC_CTLL_FC(DW_DMA_FC_D_P2M));
1363

1364 1365 1366 1367 1368
			break;
		default:
			break;
		}

1369
		lli_write(desc, ctlhi, period_len >> reg_width);
1370 1371
		cdesc->desc[i] = desc;

1372
		if (last)
1373
			lli_write(last, llp, desc->txd.phys | lms);
1374 1375 1376 1377

		last = desc;
	}

1378
	/* Let's make a cyclic list */
1379
	lli_write(last, llp, cdesc->desc[0]->txd.phys | lms);
1380

1381 1382 1383
	dev_dbg(chan2dev(&dwc->chan),
			"cyclic prepared buf %pad len %zu period %zu periods %d\n",
			&buf_addr, buf_len, period_len, periods);
1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409

	cdesc->periods = periods;
	dwc->cdesc = cdesc;

	return cdesc;

out_err_desc_get:
	while (i--)
		dwc_desc_put(dwc, cdesc->desc[i]);
out_err_alloc:
	kfree(cdesc);
out_err:
	clear_bit(DW_DMA_IS_CYCLIC, &dwc->flags);
	return (struct dw_cyclic_desc *)retval;
}
EXPORT_SYMBOL(dw_dma_cyclic_prep);

/**
 * dw_dma_cyclic_free - free a prepared cyclic DMA transfer
 * @chan: the DMA channel to free
 */
void dw_dma_cyclic_free(struct dma_chan *chan)
{
	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
	struct dw_dma		*dw = to_dw_dma(dwc->chan.device);
	struct dw_cyclic_desc	*cdesc = dwc->cdesc;
1410
	unsigned int		i;
1411
	unsigned long		flags;
1412

1413
	dev_dbg(chan2dev(&dwc->chan), "%s\n", __func__);
1414 1415 1416 1417

	if (!cdesc)
		return;

1418
	spin_lock_irqsave(&dwc->lock, flags);
1419

1420
	dwc_chan_disable(dw, dwc);
1421

1422
	dma_writel(dw, CLEAR.BLOCK, dwc->mask);
1423 1424 1425
	dma_writel(dw, CLEAR.ERROR, dwc->mask);
	dma_writel(dw, CLEAR.XFER, dwc->mask);

1426
	spin_unlock_irqrestore(&dwc->lock, flags);
1427 1428 1429 1430 1431 1432 1433

	for (i = 0; i < cdesc->periods; i++)
		dwc_desc_put(dwc, cdesc->desc[i]);

	kfree(cdesc->desc);
	kfree(cdesc);

1434 1435
	dwc->cdesc = NULL;

1436 1437 1438 1439
	clear_bit(DW_DMA_IS_CYCLIC, &dwc->flags);
}
EXPORT_SYMBOL(dw_dma_cyclic_free);

1440 1441
/*----------------------------------------------------------------------*/

1442
int dw_dma_probe(struct dw_dma_chip *chip)
1443
{
1444
	struct dw_dma_platform_data *pdata;
1445
	struct dw_dma		*dw;
1446
	bool			autocfg = false;
1447
	unsigned int		dw_params;
1448
	unsigned int		i;
1449 1450
	int			err;

1451 1452 1453 1454
	dw = devm_kzalloc(chip->dev, sizeof(*dw), GFP_KERNEL);
	if (!dw)
		return -ENOMEM;

1455 1456 1457 1458
	dw->pdata = devm_kzalloc(chip->dev, sizeof(*dw->pdata), GFP_KERNEL);
	if (!dw->pdata)
		return -ENOMEM;

1459 1460 1461
	dw->regs = chip->regs;
	chip->dw = dw;

A
Andy Shevchenko 已提交
1462 1463
	pm_runtime_get_sync(chip->dev);

1464
	if (!chip->pdata) {
1465
		dw_params = dma_readl(dw, DW_PARAMS);
1466
		dev_dbg(chip->dev, "DW_PARAMS: 0x%08x\n", dw_params);
1467

1468 1469 1470 1471 1472
		autocfg = dw_params >> DW_PARAMS_EN & 1;
		if (!autocfg) {
			err = -EINVAL;
			goto err_pdata;
		}
1473

1474 1475
		/* Reassign the platform data pointer */
		pdata = dw->pdata;
1476

1477 1478 1479 1480 1481
		/* 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] =
1482
				4 << (dw_params >> DW_PARAMS_DATA_WIDTH(i) & 3);
1483
		}
1484
		pdata->block_size = dma_readl(dw, MAX_BLK_SIZE);
1485

1486 1487
		/* Fill platform data with the default values */
		pdata->is_private = true;
1488
		pdata->is_memcpy = true;
1489 1490
		pdata->chan_allocation_order = CHAN_ALLOCATION_ASCENDING;
		pdata->chan_priority = CHAN_PRIORITY_ASCENDING;
1491
	} else if (chip->pdata->nr_channels > DW_DMA_MAX_NR_CHANNELS) {
1492 1493
		err = -EINVAL;
		goto err_pdata;
1494
	} else {
1495
		memcpy(dw->pdata, chip->pdata, sizeof(*dw->pdata));
1496 1497 1498

		/* Reassign the platform data pointer */
		pdata = dw->pdata;
1499
	}
1500

1501
	dw->chan = devm_kcalloc(chip->dev, pdata->nr_channels, sizeof(*dw->chan),
1502
				GFP_KERNEL);
1503 1504 1505 1506
	if (!dw->chan) {
		err = -ENOMEM;
		goto err_pdata;
	}
1507

1508
	/* Calculate all channel mask before DMA setup */
1509
	dw->all_chan_mask = (1 << pdata->nr_channels) - 1;
1510

1511
	/* Force dma off, just in case */
1512 1513
	dw_dma_off(dw);

1514
	/* Create a pool of consistent memory blocks for hardware descriptors */
1515
	dw->desc_pool = dmam_pool_create("dw_dmac_desc_pool", chip->dev,
1516 1517
					 sizeof(struct dw_desc), 4, 0);
	if (!dw->desc_pool) {
1518
		dev_err(chip->dev, "No memory for descriptors dma pool\n");
1519 1520
		err = -ENOMEM;
		goto err_pdata;
1521 1522
	}

1523 1524
	tasklet_init(&dw->tasklet, dw_dma_tasklet, (unsigned long)dw);

1525 1526 1527
	err = request_irq(chip->irq, dw_dma_interrupt, IRQF_SHARED,
			  "dw_dmac", dw);
	if (err)
1528
		goto err_pdata;
1529

1530
	INIT_LIST_HEAD(&dw->dma.channels);
1531
	for (i = 0; i < pdata->nr_channels; i++) {
1532 1533 1534
		struct dw_dma_chan	*dwc = &dw->chan[i];

		dwc->chan.device = &dw->dma;
1535
		dma_cookie_init(&dwc->chan);
1536 1537 1538 1539 1540
		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);
1541

1542 1543
		/* 7 is highest priority & 0 is lowest. */
		if (pdata->chan_priority == CHAN_PRIORITY_ASCENDING)
1544
			dwc->priority = pdata->nr_channels - i - 1;
1545 1546 1547
		else
			dwc->priority = i;

1548 1549 1550 1551 1552 1553 1554 1555
		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);
1556

1557
		dwc->direction = DMA_TRANS_NONE;
1558

1559
		/* Hardware configuration */
1560
		if (autocfg) {
1561
			unsigned int r = DW_DMA_MAX_NR_CHANNELS - i - 1;
1562 1563
			void __iomem *addr = &__dw_regs(dw)->DWC_PARAMS[r];
			unsigned int dwc_params = dma_readl_native(addr);
1564

1565 1566
			dev_dbg(chip->dev, "DWC_PARAMS[%d]: 0x%08x\n", i,
					   dwc_params);
1567

1568 1569
			/*
			 * Decode maximum block size for given channel. The
1570
			 * stored 4 bit value represents blocks from 0x00 for 3
1571 1572
			 * up to 0x0a for 4095.
			 */
1573
			dwc->block_size =
1574
				(4 << ((pdata->block_size >> 4 * i) & 0xf)) - 1;
1575 1576 1577
			dwc->nollp =
				(dwc_params >> DWC_PARAMS_MBLK_EN & 0x1) == 0;
		} else {
1578
			dwc->block_size = pdata->block_size;
1579 1580

			/* Check if channel supports multi block transfer */
1581 1582
			channel_writel(dwc, LLP, DWC_LLP_LOC(0xffffffff));
			dwc->nollp = DWC_LLP_LOC(channel_readl(dwc, LLP)) == 0;
1583 1584
			channel_writel(dwc, LLP, 0);
		}
1585 1586
	}

1587
	/* Clear all interrupts on all channels. */
1588
	dma_writel(dw, CLEAR.XFER, dw->all_chan_mask);
1589
	dma_writel(dw, CLEAR.BLOCK, dw->all_chan_mask);
1590 1591 1592 1593
	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);

1594
	/* Set capabilities */
1595
	dma_cap_set(DMA_SLAVE, dw->dma.cap_mask);
1596 1597
	if (pdata->is_private)
		dma_cap_set(DMA_PRIVATE, dw->dma.cap_mask);
1598 1599 1600
	if (pdata->is_memcpy)
		dma_cap_set(DMA_MEMCPY, dw->dma.cap_mask);

1601
	dw->dma.dev = chip->dev;
1602 1603 1604 1605 1606
	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;
1607

1608 1609 1610 1611
	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;
1612

1613
	dw->dma.device_tx_status = dwc_tx_status;
1614 1615
	dw->dma.device_issue_pending = dwc_issue_pending;

1616 1617 1618 1619 1620 1621 1622
	/* 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;

1623 1624 1625 1626
	err = dma_async_device_register(&dw->dma);
	if (err)
		goto err_dma_register;

1627
	dev_info(chip->dev, "DesignWare DMA Controller, %d channels\n",
1628
		 pdata->nr_channels);
1629

A
Andy Shevchenko 已提交
1630 1631
	pm_runtime_put_sync_suspend(chip->dev);

1632
	return 0;
1633

1634 1635
err_dma_register:
	free_irq(chip->irq, dw);
1636
err_pdata:
A
Andy Shevchenko 已提交
1637
	pm_runtime_put_sync_suspend(chip->dev);
1638
	return err;
1639
}
1640
EXPORT_SYMBOL_GPL(dw_dma_probe);
1641

1642
int dw_dma_remove(struct dw_dma_chip *chip)
1643
{
1644
	struct dw_dma		*dw = chip->dw;
1645 1646
	struct dw_dma_chan	*dwc, *_dwc;

A
Andy Shevchenko 已提交
1647 1648
	pm_runtime_get_sync(chip->dev);

1649 1650 1651
	dw_dma_off(dw);
	dma_async_device_unregister(&dw->dma);

1652
	free_irq(chip->irq, dw);
1653 1654 1655 1656 1657 1658 1659 1660
	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 已提交
1661
	pm_runtime_put_sync_suspend(chip->dev);
1662 1663
	return 0;
}
1664
EXPORT_SYMBOL_GPL(dw_dma_remove);
1665

1666
int dw_dma_disable(struct dw_dma_chip *chip)
1667
{
1668
	struct dw_dma *dw = chip->dw;
1669

1670
	dw_dma_off(dw);
1671 1672
	return 0;
}
1673
EXPORT_SYMBOL_GPL(dw_dma_disable);
1674

1675
int dw_dma_enable(struct dw_dma_chip *chip)
1676
{
1677
	struct dw_dma *dw = chip->dw;
1678

1679
	dw_dma_on(dw);
1680 1681
	return 0;
}
1682
EXPORT_SYMBOL_GPL(dw_dma_enable);
1683 1684

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