]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ArmPlatformPkg/Sec/SecInternal.h
ArmPlatformPkg/Sec: Moved Exception Vector Table to ArmPkg/DebugAgentBaseLib
[mirror_edk2.git] / ArmPlatformPkg / Sec / SecInternal.h
index cf9c1707d5317196443e2921c72cf3e8bb8383fb..8bc21389e75cb666749cff3520473b17a78f4b5b 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
 *  Main file supporting the SEC Phase on ARM PLatforms\r
 *\r
-*  Copyright (c) 2011, ARM Limited. All rights reserved.\r
+*  Copyright (c) 2011-2012, ARM Limited. All rights reserved.\r
 *\r
 *  This program and the accompanying materials\r
 *  are licensed and made available under the terms and conditions of the BSD License\r
@@ -19,7 +19,7 @@
 #include <Base.h>\r
 #include <Library/ArmLib.h>\r
 #include <Library/ArmCpuLib.h>\r
-#include <Library/ArmPlatformLib.h>\r
+#include <Library/ArmPlatformSecLib.h>\r
 #include <Library/BaseLib.h>\r
 #include <Library/DebugLib.h>\r
 #include <Library/PcdLib.h>\r
 #define IS_ALIGNED(Address, Align) (((UINTN)Address & (Align-1)) == 0)\r
 \r
 VOID\r
-ArmSetupGicNonSecure (\r
-  IN  INTN          GicDistributorBase,\r
-  IN  INTN          GicInterruptInterfaceBase\r
-);\r
+TrustedWorldInitialization (\r
+  IN  UINTN                     MpId,\r
+  IN  UINTN                     SecBootMode\r
+  );\r
 \r
-// Vector Table for Sec Phase\r
 VOID\r
-SecVectorTable (\r
-  VOID\r
+NonTrustedWorldTransition (\r
+  IN  UINTN                     MpId,\r
+  IN  UINTN                     JumpAddress\r
   );\r
 \r
 VOID\r
-NonSecureWaitForFirmware (\r
-  VOID\r
-  );\r
+ArmSetupGicNonSecure (\r
+  IN  INTN                  GicDistributorBase,\r
+  IN  INTN                  GicInterruptInterfaceBase\r
+);\r
 \r
 VOID\r
 enter_monitor_mode (\r
-  IN VOID* Stack\r
+  IN UINTN                  MonitorEntryPoint,\r
+  IN UINTN                  MpId,\r
+  IN UINTN                  SecBootMode,\r
+  IN VOID*                  MonitorStackBase\r
   );\r
 \r
 VOID\r
 return_from_exception (\r
-  IN UINTN NonSecureBase\r
+  IN UINTN                  NonSecureBase\r
   );\r
 \r
 VOID\r
@@ -60,7 +64,7 @@ copy_cpsr_into_spsr (
 \r
 VOID\r
 set_non_secure_mode (\r
-  IN ARM_PROCESSOR_MODE              Mode\r
+  IN ARM_PROCESSOR_MODE     Mode\r
   );\r
 \r
 VOID\r