Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1305696
| From | Mans Rullgard <mans@mansr.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] dmaengine: dw: fix cyclic transfers |
| Date | 2016-01-10 22:00 +0100 |
| Message-ID | <qPvfI-Ou-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Commit 61e183f83069 ("dmaengine/dw_dmac: Reconfigure interrupt and
chan_cfg register on resume") moved some channel initialisation to
a new function which must be called before starting a transfer.
This adds the necessary dwc_initialize() call to dw_dma_cyclic_start()
which was missed in the original commit.
Fixes: 61e183f83069 ("dmaengine/dw_dmac: Reconfigure interrupt and chan_cfg register on resume")
Signed-off-by: Mans Rullgard <mans@mansr.com>
---
Andy, do you want to collect this with your other patches? It's trivial
enough that it can go in separately without conflicts too.
---
drivers/dma/dw/core.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/dma/dw/core.c b/drivers/dma/dw/core.c
index 7067b6ddc1db..2917f75b67b4 100644
--- a/drivers/dma/dw/core.c
+++ b/drivers/dma/dw/core.c
@@ -1265,6 +1265,8 @@ int dw_dma_cyclic_start(struct dma_chan *chan)
return -EBUSY;
}
+ dwc_initialize(dwc);
+
dma_writel(dw, CLEAR.ERROR, dwc->mask);
dma_writel(dw, CLEAR.XFER, dwc->mask);
--
2.7.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] dmaengine: dw: fix cyclic transfers Mans Rullgard <mans@mansr.com> - 2016-01-10 22:00 +0100
Re: [PATCH] dmaengine: dw: fix cyclic transfers Viresh Kumar <viresh.kumar@linaro.org> - 2016-01-11 07:20 +0100
Re: [PATCH] dmaengine: dw: fix cyclic transfers Måns Rullgård <mans@mansr.com> - 2016-01-11 13:30 +0100
csiph-web