]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/DebugSupportDxe/Ia32/DebugSupport.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdeModulePkg / Universal / DebugSupportDxe / Ia32 / DebugSupport.h
CommitLineData
6e8a984e 1/** @file\r
2 Generic debug support macros, typedefs and prototypes for IA32/x64.\r
3\r
d1102dba 4Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
9d510e61 5SPDX-License-Identifier: BSD-2-Clause-Patent\r
6e8a984e 6\r
7**/\r
8\r
9#ifndef _DEBUG_SUPPORT_H_\r
10#define _DEBUG_SUPPORT_H_\r
11\r
6e8a984e 12#include <Uefi.h>\r
13\r
14#include <Protocol/DebugSupport.h>\r
15#include <Protocol/LoadedImage.h>\r
16\r
17#include <Library/DebugLib.h>\r
18#include <Library/UefiDriverEntryPoint.h>\r
19#include <Library/BaseMemoryLib.h>\r
20#include <Library/MemoryAllocationLib.h>\r
21#include <Library/UefiBootServicesTableLib.h>\r
22#include <Library/BaseLib.h>\r
6e8a984e 23\r
1436aea4
MK
24#define NUM_IDT_ENTRIES 0x78\r
25#define SYSTEM_TIMER_VECTOR 0x68\r
6e8a984e 26\r
27typedef\r
28VOID\r
29(*DEBUG_PROC) (\r
30 VOID\r
31 );\r
32\r
1ccdbf2a 33typedef\r
34VOID\r
1436aea4 35(EFIAPI *CALLBACK_FUNC)(\r
1ccdbf2a 36 );\r
37\r
6e8a984e 38typedef struct {\r
1436aea4
MK
39 IA32_IDT_GATE_DESCRIPTOR OrigDesc;\r
40 DEBUG_PROC OrigVector;\r
41 IA32_IDT_GATE_DESCRIPTOR NewDesc;\r
42 DEBUG_PROC StubEntry;\r
43 CALLBACK_FUNC RegisteredCallback;\r
6e8a984e 44} IDT_ENTRY;\r
45\r
1436aea4
MK
46extern UINT8 InterruptEntryStub[];\r
47extern UINT32 StubSize;\r
48extern VOID (*OrigVector) (\r
49 VOID\r
50 );\r
c84507ab 51extern IDT_ENTRY *IdtEntryTable;\r
6e8a984e 52extern IA32_IDT_GATE_DESCRIPTOR NullDesc;\r
53\r
54/**\r
55 Generic IDT entry.\r
56\r
57**/\r
58VOID\r
59CommonIdtEntry (\r
60 VOID\r
61 );\r
62\r
63/**\r
64 Check whether FXSTOR is supported\r
65\r
66 @retval TRUE FXSTOR is supported.\r
67 @retval FALSE FXSTOR is not supported.\r
68\r
69**/\r
70BOOLEAN\r
71FxStorSupport (\r
72 VOID\r
73 );\r
74\r
75/**\r
76 Encodes an IDT descriptor with the given physical address.\r
77\r
78 @param DestDesc The IDT descriptor address.\r
79 @param Vecotr The interrupt vector entry.\r
80\r
81**/\r
82VOID\r
83Vect2Desc (\r
1436aea4
MK
84 IA32_IDT_GATE_DESCRIPTOR *DestDesc,\r
85 VOID ( *Vector )(VOID)\r
6e8a984e 86 );\r
87\r
6e8a984e 88/**\r
d1102dba
LG
89 Initializes driver's handler registration database.\r
90\r
6e8a984e 91 This code executes in boot services context\r
92 Must be public because it's referenced from DebugSupport.c\r
93\r
94 @retval EFI_UNSUPPORTED If IA32 processor does not support FXSTOR/FXRSTOR instructions,\r
95 the context save will fail, so these processor's are not supported.\r
96 @retval EFI_OUT_OF_RESOURCES Fails to allocate memory.\r
97 @retval EFI_SUCCESS Initializes successfully.\r
98\r
99**/\r
100EFI_STATUS\r
101PlInitializeDebugSupportDriver (\r
102 VOID\r
103 );\r
104\r
105/**\r
106 This is the callback that is written to the LoadedImage protocol instance\r
107 on the image handle. It uninstalls all registered handlers and frees all entry\r
108 stub memory.\r
109\r
110 @param ImageHandle The firmware allocated handle for the EFI image.\r
111\r
112 @retval EFI_SUCCESS Always.\r
113\r
114**/\r
115EFI_STATUS\r
116EFIAPI\r
117PlUnloadDebugSupportDriver (\r
1436aea4 118 IN EFI_HANDLE ImageHandle\r
6e8a984e 119 );\r
120\r
121/**\r
c84507ab 122 Returns the maximum value that may be used for the ProcessorIndex parameter in\r
d1102dba
LG
123 RegisterPeriodicCallback() and RegisterExceptionCallback().\r
124\r
c84507ab 125 Hard coded to support only 1 processor for now.\r
6e8a984e 126\r
c84507ab 127 @param This A pointer to the EFI_DEBUG_SUPPORT_PROTOCOL instance.\r
128 @param MaxProcessorIndex Pointer to a caller-allocated UINTN in which the maximum supported\r
d1102dba
LG
129 processor index is returned. Always 0 returned.\r
130\r
c84507ab 131 @retval EFI_SUCCESS Always returned with **MaxProcessorIndex set to 0.\r
6e8a984e 132\r
133**/\r
134EFI_STATUS\r
135EFIAPI\r
136GetMaximumProcessorIndex (\r
1436aea4
MK
137 IN EFI_DEBUG_SUPPORT_PROTOCOL *This,\r
138 OUT UINTN *MaxProcessorIndex\r
6e8a984e 139 );\r
140\r
141/**\r
c84507ab 142 Registers a function to be called back periodically in interrupt context.\r
d1102dba 143\r
c84507ab 144 @param This A pointer to the EFI_DEBUG_SUPPORT_PROTOCOL instance.\r
145 @param ProcessorIndex Specifies which processor the callback function applies to.\r
146 @param PeriodicCallback A pointer to a function of type PERIODIC_CALLBACK that is the main\r
147 periodic entry point of the debug agent.\r
d1102dba
LG
148\r
149 @retval EFI_SUCCESS The function completed successfully.\r
c84507ab 150 @retval EFI_ALREADY_STARTED Non-NULL PeriodicCallback parameter when a callback\r
d1102dba
LG
151 function was previously registered.\r
152 @retval EFI_OUT_OF_RESOURCES System has insufficient memory resources to register new callback\r
153 function.\r
6e8a984e 154**/\r
155EFI_STATUS\r
156EFIAPI\r
157RegisterPeriodicCallback (\r
1436aea4
MK
158 IN EFI_DEBUG_SUPPORT_PROTOCOL *This,\r
159 IN UINTN ProcessorIndex,\r
160 IN EFI_PERIODIC_CALLBACK PeriodicCallback\r
6e8a984e 161 );\r
162\r
163/**\r
c84507ab 164 Registers a function to be called when a given processor exception occurs.\r
6e8a984e 165\r
166 This code executes in boot services context.\r
d1102dba 167\r
c84507ab 168 @param This A pointer to the EFI_DEBUG_SUPPORT_PROTOCOL instance.\r
169 @param ProcessorIndex Specifies which processor the callback function applies to.\r
170 @param ExceptionCallback A pointer to a function of type EXCEPTION_CALLBACK that is called\r
d1102dba
LG
171 when the processor exception specified by ExceptionType occurs.\r
172 @param ExceptionType Specifies which processor exception to hook.\r
173\r
174 @retval EFI_SUCCESS The function completed successfully.\r
c84507ab 175 @retval EFI_ALREADY_STARTED Non-NULL PeriodicCallback parameter when a callback\r
d1102dba
LG
176 function was previously registered.\r
177 @retval EFI_OUT_OF_RESOURCES System has insufficient memory resources to register new callback\r
c84507ab 178 function.\r
6e8a984e 179**/\r
180EFI_STATUS\r
181EFIAPI\r
182RegisterExceptionCallback (\r
1436aea4
MK
183 IN EFI_DEBUG_SUPPORT_PROTOCOL *This,\r
184 IN UINTN ProcessorIndex,\r
185 IN EFI_EXCEPTION_CALLBACK ExceptionCallback,\r
186 IN EFI_EXCEPTION_TYPE ExceptionType\r
6e8a984e 187 );\r
188\r
189/**\r
c84507ab 190 Invalidates processor instruction cache for a memory range. Subsequent execution in this range\r
d1102dba
LG
191 causes a fresh memory fetch to retrieve code to be executed.\r
192\r
c84507ab 193 @param This A pointer to the EFI_DEBUG_SUPPORT_PROTOCOL instance.\r
194 @param ProcessorIndex Specifies which processor's instruction cache is to be invalidated.\r
d1102dba 195 @param Start Specifies the physical base of the memory range to be invalidated.\r
c84507ab 196 @param Length Specifies the minimum number of bytes in the processor's instruction\r
d1102dba
LG
197 cache to invalidate.\r
198\r
c84507ab 199 @retval EFI_SUCCESS Always returned.\r
6e8a984e 200\r
201**/\r
202EFI_STATUS\r
203EFIAPI\r
204InvalidateInstructionCache (\r
1436aea4
MK
205 IN EFI_DEBUG_SUPPORT_PROTOCOL *This,\r
206 IN UINTN ProcessorIndex,\r
207 IN VOID *Start,\r
208 IN UINT64 Length\r
6e8a984e 209 );\r
210\r
211/**\r
212 Allocate pool for a new IDT entry stub.\r
213\r
214 Copy the generic stub into the new buffer and fixup the vector number\r
215 and jump target address.\r
216\r
217 @param ExceptionType This is the exception type that the new stub will be created\r
218 for.\r
219 @param Stub On successful exit, *Stub contains the newly allocated entry stub.\r
220\r
6e8a984e 221**/\r
c84507ab 222VOID\r
6e8a984e 223CreateEntryStub (\r
1436aea4
MK
224 IN EFI_EXCEPTION_TYPE ExceptionType,\r
225 OUT VOID **Stub\r
6e8a984e 226 );\r
227\r
228/**\r
c84507ab 229 Get Interrupt Handle from IDT Gate Descriptor.\r
6e8a984e 230\r
231 @param IdtGateDecriptor IDT Gate Descriptor.\r
232\r
c84507ab 233 @return Interrupt Handle stored in IDT Gate Descriptor.\r
6e8a984e 234\r
235**/\r
c84507ab 236UINTN\r
237GetInterruptHandleFromIdt (\r
6e8a984e 238 IN IA32_IDT_GATE_DESCRIPTOR *IdtGateDecriptor\r
239 );\r
240\r
241/**\r
242 This is the main worker function that manages the state of the interrupt\r
243 handlers. It both installs and uninstalls interrupt handlers based on the\r
244 value of NewCallback. If NewCallback is NULL, then uninstall is indicated.\r
245 If NewCallback is non-NULL, then install is indicated.\r
246\r
247 @param NewCallback If non-NULL, NewCallback specifies the new handler to register.\r
248 If NULL, specifies that the previously registered handler should\r
249 be uninstalled.\r
250 @param ExceptionType Indicates which entry to manage.\r
251\r
252 @retval EFI_SUCCESS Process is ok.\r
253 @retval EFI_INVALID_PARAMETER Requested uninstalling a handler from a vector that has\r
254 no handler registered for it\r
255 @retval EFI_ALREADY_STARTED Requested install to a vector that already has a handler registered.\r
256 @retval others Possible return values are passed through from UnHookEntry and HookEntry.\r
257\r
258**/\r
259EFI_STATUS\r
260ManageIdtEntryTable (\r
1436aea4
MK
261 CALLBACK_FUNC NewCallback,\r
262 EFI_EXCEPTION_TYPE ExceptionType\r
6e8a984e 263 );\r
264\r
265/**\r
266 Creates a nes entry stub. Then saves the current IDT entry and replaces it\r
267 with an interrupt gate for the new entry point. The IdtEntryTable is updated\r
268 with the new registered function.\r
269\r
270 This code executes in boot services context. The stub entry executes in interrupt\r
271 context.\r
272\r
273 @param ExceptionType Specifies which vector to hook.\r
274 @param NewCallback A pointer to the new function to be registered.\r
275\r
6e8a984e 276**/\r
c84507ab 277VOID\r
6e8a984e 278HookEntry (\r
1436aea4
MK
279 IN EFI_EXCEPTION_TYPE ExceptionType,\r
280 IN CALLBACK_FUNC NewCallback\r
6e8a984e 281 );\r
282\r
283/**\r
284 Undoes HookEntry. This code executes in boot services context.\r
285\r
286 @param ExceptionType Specifies which entry to unhook\r
287\r
6e8a984e 288**/\r
c84507ab 289VOID\r
6e8a984e 290UnhookEntry (\r
1436aea4 291 IN EFI_EXCEPTION_TYPE ExceptionType\r
6e8a984e 292 );\r
293\r
294#endif\r