blob: 63a1db38894e3febe1888376d1e6786664c0561f [file] [log] [blame]
Maxime Ripard55585932014-07-17 21:46:16 +02001/*
2 * Copyright (C) 2013-2014 Allwinner Tech Co., Ltd
3 * Author: Sugar <shuge@allwinnertech.com>
4 *
5 * Copyright (C) 2014 Maxime Ripard
6 * Maxime Ripard <maxime.ripard@free-electrons.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#include <linux/clk.h>
15#include <linux/delay.h>
16#include <linux/dmaengine.h>
17#include <linux/dmapool.h>
18#include <linux/interrupt.h>
19#include <linux/module.h>
20#include <linux/of_dma.h>
21#include <linux/platform_device.h>
22#include <linux/reset.h>
23#include <linux/slab.h>
24#include <linux/types.h>
25
26#include "virt-dma.h"
27
28/*
29 * There's 16 physical channels that can work in parallel.
30 *
31 * However we have 30 different endpoints for our requests.
32 *
33 * Since the channels are able to handle only an unidirectional
34 * transfer, we need to allocate more virtual channels so that
35 * everyone can grab one channel.
36 *
37 * Some devices can't work in both direction (mostly because it
38 * wouldn't make sense), so we have a bit fewer virtual channels than
39 * 2 channels per endpoints.
40 */
41
42#define NR_MAX_CHANNELS 16
43#define NR_MAX_REQUESTS 30
44#define NR_MAX_VCHANS 53
45
46/*
47 * Common registers
48 */
49#define DMA_IRQ_EN(x) ((x) * 0x04)
50#define DMA_IRQ_HALF BIT(0)
51#define DMA_IRQ_PKG BIT(1)
52#define DMA_IRQ_QUEUE BIT(2)
53
54#define DMA_IRQ_CHAN_NR 8
55#define DMA_IRQ_CHAN_WIDTH 4
56
57
58#define DMA_IRQ_STAT(x) ((x) * 0x04 + 0x10)
59
60#define DMA_STAT 0x30
61
62/*
63 * Channels specific registers
64 */
65#define DMA_CHAN_ENABLE 0x00
66#define DMA_CHAN_ENABLE_START BIT(0)
67#define DMA_CHAN_ENABLE_STOP 0
68
69#define DMA_CHAN_PAUSE 0x04
70#define DMA_CHAN_PAUSE_PAUSE BIT(1)
71#define DMA_CHAN_PAUSE_RESUME 0
72
73#define DMA_CHAN_LLI_ADDR 0x08
74
75#define DMA_CHAN_CUR_CFG 0x0c
76#define DMA_CHAN_CFG_SRC_DRQ(x) ((x) & 0x1f)
77#define DMA_CHAN_CFG_SRC_IO_MODE BIT(5)
78#define DMA_CHAN_CFG_SRC_LINEAR_MODE (0 << 5)
79#define DMA_CHAN_CFG_SRC_BURST(x) (((x) & 0x3) << 7)
80#define DMA_CHAN_CFG_SRC_WIDTH(x) (((x) & 0x3) << 9)
81
82#define DMA_CHAN_CFG_DST_DRQ(x) (DMA_CHAN_CFG_SRC_DRQ(x) << 16)
83#define DMA_CHAN_CFG_DST_IO_MODE (DMA_CHAN_CFG_SRC_IO_MODE << 16)
84#define DMA_CHAN_CFG_DST_LINEAR_MODE (DMA_CHAN_CFG_SRC_LINEAR_MODE << 16)
85#define DMA_CHAN_CFG_DST_BURST(x) (DMA_CHAN_CFG_SRC_BURST(x) << 16)
86#define DMA_CHAN_CFG_DST_WIDTH(x) (DMA_CHAN_CFG_SRC_WIDTH(x) << 16)
87
88#define DMA_CHAN_CUR_SRC 0x10
89
90#define DMA_CHAN_CUR_DST 0x14
91
92#define DMA_CHAN_CUR_CNT 0x18
93
94#define DMA_CHAN_CUR_PARA 0x1c
95
96
97/*
98 * Various hardware related defines
99 */
100#define LLI_LAST_ITEM 0xfffff800
101#define NORMAL_WAIT 8
102#define DRQ_SDRAM 1
103
104/*
105 * Hardware representation of the LLI
106 *
107 * The hardware will be fed the physical address of this structure,
108 * and read its content in order to start the transfer.
109 */
110struct sun6i_dma_lli {
111 u32 cfg;
112 u32 src;
113 u32 dst;
114 u32 len;
115 u32 para;
116 u32 p_lli_next;
117
118 /*
119 * This field is not used by the DMA controller, but will be
120 * used by the CPU to go through the list (mostly for dumping
121 * or freeing it).
122 */
123 struct sun6i_dma_lli *v_lli_next;
124};
125
126
127struct sun6i_desc {
128 struct virt_dma_desc vd;
129 dma_addr_t p_lli;
130 struct sun6i_dma_lli *v_lli;
131};
132
133struct sun6i_pchan {
134 u32 idx;
135 void __iomem *base;
136 struct sun6i_vchan *vchan;
137 struct sun6i_desc *desc;
138 struct sun6i_desc *done;
139};
140
141struct sun6i_vchan {
142 struct virt_dma_chan vc;
143 struct list_head node;
144 struct dma_slave_config cfg;
145 struct sun6i_pchan *phy;
146 u8 port;
147};
148
149struct sun6i_dma_dev {
150 struct dma_device slave;
151 void __iomem *base;
152 struct clk *clk;
153 int irq;
154 spinlock_t lock;
155 struct reset_control *rstc;
156 struct tasklet_struct task;
157 atomic_t tasklet_shutdown;
158 struct list_head pending;
159 struct dma_pool *pool;
160 struct sun6i_pchan *pchans;
161 struct sun6i_vchan *vchans;
162};
163
164static struct device *chan2dev(struct dma_chan *chan)
165{
166 return &chan->dev->device;
167}
168
169static inline struct sun6i_dma_dev *to_sun6i_dma_dev(struct dma_device *d)
170{
171 return container_of(d, struct sun6i_dma_dev, slave);
172}
173
174static inline struct sun6i_vchan *to_sun6i_vchan(struct dma_chan *chan)
175{
176 return container_of(chan, struct sun6i_vchan, vc.chan);
177}
178
179static inline struct sun6i_desc *
180to_sun6i_desc(struct dma_async_tx_descriptor *tx)
181{
182 return container_of(tx, struct sun6i_desc, vd.tx);
183}
184
185static inline void sun6i_dma_dump_com_regs(struct sun6i_dma_dev *sdev)
186{
187 dev_dbg(sdev->slave.dev, "Common register:\n"
188 "\tmask0(%04x): 0x%08x\n"
189 "\tmask1(%04x): 0x%08x\n"
190 "\tpend0(%04x): 0x%08x\n"
191 "\tpend1(%04x): 0x%08x\n"
192 "\tstats(%04x): 0x%08x\n",
193 DMA_IRQ_EN(0), readl(sdev->base + DMA_IRQ_EN(0)),
194 DMA_IRQ_EN(1), readl(sdev->base + DMA_IRQ_EN(1)),
195 DMA_IRQ_STAT(0), readl(sdev->base + DMA_IRQ_STAT(0)),
196 DMA_IRQ_STAT(1), readl(sdev->base + DMA_IRQ_STAT(1)),
197 DMA_STAT, readl(sdev->base + DMA_STAT));
198}
199
200static inline void sun6i_dma_dump_chan_regs(struct sun6i_dma_dev *sdev,
201 struct sun6i_pchan *pchan)
202{
Vinod Koul42c0d542014-07-28 11:57:25 +0530203 phys_addr_t reg = virt_to_phys(pchan->base);
Maxime Ripard55585932014-07-17 21:46:16 +0200204
205 dev_dbg(sdev->slave.dev, "Chan %d reg: %pa\n"
206 "\t___en(%04x): \t0x%08x\n"
207 "\tpause(%04x): \t0x%08x\n"
208 "\tstart(%04x): \t0x%08x\n"
209 "\t__cfg(%04x): \t0x%08x\n"
210 "\t__src(%04x): \t0x%08x\n"
211 "\t__dst(%04x): \t0x%08x\n"
212 "\tcount(%04x): \t0x%08x\n"
213 "\t_para(%04x): \t0x%08x\n\n",
214 pchan->idx, &reg,
215 DMA_CHAN_ENABLE,
216 readl(pchan->base + DMA_CHAN_ENABLE),
217 DMA_CHAN_PAUSE,
218 readl(pchan->base + DMA_CHAN_PAUSE),
219 DMA_CHAN_LLI_ADDR,
220 readl(pchan->base + DMA_CHAN_LLI_ADDR),
221 DMA_CHAN_CUR_CFG,
222 readl(pchan->base + DMA_CHAN_CUR_CFG),
223 DMA_CHAN_CUR_SRC,
224 readl(pchan->base + DMA_CHAN_CUR_SRC),
225 DMA_CHAN_CUR_DST,
226 readl(pchan->base + DMA_CHAN_CUR_DST),
227 DMA_CHAN_CUR_CNT,
228 readl(pchan->base + DMA_CHAN_CUR_CNT),
229 DMA_CHAN_CUR_PARA,
230 readl(pchan->base + DMA_CHAN_CUR_PARA));
231}
232
233static inline int convert_burst(u32 maxburst, u8 *burst)
234{
235 switch (maxburst) {
236 case 1:
237 *burst = 0;
238 break;
239 case 8:
240 *burst = 2;
241 break;
242 default:
243 return -EINVAL;
244 }
245
246 return 0;
247}
248
249static inline int convert_buswidth(enum dma_slave_buswidth addr_width, u8 *width)
250{
Maxime Ripard92e4a3b2014-07-30 10:30:21 +0200251 if ((addr_width < DMA_SLAVE_BUSWIDTH_1_BYTE) ||
252 (addr_width > DMA_SLAVE_BUSWIDTH_4_BYTES))
Maxime Ripard55585932014-07-17 21:46:16 +0200253 return -EINVAL;
Maxime Ripard55585932014-07-17 21:46:16 +0200254
Maxime Ripard92e4a3b2014-07-30 10:30:21 +0200255 *width = addr_width >> 1;
Maxime Ripard55585932014-07-17 21:46:16 +0200256 return 0;
257}
258
259static void *sun6i_dma_lli_add(struct sun6i_dma_lli *prev,
260 struct sun6i_dma_lli *next,
261 dma_addr_t next_phy,
262 struct sun6i_desc *txd)
263{
264 if ((!prev && !txd) || !next)
265 return NULL;
266
267 if (!prev) {
268 txd->p_lli = next_phy;
269 txd->v_lli = next;
270 } else {
271 prev->p_lli_next = next_phy;
272 prev->v_lli_next = next;
273 }
274
275 next->p_lli_next = LLI_LAST_ITEM;
276 next->v_lli_next = NULL;
277
278 return next;
279}
280
281static inline int sun6i_dma_cfg_lli(struct sun6i_dma_lli *lli,
282 dma_addr_t src,
283 dma_addr_t dst, u32 len,
284 struct dma_slave_config *config)
285{
286 u8 src_width, dst_width, src_burst, dst_burst;
287 int ret;
288
289 if (!config)
290 return -EINVAL;
291
292 ret = convert_burst(config->src_maxburst, &src_burst);
293 if (ret)
294 return ret;
295
296 ret = convert_burst(config->dst_maxburst, &dst_burst);
297 if (ret)
298 return ret;
299
300 ret = convert_buswidth(config->src_addr_width, &src_width);
301 if (ret)
302 return ret;
303
304 ret = convert_buswidth(config->dst_addr_width, &dst_width);
305 if (ret)
306 return ret;
307
308 lli->cfg = DMA_CHAN_CFG_SRC_BURST(src_burst) |
309 DMA_CHAN_CFG_SRC_WIDTH(src_width) |
310 DMA_CHAN_CFG_DST_BURST(dst_burst) |
311 DMA_CHAN_CFG_DST_WIDTH(dst_width);
312
313 lli->src = src;
314 lli->dst = dst;
315 lli->len = len;
316 lli->para = NORMAL_WAIT;
317
318 return 0;
319}
320
321static inline void sun6i_dma_dump_lli(struct sun6i_vchan *vchan,
322 struct sun6i_dma_lli *lli)
323{
Vinod Koul42c0d542014-07-28 11:57:25 +0530324 phys_addr_t p_lli = virt_to_phys(lli);
Maxime Ripard55585932014-07-17 21:46:16 +0200325
326 dev_dbg(chan2dev(&vchan->vc.chan),
327 "\n\tdesc: p - %pa v - 0x%p\n"
328 "\t\tc - 0x%08x s - 0x%08x d - 0x%08x\n"
329 "\t\tl - 0x%08x p - 0x%08x n - 0x%08x\n",
330 &p_lli, lli,
331 lli->cfg, lli->src, lli->dst,
332 lli->len, lli->para, lli->p_lli_next);
333}
334
335static void sun6i_dma_free_desc(struct virt_dma_desc *vd)
336{
337 struct sun6i_desc *txd = to_sun6i_desc(&vd->tx);
338 struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(vd->tx.chan->device);
339 struct sun6i_dma_lli *v_lli, *v_next;
340 dma_addr_t p_lli, p_next;
341
342 if (unlikely(!txd))
343 return;
344
345 p_lli = txd->p_lli;
346 v_lli = txd->v_lli;
347
348 while (v_lli) {
349 v_next = v_lli->v_lli_next;
350 p_next = v_lli->p_lli_next;
351
352 dma_pool_free(sdev->pool, v_lli, p_lli);
353
354 v_lli = v_next;
355 p_lli = p_next;
356 }
357
358 kfree(txd);
359}
360
361static int sun6i_dma_terminate_all(struct sun6i_vchan *vchan)
362{
363 struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(vchan->vc.chan.device);
364 struct sun6i_pchan *pchan = vchan->phy;
365 unsigned long flags;
366 LIST_HEAD(head);
367
368 spin_lock(&sdev->lock);
369 list_del_init(&vchan->node);
370 spin_unlock(&sdev->lock);
371
372 spin_lock_irqsave(&vchan->vc.lock, flags);
373
374 vchan_get_all_descriptors(&vchan->vc, &head);
375
376 if (pchan) {
377 writel(DMA_CHAN_ENABLE_STOP, pchan->base + DMA_CHAN_ENABLE);
378 writel(DMA_CHAN_PAUSE_RESUME, pchan->base + DMA_CHAN_PAUSE);
379
380 vchan->phy = NULL;
381 pchan->vchan = NULL;
382 pchan->desc = NULL;
383 pchan->done = NULL;
384 }
385
386 spin_unlock_irqrestore(&vchan->vc.lock, flags);
387
388 vchan_dma_desc_free_list(&vchan->vc, &head);
389
390 return 0;
391}
392
393static int sun6i_dma_start_desc(struct sun6i_vchan *vchan)
394{
395 struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(vchan->vc.chan.device);
396 struct virt_dma_desc *desc = vchan_next_desc(&vchan->vc);
397 struct sun6i_pchan *pchan = vchan->phy;
398 u32 irq_val, irq_reg, irq_offset;
399
400 if (!pchan)
401 return -EAGAIN;
402
403 if (!desc) {
404 pchan->desc = NULL;
405 pchan->done = NULL;
406 return -EAGAIN;
407 }
408
409 list_del(&desc->node);
410
411 pchan->desc = to_sun6i_desc(&desc->tx);
412 pchan->done = NULL;
413
414 sun6i_dma_dump_lli(vchan, pchan->desc->v_lli);
415
416 irq_reg = pchan->idx / DMA_IRQ_CHAN_NR;
417 irq_offset = pchan->idx % DMA_IRQ_CHAN_NR;
418
419 irq_val = readl(sdev->base + DMA_IRQ_EN(irq_offset));
420 irq_val |= DMA_IRQ_QUEUE << (irq_offset * DMA_IRQ_CHAN_WIDTH);
421 writel(irq_val, sdev->base + DMA_IRQ_EN(irq_offset));
422
423 writel(pchan->desc->p_lli, pchan->base + DMA_CHAN_LLI_ADDR);
424 writel(DMA_CHAN_ENABLE_START, pchan->base + DMA_CHAN_ENABLE);
425
426 sun6i_dma_dump_com_regs(sdev);
427 sun6i_dma_dump_chan_regs(sdev, pchan);
428
429 return 0;
430}
431
432static void sun6i_dma_tasklet(unsigned long data)
433{
434 struct sun6i_dma_dev *sdev = (struct sun6i_dma_dev *)data;
435 struct sun6i_vchan *vchan;
436 struct sun6i_pchan *pchan;
437 unsigned int pchan_alloc = 0;
438 unsigned int pchan_idx;
439
440 list_for_each_entry(vchan, &sdev->slave.channels, vc.chan.device_node) {
441 spin_lock_irq(&vchan->vc.lock);
442
443 pchan = vchan->phy;
444
445 if (pchan && pchan->done) {
446 if (sun6i_dma_start_desc(vchan)) {
447 /*
448 * No current txd associated with this channel
449 */
450 dev_dbg(sdev->slave.dev, "pchan %u: free\n",
451 pchan->idx);
452
453 /* Mark this channel free */
454 vchan->phy = NULL;
455 pchan->vchan = NULL;
456 }
457 }
458 spin_unlock_irq(&vchan->vc.lock);
459 }
460
461 spin_lock_irq(&sdev->lock);
462 for (pchan_idx = 0; pchan_idx < NR_MAX_CHANNELS; pchan_idx++) {
463 pchan = &sdev->pchans[pchan_idx];
464
465 if (pchan->vchan || list_empty(&sdev->pending))
466 continue;
467
468 vchan = list_first_entry(&sdev->pending,
469 struct sun6i_vchan, node);
470
471 /* Remove from pending channels */
472 list_del_init(&vchan->node);
473 pchan_alloc |= BIT(pchan_idx);
474
475 /* Mark this channel allocated */
476 pchan->vchan = vchan;
477 vchan->phy = pchan;
478 dev_dbg(sdev->slave.dev, "pchan %u: alloc vchan %p\n",
479 pchan->idx, &vchan->vc);
480 }
481 spin_unlock_irq(&sdev->lock);
482
483 for (pchan_idx = 0; pchan_idx < NR_MAX_CHANNELS; pchan_idx++) {
484 if (!(pchan_alloc & BIT(pchan_idx)))
485 continue;
486
487 pchan = sdev->pchans + pchan_idx;
488 vchan = pchan->vchan;
489 if (vchan) {
490 spin_lock_irq(&vchan->vc.lock);
491 sun6i_dma_start_desc(vchan);
492 spin_unlock_irq(&vchan->vc.lock);
493 }
494 }
495}
496
497static irqreturn_t sun6i_dma_interrupt(int irq, void *dev_id)
498{
499 struct sun6i_dma_dev *sdev = dev_id;
500 struct sun6i_vchan *vchan;
501 struct sun6i_pchan *pchan;
502 int i, j, ret = IRQ_NONE;
503 u32 status;
504
505 for (i = 0; i < 2; i++) {
506 status = readl(sdev->base + DMA_IRQ_STAT(i));
507 if (!status)
508 continue;
509
510 dev_dbg(sdev->slave.dev, "DMA irq status %s: 0x%x\n",
511 i ? "high" : "low", status);
512
513 writel(status, sdev->base + DMA_IRQ_STAT(i));
514
515 for (j = 0; (j < 8) && status; j++) {
516 if (status & DMA_IRQ_QUEUE) {
517 pchan = sdev->pchans + j;
518 vchan = pchan->vchan;
519
520 if (vchan) {
521 spin_lock(&vchan->vc.lock);
522 vchan_cookie_complete(&pchan->desc->vd);
523 pchan->done = pchan->desc;
524 spin_unlock(&vchan->vc.lock);
525 }
526 }
527
528 status = status >> 4;
529 }
530
531 if (!atomic_read(&sdev->tasklet_shutdown))
532 tasklet_schedule(&sdev->task);
533 ret = IRQ_HANDLED;
534 }
535
536 return ret;
537}
538
539static struct dma_async_tx_descriptor *sun6i_dma_prep_dma_memcpy(
540 struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
541 size_t len, unsigned long flags)
542{
543 struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(chan->device);
544 struct sun6i_vchan *vchan = to_sun6i_vchan(chan);
545 struct dma_slave_config *sconfig = &vchan->cfg;
546 struct sun6i_dma_lli *v_lli;
547 struct sun6i_desc *txd;
548 dma_addr_t p_lli;
549 int ret;
550
551 dev_dbg(chan2dev(chan),
552 "%s; chan: %d, dest: %pad, src: %pad, len: %zu. flags: 0x%08lx\n",
553 __func__, vchan->vc.chan.chan_id, &dest, &src, len, flags);
554
555 if (!len)
556 return NULL;
557
558 txd = kzalloc(sizeof(*txd), GFP_NOWAIT);
559 if (!txd)
560 return NULL;
561
562 v_lli = dma_pool_alloc(sdev->pool, GFP_NOWAIT, &p_lli);
563 if (!v_lli) {
564 dev_err(sdev->slave.dev, "Failed to alloc lli memory\n");
565 kfree(txd);
566 return NULL;
567 }
568
569 ret = sun6i_dma_cfg_lli(v_lli, src, dest, len, sconfig);
570 if (ret)
571 goto err_dma_free;
572
573 v_lli->cfg |= DMA_CHAN_CFG_SRC_DRQ(DRQ_SDRAM) |
574 DMA_CHAN_CFG_DST_DRQ(DRQ_SDRAM) |
575 DMA_CHAN_CFG_DST_LINEAR_MODE |
576 DMA_CHAN_CFG_SRC_LINEAR_MODE;
577
578 sun6i_dma_lli_add(NULL, v_lli, p_lli, txd);
579
580 sun6i_dma_dump_lli(vchan, v_lli);
581
582 return vchan_tx_prep(&vchan->vc, &txd->vd, flags);
583
584err_dma_free:
585 dma_pool_free(sdev->pool, v_lli, p_lli);
586 return NULL;
587}
588
589static struct dma_async_tx_descriptor *sun6i_dma_prep_slave_sg(
590 struct dma_chan *chan, struct scatterlist *sgl,
591 unsigned int sg_len, enum dma_transfer_direction dir,
592 unsigned long flags, void *context)
593{
594 struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(chan->device);
595 struct sun6i_vchan *vchan = to_sun6i_vchan(chan);
596 struct dma_slave_config *sconfig = &vchan->cfg;
597 struct sun6i_dma_lli *v_lli, *prev = NULL;
598 struct sun6i_desc *txd;
599 struct scatterlist *sg;
600 dma_addr_t p_lli;
601 int i, ret;
602
603 if (!sgl)
604 return NULL;
605
606 if (!is_slave_direction(dir)) {
607 dev_err(chan2dev(chan), "Invalid DMA direction\n");
608 return NULL;
609 }
610
611 txd = kzalloc(sizeof(*txd), GFP_NOWAIT);
612 if (!txd)
613 return NULL;
614
615 for_each_sg(sgl, sg, sg_len, i) {
616 v_lli = dma_pool_alloc(sdev->pool, GFP_NOWAIT, &p_lli);
617 if (!v_lli) {
618 kfree(txd);
619 return NULL;
620 }
621
622 if (dir == DMA_MEM_TO_DEV) {
623 ret = sun6i_dma_cfg_lli(v_lli, sg_dma_address(sg),
624 sconfig->dst_addr, sg_dma_len(sg),
625 sconfig);
626 if (ret)
627 goto err_dma_free;
628
629 v_lli->cfg |= DMA_CHAN_CFG_DST_IO_MODE |
630 DMA_CHAN_CFG_SRC_LINEAR_MODE |
631 DMA_CHAN_CFG_SRC_DRQ(DRQ_SDRAM) |
632 DMA_CHAN_CFG_DST_DRQ(vchan->port);
633
634 dev_dbg(chan2dev(chan),
Vinod Koul7f5e03e2014-07-28 12:32:51 +0530635 "%s; chan: %d, dest: %pad, src: %pad, len: %u. flags: 0x%08lx\n",
Maxime Ripard55585932014-07-17 21:46:16 +0200636 __func__, vchan->vc.chan.chan_id,
637 &sconfig->dst_addr, &sg_dma_address(sg),
638 sg_dma_len(sg), flags);
639
640 } else {
641 ret = sun6i_dma_cfg_lli(v_lli, sconfig->src_addr,
642 sg_dma_address(sg), sg_dma_len(sg),
643 sconfig);
644 if (ret)
645 goto err_dma_free;
646
647 v_lli->cfg |= DMA_CHAN_CFG_DST_LINEAR_MODE |
648 DMA_CHAN_CFG_SRC_IO_MODE |
649 DMA_CHAN_CFG_DST_DRQ(DRQ_SDRAM) |
650 DMA_CHAN_CFG_SRC_DRQ(vchan->port);
651
652 dev_dbg(chan2dev(chan),
Vinod Koul7f5e03e2014-07-28 12:32:51 +0530653 "%s; chan: %d, dest: %pad, src: %pad, len: %u. flags: 0x%08lx\n",
Maxime Ripard55585932014-07-17 21:46:16 +0200654 __func__, vchan->vc.chan.chan_id,
655 &sg_dma_address(sg), &sconfig->src_addr,
656 sg_dma_len(sg), flags);
657 }
658
659 prev = sun6i_dma_lli_add(prev, v_lli, p_lli, txd);
660 }
661
662 dev_dbg(chan2dev(chan), "First: %pad\n", &txd->p_lli);
663 for (prev = txd->v_lli; prev; prev = prev->v_lli_next)
664 sun6i_dma_dump_lli(vchan, prev);
665
666 return vchan_tx_prep(&vchan->vc, &txd->vd, flags);
667
668err_dma_free:
669 dma_pool_free(sdev->pool, v_lli, p_lli);
670 return NULL;
671}
672
673static int sun6i_dma_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
674 unsigned long arg)
675{
676 struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(chan->device);
677 struct sun6i_vchan *vchan = to_sun6i_vchan(chan);
678 struct sun6i_pchan *pchan = vchan->phy;
679 unsigned long flags;
680 int ret = 0;
681
682 switch (cmd) {
683 case DMA_RESUME:
684 dev_dbg(chan2dev(chan), "vchan %p: resume\n", &vchan->vc);
685
686 spin_lock_irqsave(&vchan->vc.lock, flags);
687
688 if (pchan) {
689 writel(DMA_CHAN_PAUSE_RESUME,
690 pchan->base + DMA_CHAN_PAUSE);
691 } else if (!list_empty(&vchan->vc.desc_issued)) {
692 spin_lock(&sdev->lock);
693 list_add_tail(&vchan->node, &sdev->pending);
694 spin_unlock(&sdev->lock);
695 }
696
697 spin_unlock_irqrestore(&vchan->vc.lock, flags);
698 break;
699
700 case DMA_PAUSE:
701 dev_dbg(chan2dev(chan), "vchan %p: pause\n", &vchan->vc);
702
703 if (pchan) {
704 writel(DMA_CHAN_PAUSE_PAUSE,
705 pchan->base + DMA_CHAN_PAUSE);
706 } else {
707 spin_lock(&sdev->lock);
708 list_del_init(&vchan->node);
709 spin_unlock(&sdev->lock);
710 }
711 break;
712
713 case DMA_TERMINATE_ALL:
714 ret = sun6i_dma_terminate_all(vchan);
715 break;
716 case DMA_SLAVE_CONFIG:
717 memcpy(&vchan->cfg, (void *)arg, sizeof(struct dma_slave_config));
718 break;
719 default:
720 ret = -ENXIO;
721 break;
722 }
723 return ret;
724}
725
726static enum dma_status sun6i_dma_tx_status(struct dma_chan *chan,
727 dma_cookie_t cookie,
728 struct dma_tx_state *state)
729{
730 struct sun6i_vchan *vchan = to_sun6i_vchan(chan);
731 struct sun6i_pchan *pchan = vchan->phy;
732 struct sun6i_dma_lli *lli;
733 struct virt_dma_desc *vd;
734 struct sun6i_desc *txd;
735 enum dma_status ret;
736 unsigned long flags;
737 size_t bytes = 0;
738
739 ret = dma_cookie_status(chan, cookie, state);
740 if (ret == DMA_COMPLETE)
741 return ret;
742
743 spin_lock_irqsave(&vchan->vc.lock, flags);
744
745 vd = vchan_find_desc(&vchan->vc, cookie);
746 txd = to_sun6i_desc(&vd->tx);
747
748 if (vd) {
749 for (lli = txd->v_lli; lli != NULL; lli = lli->v_lli_next)
750 bytes += lli->len;
751 } else if (!pchan || !pchan->desc) {
752 bytes = 0;
753 } else {
754 bytes = readl(pchan->base + DMA_CHAN_CUR_CNT);
755 }
756
757 spin_unlock_irqrestore(&vchan->vc.lock, flags);
758
759 dma_set_residue(state, bytes);
760
761 return ret;
762}
763
764static void sun6i_dma_issue_pending(struct dma_chan *chan)
765{
766 struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(chan->device);
767 struct sun6i_vchan *vchan = to_sun6i_vchan(chan);
768 unsigned long flags;
769
770 spin_lock_irqsave(&vchan->vc.lock, flags);
771
772 if (vchan_issue_pending(&vchan->vc)) {
773 spin_lock(&sdev->lock);
774
775 if (!vchan->phy && list_empty(&vchan->node)) {
776 list_add_tail(&vchan->node, &sdev->pending);
777 tasklet_schedule(&sdev->task);
778 dev_dbg(chan2dev(chan), "vchan %p: issued\n",
779 &vchan->vc);
780 }
781
782 spin_unlock(&sdev->lock);
783 } else {
784 dev_dbg(chan2dev(chan), "vchan %p: nothing to issue\n",
785 &vchan->vc);
786 }
787
788 spin_unlock_irqrestore(&vchan->vc.lock, flags);
789}
790
791static int sun6i_dma_alloc_chan_resources(struct dma_chan *chan)
792{
793 return 0;
794}
795
796static void sun6i_dma_free_chan_resources(struct dma_chan *chan)
797{
798 struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(chan->device);
799 struct sun6i_vchan *vchan = to_sun6i_vchan(chan);
800 unsigned long flags;
801
802 spin_lock_irqsave(&sdev->lock, flags);
803 list_del_init(&vchan->node);
804 spin_unlock_irqrestore(&sdev->lock, flags);
805
806 vchan_free_chan_resources(&vchan->vc);
807}
808
809static struct dma_chan *sun6i_dma_of_xlate(struct of_phandle_args *dma_spec,
810 struct of_dma *ofdma)
811{
812 struct sun6i_dma_dev *sdev = ofdma->of_dma_data;
813 struct sun6i_vchan *vchan;
814 struct dma_chan *chan;
815 u8 port = dma_spec->args[0];
816
817 if (port > NR_MAX_REQUESTS)
818 return NULL;
819
820 chan = dma_get_any_slave_channel(&sdev->slave);
821 if (!chan)
822 return NULL;
823
824 vchan = to_sun6i_vchan(chan);
825 vchan->port = port;
826
827 return chan;
828}
829
830static inline void sun6i_kill_tasklet(struct sun6i_dma_dev *sdev)
831{
832 /* Disable all interrupts from DMA */
833 writel(0, sdev->base + DMA_IRQ_EN(0));
834 writel(0, sdev->base + DMA_IRQ_EN(1));
835
836 /* Prevent spurious interrupts from scheduling the tasklet */
837 atomic_inc(&sdev->tasklet_shutdown);
838
Maxime Ripard174427c2014-07-30 10:30:22 +0200839 /* Make sure we won't have any further interrupts */
840 devm_free_irq(sdev->slave.dev, sdev->irq, sdev);
Maxime Ripard55585932014-07-17 21:46:16 +0200841
842 /* Actually prevent the tasklet from being scheduled */
843 tasklet_kill(&sdev->task);
844}
845
846static inline void sun6i_dma_free(struct sun6i_dma_dev *sdev)
847{
848 int i;
849
850 for (i = 0; i < NR_MAX_VCHANS; i++) {
851 struct sun6i_vchan *vchan = &sdev->vchans[i];
852
853 list_del(&vchan->vc.chan.device_node);
854 tasklet_kill(&vchan->vc.task);
855 }
856}
857
858static int sun6i_dma_probe(struct platform_device *pdev)
859{
860 struct sun6i_dma_dev *sdc;
861 struct resource *res;
862 struct clk *mux, *pll6;
863 int ret, i;
864
865 sdc = devm_kzalloc(&pdev->dev, sizeof(*sdc), GFP_KERNEL);
866 if (!sdc)
867 return -ENOMEM;
868
869 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
870 sdc->base = devm_ioremap_resource(&pdev->dev, res);
871 if (IS_ERR(sdc->base))
872 return PTR_ERR(sdc->base);
873
874 sdc->irq = platform_get_irq(pdev, 0);
875 if (sdc->irq < 0) {
876 dev_err(&pdev->dev, "Cannot claim IRQ\n");
877 return sdc->irq;
878 }
879
880 sdc->clk = devm_clk_get(&pdev->dev, NULL);
881 if (IS_ERR(sdc->clk)) {
882 dev_err(&pdev->dev, "No clock specified\n");
883 return PTR_ERR(sdc->clk);
884 }
885
886 mux = clk_get(NULL, "ahb1_mux");
887 if (IS_ERR(mux)) {
888 dev_err(&pdev->dev, "Couldn't get AHB1 Mux\n");
889 return PTR_ERR(mux);
890 }
891
892 pll6 = clk_get(NULL, "pll6");
893 if (IS_ERR(pll6)) {
894 dev_err(&pdev->dev, "Couldn't get PLL6\n");
895 clk_put(mux);
896 return PTR_ERR(pll6);
897 }
898
899 ret = clk_set_parent(mux, pll6);
900 clk_put(pll6);
901 clk_put(mux);
902
903 if (ret) {
904 dev_err(&pdev->dev, "Couldn't reparent AHB1 on PLL6\n");
905 return ret;
906 }
907
908 sdc->rstc = devm_reset_control_get(&pdev->dev, NULL);
909 if (IS_ERR(sdc->rstc)) {
910 dev_err(&pdev->dev, "No reset controller specified\n");
911 return PTR_ERR(sdc->rstc);
912 }
913
914 sdc->pool = dmam_pool_create(dev_name(&pdev->dev), &pdev->dev,
915 sizeof(struct sun6i_dma_lli), 4, 0);
916 if (!sdc->pool) {
917 dev_err(&pdev->dev, "No memory for descriptors dma pool\n");
918 return -ENOMEM;
919 }
920
921 platform_set_drvdata(pdev, sdc);
922 INIT_LIST_HEAD(&sdc->pending);
923 spin_lock_init(&sdc->lock);
924
925 dma_cap_set(DMA_PRIVATE, sdc->slave.cap_mask);
926 dma_cap_set(DMA_MEMCPY, sdc->slave.cap_mask);
927 dma_cap_set(DMA_SLAVE, sdc->slave.cap_mask);
928
929 INIT_LIST_HEAD(&sdc->slave.channels);
930 sdc->slave.device_alloc_chan_resources = sun6i_dma_alloc_chan_resources;
931 sdc->slave.device_free_chan_resources = sun6i_dma_free_chan_resources;
932 sdc->slave.device_tx_status = sun6i_dma_tx_status;
933 sdc->slave.device_issue_pending = sun6i_dma_issue_pending;
934 sdc->slave.device_prep_slave_sg = sun6i_dma_prep_slave_sg;
935 sdc->slave.device_prep_dma_memcpy = sun6i_dma_prep_dma_memcpy;
936 sdc->slave.device_control = sun6i_dma_control;
937 sdc->slave.chancnt = NR_MAX_VCHANS;
938
939 sdc->slave.dev = &pdev->dev;
940
941 sdc->pchans = devm_kcalloc(&pdev->dev, NR_MAX_CHANNELS,
942 sizeof(struct sun6i_pchan), GFP_KERNEL);
943 if (!sdc->pchans)
944 return -ENOMEM;
945
946 sdc->vchans = devm_kcalloc(&pdev->dev, NR_MAX_VCHANS,
947 sizeof(struct sun6i_vchan), GFP_KERNEL);
948 if (!sdc->vchans)
949 return -ENOMEM;
950
951 tasklet_init(&sdc->task, sun6i_dma_tasklet, (unsigned long)sdc);
952
953 for (i = 0; i < NR_MAX_CHANNELS; i++) {
954 struct sun6i_pchan *pchan = &sdc->pchans[i];
955
956 pchan->idx = i;
957 pchan->base = sdc->base + 0x100 + i * 0x40;
958 }
959
960 for (i = 0; i < NR_MAX_VCHANS; i++) {
961 struct sun6i_vchan *vchan = &sdc->vchans[i];
962
963 INIT_LIST_HEAD(&vchan->node);
964 vchan->vc.desc_free = sun6i_dma_free_desc;
965 vchan_init(&vchan->vc, &sdc->slave);
966 }
967
968 ret = reset_control_deassert(sdc->rstc);
969 if (ret) {
970 dev_err(&pdev->dev, "Couldn't deassert the device from reset\n");
971 goto err_chan_free;
972 }
973
974 ret = clk_prepare_enable(sdc->clk);
975 if (ret) {
976 dev_err(&pdev->dev, "Couldn't enable the clock\n");
977 goto err_reset_assert;
978 }
979
980 ret = devm_request_irq(&pdev->dev, sdc->irq, sun6i_dma_interrupt, 0,
981 dev_name(&pdev->dev), sdc);
982 if (ret) {
983 dev_err(&pdev->dev, "Cannot request IRQ\n");
984 goto err_clk_disable;
985 }
986
987 ret = dma_async_device_register(&sdc->slave);
988 if (ret) {
989 dev_warn(&pdev->dev, "Failed to register DMA engine device\n");
990 goto err_irq_disable;
991 }
992
993 ret = of_dma_controller_register(pdev->dev.of_node, sun6i_dma_of_xlate,
994 sdc);
995 if (ret) {
996 dev_err(&pdev->dev, "of_dma_controller_register failed\n");
997 goto err_dma_unregister;
998 }
999
1000 return 0;
1001
1002err_dma_unregister:
1003 dma_async_device_unregister(&sdc->slave);
1004err_irq_disable:
1005 sun6i_kill_tasklet(sdc);
1006err_clk_disable:
1007 clk_disable_unprepare(sdc->clk);
1008err_reset_assert:
1009 reset_control_assert(sdc->rstc);
1010err_chan_free:
1011 sun6i_dma_free(sdc);
1012 return ret;
1013}
1014
1015static int sun6i_dma_remove(struct platform_device *pdev)
1016{
1017 struct sun6i_dma_dev *sdc = platform_get_drvdata(pdev);
1018
1019 of_dma_controller_free(pdev->dev.of_node);
1020 dma_async_device_unregister(&sdc->slave);
1021
1022 sun6i_kill_tasklet(sdc);
1023
1024 clk_disable_unprepare(sdc->clk);
1025 reset_control_assert(sdc->rstc);
1026
1027 sun6i_dma_free(sdc);
1028
1029 return 0;
1030}
1031
1032static struct of_device_id sun6i_dma_match[] = {
1033 { .compatible = "allwinner,sun6i-a31-dma" },
1034 { /* sentinel */ }
1035};
1036
1037static struct platform_driver sun6i_dma_driver = {
1038 .probe = sun6i_dma_probe,
1039 .remove = sun6i_dma_remove,
1040 .driver = {
1041 .name = "sun6i-dma",
1042 .of_match_table = sun6i_dma_match,
1043 },
1044};
1045module_platform_driver(sun6i_dma_driver);
1046
1047MODULE_DESCRIPTION("Allwinner A31 DMA Controller Driver");
1048MODULE_AUTHOR("Sugar <shuge@allwinnertech.com>");
1049MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
1050MODULE_LICENSE("GPL");