]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/dma/fsldma.c
vmxnet: trivial annotation of protocol constant
[net-next-2.6.git] / drivers / dma / fsldma.c
CommitLineData
173acc7c
ZW
1/*
2 * Freescale MPC85xx, MPC83xx DMA Engine support
3 *
4 * Copyright (C) 2007 Freescale Semiconductor, Inc. All rights reserved.
5 *
6 * Author:
7 * Zhang Wei <wei.zhang@freescale.com>, Jul 2007
8 * Ebony Zhu <ebony.zhu@freescale.com>, May 2007
9 *
10 * Description:
11 * DMA engine driver for Freescale MPC8540 DMA controller, which is
12 * also fit for MPC8560, MPC8555, MPC8548, MPC8641, and etc.
c2e07b3a 13 * The support for MPC8349 DMA controller is also added.
173acc7c 14 *
a7aea373
IS
15 * This driver instructs the DMA controller to issue the PCI Read Multiple
16 * command for PCI read operations, instead of using the default PCI Read Line
17 * command. Please be aware that this setting may result in read pre-fetching
18 * on some platforms.
19 *
173acc7c
ZW
20 * This is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation; either version 2 of the License, or
23 * (at your option) any later version.
24 *
25 */
26
27#include <linux/init.h>
28#include <linux/module.h>
29#include <linux/pci.h>
5a0e3ad6 30#include <linux/slab.h>
173acc7c
ZW
31#include <linux/interrupt.h>
32#include <linux/dmaengine.h>
33#include <linux/delay.h>
34#include <linux/dma-mapping.h>
35#include <linux/dmapool.h>
36#include <linux/of_platform.h>
37
bbea0b6e 38#include <asm/fsldma.h>
173acc7c
ZW
39#include "fsldma.h"
40
a1c03319 41static void dma_init(struct fsldma_chan *chan)
173acc7c
ZW
42{
43 /* Reset the channel */
a1c03319 44 DMA_OUT(chan, &chan->regs->mr, 0, 32);
173acc7c 45
a1c03319 46 switch (chan->feature & FSL_DMA_IP_MASK) {
173acc7c
ZW
47 case FSL_DMA_IP_85XX:
48 /* Set the channel to below modes:
49 * EIE - Error interrupt enable
50 * EOSIE - End of segments interrupt enable (basic mode)
51 * EOLNIE - End of links interrupt enable
52 */
a1c03319 53 DMA_OUT(chan, &chan->regs->mr, FSL_DMA_MR_EIE
173acc7c
ZW
54 | FSL_DMA_MR_EOLNIE | FSL_DMA_MR_EOSIE, 32);
55 break;
56 case FSL_DMA_IP_83XX:
57 /* Set the channel to below modes:
58 * EOTIE - End-of-transfer interrupt enable
a7aea373 59 * PRC_RM - PCI read multiple
173acc7c 60 */
a1c03319 61 DMA_OUT(chan, &chan->regs->mr, FSL_DMA_MR_EOTIE
a7aea373 62 | FSL_DMA_MR_PRC_RM, 32);
173acc7c
ZW
63 break;
64 }
173acc7c
ZW
65}
66
a1c03319 67static void set_sr(struct fsldma_chan *chan, u32 val)
173acc7c 68{
a1c03319 69 DMA_OUT(chan, &chan->regs->sr, val, 32);
173acc7c
ZW
70}
71
a1c03319 72static u32 get_sr(struct fsldma_chan *chan)
173acc7c 73{
a1c03319 74 return DMA_IN(chan, &chan->regs->sr, 32);
173acc7c
ZW
75}
76
a1c03319 77static void set_desc_cnt(struct fsldma_chan *chan,
173acc7c
ZW
78 struct fsl_dma_ld_hw *hw, u32 count)
79{
a1c03319 80 hw->count = CPU_TO_DMA(chan, count, 32);
173acc7c
ZW
81}
82
a1c03319 83static void set_desc_src(struct fsldma_chan *chan,
173acc7c
ZW
84 struct fsl_dma_ld_hw *hw, dma_addr_t src)
85{
86 u64 snoop_bits;
87
a1c03319 88 snoop_bits = ((chan->feature & FSL_DMA_IP_MASK) == FSL_DMA_IP_85XX)
173acc7c 89 ? ((u64)FSL_DMA_SATR_SREADTYPE_SNOOP_READ << 32) : 0;
a1c03319 90 hw->src_addr = CPU_TO_DMA(chan, snoop_bits | src, 64);
173acc7c
ZW
91}
92
a1c03319 93static void set_desc_dst(struct fsldma_chan *chan,
738f5f7e 94 struct fsl_dma_ld_hw *hw, dma_addr_t dst)
173acc7c
ZW
95{
96 u64 snoop_bits;
97
a1c03319 98 snoop_bits = ((chan->feature & FSL_DMA_IP_MASK) == FSL_DMA_IP_85XX)
173acc7c 99 ? ((u64)FSL_DMA_DATR_DWRITETYPE_SNOOP_WRITE << 32) : 0;
a1c03319 100 hw->dst_addr = CPU_TO_DMA(chan, snoop_bits | dst, 64);
173acc7c
ZW
101}
102
a1c03319 103static void set_desc_next(struct fsldma_chan *chan,
173acc7c
ZW
104 struct fsl_dma_ld_hw *hw, dma_addr_t next)
105{
106 u64 snoop_bits;
107
a1c03319 108 snoop_bits = ((chan->feature & FSL_DMA_IP_MASK) == FSL_DMA_IP_83XX)
173acc7c 109 ? FSL_DMA_SNEN : 0;
a1c03319 110 hw->next_ln_addr = CPU_TO_DMA(chan, snoop_bits | next, 64);
173acc7c
ZW
111}
112
a1c03319 113static void set_cdar(struct fsldma_chan *chan, dma_addr_t addr)
173acc7c 114{
a1c03319 115 DMA_OUT(chan, &chan->regs->cdar, addr | FSL_DMA_SNEN, 64);
173acc7c
ZW
116}
117
a1c03319 118static dma_addr_t get_cdar(struct fsldma_chan *chan)
173acc7c 119{
a1c03319 120 return DMA_IN(chan, &chan->regs->cdar, 64) & ~FSL_DMA_SNEN;
173acc7c
ZW
121}
122
a1c03319 123static dma_addr_t get_ndar(struct fsldma_chan *chan)
173acc7c 124{
a1c03319 125 return DMA_IN(chan, &chan->regs->ndar, 64);
173acc7c
ZW
126}
127
a1c03319 128static u32 get_bcr(struct fsldma_chan *chan)
f79abb62 129{
a1c03319 130 return DMA_IN(chan, &chan->regs->bcr, 32);
f79abb62
ZW
131}
132
a1c03319 133static int dma_is_idle(struct fsldma_chan *chan)
173acc7c 134{
a1c03319 135 u32 sr = get_sr(chan);
173acc7c
ZW
136 return (!(sr & FSL_DMA_SR_CB)) || (sr & FSL_DMA_SR_CH);
137}
138
a1c03319 139static void dma_start(struct fsldma_chan *chan)
173acc7c 140{
272ca655
IS
141 u32 mode;
142
a1c03319 143 mode = DMA_IN(chan, &chan->regs->mr, 32);
272ca655 144
a1c03319
IS
145 if ((chan->feature & FSL_DMA_IP_MASK) == FSL_DMA_IP_85XX) {
146 if (chan->feature & FSL_DMA_CHAN_PAUSE_EXT) {
147 DMA_OUT(chan, &chan->regs->bcr, 0, 32);
272ca655
IS
148 mode |= FSL_DMA_MR_EMP_EN;
149 } else {
150 mode &= ~FSL_DMA_MR_EMP_EN;
151 }
43a1a3ed 152 }
173acc7c 153
a1c03319 154 if (chan->feature & FSL_DMA_CHAN_START_EXT)
272ca655 155 mode |= FSL_DMA_MR_EMS_EN;
173acc7c 156 else
272ca655 157 mode |= FSL_DMA_MR_CS;
173acc7c 158
a1c03319 159 DMA_OUT(chan, &chan->regs->mr, mode, 32);
173acc7c
ZW
160}
161
a1c03319 162static void dma_halt(struct fsldma_chan *chan)
173acc7c 163{
272ca655 164 u32 mode;
900325a6
DW
165 int i;
166
a1c03319 167 mode = DMA_IN(chan, &chan->regs->mr, 32);
272ca655 168 mode |= FSL_DMA_MR_CA;
a1c03319 169 DMA_OUT(chan, &chan->regs->mr, mode, 32);
272ca655
IS
170
171 mode &= ~(FSL_DMA_MR_CS | FSL_DMA_MR_EMS_EN | FSL_DMA_MR_CA);
a1c03319 172 DMA_OUT(chan, &chan->regs->mr, mode, 32);
173acc7c 173
900325a6 174 for (i = 0; i < 100; i++) {
a1c03319 175 if (dma_is_idle(chan))
9c3a50b7
IS
176 return;
177
173acc7c 178 udelay(10);
900325a6 179 }
272ca655 180
9c3a50b7 181 if (!dma_is_idle(chan))
a1c03319 182 dev_err(chan->dev, "DMA halt timeout!\n");
173acc7c
ZW
183}
184
a1c03319 185static void set_ld_eol(struct fsldma_chan *chan,
173acc7c
ZW
186 struct fsl_desc_sw *desc)
187{
776c8943
IS
188 u64 snoop_bits;
189
a1c03319 190 snoop_bits = ((chan->feature & FSL_DMA_IP_MASK) == FSL_DMA_IP_83XX)
776c8943
IS
191 ? FSL_DMA_SNEN : 0;
192
a1c03319
IS
193 desc->hw.next_ln_addr = CPU_TO_DMA(chan,
194 DMA_TO_CPU(chan, desc->hw.next_ln_addr, 64) | FSL_DMA_EOL
776c8943 195 | snoop_bits, 64);
173acc7c
ZW
196}
197
173acc7c
ZW
198/**
199 * fsl_chan_set_src_loop_size - Set source address hold transfer size
a1c03319 200 * @chan : Freescale DMA channel
173acc7c
ZW
201 * @size : Address loop size, 0 for disable loop
202 *
203 * The set source address hold transfer size. The source
204 * address hold or loop transfer size is when the DMA transfer
205 * data from source address (SA), if the loop size is 4, the DMA will
206 * read data from SA, SA + 1, SA + 2, SA + 3, then loop back to SA,
207 * SA + 1 ... and so on.
208 */
a1c03319 209static void fsl_chan_set_src_loop_size(struct fsldma_chan *chan, int size)
173acc7c 210{
272ca655
IS
211 u32 mode;
212
a1c03319 213 mode = DMA_IN(chan, &chan->regs->mr, 32);
272ca655 214
173acc7c
ZW
215 switch (size) {
216 case 0:
272ca655 217 mode &= ~FSL_DMA_MR_SAHE;
173acc7c
ZW
218 break;
219 case 1:
220 case 2:
221 case 4:
222 case 8:
272ca655 223 mode |= FSL_DMA_MR_SAHE | (__ilog2(size) << 14);
173acc7c
ZW
224 break;
225 }
272ca655 226
a1c03319 227 DMA_OUT(chan, &chan->regs->mr, mode, 32);
173acc7c
ZW
228}
229
230/**
738f5f7e 231 * fsl_chan_set_dst_loop_size - Set destination address hold transfer size
a1c03319 232 * @chan : Freescale DMA channel
173acc7c
ZW
233 * @size : Address loop size, 0 for disable loop
234 *
235 * The set destination address hold transfer size. The destination
236 * address hold or loop transfer size is when the DMA transfer
237 * data to destination address (TA), if the loop size is 4, the DMA will
238 * write data to TA, TA + 1, TA + 2, TA + 3, then loop back to TA,
239 * TA + 1 ... and so on.
240 */
a1c03319 241static void fsl_chan_set_dst_loop_size(struct fsldma_chan *chan, int size)
173acc7c 242{
272ca655
IS
243 u32 mode;
244
a1c03319 245 mode = DMA_IN(chan, &chan->regs->mr, 32);
272ca655 246
173acc7c
ZW
247 switch (size) {
248 case 0:
272ca655 249 mode &= ~FSL_DMA_MR_DAHE;
173acc7c
ZW
250 break;
251 case 1:
252 case 2:
253 case 4:
254 case 8:
272ca655 255 mode |= FSL_DMA_MR_DAHE | (__ilog2(size) << 16);
173acc7c
ZW
256 break;
257 }
272ca655 258
a1c03319 259 DMA_OUT(chan, &chan->regs->mr, mode, 32);
173acc7c
ZW
260}
261
262/**
e6c7ecb6 263 * fsl_chan_set_request_count - Set DMA Request Count for external control
a1c03319 264 * @chan : Freescale DMA channel
e6c7ecb6
IS
265 * @size : Number of bytes to transfer in a single request
266 *
267 * The Freescale DMA channel can be controlled by the external signal DREQ#.
268 * The DMA request count is how many bytes are allowed to transfer before
269 * pausing the channel, after which a new assertion of DREQ# resumes channel
270 * operation.
173acc7c 271 *
e6c7ecb6 272 * A size of 0 disables external pause control. The maximum size is 1024.
173acc7c 273 */
a1c03319 274static void fsl_chan_set_request_count(struct fsldma_chan *chan, int size)
173acc7c 275{
272ca655
IS
276 u32 mode;
277
e6c7ecb6 278 BUG_ON(size > 1024);
272ca655 279
a1c03319 280 mode = DMA_IN(chan, &chan->regs->mr, 32);
272ca655
IS
281 mode |= (__ilog2(size) << 24) & 0x0f000000;
282
a1c03319 283 DMA_OUT(chan, &chan->regs->mr, mode, 32);
e6c7ecb6 284}
173acc7c 285
e6c7ecb6
IS
286/**
287 * fsl_chan_toggle_ext_pause - Toggle channel external pause status
a1c03319 288 * @chan : Freescale DMA channel
e6c7ecb6
IS
289 * @enable : 0 is disabled, 1 is enabled.
290 *
291 * The Freescale DMA channel can be controlled by the external signal DREQ#.
292 * The DMA Request Count feature should be used in addition to this feature
293 * to set the number of bytes to transfer before pausing the channel.
294 */
a1c03319 295static void fsl_chan_toggle_ext_pause(struct fsldma_chan *chan, int enable)
e6c7ecb6
IS
296{
297 if (enable)
a1c03319 298 chan->feature |= FSL_DMA_CHAN_PAUSE_EXT;
e6c7ecb6 299 else
a1c03319 300 chan->feature &= ~FSL_DMA_CHAN_PAUSE_EXT;
173acc7c
ZW
301}
302
303/**
304 * fsl_chan_toggle_ext_start - Toggle channel external start status
a1c03319 305 * @chan : Freescale DMA channel
173acc7c
ZW
306 * @enable : 0 is disabled, 1 is enabled.
307 *
308 * If enable the external start, the channel can be started by an
309 * external DMA start pin. So the dma_start() does not start the
310 * transfer immediately. The DMA channel will wait for the
311 * control pin asserted.
312 */
a1c03319 313static void fsl_chan_toggle_ext_start(struct fsldma_chan *chan, int enable)
173acc7c
ZW
314{
315 if (enable)
a1c03319 316 chan->feature |= FSL_DMA_CHAN_START_EXT;
173acc7c 317 else
a1c03319 318 chan->feature &= ~FSL_DMA_CHAN_START_EXT;
173acc7c
ZW
319}
320
9c3a50b7
IS
321static void append_ld_queue(struct fsldma_chan *chan,
322 struct fsl_desc_sw *desc)
323{
324 struct fsl_desc_sw *tail = to_fsl_desc(chan->ld_pending.prev);
325
326 if (list_empty(&chan->ld_pending))
327 goto out_splice;
328
329 /*
330 * Add the hardware descriptor to the chain of hardware descriptors
331 * that already exists in memory.
332 *
333 * This will un-set the EOL bit of the existing transaction, and the
334 * last link in this transaction will become the EOL descriptor.
335 */
336 set_desc_next(chan, &tail->hw, desc->async_tx.phys);
337
338 /*
339 * Add the software descriptor and all children to the list
340 * of pending transactions
341 */
342out_splice:
343 list_splice_tail_init(&desc->tx_list, &chan->ld_pending);
344}
345
173acc7c
ZW
346static dma_cookie_t fsl_dma_tx_submit(struct dma_async_tx_descriptor *tx)
347{
a1c03319 348 struct fsldma_chan *chan = to_fsl_chan(tx->chan);
eda34234
DW
349 struct fsl_desc_sw *desc = tx_to_fsl_desc(tx);
350 struct fsl_desc_sw *child;
173acc7c
ZW
351 unsigned long flags;
352 dma_cookie_t cookie;
353
a1c03319 354 spin_lock_irqsave(&chan->desc_lock, flags);
173acc7c 355
9c3a50b7
IS
356 /*
357 * assign cookies to all of the software descriptors
358 * that make up this transaction
359 */
a1c03319 360 cookie = chan->common.cookie;
eda34234 361 list_for_each_entry(child, &desc->tx_list, node) {
bcfb7465
IS
362 cookie++;
363 if (cookie < 0)
364 cookie = 1;
365
6ca3a7a9 366 child->async_tx.cookie = cookie;
bcfb7465
IS
367 }
368
a1c03319 369 chan->common.cookie = cookie;
9c3a50b7
IS
370
371 /* put this transaction onto the tail of the pending queue */
a1c03319 372 append_ld_queue(chan, desc);
173acc7c 373
a1c03319 374 spin_unlock_irqrestore(&chan->desc_lock, flags);
173acc7c
ZW
375
376 return cookie;
377}
378
379/**
380 * fsl_dma_alloc_descriptor - Allocate descriptor from channel's DMA pool.
a1c03319 381 * @chan : Freescale DMA channel
173acc7c
ZW
382 *
383 * Return - The descriptor allocated. NULL for failed.
384 */
385static struct fsl_desc_sw *fsl_dma_alloc_descriptor(
a1c03319 386 struct fsldma_chan *chan)
173acc7c 387{
9c3a50b7 388 struct fsl_desc_sw *desc;
173acc7c 389 dma_addr_t pdesc;
9c3a50b7
IS
390
391 desc = dma_pool_alloc(chan->desc_pool, GFP_ATOMIC, &pdesc);
392 if (!desc) {
393 dev_dbg(chan->dev, "out of memory for link desc\n");
394 return NULL;
173acc7c
ZW
395 }
396
9c3a50b7
IS
397 memset(desc, 0, sizeof(*desc));
398 INIT_LIST_HEAD(&desc->tx_list);
399 dma_async_tx_descriptor_init(&desc->async_tx, &chan->common);
400 desc->async_tx.tx_submit = fsl_dma_tx_submit;
401 desc->async_tx.phys = pdesc;
402
403 return desc;
173acc7c
ZW
404}
405
406
407/**
408 * fsl_dma_alloc_chan_resources - Allocate resources for DMA channel.
a1c03319 409 * @chan : Freescale DMA channel
173acc7c
ZW
410 *
411 * This function will create a dma pool for descriptor allocation.
412 *
413 * Return - The number of descriptors allocated.
414 */
a1c03319 415static int fsl_dma_alloc_chan_resources(struct dma_chan *dchan)
173acc7c 416{
a1c03319 417 struct fsldma_chan *chan = to_fsl_chan(dchan);
77cd62e8
TT
418
419 /* Has this channel already been allocated? */
a1c03319 420 if (chan->desc_pool)
77cd62e8 421 return 1;
173acc7c 422
9c3a50b7
IS
423 /*
424 * We need the descriptor to be aligned to 32bytes
173acc7c
ZW
425 * for meeting FSL DMA specification requirement.
426 */
a1c03319 427 chan->desc_pool = dma_pool_create("fsl_dma_engine_desc_pool",
9c3a50b7
IS
428 chan->dev,
429 sizeof(struct fsl_desc_sw),
430 __alignof__(struct fsl_desc_sw), 0);
a1c03319 431 if (!chan->desc_pool) {
9c3a50b7
IS
432 dev_err(chan->dev, "unable to allocate channel %d "
433 "descriptor pool\n", chan->id);
434 return -ENOMEM;
173acc7c
ZW
435 }
436
9c3a50b7 437 /* there is at least one descriptor free to be allocated */
173acc7c
ZW
438 return 1;
439}
440
9c3a50b7
IS
441/**
442 * fsldma_free_desc_list - Free all descriptors in a queue
443 * @chan: Freescae DMA channel
444 * @list: the list to free
445 *
446 * LOCKING: must hold chan->desc_lock
447 */
448static void fsldma_free_desc_list(struct fsldma_chan *chan,
449 struct list_head *list)
450{
451 struct fsl_desc_sw *desc, *_desc;
452
453 list_for_each_entry_safe(desc, _desc, list, node) {
454 list_del(&desc->node);
455 dma_pool_free(chan->desc_pool, desc, desc->async_tx.phys);
456 }
457}
458
459static void fsldma_free_desc_list_reverse(struct fsldma_chan *chan,
460 struct list_head *list)
461{
462 struct fsl_desc_sw *desc, *_desc;
463
464 list_for_each_entry_safe_reverse(desc, _desc, list, node) {
465 list_del(&desc->node);
466 dma_pool_free(chan->desc_pool, desc, desc->async_tx.phys);
467 }
468}
469
173acc7c
ZW
470/**
471 * fsl_dma_free_chan_resources - Free all resources of the channel.
a1c03319 472 * @chan : Freescale DMA channel
173acc7c 473 */
a1c03319 474static void fsl_dma_free_chan_resources(struct dma_chan *dchan)
173acc7c 475{
a1c03319 476 struct fsldma_chan *chan = to_fsl_chan(dchan);
173acc7c
ZW
477 unsigned long flags;
478
a1c03319
IS
479 dev_dbg(chan->dev, "Free all channel resources.\n");
480 spin_lock_irqsave(&chan->desc_lock, flags);
9c3a50b7
IS
481 fsldma_free_desc_list(chan, &chan->ld_pending);
482 fsldma_free_desc_list(chan, &chan->ld_running);
a1c03319 483 spin_unlock_irqrestore(&chan->desc_lock, flags);
77cd62e8 484
9c3a50b7 485 dma_pool_destroy(chan->desc_pool);
a1c03319 486 chan->desc_pool = NULL;
173acc7c
ZW
487}
488
2187c269 489static struct dma_async_tx_descriptor *
a1c03319 490fsl_dma_prep_interrupt(struct dma_chan *dchan, unsigned long flags)
2187c269 491{
a1c03319 492 struct fsldma_chan *chan;
2187c269
ZW
493 struct fsl_desc_sw *new;
494
a1c03319 495 if (!dchan)
2187c269
ZW
496 return NULL;
497
a1c03319 498 chan = to_fsl_chan(dchan);
2187c269 499
a1c03319 500 new = fsl_dma_alloc_descriptor(chan);
2187c269 501 if (!new) {
a1c03319 502 dev_err(chan->dev, "No free memory for link descriptor\n");
2187c269
ZW
503 return NULL;
504 }
505
506 new->async_tx.cookie = -EBUSY;
636bdeaa 507 new->async_tx.flags = flags;
2187c269 508
f79abb62 509 /* Insert the link descriptor to the LD ring */
eda34234 510 list_add_tail(&new->node, &new->tx_list);
f79abb62 511
2187c269 512 /* Set End-of-link to the last link descriptor of new list*/
a1c03319 513 set_ld_eol(chan, new);
2187c269
ZW
514
515 return &new->async_tx;
516}
517
173acc7c 518static struct dma_async_tx_descriptor *fsl_dma_prep_memcpy(
a1c03319 519 struct dma_chan *dchan, dma_addr_t dma_dst, dma_addr_t dma_src,
173acc7c
ZW
520 size_t len, unsigned long flags)
521{
a1c03319 522 struct fsldma_chan *chan;
173acc7c
ZW
523 struct fsl_desc_sw *first = NULL, *prev = NULL, *new;
524 size_t copy;
173acc7c 525
a1c03319 526 if (!dchan)
173acc7c
ZW
527 return NULL;
528
529 if (!len)
530 return NULL;
531
a1c03319 532 chan = to_fsl_chan(dchan);
173acc7c
ZW
533
534 do {
535
536 /* Allocate the link descriptor from DMA pool */
a1c03319 537 new = fsl_dma_alloc_descriptor(chan);
173acc7c 538 if (!new) {
a1c03319 539 dev_err(chan->dev,
173acc7c 540 "No free memory for link descriptor\n");
2e077f8e 541 goto fail;
173acc7c
ZW
542 }
543#ifdef FSL_DMA_LD_DEBUG
a1c03319 544 dev_dbg(chan->dev, "new link desc alloc %p\n", new);
173acc7c
ZW
545#endif
546
56822843 547 copy = min(len, (size_t)FSL_DMA_BCR_MAX_CNT);
173acc7c 548
a1c03319
IS
549 set_desc_cnt(chan, &new->hw, copy);
550 set_desc_src(chan, &new->hw, dma_src);
551 set_desc_dst(chan, &new->hw, dma_dst);
173acc7c
ZW
552
553 if (!first)
554 first = new;
555 else
a1c03319 556 set_desc_next(chan, &prev->hw, new->async_tx.phys);
173acc7c
ZW
557
558 new->async_tx.cookie = 0;
636bdeaa 559 async_tx_ack(&new->async_tx);
173acc7c
ZW
560
561 prev = new;
562 len -= copy;
563 dma_src += copy;
738f5f7e 564 dma_dst += copy;
173acc7c
ZW
565
566 /* Insert the link descriptor to the LD ring */
eda34234 567 list_add_tail(&new->node, &first->tx_list);
173acc7c
ZW
568 } while (len);
569
636bdeaa 570 new->async_tx.flags = flags; /* client is in control of this ack */
173acc7c
ZW
571 new->async_tx.cookie = -EBUSY;
572
573 /* Set End-of-link to the last link descriptor of new list*/
a1c03319 574 set_ld_eol(chan, new);
173acc7c 575
2e077f8e
IS
576 return &first->async_tx;
577
578fail:
579 if (!first)
580 return NULL;
581
9c3a50b7 582 fsldma_free_desc_list_reverse(chan, &first->tx_list);
2e077f8e 583 return NULL;
173acc7c
ZW
584}
585
bbea0b6e
IS
586/**
587 * fsl_dma_prep_slave_sg - prepare descriptors for a DMA_SLAVE transaction
588 * @chan: DMA channel
589 * @sgl: scatterlist to transfer to/from
590 * @sg_len: number of entries in @scatterlist
591 * @direction: DMA direction
592 * @flags: DMAEngine flags
593 *
594 * Prepare a set of descriptors for a DMA_SLAVE transaction. Following the
595 * DMA_SLAVE API, this gets the device-specific information from the
596 * chan->private variable.
597 */
598static struct dma_async_tx_descriptor *fsl_dma_prep_slave_sg(
a1c03319 599 struct dma_chan *dchan, struct scatterlist *sgl, unsigned int sg_len,
bbea0b6e
IS
600 enum dma_data_direction direction, unsigned long flags)
601{
a1c03319 602 struct fsldma_chan *chan;
bbea0b6e
IS
603 struct fsl_desc_sw *first = NULL, *prev = NULL, *new = NULL;
604 struct fsl_dma_slave *slave;
bbea0b6e
IS
605 size_t copy;
606
607 int i;
608 struct scatterlist *sg;
609 size_t sg_used;
610 size_t hw_used;
611 struct fsl_dma_hw_addr *hw;
612 dma_addr_t dma_dst, dma_src;
613
a1c03319 614 if (!dchan)
bbea0b6e
IS
615 return NULL;
616
a1c03319 617 if (!dchan->private)
bbea0b6e
IS
618 return NULL;
619
a1c03319
IS
620 chan = to_fsl_chan(dchan);
621 slave = dchan->private;
bbea0b6e
IS
622
623 if (list_empty(&slave->addresses))
624 return NULL;
625
626 hw = list_first_entry(&slave->addresses, struct fsl_dma_hw_addr, entry);
627 hw_used = 0;
628
629 /*
630 * Build the hardware transaction to copy from the scatterlist to
631 * the hardware, or from the hardware to the scatterlist
632 *
633 * If you are copying from the hardware to the scatterlist and it
634 * takes two hardware entries to fill an entire page, then both
635 * hardware entries will be coalesced into the same page
636 *
637 * If you are copying from the scatterlist to the hardware and a
638 * single page can fill two hardware entries, then the data will
639 * be read out of the page into the first hardware entry, and so on
640 */
641 for_each_sg(sgl, sg, sg_len, i) {
642 sg_used = 0;
643
644 /* Loop until the entire scatterlist entry is used */
645 while (sg_used < sg_dma_len(sg)) {
646
647 /*
648 * If we've used up the current hardware address/length
649 * pair, we need to load a new one
650 *
651 * This is done in a while loop so that descriptors with
652 * length == 0 will be skipped
653 */
654 while (hw_used >= hw->length) {
655
656 /*
657 * If the current hardware entry is the last
658 * entry in the list, we're finished
659 */
660 if (list_is_last(&hw->entry, &slave->addresses))
661 goto finished;
662
663 /* Get the next hardware address/length pair */
664 hw = list_entry(hw->entry.next,
665 struct fsl_dma_hw_addr, entry);
666 hw_used = 0;
667 }
668
669 /* Allocate the link descriptor from DMA pool */
a1c03319 670 new = fsl_dma_alloc_descriptor(chan);
bbea0b6e 671 if (!new) {
a1c03319 672 dev_err(chan->dev, "No free memory for "
bbea0b6e
IS
673 "link descriptor\n");
674 goto fail;
675 }
676#ifdef FSL_DMA_LD_DEBUG
a1c03319 677 dev_dbg(chan->dev, "new link desc alloc %p\n", new);
bbea0b6e
IS
678#endif
679
680 /*
681 * Calculate the maximum number of bytes to transfer,
682 * making sure it is less than the DMA controller limit
683 */
684 copy = min_t(size_t, sg_dma_len(sg) - sg_used,
685 hw->length - hw_used);
686 copy = min_t(size_t, copy, FSL_DMA_BCR_MAX_CNT);
687
688 /*
689 * DMA_FROM_DEVICE
690 * from the hardware to the scatterlist
691 *
692 * DMA_TO_DEVICE
693 * from the scatterlist to the hardware
694 */
695 if (direction == DMA_FROM_DEVICE) {
696 dma_src = hw->address + hw_used;
697 dma_dst = sg_dma_address(sg) + sg_used;
698 } else {
699 dma_src = sg_dma_address(sg) + sg_used;
700 dma_dst = hw->address + hw_used;
701 }
702
703 /* Fill in the descriptor */
a1c03319
IS
704 set_desc_cnt(chan, &new->hw, copy);
705 set_desc_src(chan, &new->hw, dma_src);
706 set_desc_dst(chan, &new->hw, dma_dst);
bbea0b6e
IS
707
708 /*
709 * If this is not the first descriptor, chain the
710 * current descriptor after the previous descriptor
711 */
712 if (!first) {
713 first = new;
714 } else {
a1c03319 715 set_desc_next(chan, &prev->hw,
bbea0b6e
IS
716 new->async_tx.phys);
717 }
718
719 new->async_tx.cookie = 0;
720 async_tx_ack(&new->async_tx);
721
722 prev = new;
723 sg_used += copy;
724 hw_used += copy;
725
726 /* Insert the link descriptor into the LD ring */
727 list_add_tail(&new->node, &first->tx_list);
728 }
729 }
730
731finished:
732
733 /* All of the hardware address/length pairs had length == 0 */
734 if (!first || !new)
735 return NULL;
736
737 new->async_tx.flags = flags;
738 new->async_tx.cookie = -EBUSY;
739
740 /* Set End-of-link to the last link descriptor of new list */
a1c03319 741 set_ld_eol(chan, new);
bbea0b6e
IS
742
743 /* Enable extra controller features */
a1c03319
IS
744 if (chan->set_src_loop_size)
745 chan->set_src_loop_size(chan, slave->src_loop_size);
bbea0b6e 746
a1c03319
IS
747 if (chan->set_dst_loop_size)
748 chan->set_dst_loop_size(chan, slave->dst_loop_size);
bbea0b6e 749
a1c03319
IS
750 if (chan->toggle_ext_start)
751 chan->toggle_ext_start(chan, slave->external_start);
bbea0b6e 752
a1c03319
IS
753 if (chan->toggle_ext_pause)
754 chan->toggle_ext_pause(chan, slave->external_pause);
bbea0b6e 755
a1c03319
IS
756 if (chan->set_request_count)
757 chan->set_request_count(chan, slave->request_count);
bbea0b6e
IS
758
759 return &first->async_tx;
760
761fail:
762 /* If first was not set, then we failed to allocate the very first
763 * descriptor, and we're done */
764 if (!first)
765 return NULL;
766
767 /*
768 * First is set, so all of the descriptors we allocated have been added
769 * to first->tx_list, INCLUDING "first" itself. Therefore we
770 * must traverse the list backwards freeing each descriptor in turn
771 *
772 * We're re-using variables for the loop, oh well
773 */
9c3a50b7 774 fsldma_free_desc_list_reverse(chan, &first->tx_list);
bbea0b6e
IS
775 return NULL;
776}
777
c3635c78 778static int fsl_dma_device_control(struct dma_chan *dchan,
05827630 779 enum dma_ctrl_cmd cmd, unsigned long arg)
bbea0b6e 780{
a1c03319 781 struct fsldma_chan *chan;
bbea0b6e
IS
782 unsigned long flags;
783
c3635c78
LW
784 /* Only supports DMA_TERMINATE_ALL */
785 if (cmd != DMA_TERMINATE_ALL)
786 return -ENXIO;
787
a1c03319 788 if (!dchan)
c3635c78 789 return -EINVAL;
bbea0b6e 790
a1c03319 791 chan = to_fsl_chan(dchan);
bbea0b6e
IS
792
793 /* Halt the DMA engine */
a1c03319 794 dma_halt(chan);
bbea0b6e 795
a1c03319 796 spin_lock_irqsave(&chan->desc_lock, flags);
bbea0b6e
IS
797
798 /* Remove and free all of the descriptors in the LD queue */
9c3a50b7
IS
799 fsldma_free_desc_list(chan, &chan->ld_pending);
800 fsldma_free_desc_list(chan, &chan->ld_running);
bbea0b6e 801
a1c03319 802 spin_unlock_irqrestore(&chan->desc_lock, flags);
c3635c78
LW
803
804 return 0;
bbea0b6e
IS
805}
806
173acc7c
ZW
807/**
808 * fsl_dma_update_completed_cookie - Update the completed cookie.
a1c03319 809 * @chan : Freescale DMA channel
9c3a50b7
IS
810 *
811 * CONTEXT: hardirq
173acc7c 812 */
a1c03319 813static void fsl_dma_update_completed_cookie(struct fsldma_chan *chan)
173acc7c 814{
9c3a50b7
IS
815 struct fsl_desc_sw *desc;
816 unsigned long flags;
817 dma_cookie_t cookie;
173acc7c 818
9c3a50b7 819 spin_lock_irqsave(&chan->desc_lock, flags);
173acc7c 820
9c3a50b7
IS
821 if (list_empty(&chan->ld_running)) {
822 dev_dbg(chan->dev, "no running descriptors\n");
823 goto out_unlock;
173acc7c 824 }
9c3a50b7
IS
825
826 /* Get the last descriptor, update the cookie to that */
827 desc = to_fsl_desc(chan->ld_running.prev);
828 if (dma_is_idle(chan))
829 cookie = desc->async_tx.cookie;
76bd061f 830 else {
9c3a50b7 831 cookie = desc->async_tx.cookie - 1;
76bd061f
SM
832 if (unlikely(cookie < DMA_MIN_COOKIE))
833 cookie = DMA_MAX_COOKIE;
834 }
9c3a50b7
IS
835
836 chan->completed_cookie = cookie;
837
838out_unlock:
839 spin_unlock_irqrestore(&chan->desc_lock, flags);
840}
841
842/**
843 * fsldma_desc_status - Check the status of a descriptor
844 * @chan: Freescale DMA channel
845 * @desc: DMA SW descriptor
846 *
847 * This function will return the status of the given descriptor
848 */
849static enum dma_status fsldma_desc_status(struct fsldma_chan *chan,
850 struct fsl_desc_sw *desc)
851{
852 return dma_async_is_complete(desc->async_tx.cookie,
853 chan->completed_cookie,
854 chan->common.cookie);
173acc7c
ZW
855}
856
857/**
858 * fsl_chan_ld_cleanup - Clean up link descriptors
a1c03319 859 * @chan : Freescale DMA channel
173acc7c
ZW
860 *
861 * This function clean up the ld_queue of DMA channel.
173acc7c 862 */
a1c03319 863static void fsl_chan_ld_cleanup(struct fsldma_chan *chan)
173acc7c
ZW
864{
865 struct fsl_desc_sw *desc, *_desc;
866 unsigned long flags;
867
a1c03319 868 spin_lock_irqsave(&chan->desc_lock, flags);
173acc7c 869
9c3a50b7
IS
870 dev_dbg(chan->dev, "chan completed_cookie = %d\n", chan->completed_cookie);
871 list_for_each_entry_safe(desc, _desc, &chan->ld_running, node) {
173acc7c
ZW
872 dma_async_tx_callback callback;
873 void *callback_param;
874
9c3a50b7 875 if (fsldma_desc_status(chan, desc) == DMA_IN_PROGRESS)
173acc7c
ZW
876 break;
877
9c3a50b7 878 /* Remove from the list of running transactions */
173acc7c
ZW
879 list_del(&desc->node);
880
173acc7c 881 /* Run the link descriptor callback function */
9c3a50b7
IS
882 callback = desc->async_tx.callback;
883 callback_param = desc->async_tx.callback_param;
173acc7c 884 if (callback) {
a1c03319 885 spin_unlock_irqrestore(&chan->desc_lock, flags);
9c3a50b7 886 dev_dbg(chan->dev, "LD %p callback\n", desc);
173acc7c 887 callback(callback_param);
a1c03319 888 spin_lock_irqsave(&chan->desc_lock, flags);
173acc7c 889 }
9c3a50b7
IS
890
891 /* Run any dependencies, then free the descriptor */
892 dma_run_dependencies(&desc->async_tx);
893 dma_pool_free(chan->desc_pool, desc, desc->async_tx.phys);
173acc7c 894 }
9c3a50b7 895
a1c03319 896 spin_unlock_irqrestore(&chan->desc_lock, flags);
173acc7c
ZW
897}
898
899/**
9c3a50b7 900 * fsl_chan_xfer_ld_queue - transfer any pending transactions
a1c03319 901 * @chan : Freescale DMA channel
9c3a50b7
IS
902 *
903 * This will make sure that any pending transactions will be run.
904 * If the DMA controller is idle, it will be started. Otherwise,
905 * the DMA controller's interrupt handler will start any pending
906 * transactions when it becomes idle.
173acc7c 907 */
a1c03319 908static void fsl_chan_xfer_ld_queue(struct fsldma_chan *chan)
173acc7c 909{
9c3a50b7 910 struct fsl_desc_sw *desc;
173acc7c
ZW
911 unsigned long flags;
912
a1c03319 913 spin_lock_irqsave(&chan->desc_lock, flags);
138ef018 914
9c3a50b7
IS
915 /*
916 * If the list of pending descriptors is empty, then we
917 * don't need to do any work at all
918 */
919 if (list_empty(&chan->ld_pending)) {
920 dev_dbg(chan->dev, "no pending LDs\n");
138ef018 921 goto out_unlock;
9c3a50b7 922 }
173acc7c 923
9c3a50b7
IS
924 /*
925 * The DMA controller is not idle, which means the interrupt
926 * handler will start any queued transactions when it runs
927 * at the end of the current transaction
928 */
929 if (!dma_is_idle(chan)) {
930 dev_dbg(chan->dev, "DMA controller still busy\n");
931 goto out_unlock;
932 }
933
934 /*
935 * TODO:
936 * make sure the dma_halt() function really un-wedges the
937 * controller as much as possible
938 */
a1c03319 939 dma_halt(chan);
173acc7c 940
9c3a50b7
IS
941 /*
942 * If there are some link descriptors which have not been
943 * transferred, we need to start the controller
173acc7c 944 */
173acc7c 945
9c3a50b7
IS
946 /*
947 * Move all elements from the queue of pending transactions
948 * onto the list of running transactions
949 */
950 desc = list_first_entry(&chan->ld_pending, struct fsl_desc_sw, node);
951 list_splice_tail_init(&chan->ld_pending, &chan->ld_running);
952
953 /*
954 * Program the descriptor's address into the DMA controller,
955 * then start the DMA transaction
956 */
957 set_cdar(chan, desc->async_tx.phys);
958 dma_start(chan);
138ef018
IS
959
960out_unlock:
a1c03319 961 spin_unlock_irqrestore(&chan->desc_lock, flags);
173acc7c
ZW
962}
963
964/**
965 * fsl_dma_memcpy_issue_pending - Issue the DMA start command
a1c03319 966 * @chan : Freescale DMA channel
173acc7c 967 */
a1c03319 968static void fsl_dma_memcpy_issue_pending(struct dma_chan *dchan)
173acc7c 969{
a1c03319 970 struct fsldma_chan *chan = to_fsl_chan(dchan);
a1c03319 971 fsl_chan_xfer_ld_queue(chan);
173acc7c
ZW
972}
973
173acc7c 974/**
07934481 975 * fsl_tx_status - Determine the DMA status
a1c03319 976 * @chan : Freescale DMA channel
173acc7c 977 */
07934481 978static enum dma_status fsl_tx_status(struct dma_chan *dchan,
173acc7c 979 dma_cookie_t cookie,
07934481 980 struct dma_tx_state *txstate)
173acc7c 981{
a1c03319 982 struct fsldma_chan *chan = to_fsl_chan(dchan);
173acc7c
ZW
983 dma_cookie_t last_used;
984 dma_cookie_t last_complete;
985
a1c03319 986 fsl_chan_ld_cleanup(chan);
173acc7c 987
a1c03319
IS
988 last_used = dchan->cookie;
989 last_complete = chan->completed_cookie;
173acc7c 990
bca34692 991 dma_set_tx_state(txstate, last_complete, last_used, 0);
173acc7c
ZW
992
993 return dma_async_is_complete(cookie, last_complete, last_used);
994}
995
d3f620b2
IS
996/*----------------------------------------------------------------------------*/
997/* Interrupt Handling */
998/*----------------------------------------------------------------------------*/
999
e7a29151 1000static irqreturn_t fsldma_chan_irq(int irq, void *data)
173acc7c 1001{
a1c03319 1002 struct fsldma_chan *chan = data;
1c62979e
ZW
1003 int update_cookie = 0;
1004 int xfer_ld_q = 0;
a1c03319 1005 u32 stat;
173acc7c 1006
9c3a50b7 1007 /* save and clear the status register */
a1c03319 1008 stat = get_sr(chan);
9c3a50b7
IS
1009 set_sr(chan, stat);
1010 dev_dbg(chan->dev, "irq: channel %d, stat = 0x%x\n", chan->id, stat);
173acc7c
ZW
1011
1012 stat &= ~(FSL_DMA_SR_CB | FSL_DMA_SR_CH);
1013 if (!stat)
1014 return IRQ_NONE;
1015
1016 if (stat & FSL_DMA_SR_TE)
a1c03319 1017 dev_err(chan->dev, "Transfer Error!\n");
173acc7c 1018
9c3a50b7
IS
1019 /*
1020 * Programming Error
f79abb62
ZW
1021 * The DMA_INTERRUPT async_tx is a NULL transfer, which will
1022 * triger a PE interrupt.
1023 */
1024 if (stat & FSL_DMA_SR_PE) {
9c3a50b7 1025 dev_dbg(chan->dev, "irq: Programming Error INT\n");
a1c03319 1026 if (get_bcr(chan) == 0) {
f79abb62
ZW
1027 /* BCR register is 0, this is a DMA_INTERRUPT async_tx.
1028 * Now, update the completed cookie, and continue the
1029 * next uncompleted transfer.
1030 */
1c62979e
ZW
1031 update_cookie = 1;
1032 xfer_ld_q = 1;
f79abb62
ZW
1033 }
1034 stat &= ~FSL_DMA_SR_PE;
1035 }
1036
9c3a50b7
IS
1037 /*
1038 * If the link descriptor segment transfer finishes,
173acc7c
ZW
1039 * we will recycle the used descriptor.
1040 */
1041 if (stat & FSL_DMA_SR_EOSI) {
9c3a50b7
IS
1042 dev_dbg(chan->dev, "irq: End-of-segments INT\n");
1043 dev_dbg(chan->dev, "irq: clndar 0x%llx, nlndar 0x%llx\n",
a1c03319
IS
1044 (unsigned long long)get_cdar(chan),
1045 (unsigned long long)get_ndar(chan));
173acc7c 1046 stat &= ~FSL_DMA_SR_EOSI;
1c62979e
ZW
1047 update_cookie = 1;
1048 }
1049
9c3a50b7
IS
1050 /*
1051 * For MPC8349, EOCDI event need to update cookie
1c62979e
ZW
1052 * and start the next transfer if it exist.
1053 */
1054 if (stat & FSL_DMA_SR_EOCDI) {
9c3a50b7 1055 dev_dbg(chan->dev, "irq: End-of-Chain link INT\n");
1c62979e
ZW
1056 stat &= ~FSL_DMA_SR_EOCDI;
1057 update_cookie = 1;
1058 xfer_ld_q = 1;
173acc7c
ZW
1059 }
1060
9c3a50b7
IS
1061 /*
1062 * If it current transfer is the end-of-transfer,
173acc7c
ZW
1063 * we should clear the Channel Start bit for
1064 * prepare next transfer.
1065 */
1c62979e 1066 if (stat & FSL_DMA_SR_EOLNI) {
9c3a50b7 1067 dev_dbg(chan->dev, "irq: End-of-link INT\n");
173acc7c 1068 stat &= ~FSL_DMA_SR_EOLNI;
1c62979e 1069 xfer_ld_q = 1;
173acc7c
ZW
1070 }
1071
1c62979e 1072 if (update_cookie)
a1c03319 1073 fsl_dma_update_completed_cookie(chan);
1c62979e 1074 if (xfer_ld_q)
a1c03319 1075 fsl_chan_xfer_ld_queue(chan);
173acc7c 1076 if (stat)
9c3a50b7 1077 dev_dbg(chan->dev, "irq: unhandled sr 0x%02x\n", stat);
173acc7c 1078
9c3a50b7 1079 dev_dbg(chan->dev, "irq: Exit\n");
a1c03319 1080 tasklet_schedule(&chan->tasklet);
173acc7c
ZW
1081 return IRQ_HANDLED;
1082}
1083
d3f620b2
IS
1084static void dma_do_tasklet(unsigned long data)
1085{
a1c03319
IS
1086 struct fsldma_chan *chan = (struct fsldma_chan *)data;
1087 fsl_chan_ld_cleanup(chan);
d3f620b2
IS
1088}
1089
1090static irqreturn_t fsldma_ctrl_irq(int irq, void *data)
173acc7c 1091{
a4f56d4b 1092 struct fsldma_device *fdev = data;
d3f620b2
IS
1093 struct fsldma_chan *chan;
1094 unsigned int handled = 0;
1095 u32 gsr, mask;
1096 int i;
173acc7c 1097
e7a29151 1098 gsr = (fdev->feature & FSL_DMA_BIG_ENDIAN) ? in_be32(fdev->regs)
d3f620b2
IS
1099 : in_le32(fdev->regs);
1100 mask = 0xff000000;
1101 dev_dbg(fdev->dev, "IRQ: gsr 0x%.8x\n", gsr);
173acc7c 1102
d3f620b2
IS
1103 for (i = 0; i < FSL_DMA_MAX_CHANS_PER_DEVICE; i++) {
1104 chan = fdev->chan[i];
1105 if (!chan)
1106 continue;
1107
1108 if (gsr & mask) {
1109 dev_dbg(fdev->dev, "IRQ: chan %d\n", chan->id);
1110 fsldma_chan_irq(irq, chan);
1111 handled++;
1112 }
1113
1114 gsr &= ~mask;
1115 mask >>= 8;
1116 }
1117
1118 return IRQ_RETVAL(handled);
173acc7c
ZW
1119}
1120
d3f620b2 1121static void fsldma_free_irqs(struct fsldma_device *fdev)
173acc7c 1122{
d3f620b2
IS
1123 struct fsldma_chan *chan;
1124 int i;
1125
1126 if (fdev->irq != NO_IRQ) {
1127 dev_dbg(fdev->dev, "free per-controller IRQ\n");
1128 free_irq(fdev->irq, fdev);
1129 return;
1130 }
1131
1132 for (i = 0; i < FSL_DMA_MAX_CHANS_PER_DEVICE; i++) {
1133 chan = fdev->chan[i];
1134 if (chan && chan->irq != NO_IRQ) {
1135 dev_dbg(fdev->dev, "free channel %d IRQ\n", chan->id);
1136 free_irq(chan->irq, chan);
1137 }
1138 }
1139}
1140
1141static int fsldma_request_irqs(struct fsldma_device *fdev)
1142{
1143 struct fsldma_chan *chan;
1144 int ret;
1145 int i;
1146
1147 /* if we have a per-controller IRQ, use that */
1148 if (fdev->irq != NO_IRQ) {
1149 dev_dbg(fdev->dev, "request per-controller IRQ\n");
1150 ret = request_irq(fdev->irq, fsldma_ctrl_irq, IRQF_SHARED,
1151 "fsldma-controller", fdev);
1152 return ret;
1153 }
1154
1155 /* no per-controller IRQ, use the per-channel IRQs */
1156 for (i = 0; i < FSL_DMA_MAX_CHANS_PER_DEVICE; i++) {
1157 chan = fdev->chan[i];
1158 if (!chan)
1159 continue;
1160
1161 if (chan->irq == NO_IRQ) {
1162 dev_err(fdev->dev, "no interrupts property defined for "
1163 "DMA channel %d. Please fix your "
1164 "device tree\n", chan->id);
1165 ret = -ENODEV;
1166 goto out_unwind;
1167 }
1168
1169 dev_dbg(fdev->dev, "request channel %d IRQ\n", chan->id);
1170 ret = request_irq(chan->irq, fsldma_chan_irq, IRQF_SHARED,
1171 "fsldma-chan", chan);
1172 if (ret) {
1173 dev_err(fdev->dev, "unable to request IRQ for DMA "
1174 "channel %d\n", chan->id);
1175 goto out_unwind;
1176 }
1177 }
1178
1179 return 0;
1180
1181out_unwind:
1182 for (/* none */; i >= 0; i--) {
1183 chan = fdev->chan[i];
1184 if (!chan)
1185 continue;
1186
1187 if (chan->irq == NO_IRQ)
1188 continue;
1189
1190 free_irq(chan->irq, chan);
1191 }
1192
1193 return ret;
173acc7c
ZW
1194}
1195
a4f56d4b
IS
1196/*----------------------------------------------------------------------------*/
1197/* OpenFirmware Subsystem */
1198/*----------------------------------------------------------------------------*/
1199
1200static int __devinit fsl_dma_chan_probe(struct fsldma_device *fdev,
77cd62e8 1201 struct device_node *node, u32 feature, const char *compatible)
173acc7c 1202{
a1c03319 1203 struct fsldma_chan *chan;
4ce0e953 1204 struct resource res;
173acc7c
ZW
1205 int err;
1206
173acc7c 1207 /* alloc channel */
a1c03319
IS
1208 chan = kzalloc(sizeof(*chan), GFP_KERNEL);
1209 if (!chan) {
e7a29151
IS
1210 dev_err(fdev->dev, "no free memory for DMA channels!\n");
1211 err = -ENOMEM;
1212 goto out_return;
1213 }
1214
1215 /* ioremap registers for use */
a1c03319
IS
1216 chan->regs = of_iomap(node, 0);
1217 if (!chan->regs) {
e7a29151
IS
1218 dev_err(fdev->dev, "unable to ioremap registers\n");
1219 err = -ENOMEM;
a1c03319 1220 goto out_free_chan;
173acc7c
ZW
1221 }
1222
4ce0e953 1223 err = of_address_to_resource(node, 0, &res);
173acc7c 1224 if (err) {
e7a29151
IS
1225 dev_err(fdev->dev, "unable to find 'reg' property\n");
1226 goto out_iounmap_regs;
173acc7c
ZW
1227 }
1228
a1c03319 1229 chan->feature = feature;
173acc7c 1230 if (!fdev->feature)
a1c03319 1231 fdev->feature = chan->feature;
173acc7c 1232
e7a29151
IS
1233 /*
1234 * If the DMA device's feature is different than the feature
1235 * of its channels, report the bug
173acc7c 1236 */
a1c03319 1237 WARN_ON(fdev->feature != chan->feature);
e7a29151 1238
a1c03319
IS
1239 chan->dev = fdev->dev;
1240 chan->id = ((res.start - 0x100) & 0xfff) >> 7;
1241 if (chan->id >= FSL_DMA_MAX_CHANS_PER_DEVICE) {
e7a29151 1242 dev_err(fdev->dev, "too many channels for device\n");
173acc7c 1243 err = -EINVAL;
e7a29151 1244 goto out_iounmap_regs;
173acc7c 1245 }
173acc7c 1246
a1c03319
IS
1247 fdev->chan[chan->id] = chan;
1248 tasklet_init(&chan->tasklet, dma_do_tasklet, (unsigned long)chan);
e7a29151
IS
1249
1250 /* Initialize the channel */
a1c03319 1251 dma_init(chan);
173acc7c
ZW
1252
1253 /* Clear cdar registers */
a1c03319 1254 set_cdar(chan, 0);
173acc7c 1255
a1c03319 1256 switch (chan->feature & FSL_DMA_IP_MASK) {
173acc7c 1257 case FSL_DMA_IP_85XX:
a1c03319 1258 chan->toggle_ext_pause = fsl_chan_toggle_ext_pause;
173acc7c 1259 case FSL_DMA_IP_83XX:
a1c03319
IS
1260 chan->toggle_ext_start = fsl_chan_toggle_ext_start;
1261 chan->set_src_loop_size = fsl_chan_set_src_loop_size;
1262 chan->set_dst_loop_size = fsl_chan_set_dst_loop_size;
1263 chan->set_request_count = fsl_chan_set_request_count;
173acc7c
ZW
1264 }
1265
a1c03319 1266 spin_lock_init(&chan->desc_lock);
9c3a50b7
IS
1267 INIT_LIST_HEAD(&chan->ld_pending);
1268 INIT_LIST_HEAD(&chan->ld_running);
173acc7c 1269
a1c03319 1270 chan->common.device = &fdev->common;
173acc7c 1271
d3f620b2 1272 /* find the IRQ line, if it exists in the device tree */
a1c03319 1273 chan->irq = irq_of_parse_and_map(node, 0);
d3f620b2 1274
173acc7c 1275 /* Add the channel to DMA device channel list */
a1c03319 1276 list_add_tail(&chan->common.device_node, &fdev->common.channels);
173acc7c
ZW
1277 fdev->common.chancnt++;
1278
a1c03319
IS
1279 dev_info(fdev->dev, "#%d (%s), irq %d\n", chan->id, compatible,
1280 chan->irq != NO_IRQ ? chan->irq : fdev->irq);
173acc7c
ZW
1281
1282 return 0;
51ee87f2 1283
e7a29151 1284out_iounmap_regs:
a1c03319
IS
1285 iounmap(chan->regs);
1286out_free_chan:
1287 kfree(chan);
e7a29151 1288out_return:
173acc7c
ZW
1289 return err;
1290}
1291
a1c03319 1292static void fsl_dma_chan_remove(struct fsldma_chan *chan)
173acc7c 1293{
a1c03319
IS
1294 irq_dispose_mapping(chan->irq);
1295 list_del(&chan->common.device_node);
1296 iounmap(chan->regs);
1297 kfree(chan);
173acc7c
ZW
1298}
1299
2dc11581 1300static int __devinit fsldma_of_probe(struct platform_device *op,
173acc7c
ZW
1301 const struct of_device_id *match)
1302{
a4f56d4b 1303 struct fsldma_device *fdev;
77cd62e8 1304 struct device_node *child;
e7a29151 1305 int err;
173acc7c 1306
a4f56d4b 1307 fdev = kzalloc(sizeof(*fdev), GFP_KERNEL);
173acc7c 1308 if (!fdev) {
e7a29151
IS
1309 dev_err(&op->dev, "No enough memory for 'priv'\n");
1310 err = -ENOMEM;
1311 goto out_return;
173acc7c 1312 }
e7a29151
IS
1313
1314 fdev->dev = &op->dev;
173acc7c
ZW
1315 INIT_LIST_HEAD(&fdev->common.channels);
1316
e7a29151 1317 /* ioremap the registers for use */
61c7a080 1318 fdev->regs = of_iomap(op->dev.of_node, 0);
e7a29151
IS
1319 if (!fdev->regs) {
1320 dev_err(&op->dev, "unable to ioremap registers\n");
1321 err = -ENOMEM;
1322 goto out_free_fdev;
173acc7c
ZW
1323 }
1324
d3f620b2 1325 /* map the channel IRQ if it exists, but don't hookup the handler yet */
61c7a080 1326 fdev->irq = irq_of_parse_and_map(op->dev.of_node, 0);
d3f620b2 1327
173acc7c
ZW
1328 dma_cap_set(DMA_MEMCPY, fdev->common.cap_mask);
1329 dma_cap_set(DMA_INTERRUPT, fdev->common.cap_mask);
bbea0b6e 1330 dma_cap_set(DMA_SLAVE, fdev->common.cap_mask);
173acc7c
ZW
1331 fdev->common.device_alloc_chan_resources = fsl_dma_alloc_chan_resources;
1332 fdev->common.device_free_chan_resources = fsl_dma_free_chan_resources;
2187c269 1333 fdev->common.device_prep_dma_interrupt = fsl_dma_prep_interrupt;
173acc7c 1334 fdev->common.device_prep_dma_memcpy = fsl_dma_prep_memcpy;
07934481 1335 fdev->common.device_tx_status = fsl_tx_status;
173acc7c 1336 fdev->common.device_issue_pending = fsl_dma_memcpy_issue_pending;
bbea0b6e 1337 fdev->common.device_prep_slave_sg = fsl_dma_prep_slave_sg;
c3635c78 1338 fdev->common.device_control = fsl_dma_device_control;
e7a29151 1339 fdev->common.dev = &op->dev;
173acc7c 1340
e7a29151 1341 dev_set_drvdata(&op->dev, fdev);
77cd62e8 1342
e7a29151
IS
1343 /*
1344 * We cannot use of_platform_bus_probe() because there is no
1345 * of_platform_bus_remove(). Instead, we manually instantiate every DMA
77cd62e8
TT
1346 * channel object.
1347 */
61c7a080 1348 for_each_child_of_node(op->dev.of_node, child) {
e7a29151 1349 if (of_device_is_compatible(child, "fsl,eloplus-dma-channel")) {
77cd62e8
TT
1350 fsl_dma_chan_probe(fdev, child,
1351 FSL_DMA_IP_85XX | FSL_DMA_BIG_ENDIAN,
1352 "fsl,eloplus-dma-channel");
e7a29151
IS
1353 }
1354
1355 if (of_device_is_compatible(child, "fsl,elo-dma-channel")) {
77cd62e8
TT
1356 fsl_dma_chan_probe(fdev, child,
1357 FSL_DMA_IP_83XX | FSL_DMA_LITTLE_ENDIAN,
1358 "fsl,elo-dma-channel");
e7a29151 1359 }
77cd62e8 1360 }
173acc7c 1361
d3f620b2
IS
1362 /*
1363 * Hookup the IRQ handler(s)
1364 *
1365 * If we have a per-controller interrupt, we prefer that to the
1366 * per-channel interrupts to reduce the number of shared interrupt
1367 * handlers on the same IRQ line
1368 */
1369 err = fsldma_request_irqs(fdev);
1370 if (err) {
1371 dev_err(fdev->dev, "unable to request IRQs\n");
1372 goto out_free_fdev;
1373 }
1374
173acc7c
ZW
1375 dma_async_device_register(&fdev->common);
1376 return 0;
1377
e7a29151 1378out_free_fdev:
d3f620b2 1379 irq_dispose_mapping(fdev->irq);
173acc7c 1380 kfree(fdev);
e7a29151 1381out_return:
173acc7c
ZW
1382 return err;
1383}
1384
2dc11581 1385static int fsldma_of_remove(struct platform_device *op)
77cd62e8 1386{
a4f56d4b 1387 struct fsldma_device *fdev;
77cd62e8
TT
1388 unsigned int i;
1389
e7a29151 1390 fdev = dev_get_drvdata(&op->dev);
77cd62e8
TT
1391 dma_async_device_unregister(&fdev->common);
1392
d3f620b2
IS
1393 fsldma_free_irqs(fdev);
1394
e7a29151 1395 for (i = 0; i < FSL_DMA_MAX_CHANS_PER_DEVICE; i++) {
77cd62e8
TT
1396 if (fdev->chan[i])
1397 fsl_dma_chan_remove(fdev->chan[i]);
e7a29151 1398 }
77cd62e8 1399
e7a29151
IS
1400 iounmap(fdev->regs);
1401 dev_set_drvdata(&op->dev, NULL);
77cd62e8 1402 kfree(fdev);
77cd62e8
TT
1403
1404 return 0;
1405}
1406
4b1cf1fa 1407static const struct of_device_id fsldma_of_ids[] = {
049c9d45
KG
1408 { .compatible = "fsl,eloplus-dma", },
1409 { .compatible = "fsl,elo-dma", },
173acc7c
ZW
1410 {}
1411};
1412
a4f56d4b 1413static struct of_platform_driver fsldma_of_driver = {
4018294b
GL
1414 .driver = {
1415 .name = "fsl-elo-dma",
1416 .owner = THIS_MODULE,
1417 .of_match_table = fsldma_of_ids,
1418 },
1419 .probe = fsldma_of_probe,
1420 .remove = fsldma_of_remove,
173acc7c
ZW
1421};
1422
a4f56d4b
IS
1423/*----------------------------------------------------------------------------*/
1424/* Module Init / Exit */
1425/*----------------------------------------------------------------------------*/
1426
1427static __init int fsldma_init(void)
173acc7c 1428{
77cd62e8
TT
1429 int ret;
1430
1431 pr_info("Freescale Elo / Elo Plus DMA driver\n");
1432
a4f56d4b 1433 ret = of_register_platform_driver(&fsldma_of_driver);
77cd62e8
TT
1434 if (ret)
1435 pr_err("fsldma: failed to register platform driver\n");
1436
1437 return ret;
1438}
1439
a4f56d4b 1440static void __exit fsldma_exit(void)
77cd62e8 1441{
a4f56d4b 1442 of_unregister_platform_driver(&fsldma_of_driver);
173acc7c
ZW
1443}
1444
a4f56d4b
IS
1445subsys_initcall(fsldma_init);
1446module_exit(fsldma_exit);
77cd62e8
TT
1447
1448MODULE_DESCRIPTION("Freescale Elo / Elo Plus DMA driver");
1449MODULE_LICENSE("GPL");