Hi Deepak,
Could you try to jump to the application using this function and disable interrupts before the jump?
void startApplication(unsigned long app_link_location){
S32_SCB->VTOR = (uint32_t)(app_link_location); /*Relocate interrupt table ptr*/
asm(" ldr sp, [r0,#0]");
asm(" ldr pc, [r0,#4]");
}
I hope it helps you.
If it does not work, let me know.
Best regards,
Diana