From: vinod.koul@intel.com (Vinod Koul)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] dmaengine: bcm2835: Fix polling for completion of DMA with interrupts masked.
Date: Mon, 6 Jun 2016 09:56:35 +0530 [thread overview]
Message-ID: <20160606042635.GU16910@localhost> (raw)
In-Reply-To: <1465007351-5559-1-git-send-email-eric@anholt.net>
On Fri, Jun 03, 2016 at 07:29:11PM -0700, Eric Anholt wrote:
> The tx_status hook is supposed to be safe to call from interrupt
> context, but it wouldn't ever return completion for the last transfer,
> meaning you couldn't poll for DMA completion with interrupts masked.
and why is that?
> This fixes IRQ handling for bcm2835's DSI1, which requires using the
> DMA engine to write its registers due to a bug in the AXI bridge.
>
> Signed-off-by: Eric Anholt <eric@anholt.net>
> ---
> drivers/dma/bcm2835-dma.c | 24 +++++++++++++++++++-----
> 1 file changed, 19 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/dma/bcm2835-dma.c b/drivers/dma/bcm2835-dma.c
> index 6149b27c33ad..320461c578e3 100644
> --- a/drivers/dma/bcm2835-dma.c
> +++ b/drivers/dma/bcm2835-dma.c
> @@ -570,16 +570,16 @@ static enum dma_status bcm2835_dma_tx_status(struct dma_chan *chan,
> struct virt_dma_desc *vd;
> enum dma_status ret;
> unsigned long flags;
> + u32 residue;
>
> ret = dma_cookie_status(chan, cookie, txstate);
> - if (ret == DMA_COMPLETE || !txstate)
> + if (ret == DMA_COMPLETE)
Why do you change this? txstate can be NULL, so no point calculating reside
for those cases
> return ret;
>
> spin_lock_irqsave(&c->vc.lock, flags);
> vd = vchan_find_desc(&c->vc, cookie);
> if (vd) {
> - txstate->residue =
> - bcm2835_dma_desc_size(to_bcm2835_dma_desc(&vd->tx));
> + residue = bcm2835_dma_desc_size(to_bcm2835_dma_desc(&vd->tx));
> } else if (c->desc && c->desc->vd.tx.cookie == cookie) {
> struct bcm2835_desc *d = c->desc;
> dma_addr_t pos;
> @@ -591,11 +591,25 @@ static enum dma_status bcm2835_dma_tx_status(struct dma_chan *chan,
> else
> pos = 0;
>
> - txstate->residue = bcm2835_dma_desc_size_pos(d, pos);
> + residue = bcm2835_dma_desc_size_pos(d, pos);
> +
> + /*
> + * If our non-cyclic transfer is done, then report
> + * complete and trigger the next tx now. This lets
> + * the dmaengine API be used synchronously from an IRQ
> + * handler.
> + */
> + if (!d->cyclic && residue == 0) {
> + vchan_cookie_complete(&c->desc->vd);
> + bcm2835_dma_start_desc(c);
> + ret = dma_cookie_status(chan, cookie, txstate);
> + }
> } else {
> - txstate->residue = 0;
> + residue = 0;
> }
>
> + dma_set_residue(txstate, residue);
> +
> spin_unlock_irqrestore(&c->vc.lock, flags);
>
> return ret;
> --
> 2.8.0.rc3
>
--
~Vinod
WARNING: multiple messages have this Message-ID (diff)
From: Vinod Koul <vinod.koul@intel.com>
To: Eric Anholt <eric@anholt.net>
Cc: linux-rpi-kernel@lists.infradead.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org,
Stephen Warren <swarren@wwwdotorg.org>,
Lee Jones <lee@kernel.org>,
dmaengine@vger.kernel.org
Subject: Re: [PATCH] dmaengine: bcm2835: Fix polling for completion of DMA with interrupts masked.
Date: Mon, 6 Jun 2016 09:56:35 +0530 [thread overview]
Message-ID: <20160606042635.GU16910@localhost> (raw)
In-Reply-To: <1465007351-5559-1-git-send-email-eric@anholt.net>
On Fri, Jun 03, 2016 at 07:29:11PM -0700, Eric Anholt wrote:
> The tx_status hook is supposed to be safe to call from interrupt
> context, but it wouldn't ever return completion for the last transfer,
> meaning you couldn't poll for DMA completion with interrupts masked.
and why is that?
> This fixes IRQ handling for bcm2835's DSI1, which requires using the
> DMA engine to write its registers due to a bug in the AXI bridge.
>
> Signed-off-by: Eric Anholt <eric@anholt.net>
> ---
> drivers/dma/bcm2835-dma.c | 24 +++++++++++++++++++-----
> 1 file changed, 19 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/dma/bcm2835-dma.c b/drivers/dma/bcm2835-dma.c
> index 6149b27c33ad..320461c578e3 100644
> --- a/drivers/dma/bcm2835-dma.c
> +++ b/drivers/dma/bcm2835-dma.c
> @@ -570,16 +570,16 @@ static enum dma_status bcm2835_dma_tx_status(struct dma_chan *chan,
> struct virt_dma_desc *vd;
> enum dma_status ret;
> unsigned long flags;
> + u32 residue;
>
> ret = dma_cookie_status(chan, cookie, txstate);
> - if (ret == DMA_COMPLETE || !txstate)
> + if (ret == DMA_COMPLETE)
Why do you change this? txstate can be NULL, so no point calculating reside
for those cases
> return ret;
>
> spin_lock_irqsave(&c->vc.lock, flags);
> vd = vchan_find_desc(&c->vc, cookie);
> if (vd) {
> - txstate->residue =
> - bcm2835_dma_desc_size(to_bcm2835_dma_desc(&vd->tx));
> + residue = bcm2835_dma_desc_size(to_bcm2835_dma_desc(&vd->tx));
> } else if (c->desc && c->desc->vd.tx.cookie == cookie) {
> struct bcm2835_desc *d = c->desc;
> dma_addr_t pos;
> @@ -591,11 +591,25 @@ static enum dma_status bcm2835_dma_tx_status(struct dma_chan *chan,
> else
> pos = 0;
>
> - txstate->residue = bcm2835_dma_desc_size_pos(d, pos);
> + residue = bcm2835_dma_desc_size_pos(d, pos);
> +
> + /*
> + * If our non-cyclic transfer is done, then report
> + * complete and trigger the next tx now. This lets
> + * the dmaengine API be used synchronously from an IRQ
> + * handler.
> + */
> + if (!d->cyclic && residue == 0) {
> + vchan_cookie_complete(&c->desc->vd);
> + bcm2835_dma_start_desc(c);
> + ret = dma_cookie_status(chan, cookie, txstate);
> + }
> } else {
> - txstate->residue = 0;
> + residue = 0;
> }
>
> + dma_set_residue(txstate, residue);
> +
> spin_unlock_irqrestore(&c->vc.lock, flags);
>
> return ret;
> --
> 2.8.0.rc3
>
--
~Vinod
next prev parent reply other threads:[~2016-06-06 4:26 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-04 2:29 [PATCH] dmaengine: bcm2835: Fix polling for completion of DMA with interrupts masked Eric Anholt
2016-06-04 2:29 ` Eric Anholt
2016-06-06 4:26 ` Vinod Koul [this message]
2016-06-06 4:26 ` Vinod Koul
2016-06-06 17:33 ` Eric Anholt
2016-06-06 17:33 ` Eric Anholt
2016-06-07 5:24 ` Vinod Koul
2016-06-07 5:24 ` Vinod Koul
2016-06-07 6:10 ` Eric Anholt
2016-06-07 6:10 ` Eric Anholt
2016-06-07 7:21 ` Vinod Koul
2016-06-07 7:21 ` Vinod Koul
2016-06-07 20:56 ` Eric Anholt
2016-06-07 20:56 ` Eric Anholt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160606042635.GU16910@localhost \
--to=vinod.koul@intel.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.