From 41fb5d4634c17c042e0a3b2be0e8db85d2a083ad Mon Sep 17 00:00:00 2001 From: Olivier Martin Date: Mon, 16 Feb 2015 10:23:42 +0000 Subject: ArmPkg/ArmGic: Use the GIC Redistributor instead of GIC Distributor for GICv3 GICv3 controller with no GICv2 legacy support must use the GIC Redistributor registers instead of the GIC Distributor registers for some operations (eg: enable/disable interrupts). Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Olivier Martin Tested-by: Ard Biesheuvel Reviewed-by: Ard Biesheuvel git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16874 6f19259b-4bc3-4df7-8a09-765794883524 --- ArmPkg/Include/Library/ArmGicLib.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ArmPkg/Include') diff --git a/ArmPkg/Include/Library/ArmGicLib.h b/ArmPkg/Include/Library/ArmGicLib.h index 6cd93a1..2ab9977 100644 --- a/ArmPkg/Include/Library/ArmGicLib.h +++ b/ArmPkg/Include/Library/ArmGicLib.h @@ -208,6 +208,7 @@ VOID EFIAPI ArmGicEnableInterrupt ( IN UINTN GicDistributorBase, + IN UINTN GicRedistributorBase, IN UINTN Source ); @@ -215,6 +216,7 @@ VOID EFIAPI ArmGicDisableInterrupt ( IN UINTN GicDistributorBase, + IN UINTN GicRedistributorBase, IN UINTN Source ); @@ -222,6 +224,7 @@ BOOLEAN EFIAPI ArmGicIsInterruptEnabled ( IN UINTN GicDistributorBase, + IN UINTN GicRedistributorBase, IN UINTN Source ); -- cgit v1.1