HomeSort by relevance Sort by last modified time
    Searched refs:InterruptId (Results 1 - 6 of 6) sorted by null

  /device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/GicV2/
ArmGicV2SecLib.c 34 UINTN InterruptId;
44 InterruptId = MmioRead32 (GicInterruptInterfaceBase + ARM_GIC_ICCIAR);
48 while ((InterruptId & 0x3FF) < MaxInterrupts) {
50 ArmGicEndOfInterrupt (GicInterruptInterfaceBase, InterruptId);
53 InterruptId = MmioRead32 (GicInterruptInterfaceBase + ARM_GIC_ICCIAR);
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/DebugSecExtraActionLib/
DebugSecExtraActionLib.c 35 UINTN InterruptId;
43 AcknowledgeInterrupt = ArmGicAcknowledgeInterrupt (PcdGet32 (PcdGicInterruptInterfaceBase), &InterruptId);
45 if (InterruptId < ArmGicGetMaxNumInterrupts (PcdGet32 (PcdGicDistributorBase))) {
  /device/linaro/bootloader/edk2/ArmPlatformPkg/PrePi/
MainMPCore.c 58 UINTN InterruptId;
91 AcknowledgeInterrupt = ArmGicAcknowledgeInterrupt (PcdGet32 (PcdGicInterruptInterfaceBase), &InterruptId);
93 if (InterruptId < ArmGicGetMaxNumInterrupts (PcdGet32 (PcdGicDistributorBase))) {
  /device/linaro/bootloader/edk2/ArmPlatformPkg/PrePeiCore/
MainMPCore.c 49 UINTN InterruptId;
92 AcknowledgeInterrupt = ArmGicAcknowledgeInterrupt (PcdGet32 (PcdGicInterruptInterfaceBase), &InterruptId);
94 if (InterruptId < ArmGicGetMaxNumInterrupts (PcdGet32 (PcdGicDistributorBase))) {
  /device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/
ArmGicLib.c 108 * InterruptId is returned separately from the register value because in
109 * the GICv2 the register value contains the CpuId and InterruptId while
110 * in the GICv3 the register value is only the InterruptId.
113 * @param InterruptId InterruptId read from the Interrupt Acknowledge Register
122 OUT UINTN *InterruptId
131 // InterruptId is required for the caller to know if a valid or spurious
133 ASSERT (InterruptId != NULL);
134 if (InterruptId != NULL) {
135 *InterruptId = Value & ARM_GIC_ICCIAR_ACKINTID;
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Include/Library/
ArmGicLib.h 167 * InterruptId is returned separately from the register value because in
168 * the GICv2 the register value contains the CpuId and InterruptId while
169 * in the GICv3 the register value is only the InterruptId.
172 * @param InterruptId InterruptId read from the Interrupt Acknowledge Register
181 OUT UINTN *InterruptId

Completed in 939 milliseconds