]> git.proxmox.com Git - mirror_edk2.git/blob - UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiCpuException.c
CpuException: Add InitializeSeparateExceptionStacks
[mirror_edk2.git] / UefiCpuPkg / Library / CpuExceptionHandlerLib / PeiCpuException.c
1 /** @file
2 CPU exception handler library implementation for PEIM module.
3
4 Copyright (c) 2016 - 2022, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9 #include <PiPei.h>
10 #include "CpuExceptionCommon.h"
11 #include <Library/DebugLib.h>
12 #include <Library/HobLib.h>
13 #include <Library/MemoryAllocationLib.h>
14 #include <Library/PcdLib.h>
15
16 CONST UINTN mDoFarReturnFlag = 0;
17
18 typedef struct {
19 UINT8 ExceptionStubHeader[HOOKAFTER_STUB_SIZE];
20 EXCEPTION_HANDLER_DATA *ExceptionHandlerData;
21 } EXCEPTION0_STUB_HEADER;
22
23 /**
24 Get exception handler data pointer from IDT[0].
25
26 The exception #0 stub header is duplicated in an allocated pool with extra 4-byte/8-byte to store the
27 exception handler data. The new allocated memory layout follows structure EXCEPTION0_STUB_HEADER.
28 The code assumes that all processors uses the same exception handler for #0 exception.
29
30 @return pointer to exception handler data.
31 **/
32 EXCEPTION_HANDLER_DATA *
33 GetExceptionHandlerData (
34 VOID
35 )
36 {
37 IA32_DESCRIPTOR IdtDescriptor;
38 IA32_IDT_GATE_DESCRIPTOR *IdtTable;
39 EXCEPTION0_STUB_HEADER *Exception0StubHeader;
40
41 AsmReadIdtr (&IdtDescriptor);
42 IdtTable = (IA32_IDT_GATE_DESCRIPTOR *)IdtDescriptor.Base;
43
44 Exception0StubHeader = (EXCEPTION0_STUB_HEADER *)ArchGetIdtHandler (&IdtTable[0]);
45 return Exception0StubHeader->ExceptionHandlerData;
46 }
47
48 /**
49 Set exception handler data pointer to IDT[0].
50
51 The exception #0 stub header is duplicated in an allocated pool with extra 4-byte/8-byte to store the
52 exception handler data. The new allocated memory layout follows structure EXCEPTION0_STUB_HEADER.
53 The code assumes that all processors uses the same exception handler for #0 exception.
54
55 @param ExceptionHandlerData pointer to exception handler data.
56 **/
57 VOID
58 SetExceptionHandlerData (
59 IN EXCEPTION_HANDLER_DATA *ExceptionHandlerData
60 )
61 {
62 EXCEPTION0_STUB_HEADER *Exception0StubHeader;
63 IA32_DESCRIPTOR IdtDescriptor;
64 IA32_IDT_GATE_DESCRIPTOR *IdtTable;
65
66 //
67 // Duplicate the exception #0 stub header in pool and cache the ExceptionHandlerData just after the stub header.
68 // So AP can get the ExceptionHandlerData by reading the IDT[0].
69 //
70 AsmReadIdtr (&IdtDescriptor);
71 IdtTable = (IA32_IDT_GATE_DESCRIPTOR *)IdtDescriptor.Base;
72
73 Exception0StubHeader = AllocatePool (sizeof (*Exception0StubHeader));
74 ASSERT (Exception0StubHeader != NULL);
75 CopyMem (
76 Exception0StubHeader->ExceptionStubHeader,
77 (VOID *)ArchGetIdtHandler (&IdtTable[0]),
78 sizeof (Exception0StubHeader->ExceptionStubHeader)
79 );
80 Exception0StubHeader->ExceptionHandlerData = ExceptionHandlerData;
81 ArchUpdateIdtEntry (&IdtTable[0], (UINTN)Exception0StubHeader->ExceptionStubHeader);
82 }
83
84 /**
85 Common exception handler.
86
87 @param ExceptionType Exception type.
88 @param SystemContext Pointer to EFI_SYSTEM_CONTEXT.
89 **/
90 VOID
91 EFIAPI
92 CommonExceptionHandler (
93 IN EFI_EXCEPTION_TYPE ExceptionType,
94 IN EFI_SYSTEM_CONTEXT SystemContext
95 )
96 {
97 EXCEPTION_HANDLER_DATA *ExceptionHandlerData;
98
99 ExceptionHandlerData = GetExceptionHandlerData ();
100 CommonExceptionHandlerWorker (ExceptionType, SystemContext, ExceptionHandlerData);
101 }
102
103 /**
104 Initializes all CPU exceptions entries and provides the default exception handlers.
105
106 Caller should try to get an array of interrupt and/or exception vectors that are in use and need to
107 persist by EFI_VECTOR_HANDOFF_INFO defined in PI 1.3 specification.
108 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL.
109 If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.
110 Note: Before invoking this API, caller must allocate memory for IDT table and load
111 IDTR by AsmWriteIdtr().
112
113 @param[in] VectorInfo Pointer to reserved vector list.
114
115 @retval EFI_SUCCESS CPU Exception Entries have been successfully initialized
116 with default exception handlers.
117 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.
118 @retval EFI_UNSUPPORTED This function is not supported.
119
120 **/
121 EFI_STATUS
122 EFIAPI
123 InitializeCpuExceptionHandlers (
124 IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL
125 )
126 {
127 EFI_STATUS Status;
128 EXCEPTION_HANDLER_DATA *ExceptionHandlerData;
129 RESERVED_VECTORS_DATA *ReservedVectors;
130
131 ReservedVectors = AllocatePool (sizeof (RESERVED_VECTORS_DATA) * CPU_EXCEPTION_NUM);
132 ASSERT (ReservedVectors != NULL);
133
134 ExceptionHandlerData = AllocatePool (sizeof (EXCEPTION_HANDLER_DATA));
135 ASSERT (ExceptionHandlerData != NULL);
136 ExceptionHandlerData->IdtEntryCount = CPU_EXCEPTION_NUM;
137 ExceptionHandlerData->ReservedVectors = ReservedVectors;
138 ExceptionHandlerData->ExternalInterruptHandler = NULL;
139 InitializeSpinLock (&ExceptionHandlerData->DisplayMessageSpinLock);
140
141 Status = InitializeCpuExceptionHandlersWorker (VectorInfo, ExceptionHandlerData);
142 if (EFI_ERROR (Status)) {
143 FreePool (ReservedVectors);
144 FreePool (ExceptionHandlerData);
145 return Status;
146 }
147
148 SetExceptionHandlerData (ExceptionHandlerData);
149 return EFI_SUCCESS;
150 }
151
152 /**
153 Setup separate stacks for certain exception handlers.
154
155 InitData is optional and processor arch dependent.
156
157 @param[in] InitData Pointer to data optional for information about how
158 to assign stacks for certain exception handlers.
159
160 @retval EFI_SUCCESS The stacks are assigned successfully.
161 @retval EFI_UNSUPPORTED This function is not supported.
162
163 **/
164 EFI_STATUS
165 EFIAPI
166 InitializeSeparateExceptionStacks (
167 IN CPU_EXCEPTION_INIT_DATA *InitData OPTIONAL
168 )
169 {
170 if (InitData == NULL) {
171 return EFI_UNSUPPORTED;
172 }
173
174 return ArchSetupExceptionStack (InitData);
175 }