I got run m7 core guidance from doc info below,
- Hit any key to stop in the u-boot console
- Disable Data Cache from uboot::
dcache off
- Zero-set SRAM shared memory used by both sample apps::
mw.q 0x34000000 0x0 0x100000
- Load binaries in DDRAM and after is SRAM::
fatload mmc 0:1 0x80000000 IPCF_Example_multi_instance_S32G399_M7_0.bin
cp.q 0x80000000 0x34100000 0x30000
fatload mmc 0:1 0x80000000 IPCF_Example_multi_instance_S32G399_M7_1.bin
cp.q 0x80000000 0x34200000 0x30000
- Start M7 core (the argument is the address of the Interrupt Vector)::
startm7 0x34181000
But I do not know just enabled core running or multi_instance sample binary running, thanks.