Lines Matching refs:controlTable
110 void DMA_setControlBase(void *controlTable) in DMA_setControlBase() argument
115 ASSERT(((uint32_t) controlTable & ~0x3FF) == (uint32_t) controlTable); in DMA_setControlBase()
116 ASSERT((uint32_t) controlTable >= 0x20000000); in DMA_setControlBase()
121 DMA_Control->CTLBASE = (uint32_t) controlTable; in DMA_setControlBase()
350 DMA_ControlTable *controlTable; in DMA_setChannelTransfer() local
373 controlTable = (DMA_ControlTable *) DMA_Control->CTLBASE; in DMA_setChannelTransfer()
379 control = (controlTable[channelStructIndex].control 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()
472 DMA_ControlTable *controlTable; in DMA_setChannelScatterGather() local
494 controlTable = (DMA_ControlTable *) DMA_Control->CTLBASE; in DMA_setChannelScatterGather()
505 controlTable[channelNum].srcEndAddr = &pTaskTable[taskCount - 1].spare; in DMA_setChannelScatterGather()
511 controlTable[channelNum].dstEndAddr = &controlTable[channelNum in DMA_setChannelScatterGather()
520 controlTable[channelNum].control = (UDMA_CHCTL_DSTINC_32 in DMA_setChannelScatterGather()
540 DMA_ControlTable *controlTable; in DMA_getChannelSize() local
559 controlTable = (DMA_ControlTable *) DMA_Control->CTLBASE; in DMA_getChannelSize()
565 control = (controlTable[channelStructIndex].control in DMA_getChannelSize()
592 DMA_ControlTable *controlTable; in DMA_getChannelMode() local
611 controlTable = (DMA_ControlTable *) DMA_Control->CTLBASE; in DMA_getChannelMode()
617 (controlTable[channelStructIndex].control & UDMA_CHCTL_XFERMODE_M); in DMA_getChannelMode()