SPM: Add a panic after NS jumping

In general the NS jumping should never return. Add a panic
after jump in case a failed jumping would run to random places.

Change-Id: I55106d2f9168518b491cc00ddd9bb2b3c771618b
Signed-off-by: Ken Liu <ken.liu@arm.com>
diff --git a/secure_fw/spm/runtime/tfm_spm_services.c b/secure_fw/spm/runtime/tfm_spm_services.c
index 25c6514..63d88e0 100644
--- a/secure_fw/spm/runtime/tfm_spm_services.c
+++ b/secure_fw/spm/runtime/tfm_spm_services.c
@@ -21,6 +21,8 @@
 {
     /* Calls the non-secure Reset_Handler to jump to the non-secure binary */
     ns_entry();
+
+    tfm_core_panic();
 }
 
 __attribute__((naked))