]> git.proxmox.com Git - mirror_edk2.git/blame - UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmException.c
UefiCpuPkg/ExceptionLib: Update RegisterCpuInterruptHandlerWorker()
[mirror_edk2.git] / UefiCpuPkg / Library / CpuExceptionHandlerLib / SmmException.c
CommitLineData
e41aad15
JF
1/** @file\r
2 CPU exception handler library implemenation for SMM modules.\r
3\r
2c5873fe 4 Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved.<BR>\r
e41aad15
JF
5 This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#include <PiSmm.h>\r
16#include "CpuExceptionCommon.h"\r
17\r
18CONST UINTN mDoFarReturnFlag = 1; \r
19\r
ab95e54d
JF
20extern RESERVED_VECTORS_DATA mReservedVectorsData[CPU_EXCEPTION_NUM];\r
21extern EFI_CPU_INTERRUPT_HANDLER mExternalInterruptHandlerTable[CPU_EXCEPTION_NUM];\r
2c5873fe 22EXCEPTION_HANDLER_DATA mExceptionHandlerData;\r
e41aad15
JF
23/**\r
24 Initializes all CPU exceptions entries and provides the default exception handlers.\r
25 \r
26 Caller should try to get an array of interrupt and/or exception vectors that are in use and need to\r
27 persist by EFI_VECTOR_HANDOFF_INFO defined in PI 1.3 specification.\r
28 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL. \r
29 If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.\r
30\r
31 @param[in] VectorInfo Pointer to reserved vector list.\r
32 \r
33 @retval EFI_SUCCESS CPU Exception Entries have been successfully initialized \r
34 with default exception handlers.\r
35 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.\r
36 @retval EFI_UNSUPPORTED This function is not supported.\r
37\r
38**/\r
39EFI_STATUS\r
40EFIAPI\r
41InitializeCpuExceptionHandlers (\r
42 IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL\r
43 )\r
44{\r
ab95e54d
JF
45 mExceptionHandlerData.ReservedVectors = mReservedVectorsData;\r
46 mExceptionHandlerData.ExternalInterruptHandler = mExternalInterruptHandlerTable;\r
47 InitializeSpinLock (&mExceptionHandlerData.DisplayMessageSpinLock);\r
48 return InitializeCpuExceptionHandlersWorker (VectorInfo, &mExceptionHandlerData);\r
e41aad15
JF
49}\r
50\r
51/**\r
52 Initializes all CPU interrupt/exceptions entries and provides the default interrupt/exception handlers.\r
53 \r
54 Caller should try to get an array of interrupt and/or exception vectors that are in use and need to\r
55 persist by EFI_VECTOR_HANDOFF_INFO defined in PI 1.3 specification.\r
56 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL. \r
57 If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.\r
58\r
59 @param[in] VectorInfo Pointer to reserved vector list.\r
60 \r
61 @retval EFI_SUCCESS All CPU interrupt/exception entries have been successfully initialized \r
62 with default interrupt/exception handlers.\r
63 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.\r
64 @retval EFI_UNSUPPORTED This function is not supported.\r
65\r
66**/\r
67EFI_STATUS\r
68EFIAPI\r
69InitializeCpuInterruptHandlers (\r
70 IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL\r
71 )\r
72{\r
73 return EFI_UNSUPPORTED;\r
74}\r
75\r
76/**\r
77 Registers a function to be called from the processor interrupt handler.\r
78\r
79 This function registers and enables the handler specified by InterruptHandler for a processor \r
80 interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the \r
81 handler for the processor interrupt or exception type specified by InterruptType is uninstalled. \r
82 The installed handler is called once for each processor interrupt or exception.\r
83 NOTE: This function should be invoked after InitializeCpuExceptionHandlers() or\r
84 InitializeCpuInterruptHandlers() invoked, otherwise EFI_UNSUPPORTED returned.\r
85\r
86 @param[in] InterruptType Defines which interrupt or exception to hook.\r
87 @param[in] InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called\r
88 when a processor interrupt occurs. If this parameter is NULL, then the handler\r
89 will be uninstalled.\r
90\r
91 @retval EFI_SUCCESS The handler for the processor interrupt was successfully installed or uninstalled.\r
92 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was\r
93 previously installed.\r
94 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not\r
95 previously installed.\r
96 @retval EFI_UNSUPPORTED The interrupt specified by InterruptType is not supported,\r
97 or this function is not supported.\r
3f25e6ea 98**/\r
e41aad15
JF
99EFI_STATUS\r
100EFIAPI\r
101RegisterCpuInterruptHandler (\r
102 IN EFI_EXCEPTION_TYPE InterruptType,\r
103 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler\r
104 )\r
105{\r
670f13af 106 return RegisterCpuInterruptHandlerWorker (InterruptType, InterruptHandler, &mExceptionHandlerData);\r
e41aad15 107}