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.
Tool/software: Code Composer Studio
Hi,
In psdk_rtos_auto_j7_06_02_00_21/vision_apps, the C71 L2 cache configured to 32KB.
I want to set all L2(512KB) to cache, what should I do?
thanks.
Can you try changing the value to 512KB?
vision_apps/apps/basic_demos/app_tirtos/tirtos_linux/c7x_1/c7x_1.cfg
Cache.initSize.l2Size = Cache.L2Size_512K;
Also 448KB is configured as L2 SRAM so you will have move that space to DDR,
vision_apps/apps/basic_demos/app_tirtos/tirtos_linux/c7x_1/linker.cmd
.bss:l2mem (NOLOAD)(NOINIT) : {} > DDR_C7x_1 /*L2RAM_C7x_1*/
Regards,
Shyam
Hi,
Thanks for your reply.
I had changing the value to 512KB base on your advise, but the performance of our project have no change.
Can you tell me, how to check the L2 cache size after config?
Thanks.