Hi,
I use EDMA3 to move information from address 0x90000000 to 0x80000000 on EVB for c6670 (EDMA inst =1, Chanal =0 PAR_SET_NR=32). My EDMA works fine, but if I use the C-counter bigger than 32768, the data transfer does not work (though I get the interrupt that the EDMA transfer was finished).
Has the C counter the maxim value of 32768 (size of short) for C6670?
myParamSetup.option = CSL_EDMA3_OPT_MAKE(CSL_EDMA3_ITCCH_EN, \
CSL_EDMA3_TCCH_DIS, \
CSL_EDMA3_ITCINT_DIS, \
CSL_EDMA3_TCINT_EN, \
0, \
CSL_EDMA3_TCC_NORMAL, \
CSL_EDMA3_FIFOWIDTH_NONE, \
CSL_EDMA3_STATIC_DIS, \
CSL_EDMA3_SYNC_AB, \
CSL_EDMA3_ADDRMODE_INCR, \
CSL_EDMA3_ADDRMODE_INCR );
myParamSetup.srcAddr = (Uint32)pSourceAdd;
myParamSetup.aCntbCnt = CSL_EDMA3_CNT_MAKE(4,4);
myParamSetup.dstAddr = ((Uint32)pDestinitionAdd);
myParamSetup.srcDstBidx = CSL_EDMA3_BIDX_MAKE(4,4);
// myParamSetup.linkBcntrld= CSL_EDMA3_LINKBCNTRLD_MAKE(hParamPong,0); //not used
myParamSetup.srcDstCidx = CSL_EDMA3_CIDX_MAKE(16,16);
myParamSetup.cCnt = 32768; //C_countr> 32768 does not work