blob: 5d225ddc76986e7cb3e98c00cc92ca16bb58a428 [file] [log] [blame]
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001/*
2 * Driver for the Atmel AHB DMA Controller (aka HDMA or DMAC on AT91 systems)
3 *
4 * Copyright (C) 2008 Atmel Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 *
12 * This supports the Atmel AHB DMA Controller,
13 *
14 * The driver has currently been tested with the Atmel AT91SAM9RL
15 * and AT91SAM9G45 series.
16 */
17
18#include <linux/clk.h>
19#include <linux/dmaengine.h>
20#include <linux/dma-mapping.h>
21#include <linux/dmapool.h>
22#include <linux/interrupt.h>
23#include <linux/module.h>
24#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Nicolas Ferrec5115952011-10-17 14:56:41 +020026#include <linux/of.h>
27#include <linux/of_device.h>
Nicolas Ferredc78baa2009-07-03 19:24:33 +020028
29#include "at_hdmac_regs.h"
Russell King - ARM Linuxd2ebfb32012-03-06 22:34:26 +000030#include "dmaengine.h"
Nicolas Ferredc78baa2009-07-03 19:24:33 +020031
32/*
33 * Glossary
34 * --------
35 *
36 * at_hdmac : Name of the ATmel AHB DMA Controller
37 * at_dma_ / atdma : ATmel DMA controller entity related
38 * atc_ / atchan : ATmel DMA Channel entity related
39 */
40
41#define ATC_DEFAULT_CFG (ATC_FIFOCFG_HALFFIFO)
42#define ATC_DEFAULT_CTRLA (0)
Nicolas Ferreae14d4b2011-04-30 16:57:49 +020043#define ATC_DEFAULT_CTRLB (ATC_SIF(AT_DMA_MEM_IF) \
44 |ATC_DIF(AT_DMA_MEM_IF))
Nicolas Ferredc78baa2009-07-03 19:24:33 +020045
46/*
47 * Initial number of descriptors to allocate for each channel. This could
48 * be increased during dma usage.
49 */
50static unsigned int init_nr_desc_per_channel = 64;
51module_param(init_nr_desc_per_channel, uint, 0644);
52MODULE_PARM_DESC(init_nr_desc_per_channel,
53 "initial descriptors per channel (default: 64)");
54
55
56/* prototypes */
57static dma_cookie_t atc_tx_submit(struct dma_async_tx_descriptor *tx);
58
59
60/*----------------------------------------------------------------------*/
61
62static struct at_desc *atc_first_active(struct at_dma_chan *atchan)
63{
64 return list_first_entry(&atchan->active_list,
65 struct at_desc, desc_node);
66}
67
68static struct at_desc *atc_first_queued(struct at_dma_chan *atchan)
69{
70 return list_first_entry(&atchan->queue,
71 struct at_desc, desc_node);
72}
73
74/**
Uwe Kleine-König421f91d2010-06-11 12:17:00 +020075 * atc_alloc_descriptor - allocate and return an initialized descriptor
Nicolas Ferredc78baa2009-07-03 19:24:33 +020076 * @chan: the channel to allocate descriptors for
77 * @gfp_flags: GFP allocation flags
78 *
79 * Note: The ack-bit is positioned in the descriptor flag at creation time
80 * to make initial allocation more convenient. This bit will be cleared
81 * and control will be given to client at usage time (during
82 * preparation functions).
83 */
84static struct at_desc *atc_alloc_descriptor(struct dma_chan *chan,
85 gfp_t gfp_flags)
86{
87 struct at_desc *desc = NULL;
88 struct at_dma *atdma = to_at_dma(chan->device);
89 dma_addr_t phys;
90
91 desc = dma_pool_alloc(atdma->dma_desc_pool, gfp_flags, &phys);
92 if (desc) {
93 memset(desc, 0, sizeof(struct at_desc));
Dan Williams285a3c72009-09-08 17:53:03 -070094 INIT_LIST_HEAD(&desc->tx_list);
Nicolas Ferredc78baa2009-07-03 19:24:33 +020095 dma_async_tx_descriptor_init(&desc->txd, chan);
96 /* txd.flags will be overwritten in prep functions */
97 desc->txd.flags = DMA_CTRL_ACK;
98 desc->txd.tx_submit = atc_tx_submit;
99 desc->txd.phys = phys;
100 }
101
102 return desc;
103}
104
105/**
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200106 * atc_desc_get - get an unused descriptor from free_list
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200107 * @atchan: channel we want a new descriptor for
108 */
109static struct at_desc *atc_desc_get(struct at_dma_chan *atchan)
110{
111 struct at_desc *desc, *_desc;
112 struct at_desc *ret = NULL;
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000113 unsigned long flags;
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200114 unsigned int i = 0;
115 LIST_HEAD(tmp_list);
116
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000117 spin_lock_irqsave(&atchan->lock, flags);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200118 list_for_each_entry_safe(desc, _desc, &atchan->free_list, desc_node) {
119 i++;
120 if (async_tx_test_ack(&desc->txd)) {
121 list_del(&desc->desc_node);
122 ret = desc;
123 break;
124 }
125 dev_dbg(chan2dev(&atchan->chan_common),
126 "desc %p not ACKed\n", desc);
127 }
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000128 spin_unlock_irqrestore(&atchan->lock, flags);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200129 dev_vdbg(chan2dev(&atchan->chan_common),
130 "scanned %u descriptors on freelist\n", i);
131
132 /* no more descriptor available in initial pool: create one more */
133 if (!ret) {
134 ret = atc_alloc_descriptor(&atchan->chan_common, GFP_ATOMIC);
135 if (ret) {
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000136 spin_lock_irqsave(&atchan->lock, flags);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200137 atchan->descs_allocated++;
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000138 spin_unlock_irqrestore(&atchan->lock, flags);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200139 } else {
140 dev_err(chan2dev(&atchan->chan_common),
141 "not enough descriptors available\n");
142 }
143 }
144
145 return ret;
146}
147
148/**
149 * atc_desc_put - move a descriptor, including any children, to the free list
150 * @atchan: channel we work on
151 * @desc: descriptor, at the head of a chain, to move to free list
152 */
153static void atc_desc_put(struct at_dma_chan *atchan, struct at_desc *desc)
154{
155 if (desc) {
156 struct at_desc *child;
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000157 unsigned long flags;
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200158
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000159 spin_lock_irqsave(&atchan->lock, flags);
Dan Williams285a3c72009-09-08 17:53:03 -0700160 list_for_each_entry(child, &desc->tx_list, desc_node)
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200161 dev_vdbg(chan2dev(&atchan->chan_common),
162 "moving child desc %p to freelist\n",
163 child);
Dan Williams285a3c72009-09-08 17:53:03 -0700164 list_splice_init(&desc->tx_list, &atchan->free_list);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200165 dev_vdbg(chan2dev(&atchan->chan_common),
166 "moving desc %p to freelist\n", desc);
167 list_add(&desc->desc_node, &atchan->free_list);
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000168 spin_unlock_irqrestore(&atchan->lock, flags);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200169 }
170}
171
172/**
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200173 * atc_desc_chain - build chain adding a descripor
174 * @first: address of first descripor of the chain
175 * @prev: address of previous descripor of the chain
176 * @desc: descriptor to queue
177 *
178 * Called from prep_* functions
179 */
180static void atc_desc_chain(struct at_desc **first, struct at_desc **prev,
181 struct at_desc *desc)
182{
183 if (!(*first)) {
184 *first = desc;
185 } else {
186 /* inform the HW lli about chaining */
187 (*prev)->lli.dscr = desc->txd.phys;
188 /* insert the link descriptor to the LD ring */
189 list_add_tail(&desc->desc_node,
190 &(*first)->tx_list);
191 }
192 *prev = desc;
193}
194
195/**
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200196 * atc_dostart - starts the DMA engine for real
197 * @atchan: the channel we want to start
198 * @first: first descriptor in the list we want to begin with
199 *
200 * Called with atchan->lock held and bh disabled
201 */
202static void atc_dostart(struct at_dma_chan *atchan, struct at_desc *first)
203{
204 struct at_dma *atdma = to_at_dma(atchan->chan_common.device);
205
206 /* ASSERT: channel is idle */
207 if (atc_chan_is_enabled(atchan)) {
208 dev_err(chan2dev(&atchan->chan_common),
209 "BUG: Attempted to start non-idle channel\n");
210 dev_err(chan2dev(&atchan->chan_common),
211 " channel: s0x%x d0x%x ctrl0x%x:0x%x l0x%x\n",
212 channel_readl(atchan, SADDR),
213 channel_readl(atchan, DADDR),
214 channel_readl(atchan, CTRLA),
215 channel_readl(atchan, CTRLB),
216 channel_readl(atchan, DSCR));
217
218 /* The tasklet will hopefully advance the queue... */
219 return;
220 }
221
222 vdbg_dump_regs(atchan);
223
224 /* clear any pending interrupt */
225 while (dma_readl(atdma, EBCISR))
226 cpu_relax();
227
228 channel_writel(atchan, SADDR, 0);
229 channel_writel(atchan, DADDR, 0);
230 channel_writel(atchan, CTRLA, 0);
231 channel_writel(atchan, CTRLB, 0);
232 channel_writel(atchan, DSCR, first->txd.phys);
233 dma_writel(atdma, CHER, atchan->mask);
234
235 vdbg_dump_regs(atchan);
236}
237
238/**
239 * atc_chain_complete - finish work for one transaction chain
240 * @atchan: channel we work on
241 * @desc: descriptor at the head of the chain we want do complete
242 *
243 * Called with atchan->lock held and bh disabled */
244static void
245atc_chain_complete(struct at_dma_chan *atchan, struct at_desc *desc)
246{
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200247 struct dma_async_tx_descriptor *txd = &desc->txd;
248
249 dev_vdbg(chan2dev(&atchan->chan_common),
250 "descriptor %u complete\n", txd->cookie);
251
Russell King - ARM Linuxf7fbce02012-03-06 22:35:07 +0000252 dma_cookie_complete(txd);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200253
254 /* move children to free_list */
Dan Williams285a3c72009-09-08 17:53:03 -0700255 list_splice_init(&desc->tx_list, &atchan->free_list);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200256 /* move myself to free_list */
257 list_move(&desc->desc_node, &atchan->free_list);
258
Nicolas Ferreebcf9b82011-01-12 15:39:06 +0100259 /* unmap dma addresses (not on slave channels) */
Atsushi Nemoto657a77fa2009-09-08 17:53:05 -0700260 if (!atchan->chan_common.private) {
261 struct device *parent = chan2parent(&atchan->chan_common);
262 if (!(txd->flags & DMA_COMPL_SKIP_DEST_UNMAP)) {
263 if (txd->flags & DMA_COMPL_DEST_UNMAP_SINGLE)
264 dma_unmap_single(parent,
265 desc->lli.daddr,
266 desc->len, DMA_FROM_DEVICE);
267 else
268 dma_unmap_page(parent,
269 desc->lli.daddr,
270 desc->len, DMA_FROM_DEVICE);
271 }
272 if (!(txd->flags & DMA_COMPL_SKIP_SRC_UNMAP)) {
273 if (txd->flags & DMA_COMPL_SRC_UNMAP_SINGLE)
274 dma_unmap_single(parent,
275 desc->lli.saddr,
276 desc->len, DMA_TO_DEVICE);
277 else
278 dma_unmap_page(parent,
279 desc->lli.saddr,
280 desc->len, DMA_TO_DEVICE);
281 }
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200282 }
283
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200284 /* for cyclic transfers,
285 * no need to replay callback function while stopping */
Nicolas Ferre3c477482011-07-25 21:09:23 +0000286 if (!atc_chan_is_cyclic(atchan)) {
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200287 dma_async_tx_callback callback = txd->callback;
288 void *param = txd->callback_param;
289
290 /*
291 * The API requires that no submissions are done from a
292 * callback, so we don't need to drop the lock here
293 */
294 if (callback)
295 callback(param);
296 }
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200297
298 dma_run_dependencies(txd);
299}
300
301/**
302 * atc_complete_all - finish work for all transactions
303 * @atchan: channel to complete transactions for
304 *
305 * Eventually submit queued descriptors if any
306 *
307 * Assume channel is idle while calling this function
308 * Called with atchan->lock held and bh disabled
309 */
310static void atc_complete_all(struct at_dma_chan *atchan)
311{
312 struct at_desc *desc, *_desc;
313 LIST_HEAD(list);
314
315 dev_vdbg(chan2dev(&atchan->chan_common), "complete all\n");
316
317 BUG_ON(atc_chan_is_enabled(atchan));
318
319 /*
320 * Submit queued descriptors ASAP, i.e. before we go through
321 * the completed ones.
322 */
323 if (!list_empty(&atchan->queue))
324 atc_dostart(atchan, atc_first_queued(atchan));
325 /* empty active_list now it is completed */
326 list_splice_init(&atchan->active_list, &list);
327 /* empty queue list by moving descriptors (if any) to active_list */
328 list_splice_init(&atchan->queue, &atchan->active_list);
329
330 list_for_each_entry_safe(desc, _desc, &list, desc_node)
331 atc_chain_complete(atchan, desc);
332}
333
334/**
335 * atc_cleanup_descriptors - cleanup up finished descriptors in active_list
336 * @atchan: channel to be cleaned up
337 *
338 * Called with atchan->lock held and bh disabled
339 */
340static void atc_cleanup_descriptors(struct at_dma_chan *atchan)
341{
342 struct at_desc *desc, *_desc;
343 struct at_desc *child;
344
345 dev_vdbg(chan2dev(&atchan->chan_common), "cleanup descriptors\n");
346
347 list_for_each_entry_safe(desc, _desc, &atchan->active_list, desc_node) {
348 if (!(desc->lli.ctrla & ATC_DONE))
349 /* This one is currently in progress */
350 return;
351
Dan Williams285a3c72009-09-08 17:53:03 -0700352 list_for_each_entry(child, &desc->tx_list, desc_node)
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200353 if (!(child->lli.ctrla & ATC_DONE))
354 /* Currently in progress */
355 return;
356
357 /*
358 * No descriptors so far seem to be in progress, i.e.
359 * this chain must be done.
360 */
361 atc_chain_complete(atchan, desc);
362 }
363}
364
365/**
366 * atc_advance_work - at the end of a transaction, move forward
367 * @atchan: channel where the transaction ended
368 *
369 * Called with atchan->lock held and bh disabled
370 */
371static void atc_advance_work(struct at_dma_chan *atchan)
372{
373 dev_vdbg(chan2dev(&atchan->chan_common), "advance_work\n");
374
375 if (list_empty(&atchan->active_list) ||
376 list_is_singular(&atchan->active_list)) {
377 atc_complete_all(atchan);
378 } else {
379 atc_chain_complete(atchan, atc_first_active(atchan));
380 /* advance work */
381 atc_dostart(atchan, atc_first_active(atchan));
382 }
383}
384
385
386/**
387 * atc_handle_error - handle errors reported by DMA controller
388 * @atchan: channel where error occurs
389 *
390 * Called with atchan->lock held and bh disabled
391 */
392static void atc_handle_error(struct at_dma_chan *atchan)
393{
394 struct at_desc *bad_desc;
395 struct at_desc *child;
396
397 /*
398 * The descriptor currently at the head of the active list is
399 * broked. Since we don't have any way to report errors, we'll
400 * just have to scream loudly and try to carry on.
401 */
402 bad_desc = atc_first_active(atchan);
403 list_del_init(&bad_desc->desc_node);
404
405 /* As we are stopped, take advantage to push queued descriptors
406 * in active_list */
407 list_splice_init(&atchan->queue, atchan->active_list.prev);
408
409 /* Try to restart the controller */
410 if (!list_empty(&atchan->active_list))
411 atc_dostart(atchan, atc_first_active(atchan));
412
413 /*
414 * KERN_CRITICAL may seem harsh, but since this only happens
415 * when someone submits a bad physical address in a
416 * descriptor, we should consider ourselves lucky that the
417 * controller flagged an error instead of scribbling over
418 * random memory locations.
419 */
420 dev_crit(chan2dev(&atchan->chan_common),
421 "Bad descriptor submitted for DMA!\n");
422 dev_crit(chan2dev(&atchan->chan_common),
423 " cookie: %d\n", bad_desc->txd.cookie);
424 atc_dump_lli(atchan, &bad_desc->lli);
Dan Williams285a3c72009-09-08 17:53:03 -0700425 list_for_each_entry(child, &bad_desc->tx_list, desc_node)
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200426 atc_dump_lli(atchan, &child->lli);
427
428 /* Pretend the descriptor completed successfully */
429 atc_chain_complete(atchan, bad_desc);
430}
431
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200432/**
433 * atc_handle_cyclic - at the end of a period, run callback function
434 * @atchan: channel used for cyclic operations
435 *
436 * Called with atchan->lock held and bh disabled
437 */
438static void atc_handle_cyclic(struct at_dma_chan *atchan)
439{
440 struct at_desc *first = atc_first_active(atchan);
441 struct dma_async_tx_descriptor *txd = &first->txd;
442 dma_async_tx_callback callback = txd->callback;
443 void *param = txd->callback_param;
444
445 dev_vdbg(chan2dev(&atchan->chan_common),
446 "new cyclic period llp 0x%08x\n",
447 channel_readl(atchan, DSCR));
448
449 if (callback)
450 callback(param);
451}
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200452
453/*-- IRQ & Tasklet ---------------------------------------------------*/
454
455static void atc_tasklet(unsigned long data)
456{
457 struct at_dma_chan *atchan = (struct at_dma_chan *)data;
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000458 unsigned long flags;
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200459
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000460 spin_lock_irqsave(&atchan->lock, flags);
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200461 if (test_and_clear_bit(ATC_IS_ERROR, &atchan->status))
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200462 atc_handle_error(atchan);
Nicolas Ferre3c477482011-07-25 21:09:23 +0000463 else if (atc_chan_is_cyclic(atchan))
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200464 atc_handle_cyclic(atchan);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200465 else
466 atc_advance_work(atchan);
467
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000468 spin_unlock_irqrestore(&atchan->lock, flags);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200469}
470
471static irqreturn_t at_dma_interrupt(int irq, void *dev_id)
472{
473 struct at_dma *atdma = (struct at_dma *)dev_id;
474 struct at_dma_chan *atchan;
475 int i;
476 u32 status, pending, imr;
477 int ret = IRQ_NONE;
478
479 do {
480 imr = dma_readl(atdma, EBCIMR);
481 status = dma_readl(atdma, EBCISR);
482 pending = status & imr;
483
484 if (!pending)
485 break;
486
487 dev_vdbg(atdma->dma_common.dev,
488 "interrupt: status = 0x%08x, 0x%08x, 0x%08x\n",
489 status, imr, pending);
490
491 for (i = 0; i < atdma->dma_common.chancnt; i++) {
492 atchan = &atdma->chan[i];
Nicolas Ferre9b3aa582011-04-30 16:57:45 +0200493 if (pending & (AT_DMA_BTC(i) | AT_DMA_ERR(i))) {
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200494 if (pending & AT_DMA_ERR(i)) {
495 /* Disable channel on AHB error */
Nicolas Ferre23b5e3a2011-05-06 19:56:52 +0200496 dma_writel(atdma, CHDR,
497 AT_DMA_RES(i) | atchan->mask);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200498 /* Give information to tasklet */
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200499 set_bit(ATC_IS_ERROR, &atchan->status);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200500 }
501 tasklet_schedule(&atchan->tasklet);
502 ret = IRQ_HANDLED;
503 }
504 }
505
506 } while (pending);
507
508 return ret;
509}
510
511
512/*-- DMA Engine API --------------------------------------------------*/
513
514/**
515 * atc_tx_submit - set the prepared descriptor(s) to be executed by the engine
516 * @desc: descriptor at the head of the transaction chain
517 *
518 * Queue chain if DMA engine is working already
519 *
520 * Cookie increment and adding to active_list or queue must be atomic
521 */
522static dma_cookie_t atc_tx_submit(struct dma_async_tx_descriptor *tx)
523{
524 struct at_desc *desc = txd_to_at_desc(tx);
525 struct at_dma_chan *atchan = to_at_dma_chan(tx->chan);
526 dma_cookie_t cookie;
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000527 unsigned long flags;
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200528
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000529 spin_lock_irqsave(&atchan->lock, flags);
Russell King - ARM Linux884485e2012-03-06 22:34:46 +0000530 cookie = dma_cookie_assign(tx);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200531
532 if (list_empty(&atchan->active_list)) {
533 dev_vdbg(chan2dev(tx->chan), "tx_submit: started %u\n",
534 desc->txd.cookie);
535 atc_dostart(atchan, desc);
536 list_add_tail(&desc->desc_node, &atchan->active_list);
537 } else {
538 dev_vdbg(chan2dev(tx->chan), "tx_submit: queued %u\n",
539 desc->txd.cookie);
540 list_add_tail(&desc->desc_node, &atchan->queue);
541 }
542
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000543 spin_unlock_irqrestore(&atchan->lock, flags);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200544
545 return cookie;
546}
547
548/**
549 * atc_prep_dma_memcpy - prepare a memcpy operation
550 * @chan: the channel to prepare operation on
551 * @dest: operation virtual destination address
552 * @src: operation virtual source address
553 * @len: operation length
554 * @flags: tx descriptor status flags
555 */
556static struct dma_async_tx_descriptor *
557atc_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
558 size_t len, unsigned long flags)
559{
560 struct at_dma_chan *atchan = to_at_dma_chan(chan);
561 struct at_desc *desc = NULL;
562 struct at_desc *first = NULL;
563 struct at_desc *prev = NULL;
564 size_t xfer_count;
565 size_t offset;
566 unsigned int src_width;
567 unsigned int dst_width;
568 u32 ctrla;
569 u32 ctrlb;
570
571 dev_vdbg(chan2dev(chan), "prep_dma_memcpy: d0x%x s0x%x l0x%zx f0x%lx\n",
572 dest, src, len, flags);
573
574 if (unlikely(!len)) {
575 dev_dbg(chan2dev(chan), "prep_dma_memcpy: length is zero!\n");
576 return NULL;
577 }
578
579 ctrla = ATC_DEFAULT_CTRLA;
Nicolas Ferre9b3aa582011-04-30 16:57:45 +0200580 ctrlb = ATC_DEFAULT_CTRLB | ATC_IEN
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200581 | ATC_SRC_ADDR_MODE_INCR
582 | ATC_DST_ADDR_MODE_INCR
583 | ATC_FC_MEM2MEM;
584
585 /*
586 * We can be a lot more clever here, but this should take care
587 * of the most common optimization.
588 */
589 if (!((src | dest | len) & 3)) {
590 ctrla |= ATC_SRC_WIDTH_WORD | ATC_DST_WIDTH_WORD;
591 src_width = dst_width = 2;
592 } else if (!((src | dest | len) & 1)) {
593 ctrla |= ATC_SRC_WIDTH_HALFWORD | ATC_DST_WIDTH_HALFWORD;
594 src_width = dst_width = 1;
595 } else {
596 ctrla |= ATC_SRC_WIDTH_BYTE | ATC_DST_WIDTH_BYTE;
597 src_width = dst_width = 0;
598 }
599
600 for (offset = 0; offset < len; offset += xfer_count << src_width) {
601 xfer_count = min_t(size_t, (len - offset) >> src_width,
602 ATC_BTSIZE_MAX);
603
604 desc = atc_desc_get(atchan);
605 if (!desc)
606 goto err_desc_get;
607
608 desc->lli.saddr = src + offset;
609 desc->lli.daddr = dest + offset;
610 desc->lli.ctrla = ctrla | xfer_count;
611 desc->lli.ctrlb = ctrlb;
612
613 desc->txd.cookie = 0;
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200614
Nicolas Ferree257e152011-05-06 19:56:53 +0200615 atc_desc_chain(&first, &prev, desc);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200616 }
617
618 /* First descriptor of the chain embedds additional information */
619 first->txd.cookie = -EBUSY;
620 first->len = len;
621
622 /* set end-of-link to the last link descriptor of list*/
623 set_desc_eol(desc);
624
Nicolas Ferre568f7f02011-01-12 15:39:09 +0100625 first->txd.flags = flags; /* client is in control of this ack */
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200626
627 return &first->txd;
628
629err_desc_get:
630 atc_desc_put(atchan, first);
631 return NULL;
632}
633
Nicolas Ferre808347f2009-07-22 20:04:45 +0200634
635/**
636 * atc_prep_slave_sg - prepare descriptors for a DMA_SLAVE transaction
637 * @chan: DMA channel
638 * @sgl: scatterlist to transfer to/from
639 * @sg_len: number of entries in @scatterlist
640 * @direction: DMA direction
641 * @flags: tx descriptor status flags
642 */
643static struct dma_async_tx_descriptor *
644atc_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
Vinod Kouldb8196d2011-10-13 22:34:23 +0530645 unsigned int sg_len, enum dma_transfer_direction direction,
Nicolas Ferre808347f2009-07-22 20:04:45 +0200646 unsigned long flags)
647{
648 struct at_dma_chan *atchan = to_at_dma_chan(chan);
649 struct at_dma_slave *atslave = chan->private;
650 struct at_desc *first = NULL;
651 struct at_desc *prev = NULL;
652 u32 ctrla;
653 u32 ctrlb;
654 dma_addr_t reg;
655 unsigned int reg_width;
656 unsigned int mem_width;
657 unsigned int i;
658 struct scatterlist *sg;
659 size_t total_len = 0;
660
Nicolas Ferrecc52a102011-04-30 16:57:47 +0200661 dev_vdbg(chan2dev(chan), "prep_slave_sg (%d): %s f0x%lx\n",
662 sg_len,
Vinod Kouldb8196d2011-10-13 22:34:23 +0530663 direction == DMA_MEM_TO_DEV ? "TO DEVICE" : "FROM DEVICE",
Nicolas Ferre808347f2009-07-22 20:04:45 +0200664 flags);
665
666 if (unlikely(!atslave || !sg_len)) {
667 dev_dbg(chan2dev(chan), "prep_dma_memcpy: length is zero!\n");
668 return NULL;
669 }
670
671 reg_width = atslave->reg_width;
672
Nicolas Ferre808347f2009-07-22 20:04:45 +0200673 ctrla = ATC_DEFAULT_CTRLA | atslave->ctrla;
Nicolas Ferreae14d4b2011-04-30 16:57:49 +0200674 ctrlb = ATC_IEN;
Nicolas Ferre808347f2009-07-22 20:04:45 +0200675
676 switch (direction) {
Vinod Kouldb8196d2011-10-13 22:34:23 +0530677 case DMA_MEM_TO_DEV:
Nicolas Ferre808347f2009-07-22 20:04:45 +0200678 ctrla |= ATC_DST_WIDTH(reg_width);
679 ctrlb |= ATC_DST_ADDR_MODE_FIXED
680 | ATC_SRC_ADDR_MODE_INCR
Nicolas Ferreae14d4b2011-04-30 16:57:49 +0200681 | ATC_FC_MEM2PER
682 | ATC_SIF(AT_DMA_MEM_IF) | ATC_DIF(AT_DMA_PER_IF);
Nicolas Ferre808347f2009-07-22 20:04:45 +0200683 reg = atslave->tx_reg;
684 for_each_sg(sgl, sg, sg_len, i) {
685 struct at_desc *desc;
686 u32 len;
687 u32 mem;
688
689 desc = atc_desc_get(atchan);
690 if (!desc)
691 goto err_desc_get;
692
Nicolas Ferre0f70e8c2010-12-15 18:50:16 +0100693 mem = sg_dma_address(sg);
Nicolas Ferre808347f2009-07-22 20:04:45 +0200694 len = sg_dma_len(sg);
695 mem_width = 2;
696 if (unlikely(mem & 3 || len & 3))
697 mem_width = 0;
698
699 desc->lli.saddr = mem;
700 desc->lli.daddr = reg;
701 desc->lli.ctrla = ctrla
702 | ATC_SRC_WIDTH(mem_width)
703 | len >> mem_width;
704 desc->lli.ctrlb = ctrlb;
705
Nicolas Ferree257e152011-05-06 19:56:53 +0200706 atc_desc_chain(&first, &prev, desc);
Nicolas Ferre808347f2009-07-22 20:04:45 +0200707 total_len += len;
708 }
709 break;
Vinod Kouldb8196d2011-10-13 22:34:23 +0530710 case DMA_DEV_TO_MEM:
Nicolas Ferre808347f2009-07-22 20:04:45 +0200711 ctrla |= ATC_SRC_WIDTH(reg_width);
712 ctrlb |= ATC_DST_ADDR_MODE_INCR
713 | ATC_SRC_ADDR_MODE_FIXED
Nicolas Ferreae14d4b2011-04-30 16:57:49 +0200714 | ATC_FC_PER2MEM
715 | ATC_SIF(AT_DMA_PER_IF) | ATC_DIF(AT_DMA_MEM_IF);
Nicolas Ferre808347f2009-07-22 20:04:45 +0200716
717 reg = atslave->rx_reg;
718 for_each_sg(sgl, sg, sg_len, i) {
719 struct at_desc *desc;
720 u32 len;
721 u32 mem;
722
723 desc = atc_desc_get(atchan);
724 if (!desc)
725 goto err_desc_get;
726
Nicolas Ferre0f70e8c2010-12-15 18:50:16 +0100727 mem = sg_dma_address(sg);
Nicolas Ferre808347f2009-07-22 20:04:45 +0200728 len = sg_dma_len(sg);
729 mem_width = 2;
730 if (unlikely(mem & 3 || len & 3))
731 mem_width = 0;
732
733 desc->lli.saddr = reg;
734 desc->lli.daddr = mem;
735 desc->lli.ctrla = ctrla
736 | ATC_DST_WIDTH(mem_width)
Nicolas Ferre59a609d2010-12-13 13:48:41 +0100737 | len >> reg_width;
Nicolas Ferre808347f2009-07-22 20:04:45 +0200738 desc->lli.ctrlb = ctrlb;
739
Nicolas Ferree257e152011-05-06 19:56:53 +0200740 atc_desc_chain(&first, &prev, desc);
Nicolas Ferre808347f2009-07-22 20:04:45 +0200741 total_len += len;
742 }
743 break;
744 default:
745 return NULL;
746 }
747
748 /* set end-of-link to the last link descriptor of list*/
749 set_desc_eol(prev);
750
751 /* First descriptor of the chain embedds additional information */
752 first->txd.cookie = -EBUSY;
753 first->len = total_len;
754
Nicolas Ferre568f7f02011-01-12 15:39:09 +0100755 /* first link descriptor of list is responsible of flags */
756 first->txd.flags = flags; /* client is in control of this ack */
Nicolas Ferre808347f2009-07-22 20:04:45 +0200757
758 return &first->txd;
759
760err_desc_get:
761 dev_err(chan2dev(chan), "not enough descriptors available\n");
762 atc_desc_put(atchan, first);
763 return NULL;
764}
765
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200766/**
767 * atc_dma_cyclic_check_values
768 * Check for too big/unaligned periods and unaligned DMA buffer
769 */
770static int
771atc_dma_cyclic_check_values(unsigned int reg_width, dma_addr_t buf_addr,
Vinod Kouldb8196d2011-10-13 22:34:23 +0530772 size_t period_len, enum dma_transfer_direction direction)
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200773{
774 if (period_len > (ATC_BTSIZE_MAX << reg_width))
775 goto err_out;
776 if (unlikely(period_len & ((1 << reg_width) - 1)))
777 goto err_out;
778 if (unlikely(buf_addr & ((1 << reg_width) - 1)))
779 goto err_out;
Vinod Kouldb8196d2011-10-13 22:34:23 +0530780 if (unlikely(!(direction & (DMA_DEV_TO_MEM | DMA_MEM_TO_DEV))))
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200781 goto err_out;
782
783 return 0;
784
785err_out:
786 return -EINVAL;
787}
788
789/**
790 * atc_dma_cyclic_fill_desc - Fill one period decriptor
791 */
792static int
793atc_dma_cyclic_fill_desc(struct at_dma_slave *atslave, struct at_desc *desc,
794 unsigned int period_index, dma_addr_t buf_addr,
Vinod Kouldb8196d2011-10-13 22:34:23 +0530795 size_t period_len, enum dma_transfer_direction direction)
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200796{
797 u32 ctrla;
798 unsigned int reg_width = atslave->reg_width;
799
800 /* prepare common CRTLA value */
801 ctrla = ATC_DEFAULT_CTRLA | atslave->ctrla
802 | ATC_DST_WIDTH(reg_width)
803 | ATC_SRC_WIDTH(reg_width)
804 | period_len >> reg_width;
805
806 switch (direction) {
Vinod Kouldb8196d2011-10-13 22:34:23 +0530807 case DMA_MEM_TO_DEV:
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200808 desc->lli.saddr = buf_addr + (period_len * period_index);
809 desc->lli.daddr = atslave->tx_reg;
810 desc->lli.ctrla = ctrla;
Nicolas Ferreae14d4b2011-04-30 16:57:49 +0200811 desc->lli.ctrlb = ATC_DST_ADDR_MODE_FIXED
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200812 | ATC_SRC_ADDR_MODE_INCR
Nicolas Ferreae14d4b2011-04-30 16:57:49 +0200813 | ATC_FC_MEM2PER
814 | ATC_SIF(AT_DMA_MEM_IF)
815 | ATC_DIF(AT_DMA_PER_IF);
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200816 break;
817
Vinod Kouldb8196d2011-10-13 22:34:23 +0530818 case DMA_DEV_TO_MEM:
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200819 desc->lli.saddr = atslave->rx_reg;
820 desc->lli.daddr = buf_addr + (period_len * period_index);
821 desc->lli.ctrla = ctrla;
Nicolas Ferreae14d4b2011-04-30 16:57:49 +0200822 desc->lli.ctrlb = ATC_DST_ADDR_MODE_INCR
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200823 | ATC_SRC_ADDR_MODE_FIXED
Nicolas Ferreae14d4b2011-04-30 16:57:49 +0200824 | ATC_FC_PER2MEM
825 | ATC_SIF(AT_DMA_PER_IF)
826 | ATC_DIF(AT_DMA_MEM_IF);
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200827 break;
828
829 default:
830 return -EINVAL;
831 }
832
833 return 0;
834}
835
836/**
837 * atc_prep_dma_cyclic - prepare the cyclic DMA transfer
838 * @chan: the DMA channel to prepare
839 * @buf_addr: physical DMA address where the buffer starts
840 * @buf_len: total number of bytes for the entire buffer
841 * @period_len: number of bytes for each period
842 * @direction: transfer direction, to or from device
843 */
844static struct dma_async_tx_descriptor *
845atc_prep_dma_cyclic(struct dma_chan *chan, dma_addr_t buf_addr, size_t buf_len,
Vinod Kouldb8196d2011-10-13 22:34:23 +0530846 size_t period_len, enum dma_transfer_direction direction)
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200847{
848 struct at_dma_chan *atchan = to_at_dma_chan(chan);
849 struct at_dma_slave *atslave = chan->private;
850 struct at_desc *first = NULL;
851 struct at_desc *prev = NULL;
852 unsigned long was_cyclic;
853 unsigned int periods = buf_len / period_len;
854 unsigned int i;
855
856 dev_vdbg(chan2dev(chan), "prep_dma_cyclic: %s buf@0x%08x - %d (%d/%d)\n",
Vinod Kouldb8196d2011-10-13 22:34:23 +0530857 direction == DMA_MEM_TO_DEV ? "TO DEVICE" : "FROM DEVICE",
Nicolas Ferre53830cc2011-04-30 16:57:46 +0200858 buf_addr,
859 periods, buf_len, period_len);
860
861 if (unlikely(!atslave || !buf_len || !period_len)) {
862 dev_dbg(chan2dev(chan), "prep_dma_cyclic: length is zero!\n");
863 return NULL;
864 }
865
866 was_cyclic = test_and_set_bit(ATC_IS_CYCLIC, &atchan->status);
867 if (was_cyclic) {
868 dev_dbg(chan2dev(chan), "prep_dma_cyclic: channel in use!\n");
869 return NULL;
870 }
871
872 /* Check for too big/unaligned periods and unaligned DMA buffer */
873 if (atc_dma_cyclic_check_values(atslave->reg_width, buf_addr,
874 period_len, direction))
875 goto err_out;
876
877 /* build cyclic linked list */
878 for (i = 0; i < periods; i++) {
879 struct at_desc *desc;
880
881 desc = atc_desc_get(atchan);
882 if (!desc)
883 goto err_desc_get;
884
885 if (atc_dma_cyclic_fill_desc(atslave, desc, i, buf_addr,
886 period_len, direction))
887 goto err_desc_get;
888
889 atc_desc_chain(&first, &prev, desc);
890 }
891
892 /* lets make a cyclic list */
893 prev->lli.dscr = first->txd.phys;
894
895 /* First descriptor of the chain embedds additional information */
896 first->txd.cookie = -EBUSY;
897 first->len = buf_len;
898
899 return &first->txd;
900
901err_desc_get:
902 dev_err(chan2dev(chan), "not enough descriptors available\n");
903 atc_desc_put(atchan, first);
904err_out:
905 clear_bit(ATC_IS_CYCLIC, &atchan->status);
906 return NULL;
907}
908
909
Linus Walleij05827632010-05-17 16:30:42 -0700910static int atc_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
911 unsigned long arg)
Nicolas Ferre808347f2009-07-22 20:04:45 +0200912{
913 struct at_dma_chan *atchan = to_at_dma_chan(chan);
914 struct at_dma *atdma = to_at_dma(chan->device);
Nicolas Ferre23b5e3a2011-05-06 19:56:52 +0200915 int chan_id = atchan->chan_common.chan_id;
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000916 unsigned long flags;
Nicolas Ferre23b5e3a2011-05-06 19:56:52 +0200917
Nicolas Ferre808347f2009-07-22 20:04:45 +0200918 LIST_HEAD(list);
919
Nicolas Ferre23b5e3a2011-05-06 19:56:52 +0200920 dev_vdbg(chan2dev(chan), "atc_control (%d)\n", cmd);
921
922 if (cmd == DMA_PAUSE) {
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000923 spin_lock_irqsave(&atchan->lock, flags);
Nicolas Ferre23b5e3a2011-05-06 19:56:52 +0200924
925 dma_writel(atdma, CHER, AT_DMA_SUSP(chan_id));
Nicolas Ferre23b5e3a2011-05-06 19:56:52 +0200926 set_bit(ATC_IS_PAUSED, &atchan->status);
927
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000928 spin_unlock_irqrestore(&atchan->lock, flags);
Nicolas Ferre23b5e3a2011-05-06 19:56:52 +0200929 } else if (cmd == DMA_RESUME) {
Nicolas Ferre3c477482011-07-25 21:09:23 +0000930 if (!atc_chan_is_paused(atchan))
Nicolas Ferre23b5e3a2011-05-06 19:56:52 +0200931 return 0;
932
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000933 spin_lock_irqsave(&atchan->lock, flags);
Nicolas Ferre23b5e3a2011-05-06 19:56:52 +0200934
935 dma_writel(atdma, CHDR, AT_DMA_RES(chan_id));
936 clear_bit(ATC_IS_PAUSED, &atchan->status);
937
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000938 spin_unlock_irqrestore(&atchan->lock, flags);
Nicolas Ferre23b5e3a2011-05-06 19:56:52 +0200939 } else if (cmd == DMA_TERMINATE_ALL) {
940 struct at_desc *desc, *_desc;
941 /*
942 * This is only called when something went wrong elsewhere, so
943 * we don't really care about the data. Just disable the
944 * channel. We still have to poll the channel enable bit due
945 * to AHB/HSB limitations.
946 */
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000947 spin_lock_irqsave(&atchan->lock, flags);
Nicolas Ferre23b5e3a2011-05-06 19:56:52 +0200948
949 /* disabling channel: must also remove suspend state */
950 dma_writel(atdma, CHDR, AT_DMA_RES(chan_id) | atchan->mask);
951
952 /* confirm that this channel is disabled */
953 while (dma_readl(atdma, CHSR) & atchan->mask)
954 cpu_relax();
955
956 /* active_list entries will end up before queued entries */
957 list_splice_init(&atchan->queue, &list);
958 list_splice_init(&atchan->active_list, &list);
959
960 /* Flush all pending and queued descriptors */
961 list_for_each_entry_safe(desc, _desc, &list, desc_node)
962 atc_chain_complete(atchan, desc);
963
964 clear_bit(ATC_IS_PAUSED, &atchan->status);
965 /* if channel dedicated to cyclic operations, free it */
966 clear_bit(ATC_IS_CYCLIC, &atchan->status);
967
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000968 spin_unlock_irqrestore(&atchan->lock, flags);
Nicolas Ferre23b5e3a2011-05-06 19:56:52 +0200969 } else {
Linus Walleijc3635c72010-03-26 16:44:01 -0700970 return -ENXIO;
Nicolas Ferre23b5e3a2011-05-06 19:56:52 +0200971 }
Yong Wangb0ebeb92010-08-05 10:40:08 +0800972
Linus Walleijc3635c72010-03-26 16:44:01 -0700973 return 0;
Nicolas Ferre808347f2009-07-22 20:04:45 +0200974}
975
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200976/**
Linus Walleij07934482010-03-26 16:50:49 -0700977 * atc_tx_status - poll for transaction completion
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200978 * @chan: DMA channel
979 * @cookie: transaction identifier to check status of
Linus Walleij07934482010-03-26 16:50:49 -0700980 * @txstate: if not %NULL updated with transaction state
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200981 *
Linus Walleij07934482010-03-26 16:50:49 -0700982 * If @txstate is passed in, upon return it reflect the driver
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200983 * internal state and can be used with dma_async_is_complete() to check
984 * the status of multiple cookies without re-checking hardware state.
985 */
986static enum dma_status
Linus Walleij07934482010-03-26 16:50:49 -0700987atc_tx_status(struct dma_chan *chan,
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200988 dma_cookie_t cookie,
Linus Walleij07934482010-03-26 16:50:49 -0700989 struct dma_tx_state *txstate)
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200990{
991 struct at_dma_chan *atchan = to_at_dma_chan(chan);
992 dma_cookie_t last_used;
993 dma_cookie_t last_complete;
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000994 unsigned long flags;
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200995 enum dma_status ret;
996
Nicolas Ferred8cb04b2011-07-27 12:21:28 +0000997 spin_lock_irqsave(&atchan->lock, flags);
Nicolas Ferredc78baa2009-07-03 19:24:33 +0200998
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +0000999 ret = dma_cookie_status(chan, cookie, txstate);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001000 if (ret != DMA_SUCCESS) {
1001 atc_cleanup_descriptors(atchan);
1002
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001003 ret = dma_cookie_status(chan, cookie, txstate);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001004 }
1005
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001006 last_complete = chan->completed_cookie;
1007 last_used = chan->cookie;
1008
Nicolas Ferred8cb04b2011-07-27 12:21:28 +00001009 spin_unlock_irqrestore(&atchan->lock, flags);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001010
Nicolas Ferre543aabc2011-05-06 19:56:51 +02001011 if (ret != DMA_SUCCESS)
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001012 dma_set_residue(txstate, atc_first_active(atchan)->len);
Nicolas Ferre543aabc2011-05-06 19:56:51 +02001013
Nicolas Ferre3c477482011-07-25 21:09:23 +00001014 if (atc_chan_is_paused(atchan))
Nicolas Ferre23b5e3a2011-05-06 19:56:52 +02001015 ret = DMA_PAUSED;
1016
1017 dev_vdbg(chan2dev(chan), "tx_status %d: cookie = %d (d%d, u%d)\n",
1018 ret, cookie, last_complete ? last_complete : 0,
Linus Walleij07934482010-03-26 16:50:49 -07001019 last_used ? last_used : 0);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001020
1021 return ret;
1022}
1023
1024/**
1025 * atc_issue_pending - try to finish work
1026 * @chan: target DMA channel
1027 */
1028static void atc_issue_pending(struct dma_chan *chan)
1029{
1030 struct at_dma_chan *atchan = to_at_dma_chan(chan);
Nicolas Ferred8cb04b2011-07-27 12:21:28 +00001031 unsigned long flags;
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001032
1033 dev_vdbg(chan2dev(chan), "issue_pending\n");
1034
Nicolas Ferre53830cc2011-04-30 16:57:46 +02001035 /* Not needed for cyclic transfers */
Nicolas Ferre3c477482011-07-25 21:09:23 +00001036 if (atc_chan_is_cyclic(atchan))
Nicolas Ferre53830cc2011-04-30 16:57:46 +02001037 return;
1038
Nicolas Ferred8cb04b2011-07-27 12:21:28 +00001039 spin_lock_irqsave(&atchan->lock, flags);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001040 if (!atc_chan_is_enabled(atchan)) {
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001041 atc_advance_work(atchan);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001042 }
Nicolas Ferred8cb04b2011-07-27 12:21:28 +00001043 spin_unlock_irqrestore(&atchan->lock, flags);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001044}
1045
1046/**
1047 * atc_alloc_chan_resources - allocate resources for DMA channel
1048 * @chan: allocate descriptor resources for this channel
1049 * @client: current client requesting the channel be ready for requests
1050 *
1051 * return - the number of allocated descriptors
1052 */
1053static int atc_alloc_chan_resources(struct dma_chan *chan)
1054{
1055 struct at_dma_chan *atchan = to_at_dma_chan(chan);
1056 struct at_dma *atdma = to_at_dma(chan->device);
1057 struct at_desc *desc;
Nicolas Ferre808347f2009-07-22 20:04:45 +02001058 struct at_dma_slave *atslave;
Nicolas Ferred8cb04b2011-07-27 12:21:28 +00001059 unsigned long flags;
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001060 int i;
Nicolas Ferre808347f2009-07-22 20:04:45 +02001061 u32 cfg;
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001062 LIST_HEAD(tmp_list);
1063
1064 dev_vdbg(chan2dev(chan), "alloc_chan_resources\n");
1065
1066 /* ASSERT: channel is idle */
1067 if (atc_chan_is_enabled(atchan)) {
1068 dev_dbg(chan2dev(chan), "DMA channel not idle ?\n");
1069 return -EIO;
1070 }
1071
Nicolas Ferre808347f2009-07-22 20:04:45 +02001072 cfg = ATC_DEFAULT_CFG;
1073
1074 atslave = chan->private;
1075 if (atslave) {
1076 /*
1077 * We need controller-specific data to set up slave
1078 * transfers.
1079 */
1080 BUG_ON(!atslave->dma_dev || atslave->dma_dev != atdma->dma_common.dev);
1081
1082 /* if cfg configuration specified take it instad of default */
1083 if (atslave->cfg)
1084 cfg = atslave->cfg;
1085 }
1086
1087 /* have we already been set up?
1088 * reconfigure channel but no need to reallocate descriptors */
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001089 if (!list_empty(&atchan->free_list))
1090 return atchan->descs_allocated;
1091
1092 /* Allocate initial pool of descriptors */
1093 for (i = 0; i < init_nr_desc_per_channel; i++) {
1094 desc = atc_alloc_descriptor(chan, GFP_KERNEL);
1095 if (!desc) {
1096 dev_err(atdma->dma_common.dev,
1097 "Only %d initial descriptors\n", i);
1098 break;
1099 }
1100 list_add_tail(&desc->desc_node, &tmp_list);
1101 }
1102
Nicolas Ferred8cb04b2011-07-27 12:21:28 +00001103 spin_lock_irqsave(&atchan->lock, flags);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001104 atchan->descs_allocated = i;
1105 list_splice(&tmp_list, &atchan->free_list);
Russell King - ARM Linuxd3ee98cdc2012-03-06 22:35:47 +00001106 dma_cookie_init(chan);
Nicolas Ferred8cb04b2011-07-27 12:21:28 +00001107 spin_unlock_irqrestore(&atchan->lock, flags);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001108
1109 /* channel parameters */
Nicolas Ferre808347f2009-07-22 20:04:45 +02001110 channel_writel(atchan, CFG, cfg);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001111
1112 dev_dbg(chan2dev(chan),
1113 "alloc_chan_resources: allocated %d descriptors\n",
1114 atchan->descs_allocated);
1115
1116 return atchan->descs_allocated;
1117}
1118
1119/**
1120 * atc_free_chan_resources - free all channel resources
1121 * @chan: DMA channel
1122 */
1123static void atc_free_chan_resources(struct dma_chan *chan)
1124{
1125 struct at_dma_chan *atchan = to_at_dma_chan(chan);
1126 struct at_dma *atdma = to_at_dma(chan->device);
1127 struct at_desc *desc, *_desc;
1128 LIST_HEAD(list);
1129
1130 dev_dbg(chan2dev(chan), "free_chan_resources: (descs allocated=%u)\n",
1131 atchan->descs_allocated);
1132
1133 /* ASSERT: channel is idle */
1134 BUG_ON(!list_empty(&atchan->active_list));
1135 BUG_ON(!list_empty(&atchan->queue));
1136 BUG_ON(atc_chan_is_enabled(atchan));
1137
1138 list_for_each_entry_safe(desc, _desc, &atchan->free_list, desc_node) {
1139 dev_vdbg(chan2dev(chan), " freeing descriptor %p\n", desc);
1140 list_del(&desc->desc_node);
1141 /* free link descriptor */
1142 dma_pool_free(atdma->dma_desc_pool, desc, desc->txd.phys);
1143 }
1144 list_splice_init(&atchan->free_list, &list);
1145 atchan->descs_allocated = 0;
Nicolas Ferre53830cc2011-04-30 16:57:46 +02001146 atchan->status = 0;
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001147
1148 dev_vdbg(chan2dev(chan), "free_chan_resources: done\n");
1149}
1150
1151
1152/*-- Module Management -----------------------------------------------*/
1153
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001154/* cap_mask is a multi-u32 bitfield, fill it with proper C code. */
1155static struct at_dma_platform_data at91sam9rl_config = {
1156 .nr_channels = 2,
1157};
1158static struct at_dma_platform_data at91sam9g45_config = {
1159 .nr_channels = 8,
1160};
1161
Nicolas Ferrec5115952011-10-17 14:56:41 +02001162#if defined(CONFIG_OF)
1163static const struct of_device_id atmel_dma_dt_ids[] = {
1164 {
1165 .compatible = "atmel,at91sam9rl-dma",
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001166 .data = &at91sam9rl_config,
Nicolas Ferrec5115952011-10-17 14:56:41 +02001167 }, {
1168 .compatible = "atmel,at91sam9g45-dma",
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001169 .data = &at91sam9g45_config,
Nicolas Ferredcc81732011-11-22 11:55:53 +01001170 }, {
1171 /* sentinel */
1172 }
Nicolas Ferrec5115952011-10-17 14:56:41 +02001173};
1174
1175MODULE_DEVICE_TABLE(of, atmel_dma_dt_ids);
1176#endif
1177
Nicolas Ferre0ab88a02011-11-22 11:55:52 +01001178static const struct platform_device_id atdma_devtypes[] = {
Nicolas Ferre67348452011-10-17 14:56:40 +02001179 {
1180 .name = "at91sam9rl_dma",
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001181 .driver_data = (unsigned long) &at91sam9rl_config,
Nicolas Ferre67348452011-10-17 14:56:40 +02001182 }, {
1183 .name = "at91sam9g45_dma",
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001184 .driver_data = (unsigned long) &at91sam9g45_config,
Nicolas Ferre67348452011-10-17 14:56:40 +02001185 }, {
1186 /* sentinel */
1187 }
1188};
1189
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001190static inline struct at_dma_platform_data * __init at_dma_get_driver_data(
1191 struct platform_device *pdev)
Nicolas Ferrec5115952011-10-17 14:56:41 +02001192{
1193 if (pdev->dev.of_node) {
1194 const struct of_device_id *match;
1195 match = of_match_node(atmel_dma_dt_ids, pdev->dev.of_node);
1196 if (match == NULL)
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001197 return NULL;
1198 return match->data;
Nicolas Ferrec5115952011-10-17 14:56:41 +02001199 }
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001200 return (struct at_dma_platform_data *)
1201 platform_get_device_id(pdev)->driver_data;
Nicolas Ferrec5115952011-10-17 14:56:41 +02001202}
1203
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001204/**
1205 * at_dma_off - disable DMA controller
1206 * @atdma: the Atmel HDAMC device
1207 */
1208static void at_dma_off(struct at_dma *atdma)
1209{
1210 dma_writel(atdma, EN, 0);
1211
1212 /* disable all interrupts */
1213 dma_writel(atdma, EBCIDR, -1L);
1214
1215 /* confirm that all channels are disabled */
1216 while (dma_readl(atdma, CHSR) & atdma->all_chan_mask)
1217 cpu_relax();
1218}
1219
1220static int __init at_dma_probe(struct platform_device *pdev)
1221{
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001222 struct resource *io;
1223 struct at_dma *atdma;
1224 size_t size;
1225 int irq;
1226 int err;
1227 int i;
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001228 struct at_dma_platform_data *plat_dat;
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001229
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001230 /* setup platform data for each SoC */
1231 dma_cap_set(DMA_MEMCPY, at91sam9rl_config.cap_mask);
1232 dma_cap_set(DMA_MEMCPY, at91sam9g45_config.cap_mask);
1233 dma_cap_set(DMA_SLAVE, at91sam9g45_config.cap_mask);
Nicolas Ferre67348452011-10-17 14:56:40 +02001234
1235 /* get DMA parameters from controller type */
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001236 plat_dat = at_dma_get_driver_data(pdev);
1237 if (!plat_dat)
1238 return -ENODEV;
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001239
1240 io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1241 if (!io)
1242 return -EINVAL;
1243
1244 irq = platform_get_irq(pdev, 0);
1245 if (irq < 0)
1246 return irq;
1247
1248 size = sizeof(struct at_dma);
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001249 size += plat_dat->nr_channels * sizeof(struct at_dma_chan);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001250 atdma = kzalloc(size, GFP_KERNEL);
1251 if (!atdma)
1252 return -ENOMEM;
1253
Nicolas Ferre67348452011-10-17 14:56:40 +02001254 /* discover transaction capabilities */
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001255 atdma->dma_common.cap_mask = plat_dat->cap_mask;
1256 atdma->all_chan_mask = (1 << plat_dat->nr_channels) - 1;
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001257
H Hartley Sweeten114df7d2011-06-01 15:16:09 -07001258 size = resource_size(io);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001259 if (!request_mem_region(io->start, size, pdev->dev.driver->name)) {
1260 err = -EBUSY;
1261 goto err_kfree;
1262 }
1263
1264 atdma->regs = ioremap(io->start, size);
1265 if (!atdma->regs) {
1266 err = -ENOMEM;
1267 goto err_release_r;
1268 }
1269
1270 atdma->clk = clk_get(&pdev->dev, "dma_clk");
1271 if (IS_ERR(atdma->clk)) {
1272 err = PTR_ERR(atdma->clk);
1273 goto err_clk;
1274 }
1275 clk_enable(atdma->clk);
1276
1277 /* force dma off, just in case */
1278 at_dma_off(atdma);
1279
1280 err = request_irq(irq, at_dma_interrupt, 0, "at_hdmac", atdma);
1281 if (err)
1282 goto err_irq;
1283
1284 platform_set_drvdata(pdev, atdma);
1285
1286 /* create a pool of consistent memory blocks for hardware descriptors */
1287 atdma->dma_desc_pool = dma_pool_create("at_hdmac_desc_pool",
1288 &pdev->dev, sizeof(struct at_desc),
1289 4 /* word alignment */, 0);
1290 if (!atdma->dma_desc_pool) {
1291 dev_err(&pdev->dev, "No memory for descriptors dma pool\n");
1292 err = -ENOMEM;
1293 goto err_pool_create;
1294 }
1295
1296 /* clear any pending interrupt */
1297 while (dma_readl(atdma, EBCISR))
1298 cpu_relax();
1299
1300 /* initialize channels related values */
1301 INIT_LIST_HEAD(&atdma->dma_common.channels);
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001302 for (i = 0; i < plat_dat->nr_channels; i++) {
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001303 struct at_dma_chan *atchan = &atdma->chan[i];
1304
1305 atchan->chan_common.device = &atdma->dma_common;
Russell King - ARM Linuxd3ee98cdc2012-03-06 22:35:47 +00001306 dma_cookie_init(&atchan->chan_common);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001307 list_add_tail(&atchan->chan_common.device_node,
1308 &atdma->dma_common.channels);
1309
1310 atchan->ch_regs = atdma->regs + ch_regs(i);
1311 spin_lock_init(&atchan->lock);
1312 atchan->mask = 1 << i;
1313
1314 INIT_LIST_HEAD(&atchan->active_list);
1315 INIT_LIST_HEAD(&atchan->queue);
1316 INIT_LIST_HEAD(&atchan->free_list);
1317
1318 tasklet_init(&atchan->tasklet, atc_tasklet,
1319 (unsigned long)atchan);
Nikolaus Vossbda3a472012-01-17 10:28:33 +01001320 atc_enable_chan_irq(atdma, i);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001321 }
1322
1323 /* set base routines */
1324 atdma->dma_common.device_alloc_chan_resources = atc_alloc_chan_resources;
1325 atdma->dma_common.device_free_chan_resources = atc_free_chan_resources;
Linus Walleij07934482010-03-26 16:50:49 -07001326 atdma->dma_common.device_tx_status = atc_tx_status;
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001327 atdma->dma_common.device_issue_pending = atc_issue_pending;
1328 atdma->dma_common.dev = &pdev->dev;
1329
1330 /* set prep routines based on capability */
1331 if (dma_has_cap(DMA_MEMCPY, atdma->dma_common.cap_mask))
1332 atdma->dma_common.device_prep_dma_memcpy = atc_prep_dma_memcpy;
1333
Nicolas Ferred7db8082011-08-05 11:43:44 +00001334 if (dma_has_cap(DMA_SLAVE, atdma->dma_common.cap_mask)) {
Nicolas Ferre808347f2009-07-22 20:04:45 +02001335 atdma->dma_common.device_prep_slave_sg = atc_prep_slave_sg;
Nicolas Ferred7db8082011-08-05 11:43:44 +00001336 /* controller can do slave DMA: can trigger cyclic transfers */
1337 dma_cap_set(DMA_CYCLIC, atdma->dma_common.cap_mask);
Nicolas Ferre53830cc2011-04-30 16:57:46 +02001338 atdma->dma_common.device_prep_dma_cyclic = atc_prep_dma_cyclic;
Linus Walleijc3635c72010-03-26 16:44:01 -07001339 atdma->dma_common.device_control = atc_control;
Nicolas Ferred7db8082011-08-05 11:43:44 +00001340 }
Nicolas Ferre808347f2009-07-22 20:04:45 +02001341
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001342 dma_writel(atdma, EN, AT_DMA_ENABLE);
1343
1344 dev_info(&pdev->dev, "Atmel AHB DMA Controller ( %s%s), %d channels\n",
1345 dma_has_cap(DMA_MEMCPY, atdma->dma_common.cap_mask) ? "cpy " : "",
1346 dma_has_cap(DMA_SLAVE, atdma->dma_common.cap_mask) ? "slave " : "",
Nicolas Ferre02f88be2011-11-22 11:55:54 +01001347 plat_dat->nr_channels);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001348
1349 dma_async_device_register(&atdma->dma_common);
1350
1351 return 0;
1352
1353err_pool_create:
1354 platform_set_drvdata(pdev, NULL);
1355 free_irq(platform_get_irq(pdev, 0), atdma);
1356err_irq:
1357 clk_disable(atdma->clk);
1358 clk_put(atdma->clk);
1359err_clk:
1360 iounmap(atdma->regs);
1361 atdma->regs = NULL;
1362err_release_r:
1363 release_mem_region(io->start, size);
1364err_kfree:
1365 kfree(atdma);
1366 return err;
1367}
1368
1369static int __exit at_dma_remove(struct platform_device *pdev)
1370{
1371 struct at_dma *atdma = platform_get_drvdata(pdev);
1372 struct dma_chan *chan, *_chan;
1373 struct resource *io;
1374
1375 at_dma_off(atdma);
1376 dma_async_device_unregister(&atdma->dma_common);
1377
1378 dma_pool_destroy(atdma->dma_desc_pool);
1379 platform_set_drvdata(pdev, NULL);
1380 free_irq(platform_get_irq(pdev, 0), atdma);
1381
1382 list_for_each_entry_safe(chan, _chan, &atdma->dma_common.channels,
1383 device_node) {
1384 struct at_dma_chan *atchan = to_at_dma_chan(chan);
1385
1386 /* Disable interrupts */
Nikolaus Vossbda3a472012-01-17 10:28:33 +01001387 atc_disable_chan_irq(atdma, chan->chan_id);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001388 tasklet_disable(&atchan->tasklet);
1389
1390 tasklet_kill(&atchan->tasklet);
1391 list_del(&chan->device_node);
1392 }
1393
1394 clk_disable(atdma->clk);
1395 clk_put(atdma->clk);
1396
1397 iounmap(atdma->regs);
1398 atdma->regs = NULL;
1399
1400 io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
H Hartley Sweeten114df7d2011-06-01 15:16:09 -07001401 release_mem_region(io->start, resource_size(io));
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001402
1403 kfree(atdma);
1404
1405 return 0;
1406}
1407
1408static void at_dma_shutdown(struct platform_device *pdev)
1409{
1410 struct at_dma *atdma = platform_get_drvdata(pdev);
1411
1412 at_dma_off(platform_get_drvdata(pdev));
1413 clk_disable(atdma->clk);
1414}
1415
Nicolas Ferrec0ba5942011-07-27 12:21:29 +00001416static int at_dma_prepare(struct device *dev)
1417{
1418 struct platform_device *pdev = to_platform_device(dev);
1419 struct at_dma *atdma = platform_get_drvdata(pdev);
1420 struct dma_chan *chan, *_chan;
1421
1422 list_for_each_entry_safe(chan, _chan, &atdma->dma_common.channels,
1423 device_node) {
1424 struct at_dma_chan *atchan = to_at_dma_chan(chan);
1425 /* wait for transaction completion (except in cyclic case) */
Nicolas Ferre3c477482011-07-25 21:09:23 +00001426 if (atc_chan_is_enabled(atchan) && !atc_chan_is_cyclic(atchan))
Nicolas Ferrec0ba5942011-07-27 12:21:29 +00001427 return -EAGAIN;
1428 }
1429 return 0;
1430}
1431
1432static void atc_suspend_cyclic(struct at_dma_chan *atchan)
1433{
1434 struct dma_chan *chan = &atchan->chan_common;
1435
1436 /* Channel should be paused by user
1437 * do it anyway even if it is not done already */
Nicolas Ferre3c477482011-07-25 21:09:23 +00001438 if (!atc_chan_is_paused(atchan)) {
Nicolas Ferrec0ba5942011-07-27 12:21:29 +00001439 dev_warn(chan2dev(chan),
1440 "cyclic channel not paused, should be done by channel user\n");
1441 atc_control(chan, DMA_PAUSE, 0);
1442 }
1443
1444 /* now preserve additional data for cyclic operations */
1445 /* next descriptor address in the cyclic list */
1446 atchan->save_dscr = channel_readl(atchan, DSCR);
1447
1448 vdbg_dump_regs(atchan);
1449}
1450
Dan Williams33f82d12009-09-10 00:06:44 +02001451static int at_dma_suspend_noirq(struct device *dev)
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001452{
Dan Williams33f82d12009-09-10 00:06:44 +02001453 struct platform_device *pdev = to_platform_device(dev);
1454 struct at_dma *atdma = platform_get_drvdata(pdev);
Nicolas Ferrec0ba5942011-07-27 12:21:29 +00001455 struct dma_chan *chan, *_chan;
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001456
Nicolas Ferrec0ba5942011-07-27 12:21:29 +00001457 /* preserve data */
1458 list_for_each_entry_safe(chan, _chan, &atdma->dma_common.channels,
1459 device_node) {
1460 struct at_dma_chan *atchan = to_at_dma_chan(chan);
1461
Nicolas Ferre3c477482011-07-25 21:09:23 +00001462 if (atc_chan_is_cyclic(atchan))
Nicolas Ferrec0ba5942011-07-27 12:21:29 +00001463 atc_suspend_cyclic(atchan);
1464 atchan->save_cfg = channel_readl(atchan, CFG);
1465 }
1466 atdma->save_imr = dma_readl(atdma, EBCIMR);
1467
1468 /* disable DMA controller */
1469 at_dma_off(atdma);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001470 clk_disable(atdma->clk);
1471 return 0;
1472}
1473
Nicolas Ferrec0ba5942011-07-27 12:21:29 +00001474static void atc_resume_cyclic(struct at_dma_chan *atchan)
1475{
1476 struct at_dma *atdma = to_at_dma(atchan->chan_common.device);
1477
1478 /* restore channel status for cyclic descriptors list:
1479 * next descriptor in the cyclic list at the time of suspend */
1480 channel_writel(atchan, SADDR, 0);
1481 channel_writel(atchan, DADDR, 0);
1482 channel_writel(atchan, CTRLA, 0);
1483 channel_writel(atchan, CTRLB, 0);
1484 channel_writel(atchan, DSCR, atchan->save_dscr);
1485 dma_writel(atdma, CHER, atchan->mask);
1486
1487 /* channel pause status should be removed by channel user
1488 * We cannot take the initiative to do it here */
1489
1490 vdbg_dump_regs(atchan);
1491}
1492
Dan Williams33f82d12009-09-10 00:06:44 +02001493static int at_dma_resume_noirq(struct device *dev)
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001494{
Dan Williams33f82d12009-09-10 00:06:44 +02001495 struct platform_device *pdev = to_platform_device(dev);
1496 struct at_dma *atdma = platform_get_drvdata(pdev);
Nicolas Ferrec0ba5942011-07-27 12:21:29 +00001497 struct dma_chan *chan, *_chan;
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001498
Nicolas Ferrec0ba5942011-07-27 12:21:29 +00001499 /* bring back DMA controller */
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001500 clk_enable(atdma->clk);
1501 dma_writel(atdma, EN, AT_DMA_ENABLE);
Nicolas Ferrec0ba5942011-07-27 12:21:29 +00001502
1503 /* clear any pending interrupt */
1504 while (dma_readl(atdma, EBCISR))
1505 cpu_relax();
1506
1507 /* restore saved data */
1508 dma_writel(atdma, EBCIER, atdma->save_imr);
1509 list_for_each_entry_safe(chan, _chan, &atdma->dma_common.channels,
1510 device_node) {
1511 struct at_dma_chan *atchan = to_at_dma_chan(chan);
1512
1513 channel_writel(atchan, CFG, atchan->save_cfg);
Nicolas Ferre3c477482011-07-25 21:09:23 +00001514 if (atc_chan_is_cyclic(atchan))
Nicolas Ferrec0ba5942011-07-27 12:21:29 +00001515 atc_resume_cyclic(atchan);
1516 }
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001517 return 0;
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001518}
1519
Alexey Dobriyan47145212009-12-14 18:00:08 -08001520static const struct dev_pm_ops at_dma_dev_pm_ops = {
Nicolas Ferrec0ba5942011-07-27 12:21:29 +00001521 .prepare = at_dma_prepare,
Dan Williams33f82d12009-09-10 00:06:44 +02001522 .suspend_noirq = at_dma_suspend_noirq,
1523 .resume_noirq = at_dma_resume_noirq,
1524};
1525
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001526static struct platform_driver at_dma_driver = {
1527 .remove = __exit_p(at_dma_remove),
1528 .shutdown = at_dma_shutdown,
Nicolas Ferre67348452011-10-17 14:56:40 +02001529 .id_table = atdma_devtypes,
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001530 .driver = {
1531 .name = "at_hdmac",
Dan Williams33f82d12009-09-10 00:06:44 +02001532 .pm = &at_dma_dev_pm_ops,
Nicolas Ferrec5115952011-10-17 14:56:41 +02001533 .of_match_table = of_match_ptr(atmel_dma_dt_ids),
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001534 },
1535};
1536
1537static int __init at_dma_init(void)
1538{
1539 return platform_driver_probe(&at_dma_driver, at_dma_probe);
1540}
Eric Xu93d0bec2011-01-12 15:39:08 +01001541subsys_initcall(at_dma_init);
Nicolas Ferredc78baa2009-07-03 19:24:33 +02001542
1543static void __exit at_dma_exit(void)
1544{
1545 platform_driver_unregister(&at_dma_driver);
1546}
1547module_exit(at_dma_exit);
1548
1549MODULE_DESCRIPTION("Atmel AHB DMA Controller driver");
1550MODULE_AUTHOR("Nicolas Ferre <nicolas.ferre@atmel.com>");
1551MODULE_LICENSE("GPL");
1552MODULE_ALIAS("platform:at_hdmac");