public inbox for dmaengine@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] dmaengine: sh: rz-dmac: Set DMA transfer parameters based on the direction
@ 2022-04-09 16:53 Biju Das
  2022-04-11 10:55 ` Vinod Koul
  0 siblings, 1 reply; 4+ messages in thread
From: Biju Das @ 2022-04-09 16:53 UTC (permalink / raw)
  To: Vinod Koul
  Cc: Biju Das, Colin Ian King, Lad Prabhakar, Geert Uytterhoeven,
	Dan Carpenter, dmaengine, Chris Paterson, Biju Das,
	linux-renesas-soc

Client drivers configure DMA transfer parameters based on the DMA
transfer direction.

This patch sets corresponding parameters in rz_dmac_config() based
on the DMA transfer direction.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
v1->v2:
 * Updated commit description
---
 drivers/dma/sh/rz-dmac.c | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/drivers/dma/sh/rz-dmac.c b/drivers/dma/sh/rz-dmac.c
index ee2872e7d64c..de57ae006879 100644
--- a/drivers/dma/sh/rz-dmac.c
+++ b/drivers/dma/sh/rz-dmac.c
@@ -597,24 +597,24 @@ static int rz_dmac_config(struct dma_chan *chan,
 			  struct dma_slave_config *config)
 {
 	struct rz_dmac_chan *channel = to_rz_dmac_chan(chan);
-	u32 val;
+	u32 val, data_sz;
 
-	channel->src_per_address = config->src_addr;
-	channel->src_word_size = config->src_addr_width;
-	channel->dst_per_address = config->dst_addr;
-	channel->dst_word_size = config->dst_addr_width;
-
-	val = rz_dmac_ds_to_val_mapping(config->dst_addr_width);
-	if (val == CHCFG_DS_INVALID)
-		return -EINVAL;
-
-	channel->chcfg |= CHCFG_FILL_DDS(val);
+	if (config->direction == DMA_DEV_TO_MEM) {
+		channel->src_per_address = config->src_addr;
+		channel->src_word_size = config->src_addr_width;
+		val = rz_dmac_ds_to_val_mapping(config->src_addr_width);
+		data_sz = CHCFG_FILL_SDS(val);
+	} else {
+		channel->dst_per_address = config->dst_addr;
+		channel->dst_word_size = config->dst_addr_width;
+		val = rz_dmac_ds_to_val_mapping(config->dst_addr_width);
+		data_sz = CHCFG_FILL_DDS(val);
+	}
 
-	val = rz_dmac_ds_to_val_mapping(config->src_addr_width);
 	if (val == CHCFG_DS_INVALID)
 		return -EINVAL;
 
-	channel->chcfg |= CHCFG_FILL_SDS(val);
+	channel->chcfg |= data_sz;
 
 	return 0;
 }
-- 
2.25.1


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

end of thread, other threads:[~2022-04-11 11:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-09 16:53 [PATCH v2] dmaengine: sh: rz-dmac: Set DMA transfer parameters based on the direction Biju Das
2022-04-11 10:55 ` Vinod Koul
2022-04-11 11:06   ` Biju Das
2022-04-11 11:26     ` Vinod Koul

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox