Hi igorpadykov .,
Thanks for your reply.,
Here I am trying write my own bare metal program to initialize the secondary cores & enable.
I tried following steps:
>> I loaded the Hello_world.bin standalone program to the RAM(Addr: 0x10000000) using fatload command.
>> I have added an custom u-boot command in that I am initializing persistent bits of core 2(address) , Reset & Enable of core 2. as follows.
REG(SRC_GPR3) = 0x10000000; //Address of standalone bin file
val = REG(SRC_SCR);
val |= 1 << 14 ;
val |= 1 << 22 ;
REG(SRC_SCR) = val ; // RESET & Enable of secondary core
Up on entering the custom command I expect the standalone program to execute by secondary core, But its not working.
Can you please help me to resolve this issue.
Thank you.,
Regards
Edwin