[Sound-open-firmware] [PATCH] dw-dma: add src_msize and dest_msize to dma_sg_element setting
15 Dec
2017
15 Dec
'17
3:44 p.m.
We need configure different msize for different dma copy, so here introduce it to dma_sg_element struct.
Signed-off-by: Keyon Jie yang.jie@linux.intel.com --- src/include/reef/dma.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/src/include/reef/dma.h b/src/include/reef/dma.h index 697e2c6..fea1cfa 100644 --- a/src/include/reef/dma.h +++ b/src/include/reef/dma.h @@ -70,6 +70,8 @@ struct dma_sg_elem { struct dma_sg_config { uint32_t src_width; uint32_t dest_width; + uint32_t src_msize; + uint32_t dest_msize; uint32_t direction; uint32_t src_dev; uint32_t dest_dev;
--
2.11.0
2564
Age (days ago)
2564
Last active (days ago)
0 comments
1 participants
participants (1)
-
Keyon Jie