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.

6678的cfg配置本地L2



bios下实现多核通信,每个核有自己不同的算法。我在共享存储区放置原始数据,然后每个核使用qdma搬移自己使用的数据到L2里面,因为每个核算法不一样,所以L2中设置的buff应该也不一样,但是不知道怎么根据不同的核设置cfg

  • 如果多核分别使用不同的工程,则每个工程都可以有一个cfg文件,可以在每个工程及cfg中定义各自的memory及变量;如果多核共享一个工程,且每个core对LL2的划分不一样,则可以在编辑platform,对每个core LL2的划分使用全局地址,如core0 LL2全局起始地址0x10800000,core1 LL2全局起始地址0x11800000,然后在cfg中将各核的section放到不同的memory中。

  • 谢谢您的回答

    基本上明白了,就是不知道如何编辑platform???