Re: [PATCH V3 1/2] dmaengine: qcom_hidma: introduce memset support

From: Vinod Koul
Date: Tue Jul 18 2017 - 12:44:28 EST


On Tue, Jul 18, 2017 at 12:26:14PM -0400, Sinan Kaya wrote:
> Hi Vinod,
>
> On 7/18/2017 12:19 PM, Vinod Koul wrote:
> > On Thu, Jun 29, 2017 at 10:30:57PM -0400, Sinan Kaya wrote:
> >
> >> @@ -410,7 +410,40 @@ static int hidma_alloc_chan_resources(struct dma_chan *dmach)
> >> return NULL;
> >>
> >> hidma_ll_set_transfer_params(mdma->lldev, mdesc->tre_ch,
> >> - src, dest, len, flags);
> >> + src, dest, len, flags,
> >> + HIDMA_TRE_MEMCPY);
> >> +
> >> + /* Place descriptor in prepared list */
> >> + spin_lock_irqsave(&mchan->lock, irqflags);
> >> + list_add_tail(&mdesc->node, &mchan->prepared);
> >> + spin_unlock_irqrestore(&mchan->lock, irqflags);
> >
> > This change looks suspicious, cna you clarify the need to do this?
> >
> >
>
> Diff looks weird for some reason. I noticed that too.
>
> I just added HIDMA_TRE_MEMCPY parameter to hidma_ll_set_transfer_params() function call
> from hidma_prep_dma_memcpy() and created a new hidma_prep_dma_memset() function very
> similar to memcpy with HIDMA_TRE_MEMSET call difference.
>
> My suggestion is to use kdiff or another visual tool to look at the change.

ah fine then, let me take a look at it again with rested pair of eyes in the
morn :)

--
~Vinod