linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 5/6] dma: rcar-dma: warn if transfer cannot start as TE = 1
@ 2015-09-29 20:44 hamzahfrq.sub
  2015-10-12 15:25 ` Vinod Koul
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: hamzahfrq.sub @ 2015-09-29 20:44 UTC (permalink / raw)
  To: linux-sh

From: Muhammad Hamza Farooq <mfarooq@visteon.com>

Signed-off-by: Muhammad Hamza Farooq <mfarooq@visteon.com>
---
 drivers/dma/sh/rcar-dmac.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/dma/sh/rcar-dmac.c b/drivers/dma/sh/rcar-dmac.c
index 0b5a367..6eec878 100644
--- a/drivers/dma/sh/rcar-dmac.c
+++ b/drivers/dma/sh/rcar-dmac.c
@@ -327,7 +327,8 @@ static void rcar_dmac_chan_start_xfer(struct rcar_dmac_chan *chan)
 	struct rcar_dmac_desc *desc = chan->desc.running;
 	u32 chcr = desc->chcr;
 
-	WARN_ON_ONCE(rcar_dmac_chan_is_busy(chan));
+	WARN_ON_ONCE(rcar_dmac_chan_is_busy(chan) ||
+			rcar_dmac_last_tx_complete(chan));
 
 	if (chan->mid_rid >= 0)
 		rcar_dmac_chan_write(chan, RCAR_DMARS, chan->mid_rid);
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 5/6] dma: rcar-dma: warn if transfer cannot start as TE = 1
  2015-09-29 20:44 [PATCH v3 5/6] dma: rcar-dma: warn if transfer cannot start as TE = 1 hamzahfrq.sub
@ 2015-10-12 15:25 ` Vinod Koul
  2015-10-15 16:53 ` Laurent Pinchart
  2015-10-19 20:58 ` Hamza Farooq
  2 siblings, 0 replies; 4+ messages in thread
From: Vinod Koul @ 2015-10-12 15:25 UTC (permalink / raw)
  To: linux-sh

On Tue, Sep 29, 2015 at 10:44:47PM +0200, hamzahfrq.sub@gmail.com wrote:
> From: Muhammad Hamza Farooq <mfarooq@visteon.com>

Pls add why this is helpful

-- 
~Vinod

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 5/6] dma: rcar-dma: warn if transfer cannot start as TE = 1
  2015-09-29 20:44 [PATCH v3 5/6] dma: rcar-dma: warn if transfer cannot start as TE = 1 hamzahfrq.sub
  2015-10-12 15:25 ` Vinod Koul
@ 2015-10-15 16:53 ` Laurent Pinchart
  2015-10-19 20:58 ` Hamza Farooq
  2 siblings, 0 replies; 4+ messages in thread
From: Laurent Pinchart @ 2015-10-15 16:53 UTC (permalink / raw)
  To: linux-sh

Hi Muhammad,

Thank you for the patch.

On Tuesday 29 September 2015 22:44:47 hamzahfrq.sub@gmail.com wrote:
> From: Muhammad Hamza Farooq <mfarooq@visteon.com>
> 
> Signed-off-by: Muhammad Hamza Farooq <mfarooq@visteon.com>
> ---
>  drivers/dma/sh/rcar-dmac.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/dma/sh/rcar-dmac.c b/drivers/dma/sh/rcar-dmac.c
> index 0b5a367..6eec878 100644
> --- a/drivers/dma/sh/rcar-dmac.c
> +++ b/drivers/dma/sh/rcar-dmac.c
> @@ -327,7 +327,8 @@ static void rcar_dmac_chan_start_xfer(struct
> rcar_dmac_chan *chan) struct rcar_dmac_desc *desc = chan->desc.running;
>  	u32 chcr = desc->chcr;
> 
> -	WARN_ON_ONCE(rcar_dmac_chan_is_busy(chan));
> +	WARN_ON_ONCE(rcar_dmac_chan_is_busy(chan) ||
> +			rcar_dmac_last_tx_complete(chan));

Why is that a problem ?

>  	if (chan->mid_rid >= 0)
>  		rcar_dmac_chan_write(chan, RCAR_DMARS, chan->mid_rid);

-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 5/6] dma: rcar-dma: warn if transfer cannot start as TE = 1
  2015-09-29 20:44 [PATCH v3 5/6] dma: rcar-dma: warn if transfer cannot start as TE = 1 hamzahfrq.sub
  2015-10-12 15:25 ` Vinod Koul
  2015-10-15 16:53 ` Laurent Pinchart
@ 2015-10-19 20:58 ` Hamza Farooq
  2 siblings, 0 replies; 4+ messages in thread
From: Hamza Farooq @ 2015-10-19 20:58 UTC (permalink / raw)
  To: linux-sh

Hi Laurent,


On Thu, Oct 15, 2015 at 6:53 PM, Laurent Pinchart
<laurent.pinchart@ideasonboard.com> wrote:
> Hi Muhammad,
>
> Thank you for the patch.
>
> On Tuesday 29 September 2015 22:44:47 hamzahfrq.sub@gmail.com wrote:
>> From: Muhammad Hamza Farooq <mfarooq@visteon.com>
>>
>> Signed-off-by: Muhammad Hamza Farooq <mfarooq@visteon.com>
>> ---
>>  drivers/dma/sh/rcar-dmac.c | 3 ++-
>>  1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/dma/sh/rcar-dmac.c b/drivers/dma/sh/rcar-dmac.c
>> index 0b5a367..6eec878 100644
>> --- a/drivers/dma/sh/rcar-dmac.c
>> +++ b/drivers/dma/sh/rcar-dmac.c
>> @@ -327,7 +327,8 @@ static void rcar_dmac_chan_start_xfer(struct
>> rcar_dmac_chan *chan) struct rcar_dmac_desc *desc = chan->desc.running;
>>       u32 chcr = desc->chcr;
>>
>> -     WARN_ON_ONCE(rcar_dmac_chan_is_busy(chan));
>> +     WARN_ON_ONCE(rcar_dmac_chan_is_busy(chan) ||
>> +                     rcar_dmac_last_tx_complete(chan));
>
> Why is that a problem ?

According to the datasheet, new dma transfer cannot start new transfer
if TE = 1. May be rcar_dmac_last_tx_complete is a misnomer. It is used
when TE is set to 1 by hardware but the ISR has not yet run

>
>>       if (chan->mid_rid >= 0)
>>               rcar_dmac_chan_write(chan, RCAR_DMARS, chan->mid_rid);
>
> --
> Regards,
>
> Laurent Pinchart
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-10-19 20:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-29 20:44 [PATCH v3 5/6] dma: rcar-dma: warn if transfer cannot start as TE = 1 hamzahfrq.sub
2015-10-12 15:25 ` Vinod Koul
2015-10-15 16:53 ` Laurent Pinchart
2015-10-19 20:58 ` Hamza Farooq

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).