linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/6] Renesas R-Car DMAC fixes
@ 2015-01-29 23:59 Laurent Pinchart
  2015-02-12  9:41 ` Vinod Koul
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Laurent Pinchart @ 2015-01-29 23:59 UTC (permalink / raw)
  To: linux-sh

Hello,

Here are a couple of fixes for the rcar-dmac driver. They're based on the next
branch of the dmaengine tree.

The first four patches fix driver bugs, while the last two work around two
hardware issues. Patch 5 works around a documented errata, while patch 6
handles a data corruption issue that was noticed during test but not yet
confirmed to be a hardware bug by Renesas. When more information about the
issue will be available a better fix could possibly be developed.

The patches are available at

	git://linuxtv.org/pinchartl/fbdev.git dma/upstream

Vinod, is there still time for a v3.20 pull request ?

Changes since v1:

- Don't needlessly replace spin_lock by spin_lock_irqsave in IRQ handlers

Cc: Vinod Koul <vinod.koul@intel.com>

Laurent Pinchart (6):
  dmaengine: rcar-dmac: Fix uninitialized variable usage
  dmaengine: rcar-dmac: Fix spinlock issues in interrupt
  dmaengine: rcar-dmac: Fix oops due to unintialized list in error ISR
  dmaengine: rcar-dmac: Allocate hardware descriptors with DMAC device
  dmaengine: rcar-dmac: Work around descriptor mode IOMMU errata
  dmaengine: rcar-dmac: Disable channel 0 when using IOMMU

 drivers/dma/sh/rcar-dmac.c | 137 ++++++++++++++++++++++++++-------------------
 1 file changed, 80 insertions(+), 57 deletions(-)

-- 
Regards,

Laurent Pinchart


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

* Re: [PATCH v2 0/6] Renesas R-Car DMAC fixes
  2015-01-29 23:59 [PATCH v2 0/6] Renesas R-Car DMAC fixes Laurent Pinchart
@ 2015-02-12  9:41 ` Vinod Koul
  2015-02-13  2:51 ` Laurent Pinchart
  2015-02-13  8:39 ` Vinod Koul
  2 siblings, 0 replies; 4+ messages in thread
From: Vinod Koul @ 2015-02-12  9:41 UTC (permalink / raw)
  To: linux-sh

On Fri, Jan 30, 2015 at 02:00:07AM +0200, Laurent Pinchart wrote:
> Hello,
> 
> Here are a couple of fixes for the rcar-dmac driver. They're based on the next
> branch of the dmaengine tree.
> 
> The first four patches fix driver bugs, while the last two work around two
> hardware issues. Patch 5 works around a documented errata, while patch 6
> handles a data corruption issue that was noticed during test but not yet
> confirmed to be a hardware bug by Renesas. When more information about the
> issue will be available a better fix could possibly be developed.
> 
> The patches are available at
> 
> 	git://linuxtv.org/pinchartl/fbdev.git dma/upstream
> 
> Vinod, is there still time for a v3.20 pull request ?
Since this is fixes I was trying to merge them before I send to Linus in next
few days, but this fails to apply for me :(

I have merged everything into my for-linus which will be sent to him. Or you can
send later and we can get this into fixes

-- 
~Vinod

> 
> Changes since v1:
> 
> - Don't needlessly replace spin_lock by spin_lock_irqsave in IRQ handlers
> 
> Cc: Vinod Koul <vinod.koul@intel.com>
> 
> Laurent Pinchart (6):
>   dmaengine: rcar-dmac: Fix uninitialized variable usage
>   dmaengine: rcar-dmac: Fix spinlock issues in interrupt
>   dmaengine: rcar-dmac: Fix oops due to unintialized list in error ISR
>   dmaengine: rcar-dmac: Allocate hardware descriptors with DMAC device
>   dmaengine: rcar-dmac: Work around descriptor mode IOMMU errata
>   dmaengine: rcar-dmac: Disable channel 0 when using IOMMU
> 
>  drivers/dma/sh/rcar-dmac.c | 137 ++++++++++++++++++++++++++-------------------
>  1 file changed, 80 insertions(+), 57 deletions(-)
> 
> -- 
> Regards,
> 
> Laurent Pinchart
> 
> --
> To unsubscribe from this list: send the line "unsubscribe dmaengine" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 

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

* Re: [PATCH v2 0/6] Renesas R-Car DMAC fixes
  2015-01-29 23:59 [PATCH v2 0/6] Renesas R-Car DMAC fixes Laurent Pinchart
  2015-02-12  9:41 ` Vinod Koul
@ 2015-02-13  2:51 ` Laurent Pinchart
  2015-02-13  8:39 ` Vinod Koul
  2 siblings, 0 replies; 4+ messages in thread
From: Laurent Pinchart @ 2015-02-13  2:51 UTC (permalink / raw)
  To: linux-sh

Hi Vinod,

On Thursday 12 February 2015 14:59:36 Vinod Koul wrote:
> On Fri, Jan 30, 2015 at 02:00:07AM +0200, Laurent Pinchart wrote:
> > Hello,
> > 
> > Here are a couple of fixes for the rcar-dmac driver. They're based on the
> > next branch of the dmaengine tree.
> > 
> > The first four patches fix driver bugs, while the last two work around two
> > hardware issues. Patch 5 works around a documented errata, while patch 6
> > handles a data corruption issue that was noticed during test but not yet
> > confirmed to be a hardware bug by Renesas. When more information about the
> > issue will be available a better fix could possibly be developed.
> > 
> > The patches are available at
> > 
> > 	git://linuxtv.org/pinchartl/fbdev.git dma/upstream
> > 
> > Vinod, is there still time for a v3.20 pull request ?
> 
> Since this is fixes I was trying to merge them before I send to Linus in
> next few days, but this fails to apply for me :(
> 
> I have merged everything into my for-linus which will be sent to him. Or you
> can send later and we can get this into fixes

I've rebased my branch on your for-linus branch and pushed the result to

	git://linuxtv.org/pinchartl/fbdev.git dma/upstream

> > Changes since v1:
> > 
> > - Don't needlessly replace spin_lock by spin_lock_irqsave in IRQ handlers
> > 
> > Cc: Vinod Koul <vinod.koul@intel.com>
> > 
> > Laurent Pinchart (6):
> >   dmaengine: rcar-dmac: Fix uninitialized variable usage
> >   dmaengine: rcar-dmac: Fix spinlock issues in interrupt
> >   dmaengine: rcar-dmac: Fix oops due to unintialized list in error ISR
> >   dmaengine: rcar-dmac: Allocate hardware descriptors with DMAC device
> >   dmaengine: rcar-dmac: Work around descriptor mode IOMMU errata
> >   dmaengine: rcar-dmac: Disable channel 0 when using IOMMU
> >  
> >  drivers/dma/sh/rcar-dmac.c | 137 +++++++++++++++++++++++-----------------
> >  1 file changed, 80 insertions(+), 57 deletions(-)

-- 
Regards,

Laurent Pinchart


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

* Re: [PATCH v2 0/6] Renesas R-Car DMAC fixes
  2015-01-29 23:59 [PATCH v2 0/6] Renesas R-Car DMAC fixes Laurent Pinchart
  2015-02-12  9:41 ` Vinod Koul
  2015-02-13  2:51 ` Laurent Pinchart
@ 2015-02-13  8:39 ` Vinod Koul
  2 siblings, 0 replies; 4+ messages in thread
From: Vinod Koul @ 2015-02-13  8:39 UTC (permalink / raw)
  To: linux-sh

On Fri, Feb 13, 2015 at 04:51:01AM +0200, Laurent Pinchart wrote:
> Hi Vinod,
> 
> On Thursday 12 February 2015 14:59:36 Vinod Koul wrote:
> > On Fri, Jan 30, 2015 at 02:00:07AM +0200, Laurent Pinchart wrote:
> > > Hello,
> > > 
> > > Here are a couple of fixes for the rcar-dmac driver. They're based on the
> > > next branch of the dmaengine tree.
> > > 
> > > The first four patches fix driver bugs, while the last two work around two
> > > hardware issues. Patch 5 works around a documented errata, while patch 6
> > > handles a data corruption issue that was noticed during test but not yet
> > > confirmed to be a hardware bug by Renesas. When more information about the
> > > issue will be available a better fix could possibly be developed.
> > > 
> > > The patches are available at
> > > 
> > > 	git://linuxtv.org/pinchartl/fbdev.git dma/upstream
> > > 
> > > Vinod, is there still time for a v3.20 pull request ?
> > 
> > Since this is fixes I was trying to merge them before I send to Linus in
> > next few days, but this fails to apply for me :(
> > 
> > I have merged everything into my for-linus which will be sent to him. Or you
> > can send later and we can get this into fixes
> 
> I've rebased my branch on your for-linus branch and pushed the result to
> 
> 	git://linuxtv.org/pinchartl/fbdev.git dma/upstream
Since I had to modify my branch, i ended up cherrypicking. So all these are
in my queue now.

Thanks

-- 
~Vinod


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

end of thread, other threads:[~2015-02-13  8:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-29 23:59 [PATCH v2 0/6] Renesas R-Car DMAC fixes Laurent Pinchart
2015-02-12  9:41 ` Vinod Koul
2015-02-13  2:51 ` Laurent Pinchart
2015-02-13  8:39 ` Vinod Koul

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).