HomeSort by relevance Sort by last modified time
    Searched refs:InterruptHandler (Results 1 - 25 of 38) sorted by null

1 2

  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/X64/
IntHandlerFuncs.c 34 UINTN InterruptHandler;
41 InterruptHandler = IdtEntry[InterruptType].Bits.OffsetLow +
44 if (InterruptHandler >= sizeof (UINT32) && *(UINT32 *)(InterruptHandler - sizeof (UINT32)) == AGENT_HANDLER_SIGNATURE) {
66 UINTN InterruptHandler;
76 InterruptHandler = (UINTN) &AsmInterruptHandle;
77 IdtEntry[1].Bits.OffsetLow = (UINT16)(UINTN)InterruptHandler;
78 IdtEntry[1].Bits.OffsetHigh = (UINT16)((UINTN)InterruptHandler >> 16);
79 IdtEntry[1].Bits.OffsetUpper = (UINT32)((UINTN)InterruptHandler >> 32);
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/Ia32/
IntHandlerFuncs.c 34 UINTN InterruptHandler;
41 InterruptHandler = IdtEntry[InterruptType].Bits.OffsetLow +
43 if (InterruptHandler >= sizeof (UINT32) && *(UINT32 *)(InterruptHandler - sizeof (UINT32)) == AGENT_HANDLER_SIGNATURE) {
65 UINTN InterruptHandler;
75 InterruptHandler = (UINTN) &AsmInterruptHandle;
76 IdtEntry[1].Bits.OffsetLow = (UINT16)(UINTN)InterruptHandler;
77 IdtEntry[1].Bits.OffsetHigh = (UINT16)((UINTN)InterruptHandler >> 16);
  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/CpuExceptionHandlerLib/
SmmException.c 73 This function registers and enables the handler specified by InterruptHandler for a processor
74 interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the
81 @param[in] InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called
86 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was
88 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not
97 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
100 return RegisterCpuInterruptHandlerWorker (InterruptType, InterruptHandler);
SecPeiCpuException.c 80 UINTN InterruptHandler;
121 InterruptHandler = TemplateMap.ExceptionStart + Index * TemplateMap.ExceptionStubHeaderSize;
122 ArchUpdateIdtEntry (&IdtTable[Index], InterruptHandler);
155 This function registers and enables the handler specified by InterruptHandler for a processor
156 interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the
163 @param[in] InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called
168 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was
170 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not
179 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
DxeSmmCpuException.c 144 UINTN InterruptHandler;
189 InterruptHandler = TemplateMap->ExceptionStart + Index * TemplateMap->ExceptionStubHeaderSize;
190 ArchUpdateIdtEntry (&IdtTable[Index], InterruptHandler);
258 @param[in] InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called
263 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was
265 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not
273 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
281 if (InterruptHandler == NULL && mExternalInterruptHandler[InterruptType] == NULL) {
285 if (InterruptHandler != NULL && mExternalInterruptHandler[InterruptType] != NULL) {
289 mExternalInterruptHandler[InterruptType] = InterruptHandler;
    [all...]
CpuExceptionCommon.h 65 @param InterruptHandler IDT handler value.
71 IN UINTN InterruptHandler
147 @param[in] InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called
152 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was
154 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not
162 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
DxeException.c 142 This function registers and enables the handler specified by InterruptHandler for a processor
143 interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the
150 @param[in] InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called
155 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was
157 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not
166 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
169 return RegisterCpuInterruptHandlerWorker (InterruptType, InterruptHandler);
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/Ia32/
ArchDebugSupport.c 27 UINTN InterruptHandler;
49 InterruptHandler = (UINTN)&Exception0Handle + Index * ExceptionStubHeaderSize;
50 IdtEntry[Index].Bits.OffsetLow = (UINT16)(UINTN)InterruptHandler;
51 IdtEntry[Index].Bits.OffsetHigh = (UINT16)((UINTN)InterruptHandler >> 16);
56 InterruptHandler = (UINTN) &TimerInterruptHandle;
57 IdtEntry[DEBUG_TIMER_VECTOR].Bits.OffsetLow = (UINT16)(UINTN)InterruptHandler;
58 IdtEntry[DEBUG_TIMER_VECTOR].Bits.OffsetHigh = (UINT16)((UINTN)InterruptHandler >> 16);
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/X64/
ArchDebugSupport.c 27 UINTN InterruptHandler;
49 InterruptHandler = (UINTN)&Exception0Handle + Index * ExceptionStubHeaderSize;
50 IdtEntry[Index].Bits.OffsetLow = (UINT16)(UINTN)InterruptHandler;
51 IdtEntry[Index].Bits.OffsetHigh = (UINT16)((UINTN)InterruptHandler >> 16);
52 IdtEntry[Index].Bits.OffsetUpper = (UINT32)((UINTN)InterruptHandler >> 32);
57 InterruptHandler = (UINTN) &TimerInterruptHandle;
58 IdtEntry[DEBUG_TIMER_VECTOR].Bits.OffsetLow = (UINT16)(UINTN)InterruptHandler;
59 IdtEntry[DEBUG_TIMER_VECTOR].Bits.OffsetHigh = (UINT16)((UINTN)InterruptHandler >> 16);
60 IdtEntry[DEBUG_TIMER_VECTOR].Bits.OffsetUpper = (UINT32)((UINTN)InterruptHandler >> 32);
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
CpuExceptionHandlerLib.h 69 This function registers and enables the handler specified by InterruptHandler for a processor
70 interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the
77 @param[in] InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called
82 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was
84 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not
93 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/CpuExceptionHandlerLibNull/
CpuExceptionHandlerLibNull.c 70 This function registers and enables the handler specified by InterruptHandler for a processor
71 interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the
78 @param[in] InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called
83 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was
85 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not
94 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
  /device/linaro/bootloader/edk2/ArmPkg/Drivers/CpuDxe/AArch64/
Exception.c 47 This function registers and enables the handler specified by InterruptHandler for a processor
48 interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the
54 @param InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called
59 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was
61 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not
69 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
76 if ((InterruptHandler != NULL) && (gExceptionHandlers[InterruptType] != NULL)) {
80 gExceptionHandlers[InterruptType] = InterruptHandler;
  /device/linaro/bootloader/edk2/ArmPkg/Drivers/CpuDxe/Arm/
Exception.c 48 This function registers and enables the handler specified by InterruptHandler for a processor
49 interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the
55 @param InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called
60 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was
62 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not
70 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
77 if ((InterruptHandler != NULL) && (gExceptionHandlers[InterruptType] != NULL)) {
81 gExceptionHandlers[InterruptType] = InterruptHandler;
  /device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/
ArmGicDxe.h 37 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler,
ArmGicCommonDxe.c 91 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler,
132 Status = Cpu->RegisterInterruptHandler (Cpu, ARM_ARCH_EXCEPTION_IRQ, InterruptHandler);
  /device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/GicV2/
ArmGicV2Dxe.c 165 HARDWARE_INTERRUPT_HANDLER InterruptHandler;
175 InterruptHandler = gRegisteredInterruptHandlers[GicInterrupt];
176 if (InterruptHandler != NULL) {
178 InterruptHandler (GicInterrupt, SystemContext);
  /device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/GicV3/
ArmGicV3Dxe.c 155 HARDWARE_INTERRUPT_HANDLER InterruptHandler;
166 InterruptHandler = gRegisteredInterruptHandlers[GicInterrupt];
167 if (InterruptHandler != NULL) {
169 InterruptHandler (GicInterrupt, SystemContext);
  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/CpuExceptionHandlerLib/Ia32/
ArchExceptionHandler.c 22 @param InterruptHandler IDT handler value.
28 IN UINTN InterruptHandler
31 IdtEntry->Bits.OffsetLow = (UINT16)(UINTN)InterruptHandler;
32 IdtEntry->Bits.OffsetHigh = (UINT16)((UINTN)InterruptHandler >> 16);
  /device/linaro/bootloader/edk2/ArmPkg/Drivers/CpuDxe/
CpuDxe.c 182 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
185 return RegisterInterruptHandler (InterruptType, InterruptHandler);
CpuDxe.h 51 This function registers and enables the handler specified by InterruptHandler for a processor
52 interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the
58 @param InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called
63 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was
65 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not
73 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
78 This function registers and enables the handler specified by InterruptHandler for a processor
79 interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the
85 @param InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called
90 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/InterruptDxe/
HardwareInterrupt.c 264 HARDWARE_INTERRUPT_HANDLER InterruptHandler;
272 InterruptHandler = gRegisteredInterruptHandlers[Vector];
273 if (InterruptHandler != NULL) {
275 InterruptHandler (Vector, SystemContext);
  /device/linaro/bootloader/edk2/Omap35xxPkg/InterruptDxe/
HardwareInterrupt.c 264 HARDWARE_INTERRUPT_HANDLER InterruptHandler;
272 InterruptHandler = gRegisteredInterruptHandlers[Vector];
273 if (InterruptHandler != NULL) {
275 InterruptHandler (Vector, SystemContext);
  /device/linaro/bootloader/edk2/UefiCpuPkg/Include/Protocol/
SmmCpuService.h 177 @param InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER
182 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was previously installed.
183 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not previously installed.
192 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/CpuExceptionHandlerLib/X64/
ArchExceptionHandler.c 22 @param InterruptHandler IDT handler value.
27 IN UINTN InterruptHandler
30 IdtEntry->Bits.OffsetLow = (UINT16)(UINTN)InterruptHandler;
31 IdtEntry->Bits.OffsetHigh = (UINT16)((UINTN)InterruptHandler >> 16);
32 IdtEntry->Bits.OffsetUpper = (UINT32)((UINTN)InterruptHandler >> 32);
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/
CpuService.h 135 @param InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER
140 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was previously installed.
141 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not previously installed.
150 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler

Completed in 193 milliseconds

1 2