* [PATCH] dmaengine: rcar-dmac: unmap slave resource when channel is freed
@ 2017-01-11 14:39 Niklas Söderlund
2017-01-11 14:56 ` Laurent Pinchart
2017-01-13 12:24 ` Vinod Koul
0 siblings, 2 replies; 3+ messages in thread
From: Niklas Söderlund @ 2017-01-11 14:39 UTC (permalink / raw)
To: linux-renesas-soc, dmaengine, Laurent Pinchart
Cc: Vinod Koul, Geert Uytterhoeven, Arnd Bergmann,
Niklas Söderlund
The slave mapping should be removed together with other channel
resources when the channel is freed. If it's not unmapped it will hang
around forever after the channel is freed.
Fixes: 9f878603dbdb7db3 ("dmaengine: rcar-dmac: add iommu support for slave transfers")
Reported-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
---
drivers/dma/sh/rcar-dmac.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/dma/sh/rcar-dmac.c b/drivers/dma/sh/rcar-dmac.c
index 2e441d0ccd79..4c357d475465 100644
--- a/drivers/dma/sh/rcar-dmac.c
+++ b/drivers/dma/sh/rcar-dmac.c
@@ -986,6 +986,7 @@ static void rcar_dmac_free_chan_resources(struct dma_chan *chan)
{
struct rcar_dmac_chan *rchan = to_rcar_dmac_chan(chan);
struct rcar_dmac *dmac = to_rcar_dmac(chan->device);
+ struct rcar_dmac_chan_map *map = &rchan->map;
struct rcar_dmac_desc_page *page, *_page;
struct rcar_dmac_desc *desc;
LIST_HEAD(list);
@@ -1019,6 +1020,13 @@ static void rcar_dmac_free_chan_resources(struct dma_chan *chan)
free_page((unsigned long)page);
}
+ /* Remove slave mapping if present. */
+ if (map->slave.xfer_size) {
+ dma_unmap_resource(chan->device->dev, map->addr,
+ map->slave.xfer_size, map->dir, 0);
+ map->slave.xfer_size = 0;
+ }
+
pm_runtime_put(chan->device->dev);
}
--
2.11.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] dmaengine: rcar-dmac: unmap slave resource when channel is freed
2017-01-11 14:39 [PATCH] dmaengine: rcar-dmac: unmap slave resource when channel is freed Niklas Söderlund
@ 2017-01-11 14:56 ` Laurent Pinchart
2017-01-13 12:24 ` Vinod Koul
1 sibling, 0 replies; 3+ messages in thread
From: Laurent Pinchart @ 2017-01-11 14:56 UTC (permalink / raw)
To: Niklas Söderlund
Cc: linux-renesas-soc, dmaengine, Vinod Koul, Geert Uytterhoeven,
Arnd Bergmann
Hi Niklas,
Thank you for the patch.
On Wednesday 11 Jan 2017 15:39:31 Niklas Söderlund wrote:
> The slave mapping should be removed together with other channel
> resources when the channel is freed. If it's not unmapped it will hang
> around forever after the channel is freed.
>
> Fixes: 9f878603dbdb7db3 ("dmaengine: rcar-dmac: add iommu support for slave
> transfers") Reported-by: Laurent Pinchart
> <laurent.pinchart@ideasonboard.com>
> Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
> drivers/dma/sh/rcar-dmac.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/drivers/dma/sh/rcar-dmac.c b/drivers/dma/sh/rcar-dmac.c
> index 2e441d0ccd79..4c357d475465 100644
> --- a/drivers/dma/sh/rcar-dmac.c
> +++ b/drivers/dma/sh/rcar-dmac.c
> @@ -986,6 +986,7 @@ static void rcar_dmac_free_chan_resources(struct
> dma_chan *chan) {
> struct rcar_dmac_chan *rchan = to_rcar_dmac_chan(chan);
> struct rcar_dmac *dmac = to_rcar_dmac(chan->device);
> + struct rcar_dmac_chan_map *map = &rchan->map;
> struct rcar_dmac_desc_page *page, *_page;
> struct rcar_dmac_desc *desc;
> LIST_HEAD(list);
> @@ -1019,6 +1020,13 @@ static void rcar_dmac_free_chan_resources(struct
> dma_chan *chan) free_page((unsigned long)page);
> }
>
> + /* Remove slave mapping if present. */
> + if (map->slave.xfer_size) {
> + dma_unmap_resource(chan->device->dev, map->addr,
> + map->slave.xfer_size, map->dir, 0);
> + map->slave.xfer_size = 0;
> + }
> +
> pm_runtime_put(chan->device->dev);
> }
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] dmaengine: rcar-dmac: unmap slave resource when channel is freed
2017-01-11 14:39 [PATCH] dmaengine: rcar-dmac: unmap slave resource when channel is freed Niklas Söderlund
2017-01-11 14:56 ` Laurent Pinchart
@ 2017-01-13 12:24 ` Vinod Koul
1 sibling, 0 replies; 3+ messages in thread
From: Vinod Koul @ 2017-01-13 12:24 UTC (permalink / raw)
To: Niklas Söderlund
Cc: linux-renesas-soc, dmaengine, Laurent Pinchart,
Geert Uytterhoeven, Arnd Bergmann
On Wed, Jan 11, 2017 at 03:39:31PM +0100, Niklas S�derlund wrote:
> The slave mapping should be removed together with other channel
> resources when the channel is freed. If it's not unmapped it will hang
> around forever after the channel is freed.
Applied, thanks
--
~Vinod
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-01-13 12:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-11 14:39 [PATCH] dmaengine: rcar-dmac: unmap slave resource when channel is freed Niklas Söderlund
2017-01-11 14:56 ` Laurent Pinchart
2017-01-13 12:24 ` Vinod Koul
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox