]> git.proxmox.com Git - mirror_edk2.git/blame - UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmException.c
UefiCpuPkg/ExceptionLib: Move global variable location
[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
d91225cf
JF
20//\r
21// Spin lock for CPU information display\r
22//\r
23SPIN_LOCK mDisplayMessageSpinLock;\r
24\r
25//\r
26// Image align size for DXE/SMM\r
27//\r
28CONST UINTN mImageAlignSize = SIZE_4KB;\r
29\r
30RESERVED_VECTORS_DATA mReservedVectorsData[CPU_EXCEPTION_NUM];\r
31EFI_CPU_INTERRUPT_HANDLER mExternalInterruptHandlerTable[CPU_EXCEPTION_NUM];\r
2c5873fe 32EXCEPTION_HANDLER_DATA mExceptionHandlerData;\r
44ecbc28
JF
33/**\r
34 Common exception handler.\r
35\r
36 @param ExceptionType Exception type.\r
37 @param SystemContext Pointer to EFI_SYSTEM_CONTEXT.\r
38**/\r
39VOID\r
40EFIAPI\r
41CommonExceptionHandler (\r
42 IN EFI_EXCEPTION_TYPE ExceptionType, \r
43 IN EFI_SYSTEM_CONTEXT SystemContext\r
44 )\r
45{\r
46 CommonExceptionHandlerWorker (ExceptionType, SystemContext, &mExceptionHandlerData);\r
47}\r
48\r
e41aad15
JF
49/**\r
50 Initializes all CPU exceptions entries and provides the default exception handlers.\r
51 \r
52 Caller should try to get an array of interrupt and/or exception vectors that are in use and need to\r
53 persist by EFI_VECTOR_HANDOFF_INFO defined in PI 1.3 specification.\r
54 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL. \r
55 If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.\r
56\r
57 @param[in] VectorInfo Pointer to reserved vector list.\r
58 \r
59 @retval EFI_SUCCESS CPU Exception Entries have been successfully initialized \r
60 with default exception handlers.\r
61 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.\r
62 @retval EFI_UNSUPPORTED This function is not supported.\r
63\r
64**/\r
65EFI_STATUS\r
66EFIAPI\r
67InitializeCpuExceptionHandlers (\r
68 IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL\r
69 )\r
70{\r
ab95e54d
JF
71 mExceptionHandlerData.ReservedVectors = mReservedVectorsData;\r
72 mExceptionHandlerData.ExternalInterruptHandler = mExternalInterruptHandlerTable;\r
73 InitializeSpinLock (&mExceptionHandlerData.DisplayMessageSpinLock);\r
74 return InitializeCpuExceptionHandlersWorker (VectorInfo, &mExceptionHandlerData);\r
e41aad15
JF
75}\r
76\r
77/**\r
78 Initializes all CPU interrupt/exceptions entries and provides the default interrupt/exception handlers.\r
79 \r
80 Caller should try to get an array of interrupt and/or exception vectors that are in use and need to\r
81 persist by EFI_VECTOR_HANDOFF_INFO defined in PI 1.3 specification.\r
82 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL. \r
83 If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.\r
84\r
85 @param[in] VectorInfo Pointer to reserved vector list.\r
86 \r
87 @retval EFI_SUCCESS All CPU interrupt/exception entries have been successfully initialized \r
88 with default interrupt/exception handlers.\r
89 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.\r
90 @retval EFI_UNSUPPORTED This function is not supported.\r
91\r
92**/\r
93EFI_STATUS\r
94EFIAPI\r
95InitializeCpuInterruptHandlers (\r
96 IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL\r
97 )\r
98{\r
99 return EFI_UNSUPPORTED;\r
100}\r
101\r
102/**\r
103 Registers a function to be called from the processor interrupt handler.\r
104\r
105 This function registers and enables the handler specified by InterruptHandler for a processor \r
106 interrupt or exception type specified by InterruptType. If InterruptHandler is NULL, then the \r
107 handler for the processor interrupt or exception type specified by InterruptType is uninstalled. \r
108 The installed handler is called once for each processor interrupt or exception.\r
109 NOTE: This function should be invoked after InitializeCpuExceptionHandlers() or\r
110 InitializeCpuInterruptHandlers() invoked, otherwise EFI_UNSUPPORTED returned.\r
111\r
112 @param[in] InterruptType Defines which interrupt or exception to hook.\r
113 @param[in] InterruptHandler A pointer to a function of type EFI_CPU_INTERRUPT_HANDLER that is called\r
114 when a processor interrupt occurs. If this parameter is NULL, then the handler\r
115 will be uninstalled.\r
116\r
117 @retval EFI_SUCCESS The handler for the processor interrupt was successfully installed or uninstalled.\r
118 @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handler for InterruptType was\r
119 previously installed.\r
120 @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler for InterruptType was not\r
121 previously installed.\r
122 @retval EFI_UNSUPPORTED The interrupt specified by InterruptType is not supported,\r
123 or this function is not supported.\r
3f25e6ea 124**/\r
e41aad15
JF
125EFI_STATUS\r
126EFIAPI\r
127RegisterCpuInterruptHandler (\r
128 IN EFI_EXCEPTION_TYPE InterruptType,\r
129 IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler\r
130 )\r
131{\r
670f13af 132 return RegisterCpuInterruptHandlerWorker (InterruptType, InterruptHandler, &mExceptionHandlerData);\r
e41aad15 133}