mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-28 23:23:59 +00:00
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
|
From 59a8855b51c1d8acf37d3c80f34782d71f474617 Mon Sep 17 00:00:00 2001
|
||
|
From: Phil Elwell <phil@raspberrypi.com>
|
||
|
Date: Wed, 13 Nov 2024 10:37:22 +0000
|
||
|
Subject: [PATCH] dmaengine: dw-axi-dmac: Only start idle channels
|
||
|
|
||
|
Attempting to start a non-idle channel causes an error message to be
|
||
|
logged, and is inefficient. Test for emptiness of the desc_issued list
|
||
|
before doing so.
|
||
|
|
||
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
||
|
---
|
||
|
drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c | 4 +++-
|
||
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
||
|
|
||
|
--- a/drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c
|
||
|
+++ b/drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c
|
||
|
@@ -536,9 +536,11 @@ static void dma_chan_issue_pending(struc
|
||
|
{
|
||
|
struct axi_dma_chan *chan = dchan_to_axi_dma_chan(dchan);
|
||
|
unsigned long flags;
|
||
|
+ bool was_empty;
|
||
|
|
||
|
spin_lock_irqsave(&chan->vc.lock, flags);
|
||
|
- if (vchan_issue_pending(&chan->vc))
|
||
|
+ was_empty = list_empty(&chan->vc.desc_issued);
|
||
|
+ if (vchan_issue_pending(&chan->vc) && was_empty)
|
||
|
axi_chan_start_first_queued(chan);
|
||
|
spin_unlock_irqrestore(&chan->vc.lock, flags);
|
||
|
}
|