Lines Matching refs:channelStructIndex

315 void DMA_setChannelControl(uint32_t channelStructIndex, uint32_t control)  in DMA_setChannelControl()  argument
322 ASSERT((channelStructIndex & 0xffff) < 64); in DMA_setChannelControl()
330 channelStructIndex &= 0x3f; in DMA_setChannelControl()
341 pCtl[channelStructIndex].control = ((pCtl[channelStructIndex].control in DMA_setChannelControl()
347 void DMA_setChannelTransfer(uint32_t channelStructIndex, uint32_t mode, in DMA_setChannelTransfer() argument
358 ASSERT((channelStructIndex & 0xffff) < 64); in DMA_setChannelTransfer()
368 channelStructIndex &= 0x3f; in DMA_setChannelTransfer()
379 control = (controlTable[channelStructIndex].control in DMA_setChannelTransfer()
385 if (channelStructIndex & UDMA_ALT_SELECT) in DMA_setChannelTransfer()
420 controlTable[channelStructIndex].srcEndAddr = srcAddr; in DMA_setChannelTransfer()
444 dstAddr = (void *) &controlTable[channelStructIndex in DMA_setChannelTransfer()
461 controlTable[channelStructIndex].dstEndAddr = dstAddr; in DMA_setChannelTransfer()
466 controlTable[channelStructIndex].control = control; in DMA_setChannelTransfer()
538 uint32_t DMA_getChannelSize(uint32_t channelStructIndex) in DMA_getChannelSize() argument
546 ASSERT((channelStructIndex & 0xffff) < 16); in DMA_getChannelSize()
554 channelStructIndex &= 0x3f; in DMA_getChannelSize()
565 control = (controlTable[channelStructIndex].control in DMA_getChannelSize()
590 uint32_t DMA_getChannelMode(uint32_t channelStructIndex) in DMA_getChannelMode() argument
598 ASSERT((channelStructIndex & 0xffff) < 64); in DMA_getChannelMode()
606 channelStructIndex &= 0x3f; in DMA_getChannelMode()
617 (controlTable[channelStructIndex].control & UDMA_CHCTL_XFERMODE_M); in DMA_getChannelMode()