Hi,
We are working on AM65xx EVM. We are trying to build the u-boot sources from the SDK (ti-processor-sdk-linux-am65xx-evm-07_01_00_17).
We are working on R5 firmware load by R5 SPL, to avoid R5 core going to low power state (wfe) after A53 initialization.
To do this we found the load firmware function in the file arch/arm/mach-k3/common.c. calling by function jump_to_image_no_args().
start_non_linux_remote_cores();
size = load_firmware("name_mcur5f0_0fw", "addr_mcur5f0_0load",
&loadaddr);
What could be the issue ?