1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2013 - 2015 Linaro Ltd.
4 * Copyright (c) 2013 Hisilicon Limited.
6 #include <linux/sched.h>
7 #include <linux/device.h>
8 #include <linux/dma-mapping.h>
9 #include <linux/dmapool.h>
10 #include <linux/dmaengine.h>
11 #include <linux/init.h>
12 #include <linux/interrupt.h>
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/platform_device.h>
16 #include <linux/slab.h>
17 #include <linux/spinlock.h>
18 #include <linux/of_device.h>
20 #include <linux/clk.h>
21 #include <linux/of_dma.h>
25 #define DRIVER_NAME "k3-dma"
26 #define DMA_MAX_SIZE 0x1ffc
27 #define DMA_CYCLIC_MAX_PERIOD 0x1000
28 #define LLI_BLOCK_SIZE (4 * PAGE_SIZE)
35 #define INT_TC1_MASK 0x18
36 #define INT_TC2_MASK 0x1c
37 #define INT_ERR1_MASK 0x20
38 #define INT_ERR2_MASK 0x24
39 #define INT_TC1_RAW 0x600
40 #define INT_TC2_RAW 0x608
41 #define INT_ERR1_RAW 0x610
42 #define INT_ERR2_RAW 0x618
45 #define CX_CUR_CNT 0x704
53 #define CX_LLI_CHAIN_EN 0x2
55 #define CX_CFG_NODEIRQ BIT(1)
56 #define CX_CFG_MEM2PER (0x1 << 2)
57 #define CX_CFG_PER2MEM (0x2 << 2)
58 #define CX_CFG_SRCINCR (0x1 << 31)
59 #define CX_CFG_DSTINCR (0x1 << 30)
70 struct k3_dma_desc_sw
{
71 struct virt_dma_desc vd
;
72 dma_addr_t desc_hw_lli
;
75 struct k3_desc_hw
*desc_hw
;
82 struct virt_dma_chan vc
;
83 struct k3_dma_phy
*phy
;
84 struct list_head node
;
86 enum dma_status status
;
88 struct dma_slave_config slave_config
;
94 struct k3_dma_chan
*vchan
;
95 struct k3_dma_desc_sw
*ds_run
;
96 struct k3_dma_desc_sw
*ds_done
;
100 struct dma_device slave
;
102 struct tasklet_struct task
;
104 struct list_head chan_pending
;
105 struct k3_dma_phy
*phy
;
106 struct k3_dma_chan
*chans
;
108 struct dma_pool
*pool
;
111 u32 dma_channel_mask
;
116 #define K3_FLAG_NOCLK BIT(1)
118 struct k3dma_soc_data
{
123 #define to_k3_dma(dmadev) container_of(dmadev, struct k3_dma_dev, slave)
125 static int k3_dma_config_write(struct dma_chan
*chan
,
126 enum dma_transfer_direction dir
,
127 struct dma_slave_config
*cfg
);
129 static struct k3_dma_chan
*to_k3_chan(struct dma_chan
*chan
)
131 return container_of(chan
, struct k3_dma_chan
, vc
.chan
);
134 static void k3_dma_pause_dma(struct k3_dma_phy
*phy
, bool on
)
139 val
= readl_relaxed(phy
->base
+ CX_CFG
);
141 writel_relaxed(val
, phy
->base
+ CX_CFG
);
143 val
= readl_relaxed(phy
->base
+ CX_CFG
);
145 writel_relaxed(val
, phy
->base
+ CX_CFG
);
149 static void k3_dma_terminate_chan(struct k3_dma_phy
*phy
, struct k3_dma_dev
*d
)
153 k3_dma_pause_dma(phy
, false);
155 val
= 0x1 << phy
->idx
;
156 writel_relaxed(val
, d
->base
+ INT_TC1_RAW
);
157 writel_relaxed(val
, d
->base
+ INT_TC2_RAW
);
158 writel_relaxed(val
, d
->base
+ INT_ERR1_RAW
);
159 writel_relaxed(val
, d
->base
+ INT_ERR2_RAW
);
162 static void k3_dma_set_desc(struct k3_dma_phy
*phy
, struct k3_desc_hw
*hw
)
164 writel_relaxed(hw
->lli
, phy
->base
+ CX_LLI
);
165 writel_relaxed(hw
->count
, phy
->base
+ CX_CNT0
);
166 writel_relaxed(hw
->saddr
, phy
->base
+ CX_SRC
);
167 writel_relaxed(hw
->daddr
, phy
->base
+ CX_DST
);
168 writel_relaxed(hw
->config
, phy
->base
+ CX_CFG
);
171 static u32
k3_dma_get_curr_cnt(struct k3_dma_dev
*d
, struct k3_dma_phy
*phy
)
175 cnt
= readl_relaxed(d
->base
+ CX_CUR_CNT
+ phy
->idx
* 0x10);
180 static u32
k3_dma_get_curr_lli(struct k3_dma_phy
*phy
)
182 return readl_relaxed(phy
->base
+ CX_LLI
);
185 static u32
k3_dma_get_chan_stat(struct k3_dma_dev
*d
)
187 return readl_relaxed(d
->base
+ CH_STAT
);
190 static void k3_dma_enable_dma(struct k3_dma_dev
*d
, bool on
)
193 /* set same priority */
194 writel_relaxed(0x0, d
->base
+ CH_PRI
);
197 writel_relaxed(0xffff, d
->base
+ INT_TC1_MASK
);
198 writel_relaxed(0xffff, d
->base
+ INT_TC2_MASK
);
199 writel_relaxed(0xffff, d
->base
+ INT_ERR1_MASK
);
200 writel_relaxed(0xffff, d
->base
+ INT_ERR2_MASK
);
203 writel_relaxed(0x0, d
->base
+ INT_TC1_MASK
);
204 writel_relaxed(0x0, d
->base
+ INT_TC2_MASK
);
205 writel_relaxed(0x0, d
->base
+ INT_ERR1_MASK
);
206 writel_relaxed(0x0, d
->base
+ INT_ERR2_MASK
);
210 static irqreturn_t
k3_dma_int_handler(int irq
, void *dev_id
)
212 struct k3_dma_dev
*d
= (struct k3_dma_dev
*)dev_id
;
213 struct k3_dma_phy
*p
;
214 struct k3_dma_chan
*c
;
215 u32 stat
= readl_relaxed(d
->base
+ INT_STAT
);
216 u32 tc1
= readl_relaxed(d
->base
+ INT_TC1
);
217 u32 tc2
= readl_relaxed(d
->base
+ INT_TC2
);
218 u32 err1
= readl_relaxed(d
->base
+ INT_ERR1
);
219 u32 err2
= readl_relaxed(d
->base
+ INT_ERR2
);
225 if (likely(tc1
& BIT(i
)) || (tc2
& BIT(i
))) {
229 if (c
&& (tc1
& BIT(i
))) {
230 spin_lock(&c
->vc
.lock
);
231 if (p
->ds_run
!= NULL
) {
232 vchan_cookie_complete(&p
->ds_run
->vd
);
233 p
->ds_done
= p
->ds_run
;
236 spin_unlock(&c
->vc
.lock
);
238 if (c
&& (tc2
& BIT(i
))) {
239 spin_lock(&c
->vc
.lock
);
240 if (p
->ds_run
!= NULL
)
241 vchan_cyclic_callback(&p
->ds_run
->vd
);
242 spin_unlock(&c
->vc
.lock
);
246 if (unlikely((err1
& BIT(i
)) || (err2
& BIT(i
))))
247 dev_warn(d
->slave
.dev
, "DMA ERR\n");
250 writel_relaxed(irq_chan
, d
->base
+ INT_TC1_RAW
);
251 writel_relaxed(irq_chan
, d
->base
+ INT_TC2_RAW
);
252 writel_relaxed(err1
, d
->base
+ INT_ERR1_RAW
);
253 writel_relaxed(err2
, d
->base
+ INT_ERR2_RAW
);
256 tasklet_schedule(&d
->task
);
258 if (irq_chan
|| err1
|| err2
)
264 static int k3_dma_start_txd(struct k3_dma_chan
*c
)
266 struct k3_dma_dev
*d
= to_k3_dma(c
->vc
.chan
.device
);
267 struct virt_dma_desc
*vd
= vchan_next_desc(&c
->vc
);
272 if (BIT(c
->phy
->idx
) & k3_dma_get_chan_stat(d
))
275 /* Avoid losing track of ds_run if a transaction is in flight */
280 struct k3_dma_desc_sw
*ds
=
281 container_of(vd
, struct k3_dma_desc_sw
, vd
);
283 * fetch and remove request from vc->desc_issued
284 * so vc->desc_issued only contains desc pending
286 list_del(&ds
->vd
.node
);
289 c
->phy
->ds_done
= NULL
;
291 k3_dma_set_desc(c
->phy
, &ds
->desc_hw
[0]);
294 c
->phy
->ds_run
= NULL
;
295 c
->phy
->ds_done
= NULL
;
299 static void k3_dma_tasklet(struct tasklet_struct
*t
)
301 struct k3_dma_dev
*d
= from_tasklet(d
, t
, task
);
302 struct k3_dma_phy
*p
;
303 struct k3_dma_chan
*c
, *cn
;
304 unsigned pch
, pch_alloc
= 0;
306 /* check new dma request of running channel in vc->desc_issued */
307 list_for_each_entry_safe(c
, cn
, &d
->slave
.channels
, vc
.chan
.device_node
) {
308 spin_lock_irq(&c
->vc
.lock
);
310 if (p
&& p
->ds_done
) {
311 if (k3_dma_start_txd(c
)) {
312 /* No current txd associated with this channel */
313 dev_dbg(d
->slave
.dev
, "pchan %u: free\n", p
->idx
);
314 /* Mark this channel free */
319 spin_unlock_irq(&c
->vc
.lock
);
322 /* check new channel request in d->chan_pending */
323 spin_lock_irq(&d
->lock
);
324 for (pch
= 0; pch
< d
->dma_channels
; pch
++) {
325 if (!(d
->dma_channel_mask
& (1 << pch
)))
330 if (p
->vchan
== NULL
&& !list_empty(&d
->chan_pending
)) {
331 c
= list_first_entry(&d
->chan_pending
,
332 struct k3_dma_chan
, node
);
333 /* remove from d->chan_pending */
334 list_del_init(&c
->node
);
335 pch_alloc
|= 1 << pch
;
336 /* Mark this channel allocated */
339 dev_dbg(d
->slave
.dev
, "pchan %u: alloc vchan %p\n", pch
, &c
->vc
);
342 spin_unlock_irq(&d
->lock
);
344 for (pch
= 0; pch
< d
->dma_channels
; pch
++) {
345 if (!(d
->dma_channel_mask
& (1 << pch
)))
348 if (pch_alloc
& (1 << pch
)) {
352 spin_lock_irq(&c
->vc
.lock
);
354 spin_unlock_irq(&c
->vc
.lock
);
360 static void k3_dma_free_chan_resources(struct dma_chan
*chan
)
362 struct k3_dma_chan
*c
= to_k3_chan(chan
);
363 struct k3_dma_dev
*d
= to_k3_dma(chan
->device
);
366 spin_lock_irqsave(&d
->lock
, flags
);
367 list_del_init(&c
->node
);
368 spin_unlock_irqrestore(&d
->lock
, flags
);
370 vchan_free_chan_resources(&c
->vc
);
374 static enum dma_status
k3_dma_tx_status(struct dma_chan
*chan
,
375 dma_cookie_t cookie
, struct dma_tx_state
*state
)
377 struct k3_dma_chan
*c
= to_k3_chan(chan
);
378 struct k3_dma_dev
*d
= to_k3_dma(chan
->device
);
379 struct k3_dma_phy
*p
;
380 struct virt_dma_desc
*vd
;
385 ret
= dma_cookie_status(&c
->vc
.chan
, cookie
, state
);
386 if (ret
== DMA_COMPLETE
)
389 spin_lock_irqsave(&c
->vc
.lock
, flags
);
394 * If the cookie is on our issue queue, then the residue is
397 vd
= vchan_find_desc(&c
->vc
, cookie
);
398 if (vd
&& !c
->cyclic
) {
399 bytes
= container_of(vd
, struct k3_dma_desc_sw
, vd
)->size
;
400 } else if ((!p
) || (!p
->ds_run
)) {
403 struct k3_dma_desc_sw
*ds
= p
->ds_run
;
404 u32 clli
= 0, index
= 0;
406 bytes
= k3_dma_get_curr_cnt(d
, p
);
407 clli
= k3_dma_get_curr_lli(p
);
408 index
= ((clli
- ds
->desc_hw_lli
) /
409 sizeof(struct k3_desc_hw
)) + 1;
410 for (; index
< ds
->desc_num
; index
++) {
411 bytes
+= ds
->desc_hw
[index
].count
;
413 if (!ds
->desc_hw
[index
].lli
)
417 spin_unlock_irqrestore(&c
->vc
.lock
, flags
);
418 dma_set_residue(state
, bytes
);
422 static void k3_dma_issue_pending(struct dma_chan
*chan
)
424 struct k3_dma_chan
*c
= to_k3_chan(chan
);
425 struct k3_dma_dev
*d
= to_k3_dma(chan
->device
);
428 spin_lock_irqsave(&c
->vc
.lock
, flags
);
429 /* add request to vc->desc_issued */
430 if (vchan_issue_pending(&c
->vc
)) {
433 if (list_empty(&c
->node
)) {
434 /* if new channel, add chan_pending */
435 list_add_tail(&c
->node
, &d
->chan_pending
);
436 /* check in tasklet */
437 tasklet_schedule(&d
->task
);
438 dev_dbg(d
->slave
.dev
, "vchan %p: issued\n", &c
->vc
);
441 spin_unlock(&d
->lock
);
443 dev_dbg(d
->slave
.dev
, "vchan %p: nothing to issue\n", &c
->vc
);
444 spin_unlock_irqrestore(&c
->vc
.lock
, flags
);
447 static void k3_dma_fill_desc(struct k3_dma_desc_sw
*ds
, dma_addr_t dst
,
448 dma_addr_t src
, size_t len
, u32 num
, u32 ccfg
)
450 if (num
!= ds
->desc_num
- 1)
451 ds
->desc_hw
[num
].lli
= ds
->desc_hw_lli
+ (num
+ 1) *
452 sizeof(struct k3_desc_hw
);
454 ds
->desc_hw
[num
].lli
|= CX_LLI_CHAIN_EN
;
455 ds
->desc_hw
[num
].count
= len
;
456 ds
->desc_hw
[num
].saddr
= src
;
457 ds
->desc_hw
[num
].daddr
= dst
;
458 ds
->desc_hw
[num
].config
= ccfg
;
461 static struct k3_dma_desc_sw
*k3_dma_alloc_desc_resource(int num
,
462 struct dma_chan
*chan
)
464 struct k3_dma_chan
*c
= to_k3_chan(chan
);
465 struct k3_dma_desc_sw
*ds
;
466 struct k3_dma_dev
*d
= to_k3_dma(chan
->device
);
467 int lli_limit
= LLI_BLOCK_SIZE
/ sizeof(struct k3_desc_hw
);
469 if (num
> lli_limit
) {
470 dev_dbg(chan
->device
->dev
, "vch %p: sg num %d exceed max %d\n",
471 &c
->vc
, num
, lli_limit
);
475 ds
= kzalloc(sizeof(*ds
), GFP_NOWAIT
);
479 ds
->desc_hw
= dma_pool_zalloc(d
->pool
, GFP_NOWAIT
, &ds
->desc_hw_lli
);
481 dev_dbg(chan
->device
->dev
, "vch %p: dma alloc fail\n", &c
->vc
);
489 static struct dma_async_tx_descriptor
*k3_dma_prep_memcpy(
490 struct dma_chan
*chan
, dma_addr_t dst
, dma_addr_t src
,
491 size_t len
, unsigned long flags
)
493 struct k3_dma_chan
*c
= to_k3_chan(chan
);
494 struct k3_dma_desc_sw
*ds
;
501 num
= DIV_ROUND_UP(len
, DMA_MAX_SIZE
);
503 ds
= k3_dma_alloc_desc_resource(num
, chan
);
512 /* default is memtomem, without calling device_config */
513 c
->ccfg
= CX_CFG_SRCINCR
| CX_CFG_DSTINCR
| CX_CFG_EN
;
514 c
->ccfg
|= (0xf << 20) | (0xf << 24); /* burst = 16 */
515 c
->ccfg
|= (0x3 << 12) | (0x3 << 16); /* width = 64 bit */
519 copy
= min_t(size_t, len
, DMA_MAX_SIZE
);
520 k3_dma_fill_desc(ds
, dst
, src
, copy
, num
++, c
->ccfg
);
527 ds
->desc_hw
[num
-1].lli
= 0; /* end of link */
528 return vchan_tx_prep(&c
->vc
, &ds
->vd
, flags
);
531 static struct dma_async_tx_descriptor
*k3_dma_prep_slave_sg(
532 struct dma_chan
*chan
, struct scatterlist
*sgl
, unsigned int sglen
,
533 enum dma_transfer_direction dir
, unsigned long flags
, void *context
)
535 struct k3_dma_chan
*c
= to_k3_chan(chan
);
536 struct k3_dma_desc_sw
*ds
;
537 size_t len
, avail
, total
= 0;
538 struct scatterlist
*sg
;
539 dma_addr_t addr
, src
= 0, dst
= 0;
547 for_each_sg(sgl
, sg
, sglen
, i
) {
548 avail
= sg_dma_len(sg
);
549 if (avail
> DMA_MAX_SIZE
)
550 num
+= DIV_ROUND_UP(avail
, DMA_MAX_SIZE
) - 1;
553 ds
= k3_dma_alloc_desc_resource(num
, chan
);
557 k3_dma_config_write(chan
, dir
, &c
->slave_config
);
559 for_each_sg(sgl
, sg
, sglen
, i
) {
560 addr
= sg_dma_address(sg
);
561 avail
= sg_dma_len(sg
);
565 len
= min_t(size_t, avail
, DMA_MAX_SIZE
);
567 if (dir
== DMA_MEM_TO_DEV
) {
570 } else if (dir
== DMA_DEV_TO_MEM
) {
575 k3_dma_fill_desc(ds
, dst
, src
, len
, num
++, c
->ccfg
);
582 ds
->desc_hw
[num
-1].lli
= 0; /* end of link */
584 return vchan_tx_prep(&c
->vc
, &ds
->vd
, flags
);
587 static struct dma_async_tx_descriptor
*
588 k3_dma_prep_dma_cyclic(struct dma_chan
*chan
, dma_addr_t buf_addr
,
589 size_t buf_len
, size_t period_len
,
590 enum dma_transfer_direction dir
,
593 struct k3_dma_chan
*c
= to_k3_chan(chan
);
594 struct k3_dma_desc_sw
*ds
;
595 size_t len
, avail
, total
= 0;
596 dma_addr_t addr
, src
= 0, dst
= 0;
597 int num
= 1, since
= 0;
598 size_t modulo
= DMA_CYCLIC_MAX_PERIOD
;
601 dev_dbg(chan
->device
->dev
, "%s: buf %pad, dst %pad, buf len %zu, period_len = %zu, dir %d\n",
602 __func__
, &buf_addr
, &to_k3_chan(chan
)->dev_addr
,
603 buf_len
, period_len
, (int)dir
);
607 num
+= DIV_ROUND_UP(avail
, modulo
) - 1;
609 ds
= k3_dma_alloc_desc_resource(num
, chan
);
618 k3_dma_config_write(chan
, dir
, &c
->slave_config
);
620 if (period_len
< modulo
)
624 len
= min_t(size_t, avail
, modulo
);
626 if (dir
== DMA_MEM_TO_DEV
) {
629 } else if (dir
== DMA_DEV_TO_MEM
) {
634 if (since
>= period_len
) {
635 /* descriptor asks for TC2 interrupt on completion */
636 en_tc2
= CX_CFG_NODEIRQ
;
641 k3_dma_fill_desc(ds
, dst
, src
, len
, num
++, c
->ccfg
| en_tc2
);
647 /* "Cyclic" == end of link points back to start of link */
648 ds
->desc_hw
[num
- 1].lli
|= ds
->desc_hw_lli
;
652 return vchan_tx_prep(&c
->vc
, &ds
->vd
, flags
);
655 static int k3_dma_config(struct dma_chan
*chan
,
656 struct dma_slave_config
*cfg
)
658 struct k3_dma_chan
*c
= to_k3_chan(chan
);
660 memcpy(&c
->slave_config
, cfg
, sizeof(*cfg
));
665 static int k3_dma_config_write(struct dma_chan
*chan
,
666 enum dma_transfer_direction dir
,
667 struct dma_slave_config
*cfg
)
669 struct k3_dma_chan
*c
= to_k3_chan(chan
);
670 u32 maxburst
= 0, val
= 0;
671 enum dma_slave_buswidth width
= DMA_SLAVE_BUSWIDTH_UNDEFINED
;
673 if (dir
== DMA_DEV_TO_MEM
) {
674 c
->ccfg
= CX_CFG_DSTINCR
;
675 c
->dev_addr
= cfg
->src_addr
;
676 maxburst
= cfg
->src_maxburst
;
677 width
= cfg
->src_addr_width
;
678 } else if (dir
== DMA_MEM_TO_DEV
) {
679 c
->ccfg
= CX_CFG_SRCINCR
;
680 c
->dev_addr
= cfg
->dst_addr
;
681 maxburst
= cfg
->dst_maxburst
;
682 width
= cfg
->dst_addr_width
;
685 case DMA_SLAVE_BUSWIDTH_1_BYTE
:
686 case DMA_SLAVE_BUSWIDTH_2_BYTES
:
687 case DMA_SLAVE_BUSWIDTH_4_BYTES
:
688 case DMA_SLAVE_BUSWIDTH_8_BYTES
:
695 c
->ccfg
|= (val
<< 12) | (val
<< 16);
697 if ((maxburst
== 0) || (maxburst
> 16))
701 c
->ccfg
|= (val
<< 20) | (val
<< 24);
702 c
->ccfg
|= CX_CFG_MEM2PER
| CX_CFG_EN
;
704 /* specific request line */
705 c
->ccfg
|= c
->vc
.chan
.chan_id
<< 4;
710 static void k3_dma_free_desc(struct virt_dma_desc
*vd
)
712 struct k3_dma_desc_sw
*ds
=
713 container_of(vd
, struct k3_dma_desc_sw
, vd
);
714 struct k3_dma_dev
*d
= to_k3_dma(vd
->tx
.chan
->device
);
716 dma_pool_free(d
->pool
, ds
->desc_hw
, ds
->desc_hw_lli
);
720 static int k3_dma_terminate_all(struct dma_chan
*chan
)
722 struct k3_dma_chan
*c
= to_k3_chan(chan
);
723 struct k3_dma_dev
*d
= to_k3_dma(chan
->device
);
724 struct k3_dma_phy
*p
= c
->phy
;
728 dev_dbg(d
->slave
.dev
, "vchan %p: terminate all\n", &c
->vc
);
730 /* Prevent this channel being scheduled */
732 list_del_init(&c
->node
);
733 spin_unlock(&d
->lock
);
735 /* Clear the tx descriptor lists */
736 spin_lock_irqsave(&c
->vc
.lock
, flags
);
737 vchan_get_all_descriptors(&c
->vc
, &head
);
739 /* vchan is assigned to a pchan - stop the channel */
740 k3_dma_terminate_chan(p
, d
);
744 vchan_terminate_vdesc(&p
->ds_run
->vd
);
749 spin_unlock_irqrestore(&c
->vc
.lock
, flags
);
750 vchan_dma_desc_free_list(&c
->vc
, &head
);
755 static void k3_dma_synchronize(struct dma_chan
*chan
)
757 struct k3_dma_chan
*c
= to_k3_chan(chan
);
759 vchan_synchronize(&c
->vc
);
762 static int k3_dma_transfer_pause(struct dma_chan
*chan
)
764 struct k3_dma_chan
*c
= to_k3_chan(chan
);
765 struct k3_dma_dev
*d
= to_k3_dma(chan
->device
);
766 struct k3_dma_phy
*p
= c
->phy
;
768 dev_dbg(d
->slave
.dev
, "vchan %p: pause\n", &c
->vc
);
769 if (c
->status
== DMA_IN_PROGRESS
) {
770 c
->status
= DMA_PAUSED
;
772 k3_dma_pause_dma(p
, false);
775 list_del_init(&c
->node
);
776 spin_unlock(&d
->lock
);
783 static int k3_dma_transfer_resume(struct dma_chan
*chan
)
785 struct k3_dma_chan
*c
= to_k3_chan(chan
);
786 struct k3_dma_dev
*d
= to_k3_dma(chan
->device
);
787 struct k3_dma_phy
*p
= c
->phy
;
790 dev_dbg(d
->slave
.dev
, "vchan %p: resume\n", &c
->vc
);
791 spin_lock_irqsave(&c
->vc
.lock
, flags
);
792 if (c
->status
== DMA_PAUSED
) {
793 c
->status
= DMA_IN_PROGRESS
;
795 k3_dma_pause_dma(p
, true);
796 } else if (!list_empty(&c
->vc
.desc_issued
)) {
798 list_add_tail(&c
->node
, &d
->chan_pending
);
799 spin_unlock(&d
->lock
);
802 spin_unlock_irqrestore(&c
->vc
.lock
, flags
);
807 static const struct k3dma_soc_data k3_v1_dma_data
= {
811 static const struct k3dma_soc_data asp_v1_dma_data
= {
812 .flags
= K3_FLAG_NOCLK
,
815 static const struct of_device_id k3_pdma_dt_ids
[] = {
816 { .compatible
= "hisilicon,k3-dma-1.0",
817 .data
= &k3_v1_dma_data
819 { .compatible
= "hisilicon,hisi-pcm-asp-dma-1.0",
820 .data
= &asp_v1_dma_data
824 MODULE_DEVICE_TABLE(of
, k3_pdma_dt_ids
);
826 static struct dma_chan
*k3_of_dma_simple_xlate(struct of_phandle_args
*dma_spec
,
827 struct of_dma
*ofdma
)
829 struct k3_dma_dev
*d
= ofdma
->of_dma_data
;
830 unsigned int request
= dma_spec
->args
[0];
832 if (request
>= d
->dma_requests
)
835 return dma_get_slave_channel(&(d
->chans
[request
].vc
.chan
));
838 static int k3_dma_probe(struct platform_device
*op
)
840 const struct k3dma_soc_data
*soc_data
;
841 struct k3_dma_dev
*d
;
842 const struct of_device_id
*of_id
;
845 d
= devm_kzalloc(&op
->dev
, sizeof(*d
), GFP_KERNEL
);
849 soc_data
= device_get_match_data(&op
->dev
);
853 d
->base
= devm_platform_ioremap_resource(op
, 0);
855 return PTR_ERR(d
->base
);
857 of_id
= of_match_device(k3_pdma_dt_ids
, &op
->dev
);
859 of_property_read_u32((&op
->dev
)->of_node
,
860 "dma-channels", &d
->dma_channels
);
861 of_property_read_u32((&op
->dev
)->of_node
,
862 "dma-requests", &d
->dma_requests
);
863 ret
= of_property_read_u32((&op
->dev
)->of_node
,
864 "dma-channel-mask", &d
->dma_channel_mask
);
867 "dma-channel-mask doesn't exist, considering all as available.\n");
868 d
->dma_channel_mask
= (u32
)~0UL;
872 if (!(soc_data
->flags
& K3_FLAG_NOCLK
)) {
873 d
->clk
= devm_clk_get(&op
->dev
, NULL
);
874 if (IS_ERR(d
->clk
)) {
875 dev_err(&op
->dev
, "no dma clk\n");
876 return PTR_ERR(d
->clk
);
880 irq
= platform_get_irq(op
, 0);
881 ret
= devm_request_irq(&op
->dev
, irq
,
882 k3_dma_int_handler
, 0, DRIVER_NAME
, d
);
888 /* A DMA memory pool for LLIs, align on 32-byte boundary */
889 d
->pool
= dmam_pool_create(DRIVER_NAME
, &op
->dev
,
890 LLI_BLOCK_SIZE
, 32, 0);
894 /* init phy channel */
895 d
->phy
= devm_kcalloc(&op
->dev
,
896 d
->dma_channels
, sizeof(struct k3_dma_phy
), GFP_KERNEL
);
900 for (i
= 0; i
< d
->dma_channels
; i
++) {
901 struct k3_dma_phy
*p
;
903 if (!(d
->dma_channel_mask
& BIT(i
)))
908 p
->base
= d
->base
+ i
* 0x40;
911 INIT_LIST_HEAD(&d
->slave
.channels
);
912 dma_cap_set(DMA_SLAVE
, d
->slave
.cap_mask
);
913 dma_cap_set(DMA_MEMCPY
, d
->slave
.cap_mask
);
914 dma_cap_set(DMA_CYCLIC
, d
->slave
.cap_mask
);
915 d
->slave
.dev
= &op
->dev
;
916 d
->slave
.device_free_chan_resources
= k3_dma_free_chan_resources
;
917 d
->slave
.device_tx_status
= k3_dma_tx_status
;
918 d
->slave
.device_prep_dma_memcpy
= k3_dma_prep_memcpy
;
919 d
->slave
.device_prep_slave_sg
= k3_dma_prep_slave_sg
;
920 d
->slave
.device_prep_dma_cyclic
= k3_dma_prep_dma_cyclic
;
921 d
->slave
.device_issue_pending
= k3_dma_issue_pending
;
922 d
->slave
.device_config
= k3_dma_config
;
923 d
->slave
.device_pause
= k3_dma_transfer_pause
;
924 d
->slave
.device_resume
= k3_dma_transfer_resume
;
925 d
->slave
.device_terminate_all
= k3_dma_terminate_all
;
926 d
->slave
.device_synchronize
= k3_dma_synchronize
;
927 d
->slave
.copy_align
= DMAENGINE_ALIGN_8_BYTES
;
929 /* init virtual channel */
930 d
->chans
= devm_kcalloc(&op
->dev
,
931 d
->dma_requests
, sizeof(struct k3_dma_chan
), GFP_KERNEL
);
932 if (d
->chans
== NULL
)
935 for (i
= 0; i
< d
->dma_requests
; i
++) {
936 struct k3_dma_chan
*c
= &d
->chans
[i
];
938 c
->status
= DMA_IN_PROGRESS
;
939 INIT_LIST_HEAD(&c
->node
);
940 c
->vc
.desc_free
= k3_dma_free_desc
;
941 vchan_init(&c
->vc
, &d
->slave
);
944 /* Enable clock before accessing registers */
945 ret
= clk_prepare_enable(d
->clk
);
947 dev_err(&op
->dev
, "clk_prepare_enable failed: %d\n", ret
);
951 k3_dma_enable_dma(d
, true);
953 ret
= dma_async_device_register(&d
->slave
);
955 goto dma_async_register_fail
;
957 ret
= of_dma_controller_register((&op
->dev
)->of_node
,
958 k3_of_dma_simple_xlate
, d
);
960 goto of_dma_register_fail
;
962 spin_lock_init(&d
->lock
);
963 INIT_LIST_HEAD(&d
->chan_pending
);
964 tasklet_setup(&d
->task
, k3_dma_tasklet
);
965 platform_set_drvdata(op
, d
);
966 dev_info(&op
->dev
, "initialized\n");
970 of_dma_register_fail
:
971 dma_async_device_unregister(&d
->slave
);
972 dma_async_register_fail
:
973 clk_disable_unprepare(d
->clk
);
977 static int k3_dma_remove(struct platform_device
*op
)
979 struct k3_dma_chan
*c
, *cn
;
980 struct k3_dma_dev
*d
= platform_get_drvdata(op
);
982 dma_async_device_unregister(&d
->slave
);
983 of_dma_controller_free((&op
->dev
)->of_node
);
985 devm_free_irq(&op
->dev
, d
->irq
, d
);
987 list_for_each_entry_safe(c
, cn
, &d
->slave
.channels
, vc
.chan
.device_node
) {
988 list_del(&c
->vc
.chan
.device_node
);
989 tasklet_kill(&c
->vc
.task
);
991 tasklet_kill(&d
->task
);
992 clk_disable_unprepare(d
->clk
);
996 #ifdef CONFIG_PM_SLEEP
997 static int k3_dma_suspend_dev(struct device
*dev
)
999 struct k3_dma_dev
*d
= dev_get_drvdata(dev
);
1002 stat
= k3_dma_get_chan_stat(d
);
1004 dev_warn(d
->slave
.dev
,
1005 "chan %d is running fail to suspend\n", stat
);
1008 k3_dma_enable_dma(d
, false);
1009 clk_disable_unprepare(d
->clk
);
1013 static int k3_dma_resume_dev(struct device
*dev
)
1015 struct k3_dma_dev
*d
= dev_get_drvdata(dev
);
1018 ret
= clk_prepare_enable(d
->clk
);
1020 dev_err(d
->slave
.dev
, "clk_prepare_enable failed: %d\n", ret
);
1023 k3_dma_enable_dma(d
, true);
1028 static SIMPLE_DEV_PM_OPS(k3_dma_pmops
, k3_dma_suspend_dev
, k3_dma_resume_dev
);
1030 static struct platform_driver k3_pdma_driver
= {
1032 .name
= DRIVER_NAME
,
1033 .pm
= &k3_dma_pmops
,
1034 .of_match_table
= k3_pdma_dt_ids
,
1036 .probe
= k3_dma_probe
,
1037 .remove
= k3_dma_remove
,
1040 module_platform_driver(k3_pdma_driver
);
1042 MODULE_DESCRIPTION("Hisilicon k3 DMA Driver");
1043 MODULE_ALIAS("platform:k3dma");
1044 MODULE_LICENSE("GPL v2");