Commit 8f95adcf authored by Peng Ma's avatar Peng Ma Committed by Vinod Koul

dmaengine: fsl-qdma: fixed the source/destination descriptor format

CMD of Source/Destination descriptor format should be lower of
struct fsl_qdma_engine number data address.
Signed-off-by: default avatarPeng Ma <peng.ma@nxp.com>
Signed-off-by: default avatarVinod Koul <vkoul@kernel.org>
parent 5b969bd1
...@@ -113,6 +113,7 @@ ...@@ -113,6 +113,7 @@
/* Field definition for Descriptor offset */ /* Field definition for Descriptor offset */
#define QDMA_CCDF_STATUS 20 #define QDMA_CCDF_STATUS 20
#define QDMA_CCDF_OFFSET 20 #define QDMA_CCDF_OFFSET 20
#define QDMA_SDDF_CMD(x) (((u64)(x)) << 32)
/* Field definition for safe loop count*/ /* Field definition for safe loop count*/
#define FSL_QDMA_HALT_COUNT 1500 #define FSL_QDMA_HALT_COUNT 1500
...@@ -341,6 +342,7 @@ static void fsl_qdma_free_chan_resources(struct dma_chan *chan) ...@@ -341,6 +342,7 @@ static void fsl_qdma_free_chan_resources(struct dma_chan *chan)
static void fsl_qdma_comp_fill_memcpy(struct fsl_qdma_comp *fsl_comp, static void fsl_qdma_comp_fill_memcpy(struct fsl_qdma_comp *fsl_comp,
dma_addr_t dst, dma_addr_t src, u32 len) dma_addr_t dst, dma_addr_t src, u32 len)
{ {
u32 cmd;
struct fsl_qdma_format *sdf, *ddf; struct fsl_qdma_format *sdf, *ddf;
struct fsl_qdma_format *ccdf, *csgf_desc, *csgf_src, *csgf_dest; struct fsl_qdma_format *ccdf, *csgf_desc, *csgf_src, *csgf_dest;
...@@ -369,14 +371,14 @@ static void fsl_qdma_comp_fill_memcpy(struct fsl_qdma_comp *fsl_comp, ...@@ -369,14 +371,14 @@ static void fsl_qdma_comp_fill_memcpy(struct fsl_qdma_comp *fsl_comp,
/* This entry is the last entry. */ /* This entry is the last entry. */
qdma_csgf_set_f(csgf_dest, len); qdma_csgf_set_f(csgf_dest, len);
/* Descriptor Buffer */ /* Descriptor Buffer */
sdf->data = cmd = cpu_to_le32(FSL_QDMA_CMD_RWTTYPE <<
cpu_to_le64(FSL_QDMA_CMD_RWTTYPE <<
FSL_QDMA_CMD_RWTTYPE_OFFSET); FSL_QDMA_CMD_RWTTYPE_OFFSET);
ddf->data = sdf->data = QDMA_SDDF_CMD(cmd);
cpu_to_le64(FSL_QDMA_CMD_RWTTYPE <<
cmd = cpu_to_le32(FSL_QDMA_CMD_RWTTYPE <<
FSL_QDMA_CMD_RWTTYPE_OFFSET); FSL_QDMA_CMD_RWTTYPE_OFFSET);
ddf->data |= cmd |= cpu_to_le32(FSL_QDMA_CMD_LWC << FSL_QDMA_CMD_LWC_OFFSET);
cpu_to_le64(FSL_QDMA_CMD_LWC << FSL_QDMA_CMD_LWC_OFFSET); ddf->data = QDMA_SDDF_CMD(cmd);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment