Lines Matching refs:controlTable
120 void DMA_setControlBase(void *controlTable) in DMA_setControlBase() argument
125 ASSERT(((uint32_t) controlTable & ~0x3FF) == (uint32_t) controlTable); in DMA_setControlBase()
126 ASSERT((uint32_t) controlTable >= 0x20000000); in DMA_setControlBase()
131 DMA_Control->CTLBASE = (uint32_t) controlTable; in DMA_setControlBase()
360 DMA_ControlTable *controlTable; in DMA_setChannelTransfer() local
383 controlTable = (DMA_ControlTable *) DMA_Control->CTLBASE; in DMA_setChannelTransfer()
389 control = (controlTable[channelStructIndex].control in DMA_setChannelTransfer()
430 controlTable[channelStructIndex].srcEndAddr = srcAddr; in DMA_setChannelTransfer()
454 dstAddr = (void *) &controlTable[channelStructIndex in DMA_setChannelTransfer()
471 controlTable[channelStructIndex].dstEndAddr = dstAddr; in DMA_setChannelTransfer()
476 controlTable[channelStructIndex].control = control; in DMA_setChannelTransfer()
482 DMA_ControlTable *controlTable; in DMA_setChannelScatterGather() local
504 controlTable = (DMA_ControlTable *) DMA_Control->CTLBASE; in DMA_setChannelScatterGather()
515 controlTable[channelNum].srcEndAddr = &pTaskTable[taskCount - 1].spare; in DMA_setChannelScatterGather()
521 controlTable[channelNum].dstEndAddr = &controlTable[channelNum in DMA_setChannelScatterGather()
530 controlTable[channelNum].control = (UDMA_CHCTL_DSTINC_32 in DMA_setChannelScatterGather()
550 DMA_ControlTable *controlTable; in DMA_getChannelSize() local
569 controlTable = (DMA_ControlTable *) DMA_Control->CTLBASE; in DMA_getChannelSize()
575 control = (controlTable[channelStructIndex].control in DMA_getChannelSize()
602 DMA_ControlTable *controlTable; in DMA_getChannelMode() local
621 controlTable = (DMA_ControlTable *) DMA_Control->CTLBASE; in DMA_getChannelMode()
627 (controlTable[channelStructIndex].control & UDMA_CHCTL_XFERMODE_M); in DMA_getChannelMode()