diff options
author | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-03-26 10:45:27 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-03-26 10:45:27 +0000 |
commit | 9253410646466768a15099ac169f9ee852b2f563 (patch) | |
tree | 64810d817c136adfa6ff82a0423641394e705511 /ArmPkg/Include | |
parent | f15f91a22f4eef381be51f5dc491c04f76cd1b58 (diff) | |
download | edk2-platforms-9253410646466768a15099ac169f9ee852b2f563.tar.xz |
ArmPkg/ArmGicLib: Added function ArmGicSetSecureInterrupts() to define the secure interrupts
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13122 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPkg/Include')
-rw-r--r-- | ArmPkg/Include/Library/ArmGicLib.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ArmPkg/Include/Library/ArmGicLib.h b/ArmPkg/Include/Library/ArmGicLib.h index 78bba23ba7..66e12dad59 100644 --- a/ArmPkg/Include/Library/ArmGicLib.h +++ b/ArmPkg/Include/Library/ArmGicLib.h @@ -72,7 +72,7 @@ //
-// GIC SEC interfaces
+// GIC Secure interfaces
//
VOID
EFIAPI
@@ -83,6 +83,14 @@ ArmGicSetupNonSecure ( VOID
EFIAPI
+ArmGicSetSecureInterrupts (
+ IN UINTN GicDistributorBase,
+ IN UINTN* GicSecureInterruptMask,
+ IN UINTN GicSecureInterruptMaskSize
+ );
+
+VOID
+EFIAPI
ArmGicEnableInterruptInterface (
IN INTN GicInterruptInterfaceBase
);
|