On Fri, Aug 19, 2011 at 2:24 PM, Boojin Kim <boojin.kim@xxxxxxxxxxx> wrote: > Signed-off-by: Boojin Kim <boojin.kim@xxxxxxxxxxx> > Acked-by: Linus Walleij <linus.walleij@xxxxxxxxxx> > Acked-by: Vinod Koul <vinod.koul@xxxxxxxxx> > Cc: Dan Williams <dan.j.williams@xxxxxxxxx> > Signed-off-by: Kukjin Kim <kgene.kim@xxxxxxxxxxx> > --- > drivers/dma/pl330.c | 56 ++++++++++++++++++++++++++++++++++++++------------ > 1 files changed, 42 insertions(+), 14 deletions(-) > > diff --git a/drivers/dma/pl330.c b/drivers/dma/pl330.c > index d5829c7..59943ec 100644 > --- a/drivers/dma/pl330.c > +++ b/drivers/dma/pl330.c > @@ -73,6 +73,7 @@ struct dma_pl330_chan { > > /* For D-to-M and M-to-D channels */ > int burst_sz; /* the peripheral fifo width */ > + int burst_len; /* the number of burst */ > dma_addr_t fifo_addr; > }; > > @@ -261,25 +262,52 @@ static int pl330_alloc_chan_resources(struct dma_chan *chan) > static int pl330_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd, unsigned long arg) > { > struct dma_pl330_chan *pch = to_pchan(chan); > - struct dma_pl330_desc *desc; > + struct dma_pl330_desc *desc, *_dt; > unsigned long flags; > + struct dma_pl330_dmac *pdmac = pch->dmac; > + struct dma_slave_config *slave_config; > + LIST_HEAD(list); > > - /* Only supports DMA_TERMINATE_ALL */ > - if (cmd != DMA_TERMINATE_ALL) > - return -ENXIO; > - > - spin_lock_irqsave(&pch->lock, flags); > - > - /* FLUSH the PL330 Channel thread */ > - pl330_chan_ctrl(pch->pl330_chid, PL330_OP_FLUSH); > + switch (cmd) { > + case DMA_TERMINATE_ALL: > + spin_lock_irqsave(&pch->lock, flags); > > - /* Mark all desc done */ > - list_for_each_entry(desc, &pch->work_list, node) > - desc->status = DONE; > + /* FLUSH the PL330 Channel thread */ > + pl330_chan_ctrl(pch->pl330_chid, PL330_OP_FLUSH); > > - spin_unlock_irqrestore(&pch->lock, flags); > + /* Mark all desc done */ > + list_for_each_entry_safe(desc, _dt, &pch->work_list , node) { > + desc->status = DONE; > + pch->completed = desc->txd.cookie; > + list_move_tail(&desc->node, &list); > + } > > - pl330_tasklet((unsigned long) pch); > + list_splice_tail_init(&list, &pdmac->desc_pool); > + spin_unlock_irqrestore(&pch->lock, flags); > + break; > + case DMA_SLAVE_CONFIG: > + slave_config = (struct dma_slave_config *)arg; > + > + if (slave_config->direction == DMA_TO_DEVICE) { > + if (slave_config->dst_addr) > + pch->fifo_addr = slave_config->dst_addr; > + if (slave_config->dst_addr_width) > + pch->burst_sz = __ffs(slave_config->dst_addr_width); > + if (slave_config->dst_maxburst) > + pch->burst_len = slave_config->dst_maxburst; > + } else if (slave_config->direction == DMA_FROM_DEVICE) { > + if (slave_config->src_addr) > + pch->fifo_addr = slave_config->src_addr; > + if (slave_config->src_addr_width) > + pch->burst_sz = __ffs(slave_config->src_addr_width); > + if (slave_config->src_maxburst) > + pch->burst_len = slave_config->src_maxburst; > + } > + break; > + default: > + dev_err(pch->dmac->pif.dev, "Not supported command.\n"); > + return -ENXIO; > + } Apart from the alleged purpose "Support DMA_SLAVE_CONFIG command" this patch also modifies the behavior of DMA_TERMINATE_ALL. If the change is intended, please split it into two patches and explain the reason. Otherwise, restore the behavior. -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html