I have modified the config2G.bld in DM8168 DVRRDK, and also modified some address in M3.
Now I need to modify the AMMU address, but I do not know how to modify them.
Such as:
AMMU.largePages[3].pageEnabled = AMMU.Enable_YES;
AMMU.largePages[3].logicalAddress = 0x20000000;
AMMU.largePages[3].translatedAddress = 0x80000000;
AMMU.largePages[3].translationEnabled = AMMU.Enable_YES;
AMMU.largePages[3].size = AMMU.Large_512M;
AMMU.largePages[3].L1_cacheable = AMMU.CachePolicy_CACHEABLE;
AMMU.largePages[3].L1_posted = AMMU.PostedPolicy_POSTED;
AMMU.largePages[3].L1_writePolicy = AMMU.WritePolicy_WRITE_BACK;
AMMU.largePages[3].L1_allocate = AMMU.AllocatePolicy_ALLOCATE;
AMMU.largePages[3].L2_cacheable = AMMU.CachePolicy_NON_CACHEABLE;
AMMU.largePages[3].L2_posted = AMMU.PostedPolicy_NON_POSTED;
What do them(logicalAddress and translatedAddress ) mean?
Could TI friends give me some links about them? Thanks.