Given this from http://processors.wiki.ti.com/index.php/DM81xx_C6A81xx_AM38xx_EDMA_Driver_User_Guide:

How should I configure EDMA3 RM in Framework Components ?
Is there example .cfg for codec server I can use?
The default one in the EzSDK (all_syslink.cfg) is causing EDMA conflicts with linux driver:
DMAN3.paRamBaseIndex = 80; // 1st EDMA3 PaRAM set available for DMAN3
DMAN3.numQdmaChannels = 8; // number of device's QDMA channels to use
DMAN3.qdmaChannels = [0,1,2,3,4,5,6,7]; // choice of QDMA channels to use
DMAN3.numPaRamEntries = 48; // number of PaRAM sets exclusively usedby DMAN
DMAN3.numPaRamGroup[0] = 48; //number of PaRAM sets for scratch group 0
DMAN3.numTccGroup[0] = 32; //number of TCCs assigned to scratch group 0
DMAN3.tccAllocationMaskL = 0; // bit mask indicating which TCCs 0..31 //to use
DMAN3.tccAllocationMaskH = 0xffffffff; // assign all TCCs 32..63 for DMAN
I am thinking of using useExternalRM to avoid this problem. But stumped at what should I use for the list of parameters mentioned here that would work for netra :
http://processors.wiki.ti.com/index.php/Configuration_of_EDMA3_RM_in_Framework_Components
