I am following the ipcf doc guide to run IPCF_Example_S32G399_M7_0.bin below,
- Disable Data Cache from uboot::
dcache off
- Zero-set SRAM shared memory used by both sample apps::
mw.q 0x34000000 0x0 0x100000
- Load binary in DDRAM and after is SRAM::
fatload mmc 0:1 0x80000000 IPCF_Example_S32G399_M7_0.bin
cp.q 0x80000000 0x34300000 0x60000
- Start M7 core (the argument is the address of the Interrupt Vector)
startm7 0x34381000
- Boot Linux
boot
and I can build by this command
make platform=s32g399a core=m7_0 os_target=baremetal/freertos/autosar build
So I am wondering whether all kinds of images in the same way to run.