Other Parts Discussed in Thread: SYSBIOS
I want test the TDA2PX's core load, and I use the demo in C:\PROCESSOR_SDK_VISION_03_03_00_00\ti_components\drivers\pdk_01_09_00_17\packages\ti\drv\pm\examples\core_loading.
I have been successfully run the demo in debug mode(directly load the Out file into ram by emulator XDS560),and each core print its own core load message by uart.
The next step is to load the out file into flash. I follow the step about how to make image and write it into flash in TI's docs,and config the SYSboot key into QSPI1 boot mode(I has load the SBL into flash before, and the SBL works good). After that, I reboot the EVM,but it seems only the A15 core print it core load message and other cores don't work. Pls kindly give some advise about how to resolve the problem. The bellow is the cmd about how to generate the flash image。
:: This file is temporary, used for generating images that are compatible with TI's bootloader
:: This file should be deleted after integrating Valeo's bootloader.
@ECHO OFF
set PATH_TO_VSDK=C:\PROCESSOR_SDK_VISION_03_03_00_00
set OUT2RPRC_TOOL=%PATH_TO_VSDK%\ti_components\drivers\pdk_01_09_00_17\packages\ti\boot\sbl_auto\tools\out2rprc\out2rprc.exe
set MULTICORE_IMG_GEN_TOOL=%PATH_TO_VSDK%\ti_components\drivers\pdk_01_09_00_17\packages\ti\boot\sbl_auto\tools\multicore_image_generator\v1\MulticoreImageGen.exe
echo Converting a15..
call %OUT2RPRC_TOOL% pm_core_loading_app_a15_0_release.xa15fg a15.rprc
echo Converting dsp_1..
call %OUT2RPRC_TOOL% pm_core_loading_app_c66xdsp_1_release.xe66 dsp_1.rprc
echo Converting dsp_2..
call %OUT2RPRC_TOOL% pm_core_loading_app_c66xdsp_2_release.xe66 dsp_2.rprc
echo Converting eve_1..
call %OUT2RPRC_TOOL% pm_core_loading_app_arp32_1_release.xearp32F eve_1.rprc
echo Converting eve_2..
call %OUT2RPRC_TOOL% pm_core_loading_app_arp32_2_release.xearp32F eve_2.rprc
echo Converting m4_0..
call %OUT2RPRC_TOOL% pm_core_loading_app_ipu1_0_release.xem4 m4_0.rprc
echo Converting m4_1..
call %OUT2RPRC_TOOL% pm_core_loading_app_ipu1_1_release.xem4 m4_1.rprc
echo Generating multicore image..
%MULTICORE_IMG_GEN_TOOL% BE 1 AppImage 0 a15.rprc 2 m4_0.rprc 3 m4_1.rprc 8 dsp_1.rprc 9 dsp_2.rprc 10 eve_1.rprc 11 eve_2.rprc
echo Please QSPI BOOT.