]> git.karo-electronics.de Git - mv-sheeva.git/blob - drivers/dma/ep93xx_dma.c
dmaengine: consolidate assignment of DMA cookies
[mv-sheeva.git] / drivers / dma / ep93xx_dma.c
1 /*
2  * Driver for the Cirrus Logic EP93xx DMA Controller
3  *
4  * Copyright (C) 2011 Mika Westerberg
5  *
6  * DMA M2P implementation is based on the original
7  * arch/arm/mach-ep93xx/dma-m2p.c which has following copyrights:
8  *
9  *   Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
10  *   Copyright (C) 2006 Applied Data Systems
11  *   Copyright (C) 2009 Ryan Mallon <rmallon@gmail.com>
12  *
13  * This driver is based on dw_dmac and amba-pl08x drivers.
14  *
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 2 of the License, or
18  * (at your option) any later version.
19  */
20
21 #include <linux/clk.h>
22 #include <linux/init.h>
23 #include <linux/interrupt.h>
24 #include <linux/dmaengine.h>
25 #include <linux/module.h>
26 #include <linux/platform_device.h>
27 #include <linux/slab.h>
28
29 #include <mach/dma.h>
30
31 #include "dmaengine.h"
32
33 /* M2P registers */
34 #define M2P_CONTROL                     0x0000
35 #define M2P_CONTROL_STALLINT            BIT(0)
36 #define M2P_CONTROL_NFBINT              BIT(1)
37 #define M2P_CONTROL_CH_ERROR_INT        BIT(3)
38 #define M2P_CONTROL_ENABLE              BIT(4)
39 #define M2P_CONTROL_ICE                 BIT(6)
40
41 #define M2P_INTERRUPT                   0x0004
42 #define M2P_INTERRUPT_STALL             BIT(0)
43 #define M2P_INTERRUPT_NFB               BIT(1)
44 #define M2P_INTERRUPT_ERROR             BIT(3)
45
46 #define M2P_PPALLOC                     0x0008
47 #define M2P_STATUS                      0x000c
48
49 #define M2P_MAXCNT0                     0x0020
50 #define M2P_BASE0                       0x0024
51 #define M2P_MAXCNT1                     0x0030
52 #define M2P_BASE1                       0x0034
53
54 #define M2P_STATE_IDLE                  0
55 #define M2P_STATE_STALL                 1
56 #define M2P_STATE_ON                    2
57 #define M2P_STATE_NEXT                  3
58
59 /* M2M registers */
60 #define M2M_CONTROL                     0x0000
61 #define M2M_CONTROL_DONEINT             BIT(2)
62 #define M2M_CONTROL_ENABLE              BIT(3)
63 #define M2M_CONTROL_START               BIT(4)
64 #define M2M_CONTROL_DAH                 BIT(11)
65 #define M2M_CONTROL_SAH                 BIT(12)
66 #define M2M_CONTROL_PW_SHIFT            9
67 #define M2M_CONTROL_PW_8                (0 << M2M_CONTROL_PW_SHIFT)
68 #define M2M_CONTROL_PW_16               (1 << M2M_CONTROL_PW_SHIFT)
69 #define M2M_CONTROL_PW_32               (2 << M2M_CONTROL_PW_SHIFT)
70 #define M2M_CONTROL_PW_MASK             (3 << M2M_CONTROL_PW_SHIFT)
71 #define M2M_CONTROL_TM_SHIFT            13
72 #define M2M_CONTROL_TM_TX               (1 << M2M_CONTROL_TM_SHIFT)
73 #define M2M_CONTROL_TM_RX               (2 << M2M_CONTROL_TM_SHIFT)
74 #define M2M_CONTROL_RSS_SHIFT           22
75 #define M2M_CONTROL_RSS_SSPRX           (1 << M2M_CONTROL_RSS_SHIFT)
76 #define M2M_CONTROL_RSS_SSPTX           (2 << M2M_CONTROL_RSS_SHIFT)
77 #define M2M_CONTROL_RSS_IDE             (3 << M2M_CONTROL_RSS_SHIFT)
78 #define M2M_CONTROL_NO_HDSK             BIT(24)
79 #define M2M_CONTROL_PWSC_SHIFT          25
80
81 #define M2M_INTERRUPT                   0x0004
82 #define M2M_INTERRUPT_DONEINT           BIT(1)
83
84 #define M2M_BCR0                        0x0010
85 #define M2M_BCR1                        0x0014
86 #define M2M_SAR_BASE0                   0x0018
87 #define M2M_SAR_BASE1                   0x001c
88 #define M2M_DAR_BASE0                   0x002c
89 #define M2M_DAR_BASE1                   0x0030
90
91 #define DMA_MAX_CHAN_BYTES              0xffff
92 #define DMA_MAX_CHAN_DESCRIPTORS        32
93
94 struct ep93xx_dma_engine;
95
96 /**
97  * struct ep93xx_dma_desc - EP93xx specific transaction descriptor
98  * @src_addr: source address of the transaction
99  * @dst_addr: destination address of the transaction
100  * @size: size of the transaction (in bytes)
101  * @complete: this descriptor is completed
102  * @txd: dmaengine API descriptor
103  * @tx_list: list of linked descriptors
104  * @node: link used for putting this into a channel queue
105  */
106 struct ep93xx_dma_desc {
107         u32                             src_addr;
108         u32                             dst_addr;
109         size_t                          size;
110         bool                            complete;
111         struct dma_async_tx_descriptor  txd;
112         struct list_head                tx_list;
113         struct list_head                node;
114 };
115
116 /**
117  * struct ep93xx_dma_chan - an EP93xx DMA M2P/M2M channel
118  * @chan: dmaengine API channel
119  * @edma: pointer to to the engine device
120  * @regs: memory mapped registers
121  * @irq: interrupt number of the channel
122  * @clk: clock used by this channel
123  * @tasklet: channel specific tasklet used for callbacks
124  * @lock: lock protecting the fields following
125  * @flags: flags for the channel
126  * @buffer: which buffer to use next (0/1)
127  * @active: flattened chain of descriptors currently being processed
128  * @queue: pending descriptors which are handled next
129  * @free_list: list of free descriptors which can be used
130  * @runtime_addr: physical address currently used as dest/src (M2M only). This
131  *                is set via %DMA_SLAVE_CONFIG before slave operation is
132  *                prepared
133  * @runtime_ctrl: M2M runtime values for the control register.
134  *
135  * As EP93xx DMA controller doesn't support real chained DMA descriptors we
136  * will have slightly different scheme here: @active points to a head of
137  * flattened DMA descriptor chain.
138  *
139  * @queue holds pending transactions. These are linked through the first
140  * descriptor in the chain. When a descriptor is moved to the @active queue,
141  * the first and chained descriptors are flattened into a single list.
142  *
143  * @chan.private holds pointer to &struct ep93xx_dma_data which contains
144  * necessary channel configuration information. For memcpy channels this must
145  * be %NULL.
146  */
147 struct ep93xx_dma_chan {
148         struct dma_chan                 chan;
149         const struct ep93xx_dma_engine  *edma;
150         void __iomem                    *regs;
151         int                             irq;
152         struct clk                      *clk;
153         struct tasklet_struct           tasklet;
154         /* protects the fields following */
155         spinlock_t                      lock;
156         unsigned long                   flags;
157 /* Channel is configured for cyclic transfers */
158 #define EP93XX_DMA_IS_CYCLIC            0
159
160         int                             buffer;
161         struct list_head                active;
162         struct list_head                queue;
163         struct list_head                free_list;
164         u32                             runtime_addr;
165         u32                             runtime_ctrl;
166 };
167
168 /**
169  * struct ep93xx_dma_engine - the EP93xx DMA engine instance
170  * @dma_dev: holds the dmaengine device
171  * @m2m: is this an M2M or M2P device
172  * @hw_setup: method which sets the channel up for operation
173  * @hw_shutdown: shuts the channel down and flushes whatever is left
174  * @hw_submit: pushes active descriptor(s) to the hardware
175  * @hw_interrupt: handle the interrupt
176  * @num_channels: number of channels for this instance
177  * @channels: array of channels
178  *
179  * There is one instance of this struct for the M2P channels and one for the
180  * M2M channels. hw_xxx() methods are used to perform operations which are
181  * different on M2M and M2P channels. These methods are called with channel
182  * lock held and interrupts disabled so they cannot sleep.
183  */
184 struct ep93xx_dma_engine {
185         struct dma_device       dma_dev;
186         bool                    m2m;
187         int                     (*hw_setup)(struct ep93xx_dma_chan *);
188         void                    (*hw_shutdown)(struct ep93xx_dma_chan *);
189         void                    (*hw_submit)(struct ep93xx_dma_chan *);
190         int                     (*hw_interrupt)(struct ep93xx_dma_chan *);
191 #define INTERRUPT_UNKNOWN       0
192 #define INTERRUPT_DONE          1
193 #define INTERRUPT_NEXT_BUFFER   2
194
195         size_t                  num_channels;
196         struct ep93xx_dma_chan  channels[];
197 };
198
199 static inline struct device *chan2dev(struct ep93xx_dma_chan *edmac)
200 {
201         return &edmac->chan.dev->device;
202 }
203
204 static struct ep93xx_dma_chan *to_ep93xx_dma_chan(struct dma_chan *chan)
205 {
206         return container_of(chan, struct ep93xx_dma_chan, chan);
207 }
208
209 /**
210  * ep93xx_dma_set_active - set new active descriptor chain
211  * @edmac: channel
212  * @desc: head of the new active descriptor chain
213  *
214  * Sets @desc to be the head of the new active descriptor chain. This is the
215  * chain which is processed next. The active list must be empty before calling
216  * this function.
217  *
218  * Called with @edmac->lock held and interrupts disabled.
219  */
220 static void ep93xx_dma_set_active(struct ep93xx_dma_chan *edmac,
221                                   struct ep93xx_dma_desc *desc)
222 {
223         BUG_ON(!list_empty(&edmac->active));
224
225         list_add_tail(&desc->node, &edmac->active);
226
227         /* Flatten the @desc->tx_list chain into @edmac->active list */
228         while (!list_empty(&desc->tx_list)) {
229                 struct ep93xx_dma_desc *d = list_first_entry(&desc->tx_list,
230                         struct ep93xx_dma_desc, node);
231
232                 /*
233                  * We copy the callback parameters from the first descriptor
234                  * to all the chained descriptors. This way we can call the
235                  * callback without having to find out the first descriptor in
236                  * the chain. Useful for cyclic transfers.
237                  */
238                 d->txd.callback = desc->txd.callback;
239                 d->txd.callback_param = desc->txd.callback_param;
240
241                 list_move_tail(&d->node, &edmac->active);
242         }
243 }
244
245 /* Called with @edmac->lock held and interrupts disabled */
246 static struct ep93xx_dma_desc *
247 ep93xx_dma_get_active(struct ep93xx_dma_chan *edmac)
248 {
249         if (list_empty(&edmac->active))
250                 return NULL;
251
252         return list_first_entry(&edmac->active, struct ep93xx_dma_desc, node);
253 }
254
255 /**
256  * ep93xx_dma_advance_active - advances to the next active descriptor
257  * @edmac: channel
258  *
259  * Function advances active descriptor to the next in the @edmac->active and
260  * returns %true if we still have descriptors in the chain to process.
261  * Otherwise returns %false.
262  *
263  * When the channel is in cyclic mode always returns %true.
264  *
265  * Called with @edmac->lock held and interrupts disabled.
266  */
267 static bool ep93xx_dma_advance_active(struct ep93xx_dma_chan *edmac)
268 {
269         struct ep93xx_dma_desc *desc;
270
271         list_rotate_left(&edmac->active);
272
273         if (test_bit(EP93XX_DMA_IS_CYCLIC, &edmac->flags))
274                 return true;
275
276         desc = ep93xx_dma_get_active(edmac);
277         if (!desc)
278                 return false;
279
280         /*
281          * If txd.cookie is set it means that we are back in the first
282          * descriptor in the chain and hence done with it.
283          */
284         return !desc->txd.cookie;
285 }
286
287 /*
288  * M2P DMA implementation
289  */
290
291 static void m2p_set_control(struct ep93xx_dma_chan *edmac, u32 control)
292 {
293         writel(control, edmac->regs + M2P_CONTROL);
294         /*
295          * EP93xx User's Guide states that we must perform a dummy read after
296          * write to the control register.
297          */
298         readl(edmac->regs + M2P_CONTROL);
299 }
300
301 static int m2p_hw_setup(struct ep93xx_dma_chan *edmac)
302 {
303         struct ep93xx_dma_data *data = edmac->chan.private;
304         u32 control;
305
306         writel(data->port & 0xf, edmac->regs + M2P_PPALLOC);
307
308         control = M2P_CONTROL_CH_ERROR_INT | M2P_CONTROL_ICE
309                 | M2P_CONTROL_ENABLE;
310         m2p_set_control(edmac, control);
311
312         return 0;
313 }
314
315 static inline u32 m2p_channel_state(struct ep93xx_dma_chan *edmac)
316 {
317         return (readl(edmac->regs + M2P_STATUS) >> 4) & 0x3;
318 }
319
320 static void m2p_hw_shutdown(struct ep93xx_dma_chan *edmac)
321 {
322         u32 control;
323
324         control = readl(edmac->regs + M2P_CONTROL);
325         control &= ~(M2P_CONTROL_STALLINT | M2P_CONTROL_NFBINT);
326         m2p_set_control(edmac, control);
327
328         while (m2p_channel_state(edmac) >= M2P_STATE_ON)
329                 cpu_relax();
330
331         m2p_set_control(edmac, 0);
332
333         while (m2p_channel_state(edmac) == M2P_STATE_STALL)
334                 cpu_relax();
335 }
336
337 static void m2p_fill_desc(struct ep93xx_dma_chan *edmac)
338 {
339         struct ep93xx_dma_desc *desc;
340         u32 bus_addr;
341
342         desc = ep93xx_dma_get_active(edmac);
343         if (!desc) {
344                 dev_warn(chan2dev(edmac), "M2P: empty descriptor list\n");
345                 return;
346         }
347
348         if (ep93xx_dma_chan_direction(&edmac->chan) == DMA_MEM_TO_DEV)
349                 bus_addr = desc->src_addr;
350         else
351                 bus_addr = desc->dst_addr;
352
353         if (edmac->buffer == 0) {
354                 writel(desc->size, edmac->regs + M2P_MAXCNT0);
355                 writel(bus_addr, edmac->regs + M2P_BASE0);
356         } else {
357                 writel(desc->size, edmac->regs + M2P_MAXCNT1);
358                 writel(bus_addr, edmac->regs + M2P_BASE1);
359         }
360
361         edmac->buffer ^= 1;
362 }
363
364 static void m2p_hw_submit(struct ep93xx_dma_chan *edmac)
365 {
366         u32 control = readl(edmac->regs + M2P_CONTROL);
367
368         m2p_fill_desc(edmac);
369         control |= M2P_CONTROL_STALLINT;
370
371         if (ep93xx_dma_advance_active(edmac)) {
372                 m2p_fill_desc(edmac);
373                 control |= M2P_CONTROL_NFBINT;
374         }
375
376         m2p_set_control(edmac, control);
377 }
378
379 static int m2p_hw_interrupt(struct ep93xx_dma_chan *edmac)
380 {
381         u32 irq_status = readl(edmac->regs + M2P_INTERRUPT);
382         u32 control;
383
384         if (irq_status & M2P_INTERRUPT_ERROR) {
385                 struct ep93xx_dma_desc *desc = ep93xx_dma_get_active(edmac);
386
387                 /* Clear the error interrupt */
388                 writel(1, edmac->regs + M2P_INTERRUPT);
389
390                 /*
391                  * It seems that there is no easy way of reporting errors back
392                  * to client so we just report the error here and continue as
393                  * usual.
394                  *
395                  * Revisit this when there is a mechanism to report back the
396                  * errors.
397                  */
398                 dev_err(chan2dev(edmac),
399                         "DMA transfer failed! Details:\n"
400                         "\tcookie       : %d\n"
401                         "\tsrc_addr     : 0x%08x\n"
402                         "\tdst_addr     : 0x%08x\n"
403                         "\tsize         : %zu\n",
404                         desc->txd.cookie, desc->src_addr, desc->dst_addr,
405                         desc->size);
406         }
407
408         switch (irq_status & (M2P_INTERRUPT_STALL | M2P_INTERRUPT_NFB)) {
409         case M2P_INTERRUPT_STALL:
410                 /* Disable interrupts */
411                 control = readl(edmac->regs + M2P_CONTROL);
412                 control &= ~(M2P_CONTROL_STALLINT | M2P_CONTROL_NFBINT);
413                 m2p_set_control(edmac, control);
414
415                 return INTERRUPT_DONE;
416
417         case M2P_INTERRUPT_NFB:
418                 if (ep93xx_dma_advance_active(edmac))
419                         m2p_fill_desc(edmac);
420
421                 return INTERRUPT_NEXT_BUFFER;
422         }
423
424         return INTERRUPT_UNKNOWN;
425 }
426
427 /*
428  * M2M DMA implementation
429  *
430  * For the M2M transfers we don't use NFB at all. This is because it simply
431  * doesn't work well with memcpy transfers. When you submit both buffers it is
432  * extremely unlikely that you get an NFB interrupt, but it instead reports
433  * DONE interrupt and both buffers are already transferred which means that we
434  * weren't able to update the next buffer.
435  *
436  * So for now we "simulate" NFB by just submitting buffer after buffer
437  * without double buffering.
438  */
439
440 static int m2m_hw_setup(struct ep93xx_dma_chan *edmac)
441 {
442         const struct ep93xx_dma_data *data = edmac->chan.private;
443         u32 control = 0;
444
445         if (!data) {
446                 /* This is memcpy channel, nothing to configure */
447                 writel(control, edmac->regs + M2M_CONTROL);
448                 return 0;
449         }
450
451         switch (data->port) {
452         case EP93XX_DMA_SSP:
453                 /*
454                  * This was found via experimenting - anything less than 5
455                  * causes the channel to perform only a partial transfer which
456                  * leads to problems since we don't get DONE interrupt then.
457                  */
458                 control = (5 << M2M_CONTROL_PWSC_SHIFT);
459                 control |= M2M_CONTROL_NO_HDSK;
460
461                 if (data->direction == DMA_MEM_TO_DEV) {
462                         control |= M2M_CONTROL_DAH;
463                         control |= M2M_CONTROL_TM_TX;
464                         control |= M2M_CONTROL_RSS_SSPTX;
465                 } else {
466                         control |= M2M_CONTROL_SAH;
467                         control |= M2M_CONTROL_TM_RX;
468                         control |= M2M_CONTROL_RSS_SSPRX;
469                 }
470                 break;
471
472         case EP93XX_DMA_IDE:
473                 /*
474                  * This IDE part is totally untested. Values below are taken
475                  * from the EP93xx Users's Guide and might not be correct.
476                  */
477                 if (data->direction == DMA_MEM_TO_DEV) {
478                         /* Worst case from the UG */
479                         control = (3 << M2M_CONTROL_PWSC_SHIFT);
480                         control |= M2M_CONTROL_DAH;
481                         control |= M2M_CONTROL_TM_TX;
482                 } else {
483                         control = (2 << M2M_CONTROL_PWSC_SHIFT);
484                         control |= M2M_CONTROL_SAH;
485                         control |= M2M_CONTROL_TM_RX;
486                 }
487
488                 control |= M2M_CONTROL_NO_HDSK;
489                 control |= M2M_CONTROL_RSS_IDE;
490                 control |= M2M_CONTROL_PW_16;
491                 break;
492
493         default:
494                 return -EINVAL;
495         }
496
497         writel(control, edmac->regs + M2M_CONTROL);
498         return 0;
499 }
500
501 static void m2m_hw_shutdown(struct ep93xx_dma_chan *edmac)
502 {
503         /* Just disable the channel */
504         writel(0, edmac->regs + M2M_CONTROL);
505 }
506
507 static void m2m_fill_desc(struct ep93xx_dma_chan *edmac)
508 {
509         struct ep93xx_dma_desc *desc;
510
511         desc = ep93xx_dma_get_active(edmac);
512         if (!desc) {
513                 dev_warn(chan2dev(edmac), "M2M: empty descriptor list\n");
514                 return;
515         }
516
517         if (edmac->buffer == 0) {
518                 writel(desc->src_addr, edmac->regs + M2M_SAR_BASE0);
519                 writel(desc->dst_addr, edmac->regs + M2M_DAR_BASE0);
520                 writel(desc->size, edmac->regs + M2M_BCR0);
521         } else {
522                 writel(desc->src_addr, edmac->regs + M2M_SAR_BASE1);
523                 writel(desc->dst_addr, edmac->regs + M2M_DAR_BASE1);
524                 writel(desc->size, edmac->regs + M2M_BCR1);
525         }
526
527         edmac->buffer ^= 1;
528 }
529
530 static void m2m_hw_submit(struct ep93xx_dma_chan *edmac)
531 {
532         struct ep93xx_dma_data *data = edmac->chan.private;
533         u32 control = readl(edmac->regs + M2M_CONTROL);
534
535         /*
536          * Since we allow clients to configure PW (peripheral width) we always
537          * clear PW bits here and then set them according what is given in
538          * the runtime configuration.
539          */
540         control &= ~M2M_CONTROL_PW_MASK;
541         control |= edmac->runtime_ctrl;
542
543         m2m_fill_desc(edmac);
544         control |= M2M_CONTROL_DONEINT;
545
546         /*
547          * Now we can finally enable the channel. For M2M channel this must be
548          * done _after_ the BCRx registers are programmed.
549          */
550         control |= M2M_CONTROL_ENABLE;
551         writel(control, edmac->regs + M2M_CONTROL);
552
553         if (!data) {
554                 /*
555                  * For memcpy channels the software trigger must be asserted
556                  * in order to start the memcpy operation.
557                  */
558                 control |= M2M_CONTROL_START;
559                 writel(control, edmac->regs + M2M_CONTROL);
560         }
561 }
562
563 static int m2m_hw_interrupt(struct ep93xx_dma_chan *edmac)
564 {
565         u32 control;
566
567         if (!(readl(edmac->regs + M2M_INTERRUPT) & M2M_INTERRUPT_DONEINT))
568                 return INTERRUPT_UNKNOWN;
569
570         /* Clear the DONE bit */
571         writel(0, edmac->regs + M2M_INTERRUPT);
572
573         /* Disable interrupts and the channel */
574         control = readl(edmac->regs + M2M_CONTROL);
575         control &= ~(M2M_CONTROL_DONEINT | M2M_CONTROL_ENABLE);
576         writel(control, edmac->regs + M2M_CONTROL);
577
578         /*
579          * Since we only get DONE interrupt we have to find out ourselves
580          * whether there still is something to process. So we try to advance
581          * the chain an see whether it succeeds.
582          */
583         if (ep93xx_dma_advance_active(edmac)) {
584                 edmac->edma->hw_submit(edmac);
585                 return INTERRUPT_NEXT_BUFFER;
586         }
587
588         return INTERRUPT_DONE;
589 }
590
591 /*
592  * DMA engine API implementation
593  */
594
595 static struct ep93xx_dma_desc *
596 ep93xx_dma_desc_get(struct ep93xx_dma_chan *edmac)
597 {
598         struct ep93xx_dma_desc *desc, *_desc;
599         struct ep93xx_dma_desc *ret = NULL;
600         unsigned long flags;
601
602         spin_lock_irqsave(&edmac->lock, flags);
603         list_for_each_entry_safe(desc, _desc, &edmac->free_list, node) {
604                 if (async_tx_test_ack(&desc->txd)) {
605                         list_del_init(&desc->node);
606
607                         /* Re-initialize the descriptor */
608                         desc->src_addr = 0;
609                         desc->dst_addr = 0;
610                         desc->size = 0;
611                         desc->complete = false;
612                         desc->txd.cookie = 0;
613                         desc->txd.callback = NULL;
614                         desc->txd.callback_param = NULL;
615
616                         ret = desc;
617                         break;
618                 }
619         }
620         spin_unlock_irqrestore(&edmac->lock, flags);
621         return ret;
622 }
623
624 static void ep93xx_dma_desc_put(struct ep93xx_dma_chan *edmac,
625                                 struct ep93xx_dma_desc *desc)
626 {
627         if (desc) {
628                 unsigned long flags;
629
630                 spin_lock_irqsave(&edmac->lock, flags);
631                 list_splice_init(&desc->tx_list, &edmac->free_list);
632                 list_add(&desc->node, &edmac->free_list);
633                 spin_unlock_irqrestore(&edmac->lock, flags);
634         }
635 }
636
637 /**
638  * ep93xx_dma_advance_work - start processing the next pending transaction
639  * @edmac: channel
640  *
641  * If we have pending transactions queued and we are currently idling, this
642  * function takes the next queued transaction from the @edmac->queue and
643  * pushes it to the hardware for execution.
644  */
645 static void ep93xx_dma_advance_work(struct ep93xx_dma_chan *edmac)
646 {
647         struct ep93xx_dma_desc *new;
648         unsigned long flags;
649
650         spin_lock_irqsave(&edmac->lock, flags);
651         if (!list_empty(&edmac->active) || list_empty(&edmac->queue)) {
652                 spin_unlock_irqrestore(&edmac->lock, flags);
653                 return;
654         }
655
656         /* Take the next descriptor from the pending queue */
657         new = list_first_entry(&edmac->queue, struct ep93xx_dma_desc, node);
658         list_del_init(&new->node);
659
660         ep93xx_dma_set_active(edmac, new);
661
662         /* Push it to the hardware */
663         edmac->edma->hw_submit(edmac);
664         spin_unlock_irqrestore(&edmac->lock, flags);
665 }
666
667 static void ep93xx_dma_unmap_buffers(struct ep93xx_dma_desc *desc)
668 {
669         struct device *dev = desc->txd.chan->device->dev;
670
671         if (!(desc->txd.flags & DMA_COMPL_SKIP_SRC_UNMAP)) {
672                 if (desc->txd.flags & DMA_COMPL_SRC_UNMAP_SINGLE)
673                         dma_unmap_single(dev, desc->src_addr, desc->size,
674                                          DMA_TO_DEVICE);
675                 else
676                         dma_unmap_page(dev, desc->src_addr, desc->size,
677                                        DMA_TO_DEVICE);
678         }
679         if (!(desc->txd.flags & DMA_COMPL_SKIP_DEST_UNMAP)) {
680                 if (desc->txd.flags & DMA_COMPL_DEST_UNMAP_SINGLE)
681                         dma_unmap_single(dev, desc->dst_addr, desc->size,
682                                          DMA_FROM_DEVICE);
683                 else
684                         dma_unmap_page(dev, desc->dst_addr, desc->size,
685                                        DMA_FROM_DEVICE);
686         }
687 }
688
689 static void ep93xx_dma_tasklet(unsigned long data)
690 {
691         struct ep93xx_dma_chan *edmac = (struct ep93xx_dma_chan *)data;
692         struct ep93xx_dma_desc *desc, *d;
693         dma_async_tx_callback callback = NULL;
694         void *callback_param = NULL;
695         LIST_HEAD(list);
696
697         spin_lock_irq(&edmac->lock);
698         /*
699          * If dma_terminate_all() was called before we get to run, the active
700          * list has become empty. If that happens we aren't supposed to do
701          * anything more than call ep93xx_dma_advance_work().
702          */
703         desc = ep93xx_dma_get_active(edmac);
704         if (desc) {
705                 if (desc->complete) {
706                         edmac->chan.completed_cookie = desc->txd.cookie;
707                         list_splice_init(&edmac->active, &list);
708                 }
709                 callback = desc->txd.callback;
710                 callback_param = desc->txd.callback_param;
711         }
712         spin_unlock_irq(&edmac->lock);
713
714         /* Pick up the next descriptor from the queue */
715         ep93xx_dma_advance_work(edmac);
716
717         /* Now we can release all the chained descriptors */
718         list_for_each_entry_safe(desc, d, &list, node) {
719                 /*
720                  * For the memcpy channels the API requires us to unmap the
721                  * buffers unless requested otherwise.
722                  */
723                 if (!edmac->chan.private)
724                         ep93xx_dma_unmap_buffers(desc);
725
726                 ep93xx_dma_desc_put(edmac, desc);
727         }
728
729         if (callback)
730                 callback(callback_param);
731 }
732
733 static irqreturn_t ep93xx_dma_interrupt(int irq, void *dev_id)
734 {
735         struct ep93xx_dma_chan *edmac = dev_id;
736         struct ep93xx_dma_desc *desc;
737         irqreturn_t ret = IRQ_HANDLED;
738
739         spin_lock(&edmac->lock);
740
741         desc = ep93xx_dma_get_active(edmac);
742         if (!desc) {
743                 dev_warn(chan2dev(edmac),
744                          "got interrupt while active list is empty\n");
745                 spin_unlock(&edmac->lock);
746                 return IRQ_NONE;
747         }
748
749         switch (edmac->edma->hw_interrupt(edmac)) {
750         case INTERRUPT_DONE:
751                 desc->complete = true;
752                 tasklet_schedule(&edmac->tasklet);
753                 break;
754
755         case INTERRUPT_NEXT_BUFFER:
756                 if (test_bit(EP93XX_DMA_IS_CYCLIC, &edmac->flags))
757                         tasklet_schedule(&edmac->tasklet);
758                 break;
759
760         default:
761                 dev_warn(chan2dev(edmac), "unknown interrupt!\n");
762                 ret = IRQ_NONE;
763                 break;
764         }
765
766         spin_unlock(&edmac->lock);
767         return ret;
768 }
769
770 /**
771  * ep93xx_dma_tx_submit - set the prepared descriptor(s) to be executed
772  * @tx: descriptor to be executed
773  *
774  * Function will execute given descriptor on the hardware or if the hardware
775  * is busy, queue the descriptor to be executed later on. Returns cookie which
776  * can be used to poll the status of the descriptor.
777  */
778 static dma_cookie_t ep93xx_dma_tx_submit(struct dma_async_tx_descriptor *tx)
779 {
780         struct ep93xx_dma_chan *edmac = to_ep93xx_dma_chan(tx->chan);
781         struct ep93xx_dma_desc *desc;
782         dma_cookie_t cookie;
783         unsigned long flags;
784
785         spin_lock_irqsave(&edmac->lock, flags);
786         cookie = dma_cookie_assign(tx);
787
788         desc = container_of(tx, struct ep93xx_dma_desc, txd);
789
790         /*
791          * If nothing is currently prosessed, we push this descriptor
792          * directly to the hardware. Otherwise we put the descriptor
793          * to the pending queue.
794          */
795         if (list_empty(&edmac->active)) {
796                 ep93xx_dma_set_active(edmac, desc);
797                 edmac->edma->hw_submit(edmac);
798         } else {
799                 list_add_tail(&desc->node, &edmac->queue);
800         }
801
802         spin_unlock_irqrestore(&edmac->lock, flags);
803         return cookie;
804 }
805
806 /**
807  * ep93xx_dma_alloc_chan_resources - allocate resources for the channel
808  * @chan: channel to allocate resources
809  *
810  * Function allocates necessary resources for the given DMA channel and
811  * returns number of allocated descriptors for the channel. Negative errno
812  * is returned in case of failure.
813  */
814 static int ep93xx_dma_alloc_chan_resources(struct dma_chan *chan)
815 {
816         struct ep93xx_dma_chan *edmac = to_ep93xx_dma_chan(chan);
817         struct ep93xx_dma_data *data = chan->private;
818         const char *name = dma_chan_name(chan);
819         int ret, i;
820
821         /* Sanity check the channel parameters */
822         if (!edmac->edma->m2m) {
823                 if (!data)
824                         return -EINVAL;
825                 if (data->port < EP93XX_DMA_I2S1 ||
826                     data->port > EP93XX_DMA_IRDA)
827                         return -EINVAL;
828                 if (data->direction != ep93xx_dma_chan_direction(chan))
829                         return -EINVAL;
830         } else {
831                 if (data) {
832                         switch (data->port) {
833                         case EP93XX_DMA_SSP:
834                         case EP93XX_DMA_IDE:
835                                 if (data->direction != DMA_MEM_TO_DEV &&
836                                     data->direction != DMA_DEV_TO_MEM)
837                                         return -EINVAL;
838                                 break;
839                         default:
840                                 return -EINVAL;
841                         }
842                 }
843         }
844
845         if (data && data->name)
846                 name = data->name;
847
848         ret = clk_enable(edmac->clk);
849         if (ret)
850                 return ret;
851
852         ret = request_irq(edmac->irq, ep93xx_dma_interrupt, 0, name, edmac);
853         if (ret)
854                 goto fail_clk_disable;
855
856         spin_lock_irq(&edmac->lock);
857         edmac->chan.completed_cookie = 1;
858         edmac->chan.cookie = 1;
859         ret = edmac->edma->hw_setup(edmac);
860         spin_unlock_irq(&edmac->lock);
861
862         if (ret)
863                 goto fail_free_irq;
864
865         for (i = 0; i < DMA_MAX_CHAN_DESCRIPTORS; i++) {
866                 struct ep93xx_dma_desc *desc;
867
868                 desc = kzalloc(sizeof(*desc), GFP_KERNEL);
869                 if (!desc) {
870                         dev_warn(chan2dev(edmac), "not enough descriptors\n");
871                         break;
872                 }
873
874                 INIT_LIST_HEAD(&desc->tx_list);
875
876                 dma_async_tx_descriptor_init(&desc->txd, chan);
877                 desc->txd.flags = DMA_CTRL_ACK;
878                 desc->txd.tx_submit = ep93xx_dma_tx_submit;
879
880                 ep93xx_dma_desc_put(edmac, desc);
881         }
882
883         return i;
884
885 fail_free_irq:
886         free_irq(edmac->irq, edmac);
887 fail_clk_disable:
888         clk_disable(edmac->clk);
889
890         return ret;
891 }
892
893 /**
894  * ep93xx_dma_free_chan_resources - release resources for the channel
895  * @chan: channel
896  *
897  * Function releases all the resources allocated for the given channel.
898  * The channel must be idle when this is called.
899  */
900 static void ep93xx_dma_free_chan_resources(struct dma_chan *chan)
901 {
902         struct ep93xx_dma_chan *edmac = to_ep93xx_dma_chan(chan);
903         struct ep93xx_dma_desc *desc, *d;
904         unsigned long flags;
905         LIST_HEAD(list);
906
907         BUG_ON(!list_empty(&edmac->active));
908         BUG_ON(!list_empty(&edmac->queue));
909
910         spin_lock_irqsave(&edmac->lock, flags);
911         edmac->edma->hw_shutdown(edmac);
912         edmac->runtime_addr = 0;
913         edmac->runtime_ctrl = 0;
914         edmac->buffer = 0;
915         list_splice_init(&edmac->free_list, &list);
916         spin_unlock_irqrestore(&edmac->lock, flags);
917
918         list_for_each_entry_safe(desc, d, &list, node)
919                 kfree(desc);
920
921         clk_disable(edmac->clk);
922         free_irq(edmac->irq, edmac);
923 }
924
925 /**
926  * ep93xx_dma_prep_dma_memcpy - prepare a memcpy DMA operation
927  * @chan: channel
928  * @dest: destination bus address
929  * @src: source bus address
930  * @len: size of the transaction
931  * @flags: flags for the descriptor
932  *
933  * Returns a valid DMA descriptor or %NULL in case of failure.
934  */
935 static struct dma_async_tx_descriptor *
936 ep93xx_dma_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest,
937                            dma_addr_t src, size_t len, unsigned long flags)
938 {
939         struct ep93xx_dma_chan *edmac = to_ep93xx_dma_chan(chan);
940         struct ep93xx_dma_desc *desc, *first;
941         size_t bytes, offset;
942
943         first = NULL;
944         for (offset = 0; offset < len; offset += bytes) {
945                 desc = ep93xx_dma_desc_get(edmac);
946                 if (!desc) {
947                         dev_warn(chan2dev(edmac), "couln't get descriptor\n");
948                         goto fail;
949                 }
950
951                 bytes = min_t(size_t, len - offset, DMA_MAX_CHAN_BYTES);
952
953                 desc->src_addr = src + offset;
954                 desc->dst_addr = dest + offset;
955                 desc->size = bytes;
956
957                 if (!first)
958                         first = desc;
959                 else
960                         list_add_tail(&desc->node, &first->tx_list);
961         }
962
963         first->txd.cookie = -EBUSY;
964         first->txd.flags = flags;
965
966         return &first->txd;
967 fail:
968         ep93xx_dma_desc_put(edmac, first);
969         return NULL;
970 }
971
972 /**
973  * ep93xx_dma_prep_slave_sg - prepare a slave DMA operation
974  * @chan: channel
975  * @sgl: list of buffers to transfer
976  * @sg_len: number of entries in @sgl
977  * @dir: direction of tha DMA transfer
978  * @flags: flags for the descriptor
979  *
980  * Returns a valid DMA descriptor or %NULL in case of failure.
981  */
982 static struct dma_async_tx_descriptor *
983 ep93xx_dma_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
984                          unsigned int sg_len, enum dma_transfer_direction dir,
985                          unsigned long flags)
986 {
987         struct ep93xx_dma_chan *edmac = to_ep93xx_dma_chan(chan);
988         struct ep93xx_dma_desc *desc, *first;
989         struct scatterlist *sg;
990         int i;
991
992         if (!edmac->edma->m2m && dir != ep93xx_dma_chan_direction(chan)) {
993                 dev_warn(chan2dev(edmac),
994                          "channel was configured with different direction\n");
995                 return NULL;
996         }
997
998         if (test_bit(EP93XX_DMA_IS_CYCLIC, &edmac->flags)) {
999                 dev_warn(chan2dev(edmac),
1000                          "channel is already used for cyclic transfers\n");
1001                 return NULL;
1002         }
1003
1004         first = NULL;
1005         for_each_sg(sgl, sg, sg_len, i) {
1006                 size_t sg_len = sg_dma_len(sg);
1007
1008                 if (sg_len > DMA_MAX_CHAN_BYTES) {
1009                         dev_warn(chan2dev(edmac), "too big transfer size %d\n",
1010                                  sg_len);
1011                         goto fail;
1012                 }
1013
1014                 desc = ep93xx_dma_desc_get(edmac);
1015                 if (!desc) {
1016                         dev_warn(chan2dev(edmac), "couln't get descriptor\n");
1017                         goto fail;
1018                 }
1019
1020                 if (dir == DMA_MEM_TO_DEV) {
1021                         desc->src_addr = sg_dma_address(sg);
1022                         desc->dst_addr = edmac->runtime_addr;
1023                 } else {
1024                         desc->src_addr = edmac->runtime_addr;
1025                         desc->dst_addr = sg_dma_address(sg);
1026                 }
1027                 desc->size = sg_len;
1028
1029                 if (!first)
1030                         first = desc;
1031                 else
1032                         list_add_tail(&desc->node, &first->tx_list);
1033         }
1034
1035         first->txd.cookie = -EBUSY;
1036         first->txd.flags = flags;
1037
1038         return &first->txd;
1039
1040 fail:
1041         ep93xx_dma_desc_put(edmac, first);
1042         return NULL;
1043 }
1044
1045 /**
1046  * ep93xx_dma_prep_dma_cyclic - prepare a cyclic DMA operation
1047  * @chan: channel
1048  * @dma_addr: DMA mapped address of the buffer
1049  * @buf_len: length of the buffer (in bytes)
1050  * @period_len: lenght of a single period
1051  * @dir: direction of the operation
1052  *
1053  * Prepares a descriptor for cyclic DMA operation. This means that once the
1054  * descriptor is submitted, we will be submitting in a @period_len sized
1055  * buffers and calling callback once the period has been elapsed. Transfer
1056  * terminates only when client calls dmaengine_terminate_all() for this
1057  * channel.
1058  *
1059  * Returns a valid DMA descriptor or %NULL in case of failure.
1060  */
1061 static struct dma_async_tx_descriptor *
1062 ep93xx_dma_prep_dma_cyclic(struct dma_chan *chan, dma_addr_t dma_addr,
1063                            size_t buf_len, size_t period_len,
1064                            enum dma_transfer_direction dir)
1065 {
1066         struct ep93xx_dma_chan *edmac = to_ep93xx_dma_chan(chan);
1067         struct ep93xx_dma_desc *desc, *first;
1068         size_t offset = 0;
1069
1070         if (!edmac->edma->m2m && dir != ep93xx_dma_chan_direction(chan)) {
1071                 dev_warn(chan2dev(edmac),
1072                          "channel was configured with different direction\n");
1073                 return NULL;
1074         }
1075
1076         if (test_and_set_bit(EP93XX_DMA_IS_CYCLIC, &edmac->flags)) {
1077                 dev_warn(chan2dev(edmac),
1078                          "channel is already used for cyclic transfers\n");
1079                 return NULL;
1080         }
1081
1082         if (period_len > DMA_MAX_CHAN_BYTES) {
1083                 dev_warn(chan2dev(edmac), "too big period length %d\n",
1084                          period_len);
1085                 return NULL;
1086         }
1087
1088         /* Split the buffer into period size chunks */
1089         first = NULL;
1090         for (offset = 0; offset < buf_len; offset += period_len) {
1091                 desc = ep93xx_dma_desc_get(edmac);
1092                 if (!desc) {
1093                         dev_warn(chan2dev(edmac), "couln't get descriptor\n");
1094                         goto fail;
1095                 }
1096
1097                 if (dir == DMA_MEM_TO_DEV) {
1098                         desc->src_addr = dma_addr + offset;
1099                         desc->dst_addr = edmac->runtime_addr;
1100                 } else {
1101                         desc->src_addr = edmac->runtime_addr;
1102                         desc->dst_addr = dma_addr + offset;
1103                 }
1104
1105                 desc->size = period_len;
1106
1107                 if (!first)
1108                         first = desc;
1109                 else
1110                         list_add_tail(&desc->node, &first->tx_list);
1111         }
1112
1113         first->txd.cookie = -EBUSY;
1114
1115         return &first->txd;
1116
1117 fail:
1118         ep93xx_dma_desc_put(edmac, first);
1119         return NULL;
1120 }
1121
1122 /**
1123  * ep93xx_dma_terminate_all - terminate all transactions
1124  * @edmac: channel
1125  *
1126  * Stops all DMA transactions. All descriptors are put back to the
1127  * @edmac->free_list and callbacks are _not_ called.
1128  */
1129 static int ep93xx_dma_terminate_all(struct ep93xx_dma_chan *edmac)
1130 {
1131         struct ep93xx_dma_desc *desc, *_d;
1132         unsigned long flags;
1133         LIST_HEAD(list);
1134
1135         spin_lock_irqsave(&edmac->lock, flags);
1136         /* First we disable and flush the DMA channel */
1137         edmac->edma->hw_shutdown(edmac);
1138         clear_bit(EP93XX_DMA_IS_CYCLIC, &edmac->flags);
1139         list_splice_init(&edmac->active, &list);
1140         list_splice_init(&edmac->queue, &list);
1141         /*
1142          * We then re-enable the channel. This way we can continue submitting
1143          * the descriptors by just calling ->hw_submit() again.
1144          */
1145         edmac->edma->hw_setup(edmac);
1146         spin_unlock_irqrestore(&edmac->lock, flags);
1147
1148         list_for_each_entry_safe(desc, _d, &list, node)
1149                 ep93xx_dma_desc_put(edmac, desc);
1150
1151         return 0;
1152 }
1153
1154 static int ep93xx_dma_slave_config(struct ep93xx_dma_chan *edmac,
1155                                    struct dma_slave_config *config)
1156 {
1157         enum dma_slave_buswidth width;
1158         unsigned long flags;
1159         u32 addr, ctrl;
1160
1161         if (!edmac->edma->m2m)
1162                 return -EINVAL;
1163
1164         switch (config->direction) {
1165         case DMA_DEV_TO_MEM:
1166                 width = config->src_addr_width;
1167                 addr = config->src_addr;
1168                 break;
1169
1170         case DMA_MEM_TO_DEV:
1171                 width = config->dst_addr_width;
1172                 addr = config->dst_addr;
1173                 break;
1174
1175         default:
1176                 return -EINVAL;
1177         }
1178
1179         switch (width) {
1180         case DMA_SLAVE_BUSWIDTH_1_BYTE:
1181                 ctrl = 0;
1182                 break;
1183         case DMA_SLAVE_BUSWIDTH_2_BYTES:
1184                 ctrl = M2M_CONTROL_PW_16;
1185                 break;
1186         case DMA_SLAVE_BUSWIDTH_4_BYTES:
1187                 ctrl = M2M_CONTROL_PW_32;
1188                 break;
1189         default:
1190                 return -EINVAL;
1191         }
1192
1193         spin_lock_irqsave(&edmac->lock, flags);
1194         edmac->runtime_addr = addr;
1195         edmac->runtime_ctrl = ctrl;
1196         spin_unlock_irqrestore(&edmac->lock, flags);
1197
1198         return 0;
1199 }
1200
1201 /**
1202  * ep93xx_dma_control - manipulate all pending operations on a channel
1203  * @chan: channel
1204  * @cmd: control command to perform
1205  * @arg: optional argument
1206  *
1207  * Controls the channel. Function returns %0 in case of success or negative
1208  * error in case of failure.
1209  */
1210 static int ep93xx_dma_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
1211                               unsigned long arg)
1212 {
1213         struct ep93xx_dma_chan *edmac = to_ep93xx_dma_chan(chan);
1214         struct dma_slave_config *config;
1215
1216         switch (cmd) {
1217         case DMA_TERMINATE_ALL:
1218                 return ep93xx_dma_terminate_all(edmac);
1219
1220         case DMA_SLAVE_CONFIG:
1221                 config = (struct dma_slave_config *)arg;
1222                 return ep93xx_dma_slave_config(edmac, config);
1223
1224         default:
1225                 break;
1226         }
1227
1228         return -ENOSYS;
1229 }
1230
1231 /**
1232  * ep93xx_dma_tx_status - check if a transaction is completed
1233  * @chan: channel
1234  * @cookie: transaction specific cookie
1235  * @state: state of the transaction is stored here if given
1236  *
1237  * This function can be used to query state of a given transaction.
1238  */
1239 static enum dma_status ep93xx_dma_tx_status(struct dma_chan *chan,
1240                                             dma_cookie_t cookie,
1241                                             struct dma_tx_state *state)
1242 {
1243         struct ep93xx_dma_chan *edmac = to_ep93xx_dma_chan(chan);
1244         dma_cookie_t last_used, last_completed;
1245         enum dma_status ret;
1246         unsigned long flags;
1247
1248         spin_lock_irqsave(&edmac->lock, flags);
1249         last_used = chan->cookie;
1250         last_completed = chan->completed_cookie;
1251         spin_unlock_irqrestore(&edmac->lock, flags);
1252
1253         ret = dma_async_is_complete(cookie, last_completed, last_used);
1254         dma_set_tx_state(state, last_completed, last_used, 0);
1255
1256         return ret;
1257 }
1258
1259 /**
1260  * ep93xx_dma_issue_pending - push pending transactions to the hardware
1261  * @chan: channel
1262  *
1263  * When this function is called, all pending transactions are pushed to the
1264  * hardware and executed.
1265  */
1266 static void ep93xx_dma_issue_pending(struct dma_chan *chan)
1267 {
1268         ep93xx_dma_advance_work(to_ep93xx_dma_chan(chan));
1269 }
1270
1271 static int __init ep93xx_dma_probe(struct platform_device *pdev)
1272 {
1273         struct ep93xx_dma_platform_data *pdata = dev_get_platdata(&pdev->dev);
1274         struct ep93xx_dma_engine *edma;
1275         struct dma_device *dma_dev;
1276         size_t edma_size;
1277         int ret, i;
1278
1279         edma_size = pdata->num_channels * sizeof(struct ep93xx_dma_chan);
1280         edma = kzalloc(sizeof(*edma) + edma_size, GFP_KERNEL);
1281         if (!edma)
1282                 return -ENOMEM;
1283
1284         dma_dev = &edma->dma_dev;
1285         edma->m2m = platform_get_device_id(pdev)->driver_data;
1286         edma->num_channels = pdata->num_channels;
1287
1288         INIT_LIST_HEAD(&dma_dev->channels);
1289         for (i = 0; i < pdata->num_channels; i++) {
1290                 const struct ep93xx_dma_chan_data *cdata = &pdata->channels[i];
1291                 struct ep93xx_dma_chan *edmac = &edma->channels[i];
1292
1293                 edmac->chan.device = dma_dev;
1294                 edmac->regs = cdata->base;
1295                 edmac->irq = cdata->irq;
1296                 edmac->edma = edma;
1297
1298                 edmac->clk = clk_get(NULL, cdata->name);
1299                 if (IS_ERR(edmac->clk)) {
1300                         dev_warn(&pdev->dev, "failed to get clock for %s\n",
1301                                  cdata->name);
1302                         continue;
1303                 }
1304
1305                 spin_lock_init(&edmac->lock);
1306                 INIT_LIST_HEAD(&edmac->active);
1307                 INIT_LIST_HEAD(&edmac->queue);
1308                 INIT_LIST_HEAD(&edmac->free_list);
1309                 tasklet_init(&edmac->tasklet, ep93xx_dma_tasklet,
1310                              (unsigned long)edmac);
1311
1312                 list_add_tail(&edmac->chan.device_node,
1313                               &dma_dev->channels);
1314         }
1315
1316         dma_cap_zero(dma_dev->cap_mask);
1317         dma_cap_set(DMA_SLAVE, dma_dev->cap_mask);
1318         dma_cap_set(DMA_CYCLIC, dma_dev->cap_mask);
1319
1320         dma_dev->dev = &pdev->dev;
1321         dma_dev->device_alloc_chan_resources = ep93xx_dma_alloc_chan_resources;
1322         dma_dev->device_free_chan_resources = ep93xx_dma_free_chan_resources;
1323         dma_dev->device_prep_slave_sg = ep93xx_dma_prep_slave_sg;
1324         dma_dev->device_prep_dma_cyclic = ep93xx_dma_prep_dma_cyclic;
1325         dma_dev->device_control = ep93xx_dma_control;
1326         dma_dev->device_issue_pending = ep93xx_dma_issue_pending;
1327         dma_dev->device_tx_status = ep93xx_dma_tx_status;
1328
1329         dma_set_max_seg_size(dma_dev->dev, DMA_MAX_CHAN_BYTES);
1330
1331         if (edma->m2m) {
1332                 dma_cap_set(DMA_MEMCPY, dma_dev->cap_mask);
1333                 dma_dev->device_prep_dma_memcpy = ep93xx_dma_prep_dma_memcpy;
1334
1335                 edma->hw_setup = m2m_hw_setup;
1336                 edma->hw_shutdown = m2m_hw_shutdown;
1337                 edma->hw_submit = m2m_hw_submit;
1338                 edma->hw_interrupt = m2m_hw_interrupt;
1339         } else {
1340                 dma_cap_set(DMA_PRIVATE, dma_dev->cap_mask);
1341
1342                 edma->hw_setup = m2p_hw_setup;
1343                 edma->hw_shutdown = m2p_hw_shutdown;
1344                 edma->hw_submit = m2p_hw_submit;
1345                 edma->hw_interrupt = m2p_hw_interrupt;
1346         }
1347
1348         ret = dma_async_device_register(dma_dev);
1349         if (unlikely(ret)) {
1350                 for (i = 0; i < edma->num_channels; i++) {
1351                         struct ep93xx_dma_chan *edmac = &edma->channels[i];
1352                         if (!IS_ERR_OR_NULL(edmac->clk))
1353                                 clk_put(edmac->clk);
1354                 }
1355                 kfree(edma);
1356         } else {
1357                 dev_info(dma_dev->dev, "EP93xx M2%s DMA ready\n",
1358                          edma->m2m ? "M" : "P");
1359         }
1360
1361         return ret;
1362 }
1363
1364 static struct platform_device_id ep93xx_dma_driver_ids[] = {
1365         { "ep93xx-dma-m2p", 0 },
1366         { "ep93xx-dma-m2m", 1 },
1367         { },
1368 };
1369
1370 static struct platform_driver ep93xx_dma_driver = {
1371         .driver         = {
1372                 .name   = "ep93xx-dma",
1373         },
1374         .id_table       = ep93xx_dma_driver_ids,
1375 };
1376
1377 static int __init ep93xx_dma_module_init(void)
1378 {
1379         return platform_driver_probe(&ep93xx_dma_driver, ep93xx_dma_probe);
1380 }
1381 subsys_initcall(ep93xx_dma_module_init);
1382
1383 MODULE_AUTHOR("Mika Westerberg <mika.westerberg@iki.fi>");
1384 MODULE_DESCRIPTION("EP93xx DMA driver");
1385 MODULE_LICENSE("GPL");