This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

PROCESSOR-SDK-J784S4: PROCESSOR-SDK-J784S4: Understanding memory section in FFTlib

Part Number: PROCESSOR-SDK-J784S4
Other Parts Discussed in Thread: FFTLIB

Tool/software:

Hi

I have a test application developed for computing the FFT for our custom raw data and the linker file for our test application is as follows,

Processor : J784s4_evm

Core : C7x_1

Here the memory address for L1 and L2 Ram is taken from the system_memory_map from the vision_apps.

In FFTLib lnk.cmd "ti-processor-sdk-rtos-j784s4-evm-09_02_00_05\fftlib_09_02_00_04\cmake\linkers\C7120\lnk.cmd" , the memory address given for L1 and L2 looks different , can you please comment on these addresses where these are used in the FFT library because I am facing issue while booting this test application from linux system which is clashing some how with the memory

MEMORY
{
#if defined(RTL_TEST)
  L2SRAM (RWX)  : org = 0x64E00000, len = 0xB200000
  /* Temporary place holder for L1D*/
  L1DSRAM  (RWX): org = 0xA0000000, len = 0x004000
#else
  L2SRAM (RWX)  : org = 0x64E00000, len = 0xF800000
  /* Temporary place holder for L1D*/
  L1DSRAM  (RWX): org = 0xA0000000, len = 0x004000
#endif
  EXTMEM (RWX)  : org = 0x80000000, len = 0x800000
}
Thanks
Madhu