Lines Matching refs:DMA_InitStruct
351 LL_DMA_InitTypeDef DMA_InitStruct; in dma_stm32_configure() local
354 LL_DMA_StructInit(&DMA_InitStruct); in dma_stm32_configure()
435 DMA_InitStruct.SrcAddress = config->head_block->source_address; in dma_stm32_configure()
436 DMA_InitStruct.DestAddress = config->head_block->dest_address; in dma_stm32_configure()
437 DMA_InitStruct.BlkHWRequest = LL_DMA_HWREQUEST_SINGLEBURST; in dma_stm32_configure()
438 DMA_InitStruct.DataAlignment = LL_DMA_DATA_ALIGN_ZEROPADD; in dma_stm32_configure()
441 &DMA_InitStruct.Priority); in dma_stm32_configure()
447 &DMA_InitStruct.Direction); in dma_stm32_configure()
455 DMA_InitStruct.SrcIncMode = LL_DMA_SRC_INCREMENT; in dma_stm32_configure()
458 DMA_InitStruct.SrcIncMode = LL_DMA_SRC_FIXED; in dma_stm32_configure()
468 id, DMA_InitStruct.SrcIncMode); in dma_stm32_configure()
473 DMA_InitStruct.DestIncMode = LL_DMA_DEST_INCREMENT; in dma_stm32_configure()
476 DMA_InitStruct.DestIncMode = LL_DMA_DEST_FIXED; in dma_stm32_configure()
486 id, DMA_InitStruct.DestIncMode); in dma_stm32_configure()
493 DMA_InitStruct.SrcDataWidth = table_src_size[index]; in dma_stm32_configure()
496 DMA_InitStruct.DestDataWidth = table_dst_size[index]; in dma_stm32_configure()
498 DMA_InitStruct.BlkDataLength = config->head_block->block_size; in dma_stm32_configure()
501 DMA_InitStruct.Request = config->dma_slot; in dma_stm32_configure()
503 LL_DMA_Init(dma, dma_stm32_id_to_stream(id), &DMA_InitStruct); in dma_stm32_configure()