]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ArmPlatformPkg/Library/DebugSecExtraActionLib/DebugSecExtraActionLib.c
ArmPkg/ArmGic: Returned the InterruptId in ArmGicAcknowledgeInterrupt()
[mirror_edk2.git] / ArmPlatformPkg / Library / DebugSecExtraActionLib / DebugSecExtraActionLib.c
index f42f51872240ca59b42b017856784d5001838bf9..1e1b1ea64da987faef057d6a69a92f1c0c1a3217 100755 (executable)
@@ -1,6 +1,6 @@
 /** @file\r
 *\r
-*  Copyright (c) 2011-2012, ARM Limited. All rights reserved.\r
+*  Copyright (c) 2011-2014, 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
@@ -30,24 +30,25 @@ NonSecureWaitForFirmware (
   VOID\r
   )\r
 {\r
-  VOID (*secondary_start)(VOID);\r
-  UINTN Interrupt;\r
+  VOID (*SecondaryStart)(VOID);\r
+  UINTN AcknowledgeInterrupt;\r
+  UINTN InterruptId;\r
 \r
   // The secondary cores will execute the firmware once wake from WFI.\r
-  secondary_start = (VOID (*)())PcdGet32(PcdFvBaseAddress);\r
+  SecondaryStart = (VOID (*)())PcdGet32 (PcdFvBaseAddress);\r
 \r
-  ArmCallWFI();\r
+  ArmCallWFI ();\r
 \r
   // Acknowledge the interrupt and send End of Interrupt signal.\r
-  Interrupt = ArmGicAcknowledgeInterrupt (PcdGet32 (PcdGicInterruptInterfaceBase));\r
+  AcknowledgeInterrupt = ArmGicAcknowledgeInterrupt (PcdGet32 (PcdGicInterruptInterfaceBase), &InterruptId);\r
   // Check if it is a valid interrupt ID\r
-  if ((Interrupt & ARM_GIC_ICCIAR_ACKINTID) < ArmGicGetMaxNumInterrupts (PcdGet32 (PcdGicDistributorBase))) {\r
+  if (InterruptId < ArmGicGetMaxNumInterrupts (PcdGet32 (PcdGicDistributorBase))) {\r
     // Got a valid SGI number hence signal End of Interrupt\r
-    ArmGicEndOfInterrupt (PcdGet32 (PcdGicInterruptInterfaceBase), Interrupt);\r
+    ArmGicEndOfInterrupt (PcdGet32 (PcdGicInterruptInterfaceBase), AcknowledgeInterrupt);\r
   }\r
 \r
   // Jump to secondary core entry point.\r
-  secondary_start ();\r
+  SecondaryStart ();\r
 \r
   // PEI Core should always load and never return\r
   ASSERT (FALSE);\r