Hi TIs:
The BSP version we used is Process SDK 03_02_00_03, due to customer requirement we need to test DSP function on DRA750 CPU and its ram size is 256MB. According to my understannding, the default cma setting of DSP is over 256MB memory space, as below
dsp1_cma_pool: dsp1_cma@99000000 {
compatible = "shared-dma-pool";
reg = <0x0 0x99000000 0x0 0x4000000>;
reusable;
status = "disabled";
};
dsp2_cma_pool: dsp2_cma@9f000000 {
compatible = "shared-dma-pool";
reg = <0x0 0x9f000000 0x0 0x800000>;
reusable;
status = "disabled";
};
So I change these setting to inside 256MB memory space, and keep the same size
dsp1_cma_pool: dsp1_cma@8a000000 {
compatible = "shared-dma-pool";
reg = <0x0 0x8a000000 0x0 0x4000000>;
reusable;
status = "okay";
};
dsp2_cma_pool: dsp2_cma@8e000000 {
compatible = "shared-dma-pool";
reg = <0x0 0x8e000000 0x0 0x800000>;
reusable;
status = "okay";
};
After load DSP firmware, run IPC examples(MessageQ), but it doesn't work
Do I need to modify the same cma setting in DSP firmware, and rebuild it ?
If yes, how can i do ?
Thanks!
Kenny