* [PATCH 1/3] dmaengine: altera-msgdma: Correctly handle descriptor callbacks
@ 2021-10-25 7:54 Lars-Peter Clausen
2021-10-25 7:54 ` [PATCH 2/3] dmaengine: xilinx_dma: Correctly handle cyclic " Lars-Peter Clausen
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Lars-Peter Clausen @ 2021-10-25 7:54 UTC (permalink / raw)
To: Vinod Koul
Cc: Stefan Roese, Michal Simek, Radhey Shyam Pandey, dmaengine,
Lars-Peter Clausen
DMA clients can provide one of two types of callbacks. For this reason
dmaengine drivers should not directly invoke `callback`, but always use
dmaengine_desc_callback_invoke(). This makes sure that both types of
callbacks are handled correctly.
The altera-msgdma driver currently doesn't do this and only handles the
`callback` type callback. If the client used the `callback_result` type
callback it will not be called.
Fix this by switching to `dmaengine_desc_callback_valid()` and
`dmaengine_desc_callback_invoke()`.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
---
drivers/dma/altera-msgdma.c | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/drivers/dma/altera-msgdma.c b/drivers/dma/altera-msgdma.c
index 5a2c7573b692..f5b885d69cd3 100644
--- a/drivers/dma/altera-msgdma.c
+++ b/drivers/dma/altera-msgdma.c
@@ -585,16 +585,14 @@ static void msgdma_chan_desc_cleanup(struct msgdma_device *mdev)
struct msgdma_sw_desc *desc, *next;
list_for_each_entry_safe(desc, next, &mdev->done_list, node) {
- dma_async_tx_callback callback;
- void *callback_param;
+ struct dmaengine_desc_callback cb;
list_del(&desc->node);
- callback = desc->async_tx.callback;
- callback_param = desc->async_tx.callback_param;
- if (callback) {
+ dmaengine_desc_get_callback(&desc->async_tx, &cb);
+ if (dmaengine_desc_callback_valid(&cb)) {
spin_unlock(&mdev->lock);
- callback(callback_param);
+ dmaengine_desc_callback_invoke(&cb, NULL);
spin_lock(&mdev->lock);
}
--
2.20.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/3] dmaengine: xilinx_dma: Correctly handle cyclic descriptor callbacks
2021-10-25 7:54 [PATCH 1/3] dmaengine: altera-msgdma: Correctly handle descriptor callbacks Lars-Peter Clausen
@ 2021-10-25 7:54 ` Lars-Peter Clausen
2021-10-25 7:54 ` [PATCH 3/3] dmaengine: zynqmp_dma: Correctly handle " Lars-Peter Clausen
2021-10-28 17:24 ` [PATCH 1/3] dmaengine: altera-msgdma: " Vinod Koul
2 siblings, 0 replies; 4+ messages in thread
From: Lars-Peter Clausen @ 2021-10-25 7:54 UTC (permalink / raw)
To: Vinod Koul
Cc: Stefan Roese, Michal Simek, Radhey Shyam Pandey, dmaengine,
Lars-Peter Clausen
DMA clients can provide one of two types of callbacks. For this reason
dmaengine drivers should not directly invoke `callback`, but always use
`dmaengine_desc_callback_invoke()`. This makes sure that both types of
callbacks are handled correctly.
The xilinx_dma driver currently doesn't do this for cyclic descriptors and
only handles the `callback` type callback. If the client used the
`callback_result` type callback it will not be called.
Fix this by switching to `dmaengine_desc_callback_valid()` and
`dmaengine_desc_callback_invoke()`.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
---
drivers/dma/xilinx/xilinx_dma.c | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/drivers/dma/xilinx/xilinx_dma.c b/drivers/dma/xilinx/xilinx_dma.c
index 60cea7d997ee..4677ce08ed40 100644
--- a/drivers/dma/xilinx/xilinx_dma.c
+++ b/drivers/dma/xilinx/xilinx_dma.c
@@ -998,14 +998,12 @@ static void xilinx_dma_chan_handle_cyclic(struct xilinx_dma_chan *chan,
struct xilinx_dma_tx_descriptor *desc,
unsigned long *flags)
{
- dma_async_tx_callback callback;
- void *callback_param;
+ struct dmaengine_desc_callback cb;
- callback = desc->async_tx.callback;
- callback_param = desc->async_tx.callback_param;
- if (callback) {
+ dmaengine_desc_get_callback(&desc->async_tx, &cb);
+ if (dmaengine_desc_callback_valid(&cb)) {
spin_unlock_irqrestore(&chan->lock, *flags);
- callback(callback_param);
+ dmaengine_desc_callback_invoke(&cb, NULL);
spin_lock_irqsave(&chan->lock, *flags);
}
}
--
2.20.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 3/3] dmaengine: zynqmp_dma: Correctly handle descriptor callbacks
2021-10-25 7:54 [PATCH 1/3] dmaengine: altera-msgdma: Correctly handle descriptor callbacks Lars-Peter Clausen
2021-10-25 7:54 ` [PATCH 2/3] dmaengine: xilinx_dma: Correctly handle cyclic " Lars-Peter Clausen
@ 2021-10-25 7:54 ` Lars-Peter Clausen
2021-10-28 17:24 ` [PATCH 1/3] dmaengine: altera-msgdma: " Vinod Koul
2 siblings, 0 replies; 4+ messages in thread
From: Lars-Peter Clausen @ 2021-10-25 7:54 UTC (permalink / raw)
To: Vinod Koul
Cc: Stefan Roese, Michal Simek, Radhey Shyam Pandey, dmaengine,
Lars-Peter Clausen
DMA clients can provide one of two types of callbacks. For this reason
dmaengine drivers should not directly invoke `callback`, but always use
`dmaengine_desc_callback_invoke()`. This makes sure that both types of
callbacks are handled correctly.
The zynqmp_dma driver currently doesn't do this and only handles the
`callback` type callback. If the client used the `callback_result` type
callback it will not be called.
Fix this by switching to `dmaengine_desc_callback_valid()` and
`dmaengine_desc_callback_invoke()`.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
---
drivers/dma/xilinx/zynqmp_dma.c | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/drivers/dma/xilinx/zynqmp_dma.c b/drivers/dma/xilinx/zynqmp_dma.c
index 54adac6391ef..7aa63b652027 100644
--- a/drivers/dma/xilinx/zynqmp_dma.c
+++ b/drivers/dma/xilinx/zynqmp_dma.c
@@ -605,14 +605,12 @@ static void zynqmp_dma_chan_desc_cleanup(struct zynqmp_dma_chan *chan)
spin_lock_irqsave(&chan->lock, irqflags);
list_for_each_entry_safe(desc, next, &chan->done_list, node) {
- dma_async_tx_callback callback;
- void *callback_param;
+ struct dmaengine_desc_callback cb;
- callback = desc->async_tx.callback;
- callback_param = desc->async_tx.callback_param;
- if (callback) {
+ dmaengine_desc_get_callback(&desc->async_tx, &cb);
+ if (dmaengine_desc_callback_valid(&cb)) {
spin_unlock_irqrestore(&chan->lock, irqflags);
- callback(callback_param);
+ dmaengine_desc_callback_invoke(&cb, NULL);
spin_lock_irqsave(&chan->lock, irqflags);
}
--
2.20.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/3] dmaengine: altera-msgdma: Correctly handle descriptor callbacks
2021-10-25 7:54 [PATCH 1/3] dmaengine: altera-msgdma: Correctly handle descriptor callbacks Lars-Peter Clausen
2021-10-25 7:54 ` [PATCH 2/3] dmaengine: xilinx_dma: Correctly handle cyclic " Lars-Peter Clausen
2021-10-25 7:54 ` [PATCH 3/3] dmaengine: zynqmp_dma: Correctly handle " Lars-Peter Clausen
@ 2021-10-28 17:24 ` Vinod Koul
2 siblings, 0 replies; 4+ messages in thread
From: Vinod Koul @ 2021-10-28 17:24 UTC (permalink / raw)
To: Lars-Peter Clausen
Cc: Stefan Roese, Michal Simek, Radhey Shyam Pandey, dmaengine
On 25-10-21, 09:54, Lars-Peter Clausen wrote:
> DMA clients can provide one of two types of callbacks. For this reason
> dmaengine drivers should not directly invoke `callback`, but always use
> dmaengine_desc_callback_invoke(). This makes sure that both types of
> callbacks are handled correctly.
>
> The altera-msgdma driver currently doesn't do this and only handles the
> `callback` type callback. If the client used the `callback_result` type
> callback it will not be called.
>
> Fix this by switching to `dmaengine_desc_callback_valid()` and
> `dmaengine_desc_callback_invoke()`.
Applied all, thanks
--
~Vinod
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-10-28 17:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-25 7:54 [PATCH 1/3] dmaengine: altera-msgdma: Correctly handle descriptor callbacks Lars-Peter Clausen
2021-10-25 7:54 ` [PATCH 2/3] dmaengine: xilinx_dma: Correctly handle cyclic " Lars-Peter Clausen
2021-10-25 7:54 ` [PATCH 3/3] dmaengine: zynqmp_dma: Correctly handle " Lars-Peter Clausen
2021-10-28 17:24 ` [PATCH 1/3] dmaengine: altera-msgdma: " Vinod Koul
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox