]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c
MdePkg: Call CoreInitializeMemoryAttributesTable() in DXE Entrypoint.
[mirror_edk2.git] / MdeModulePkg / Core / Dxe / DxeMain / DxeMain.c
... / ...
CommitLineData
1/** @file\r
2 DXE Core Main Entry Point\r
3\r
4Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>\r
5This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#include "DxeMain.h"\r
16\r
17//\r
18// DXE Core Global Variables for Protocols from PEI\r
19//\r
20EFI_HANDLE mDecompressHandle = NULL;\r
21\r
22//\r
23// DXE Core globals for Architecture Protocols\r
24//\r
25EFI_SECURITY_ARCH_PROTOCOL *gSecurity = NULL;\r
26EFI_SECURITY2_ARCH_PROTOCOL *gSecurity2 = NULL;\r
27EFI_CPU_ARCH_PROTOCOL *gCpu = NULL;\r
28EFI_METRONOME_ARCH_PROTOCOL *gMetronome = NULL;\r
29EFI_TIMER_ARCH_PROTOCOL *gTimer = NULL;\r
30EFI_BDS_ARCH_PROTOCOL *gBds = NULL;\r
31EFI_WATCHDOG_TIMER_ARCH_PROTOCOL *gWatchdogTimer = NULL;\r
32\r
33//\r
34// DXE Core globals for optional protocol dependencies\r
35//\r
36EFI_SMM_BASE2_PROTOCOL *gSmmBase2 = NULL;\r
37\r
38//\r
39// DXE Core Global used to update core loaded image protocol handle\r
40//\r
41EFI_GUID *gDxeCoreFileName;\r
42EFI_LOADED_IMAGE_PROTOCOL *gDxeCoreLoadedImage;\r
43\r
44//\r
45// DXE Core Module Variables\r
46//\r
47EFI_BOOT_SERVICES mBootServices = {\r
48 {\r
49 EFI_BOOT_SERVICES_SIGNATURE, // Signature\r
50 EFI_BOOT_SERVICES_REVISION, // Revision\r
51 sizeof (EFI_BOOT_SERVICES), // HeaderSize\r
52 0, // CRC32\r
53 0 // Reserved\r
54 },\r
55 (EFI_RAISE_TPL) CoreRaiseTpl, // RaiseTPL\r
56 (EFI_RESTORE_TPL) CoreRestoreTpl, // RestoreTPL\r
57 (EFI_ALLOCATE_PAGES) CoreAllocatePages, // AllocatePages\r
58 (EFI_FREE_PAGES) CoreFreePages, // FreePages\r
59 (EFI_GET_MEMORY_MAP) CoreGetMemoryMap, // GetMemoryMap\r
60 (EFI_ALLOCATE_POOL) CoreAllocatePool, // AllocatePool\r
61 (EFI_FREE_POOL) CoreFreePool, // FreePool\r
62 (EFI_CREATE_EVENT) CoreCreateEvent, // CreateEvent\r
63 (EFI_SET_TIMER) CoreSetTimer, // SetTimer\r
64 (EFI_WAIT_FOR_EVENT) CoreWaitForEvent, // WaitForEvent\r
65 (EFI_SIGNAL_EVENT) CoreSignalEvent, // SignalEvent\r
66 (EFI_CLOSE_EVENT) CoreCloseEvent, // CloseEvent\r
67 (EFI_CHECK_EVENT) CoreCheckEvent, // CheckEvent\r
68 (EFI_INSTALL_PROTOCOL_INTERFACE) CoreInstallProtocolInterface, // InstallProtocolInterface\r
69 (EFI_REINSTALL_PROTOCOL_INTERFACE) CoreReinstallProtocolInterface, // ReinstallProtocolInterface\r
70 (EFI_UNINSTALL_PROTOCOL_INTERFACE) CoreUninstallProtocolInterface, // UninstallProtocolInterface\r
71 (EFI_HANDLE_PROTOCOL) CoreHandleProtocol, // HandleProtocol\r
72 (VOID *) NULL, // Reserved\r
73 (EFI_REGISTER_PROTOCOL_NOTIFY) CoreRegisterProtocolNotify, // RegisterProtocolNotify\r
74 (EFI_LOCATE_HANDLE) CoreLocateHandle, // LocateHandle\r
75 (EFI_LOCATE_DEVICE_PATH) CoreLocateDevicePath, // LocateDevicePath\r
76 (EFI_INSTALL_CONFIGURATION_TABLE) CoreInstallConfigurationTable, // InstallConfigurationTable\r
77 (EFI_IMAGE_LOAD) CoreLoadImage, // LoadImage\r
78 (EFI_IMAGE_START) CoreStartImage, // StartImage\r
79 (EFI_EXIT) CoreExit, // Exit\r
80 (EFI_IMAGE_UNLOAD) CoreUnloadImage, // UnloadImage\r
81 (EFI_EXIT_BOOT_SERVICES) CoreExitBootServices, // ExitBootServices\r
82 (EFI_GET_NEXT_MONOTONIC_COUNT) CoreEfiNotAvailableYetArg1, // GetNextMonotonicCount\r
83 (EFI_STALL) CoreStall, // Stall\r
84 (EFI_SET_WATCHDOG_TIMER) CoreSetWatchdogTimer, // SetWatchdogTimer\r
85 (EFI_CONNECT_CONTROLLER) CoreConnectController, // ConnectController\r
86 (EFI_DISCONNECT_CONTROLLER) CoreDisconnectController, // DisconnectController\r
87 (EFI_OPEN_PROTOCOL) CoreOpenProtocol, // OpenProtocol\r
88 (EFI_CLOSE_PROTOCOL) CoreCloseProtocol, // CloseProtocol\r
89 (EFI_OPEN_PROTOCOL_INFORMATION) CoreOpenProtocolInformation, // OpenProtocolInformation\r
90 (EFI_PROTOCOLS_PER_HANDLE) CoreProtocolsPerHandle, // ProtocolsPerHandle\r
91 (EFI_LOCATE_HANDLE_BUFFER) CoreLocateHandleBuffer, // LocateHandleBuffer\r
92 (EFI_LOCATE_PROTOCOL) CoreLocateProtocol, // LocateProtocol\r
93 (EFI_INSTALL_MULTIPLE_PROTOCOL_INTERFACES) CoreInstallMultipleProtocolInterfaces, // InstallMultipleProtocolInterfaces\r
94 (EFI_UNINSTALL_MULTIPLE_PROTOCOL_INTERFACES) CoreUninstallMultipleProtocolInterfaces, // UninstallMultipleProtocolInterfaces\r
95 (EFI_CALCULATE_CRC32) CoreEfiNotAvailableYetArg3, // CalculateCrc32\r
96 (EFI_COPY_MEM) CopyMem, // CopyMem\r
97 (EFI_SET_MEM) SetMem, // SetMem\r
98 (EFI_CREATE_EVENT_EX) CoreCreateEventEx // CreateEventEx\r
99};\r
100\r
101EFI_DXE_SERVICES mDxeServices = {\r
102 {\r
103 DXE_SERVICES_SIGNATURE, // Signature\r
104 DXE_SERVICES_REVISION, // Revision\r
105 sizeof (DXE_SERVICES), // HeaderSize\r
106 0, // CRC32\r
107 0 // Reserved\r
108 },\r
109 (EFI_ADD_MEMORY_SPACE) CoreAddMemorySpace, // AddMemorySpace\r
110 (EFI_ALLOCATE_MEMORY_SPACE) CoreAllocateMemorySpace, // AllocateMemorySpace\r
111 (EFI_FREE_MEMORY_SPACE) CoreFreeMemorySpace, // FreeMemorySpace\r
112 (EFI_REMOVE_MEMORY_SPACE) CoreRemoveMemorySpace, // RemoveMemorySpace\r
113 (EFI_GET_MEMORY_SPACE_DESCRIPTOR) CoreGetMemorySpaceDescriptor, // GetMemorySpaceDescriptor\r
114 (EFI_SET_MEMORY_SPACE_ATTRIBUTES) CoreSetMemorySpaceAttributes, // SetMemorySpaceAttributes\r
115 (EFI_GET_MEMORY_SPACE_MAP) CoreGetMemorySpaceMap, // GetMemorySpaceMap\r
116 (EFI_ADD_IO_SPACE) CoreAddIoSpace, // AddIoSpace\r
117 (EFI_ALLOCATE_IO_SPACE) CoreAllocateIoSpace, // AllocateIoSpace\r
118 (EFI_FREE_IO_SPACE) CoreFreeIoSpace, // FreeIoSpace\r
119 (EFI_REMOVE_IO_SPACE) CoreRemoveIoSpace, // RemoveIoSpace\r
120 (EFI_GET_IO_SPACE_DESCRIPTOR) CoreGetIoSpaceDescriptor, // GetIoSpaceDescriptor\r
121 (EFI_GET_IO_SPACE_MAP) CoreGetIoSpaceMap, // GetIoSpaceMap\r
122 (EFI_DISPATCH) CoreDispatcher, // Dispatch\r
123 (EFI_SCHEDULE) CoreSchedule, // Schedule\r
124 (EFI_TRUST) CoreTrust, // Trust\r
125 (EFI_PROCESS_FIRMWARE_VOLUME) CoreProcessFirmwareVolume, // ProcessFirmwareVolume\r
126 (EFI_SET_MEMORY_SPACE_CAPABILITIES)CoreSetMemorySpaceCapabilities, // SetMemorySpaceCapabilities\r
127};\r
128\r
129EFI_SYSTEM_TABLE mEfiSystemTableTemplate = {\r
130 {\r
131 EFI_SYSTEM_TABLE_SIGNATURE, // Signature\r
132 EFI_SYSTEM_TABLE_REVISION, // Revision\r
133 sizeof (EFI_SYSTEM_TABLE), // HeaderSize\r
134 0, // CRC32\r
135 0 // Reserved\r
136 },\r
137 NULL, // FirmwareVendor\r
138 0, // FirmwareRevision\r
139 NULL, // ConsoleInHandle\r
140 NULL, // ConIn\r
141 NULL, // ConsoleOutHandle\r
142 NULL, // ConOut\r
143 NULL, // StandardErrorHandle\r
144 NULL, // StdErr\r
145 NULL, // RuntimeServices\r
146 &mBootServices, // BootServices\r
147 0, // NumberOfConfigurationTableEntries\r
148 NULL // ConfigurationTable\r
149};\r
150\r
151EFI_RUNTIME_SERVICES mEfiRuntimeServicesTableTemplate = {\r
152 {\r
153 EFI_RUNTIME_SERVICES_SIGNATURE, // Signature\r
154 EFI_RUNTIME_SERVICES_REVISION, // Revision\r
155 sizeof (EFI_RUNTIME_SERVICES), // HeaderSize\r
156 0, // CRC32\r
157 0 // Reserved\r
158 },\r
159 (EFI_GET_TIME) CoreEfiNotAvailableYetArg2, // GetTime\r
160 (EFI_SET_TIME) CoreEfiNotAvailableYetArg1, // SetTime\r
161 (EFI_GET_WAKEUP_TIME) CoreEfiNotAvailableYetArg3, // GetWakeupTime\r
162 (EFI_SET_WAKEUP_TIME) CoreEfiNotAvailableYetArg2, // SetWakeupTime\r
163 (EFI_SET_VIRTUAL_ADDRESS_MAP) CoreEfiNotAvailableYetArg4, // SetVirtualAddressMap\r
164 (EFI_CONVERT_POINTER) CoreEfiNotAvailableYetArg2, // ConvertPointer\r
165 (EFI_GET_VARIABLE) CoreEfiNotAvailableYetArg5, // GetVariable\r
166 (EFI_GET_NEXT_VARIABLE_NAME) CoreEfiNotAvailableYetArg3, // GetNextVariableName\r
167 (EFI_SET_VARIABLE) CoreEfiNotAvailableYetArg5, // SetVariable\r
168 (EFI_GET_NEXT_HIGH_MONO_COUNT) CoreEfiNotAvailableYetArg1, // GetNextHighMonotonicCount\r
169 (EFI_RESET_SYSTEM) CoreEfiNotAvailableYetArg4, // ResetSystem\r
170 (EFI_UPDATE_CAPSULE) CoreEfiNotAvailableYetArg3, // UpdateCapsule\r
171 (EFI_QUERY_CAPSULE_CAPABILITIES) CoreEfiNotAvailableYetArg4, // QueryCapsuleCapabilities\r
172 (EFI_QUERY_VARIABLE_INFO) CoreEfiNotAvailableYetArg4 // QueryVariableInfo\r
173};\r
174\r
175EFI_RUNTIME_ARCH_PROTOCOL gRuntimeTemplate = {\r
176 INITIALIZE_LIST_HEAD_VARIABLE (gRuntimeTemplate.ImageHead),\r
177 INITIALIZE_LIST_HEAD_VARIABLE (gRuntimeTemplate.EventHead),\r
178\r
179 //\r
180 // Make sure Size != sizeof (EFI_MEMORY_DESCRIPTOR). This will\r
181 // prevent people from having pointer math bugs in their code.\r
182 // now you have to use *DescriptorSize to make things work.\r
183 //\r
184 sizeof (EFI_MEMORY_DESCRIPTOR) + sizeof (UINT64) - (sizeof (EFI_MEMORY_DESCRIPTOR) % sizeof (UINT64)),\r
185 EFI_MEMORY_DESCRIPTOR_VERSION,\r
186 0,\r
187 NULL,\r
188 NULL,\r
189 FALSE,\r
190 FALSE\r
191};\r
192\r
193EFI_RUNTIME_ARCH_PROTOCOL *gRuntime = &gRuntimeTemplate;\r
194\r
195//\r
196// DXE Core Global Variables for the EFI System Table, Boot Services Table,\r
197// DXE Services Table, and Runtime Services Table\r
198//\r
199EFI_DXE_SERVICES *gDxeCoreDS = &mDxeServices;\r
200EFI_SYSTEM_TABLE *gDxeCoreST = NULL;\r
201\r
202//\r
203// For debug initialize gDxeCoreRT to template. gDxeCoreRT must be allocated from RT memory\r
204// but gDxeCoreRT is used for ASSERT () and DEBUG () type macros so lets give it\r
205// a value that will not cause debug infrastructure to crash early on.\r
206//\r
207EFI_RUNTIME_SERVICES *gDxeCoreRT = &mEfiRuntimeServicesTableTemplate;\r
208EFI_HANDLE gDxeCoreImageHandle = NULL;\r
209\r
210\r
211//\r
212// EFI Decompress Protocol\r
213//\r
214EFI_DECOMPRESS_PROTOCOL gEfiDecompress = {\r
215 DxeMainUefiDecompressGetInfo,\r
216 DxeMainUefiDecompress\r
217};\r
218\r
219//\r
220// For Loading modules at fixed address feature, the configuration table is to cache the top address below which to load\r
221// Runtime code&boot time code\r
222//\r
223GLOBAL_REMOVE_IF_UNREFERENCED EFI_LOAD_FIXED_ADDRESS_CONFIGURATION_TABLE gLoadModuleAtFixAddressConfigurationTable = {0, 0};\r
224\r
225// Main entry point to the DXE Core\r
226//\r
227\r
228/**\r
229 Main entry point to DXE Core.\r
230\r
231 @param HobStart Pointer to the beginning of the HOB List from PEI.\r
232\r
233 @return This function should never return.\r
234\r
235**/\r
236VOID\r
237EFIAPI\r
238DxeMain (\r
239 IN VOID *HobStart\r
240 )\r
241{\r
242 EFI_STATUS Status;\r
243 EFI_PHYSICAL_ADDRESS MemoryBaseAddress;\r
244 UINT64 MemoryLength;\r
245 PE_COFF_LOADER_IMAGE_CONTEXT ImageContext;\r
246 UINTN Index;\r
247 EFI_HOB_GUID_TYPE *GuidHob;\r
248 EFI_VECTOR_HANDOFF_INFO *VectorInfoList;\r
249 EFI_VECTOR_HANDOFF_INFO *VectorInfo;\r
250\r
251 //\r
252 // Setup the default exception handlers\r
253 //\r
254 VectorInfoList = NULL;\r
255 GuidHob = GetNextGuidHob (&gEfiVectorHandoffInfoPpiGuid, HobStart);\r
256 if (GuidHob != NULL) {\r
257 VectorInfoList = (EFI_VECTOR_HANDOFF_INFO *) (GET_GUID_HOB_DATA(GuidHob));\r
258 }\r
259 Status = InitializeCpuExceptionHandlers (VectorInfoList);\r
260 ASSERT_EFI_ERROR (Status);\r
261 \r
262 //\r
263 // Initialize Debug Agent to support source level debug in DXE phase\r
264 //\r
265 InitializeDebugAgent (DEBUG_AGENT_INIT_DXE_CORE, HobStart, NULL);\r
266\r
267 //\r
268 // Initialize Memory Services\r
269 //\r
270 CoreInitializeMemoryServices (&HobStart, &MemoryBaseAddress, &MemoryLength);\r
271\r
272 MemoryProfileInit (HobStart);\r
273\r
274 //\r
275 // Allocate the EFI System Table and EFI Runtime Service Table from EfiRuntimeServicesData\r
276 // Use the templates to initialize the contents of the EFI System Table and EFI Runtime Services Table\r
277 //\r
278 gDxeCoreST = AllocateRuntimeCopyPool (sizeof (EFI_SYSTEM_TABLE), &mEfiSystemTableTemplate);\r
279 ASSERT (gDxeCoreST != NULL);\r
280\r
281 gDxeCoreRT = AllocateRuntimeCopyPool (sizeof (EFI_RUNTIME_SERVICES), &mEfiRuntimeServicesTableTemplate);\r
282 ASSERT (gDxeCoreRT != NULL);\r
283\r
284 gDxeCoreST->RuntimeServices = gDxeCoreRT;\r
285\r
286 //\r
287 // Start the Image Services.\r
288 //\r
289 Status = CoreInitializeImageServices (HobStart);\r
290 ASSERT_EFI_ERROR (Status);\r
291\r
292 //\r
293 // Report DXE Core image information to the PE/COFF Extra Action Library\r
294 //\r
295 ZeroMem (&ImageContext, sizeof (ImageContext));\r
296 ImageContext.ImageAddress = (EFI_PHYSICAL_ADDRESS)(UINTN)gDxeCoreLoadedImage->ImageBase;\r
297 ImageContext.PdbPointer = PeCoffLoaderGetPdbPointer ((VOID*) (UINTN) ImageContext.ImageAddress);\r
298 PeCoffLoaderRelocateImageExtraAction (&ImageContext);\r
299\r
300 //\r
301 // Initialize the Global Coherency Domain Services\r
302 //\r
303 Status = CoreInitializeGcdServices (&HobStart, MemoryBaseAddress, MemoryLength);\r
304 ASSERT_EFI_ERROR (Status);\r
305\r
306 //\r
307 // Call constructor for all libraries\r
308 //\r
309 ProcessLibraryConstructorList (gDxeCoreImageHandle, gDxeCoreST);\r
310 PERF_END (NULL,"PEI", NULL, 0) ;\r
311 PERF_START (NULL,"DXE", NULL, 0) ;\r
312\r
313 //\r
314 // Install the DXE Services Table into the EFI System Tables's Configuration Table\r
315 //\r
316 Status = CoreInstallConfigurationTable (&gEfiDxeServicesTableGuid, gDxeCoreDS);\r
317 ASSERT_EFI_ERROR (Status);\r
318\r
319 //\r
320 // Install the HOB List into the EFI System Tables's Configuration Table\r
321 //\r
322 Status = CoreInstallConfigurationTable (&gEfiHobListGuid, HobStart);\r
323 ASSERT_EFI_ERROR (Status);\r
324\r
325 //\r
326 // Install Memory Type Information Table into the EFI System Tables's Configuration Table\r
327 //\r
328 Status = CoreInstallConfigurationTable (&gEfiMemoryTypeInformationGuid, &gMemoryTypeInformation);\r
329 ASSERT_EFI_ERROR (Status);\r
330\r
331 //\r
332 // If Loading modules At fixed address feature is enabled, install Load moduels at fixed address\r
333 // Configuration Table so that user could easily to retrieve the top address to load Dxe and PEI\r
334 // Code and Tseg base to load SMM driver.\r
335 //\r
336 if (PcdGet64(PcdLoadModuleAtFixAddressEnable) != 0) {\r
337 Status = CoreInstallConfigurationTable (&gLoadFixedAddressConfigurationTableGuid, &gLoadModuleAtFixAddressConfigurationTable);\r
338 ASSERT_EFI_ERROR (Status);\r
339 }\r
340 //\r
341 // Report Status Code here for DXE_ENTRY_POINT once it is available\r
342 //\r
343 REPORT_STATUS_CODE (\r
344 EFI_PROGRESS_CODE,\r
345 (EFI_SOFTWARE_DXE_CORE | EFI_SW_DXE_CORE_PC_ENTRY_POINT)\r
346 );\r
347\r
348 //\r
349 // Create the aligned system table pointer structure that is used by external\r
350 // debuggers to locate the system table... Also, install debug image info\r
351 // configuration table.\r
352 //\r
353 CoreInitializeDebugImageInfoTable ();\r
354 CoreNewDebugImageInfoEntry (\r
355 EFI_DEBUG_IMAGE_INFO_TYPE_NORMAL,\r
356 gDxeCoreLoadedImage,\r
357 gDxeCoreImageHandle\r
358 );\r
359\r
360 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "HOBLIST address in DXE = 0x%p\n", HobStart));\r
361\r
362 DEBUG_CODE_BEGIN ();\r
363 EFI_PEI_HOB_POINTERS Hob;\r
364\r
365 for (Hob.Raw = HobStart; !END_OF_HOB_LIST(Hob); Hob.Raw = GET_NEXT_HOB(Hob)) {\r
366 if (GET_HOB_TYPE (Hob) == EFI_HOB_TYPE_MEMORY_ALLOCATION) {\r
367 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Memory Allocation 0x%08x 0x%0lx - 0x%0lx\n", \\r
368 Hob.MemoryAllocation->AllocDescriptor.MemoryType, \\r
369 Hob.MemoryAllocation->AllocDescriptor.MemoryBaseAddress, \\r
370 Hob.MemoryAllocation->AllocDescriptor.MemoryBaseAddress + Hob.MemoryAllocation->AllocDescriptor.MemoryLength - 1));\r
371 }\r
372 }\r
373 for (Hob.Raw = HobStart; !END_OF_HOB_LIST(Hob); Hob.Raw = GET_NEXT_HOB(Hob)) {\r
374 if (GET_HOB_TYPE (Hob) == EFI_HOB_TYPE_FV2) {\r
375 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "FV2 Hob 0x%0lx - 0x%0lx\n", Hob.FirmwareVolume2->BaseAddress, Hob.FirmwareVolume2->BaseAddress + Hob.FirmwareVolume2->Length - 1));\r
376 } else if (GET_HOB_TYPE (Hob) == EFI_HOB_TYPE_FV) {\r
377 DEBUG ((DEBUG_INFO | DEBUG_LOAD, "FV Hob 0x%0lx - 0x%0lx\n", Hob.FirmwareVolume->BaseAddress, Hob.FirmwareVolume->BaseAddress + Hob.FirmwareVolume->Length - 1));\r
378 }\r
379 }\r
380 DEBUG_CODE_END ();\r
381\r
382 //\r
383 // Initialize the Event Services\r
384 //\r
385 Status = CoreInitializeEventServices ();\r
386 ASSERT_EFI_ERROR (Status);\r
387\r
388 MemoryProfileInstallProtocol ();\r
389\r
390 CoreInitializePropertiesTable ();\r
391 CoreInitializeMemoryAttributesTable ();\r
392\r
393 //\r
394 // Get persisted vector hand-off info from GUIDeed HOB again due to HobStart may be updated,\r
395 // and install configuration table\r
396 //\r
397 GuidHob = GetNextGuidHob (&gEfiVectorHandoffInfoPpiGuid, HobStart);\r
398 if (GuidHob != NULL) {\r
399 VectorInfoList = (EFI_VECTOR_HANDOFF_INFO *) (GET_GUID_HOB_DATA(GuidHob));\r
400 VectorInfo = VectorInfoList;\r
401 Index = 1;\r
402 while (VectorInfo->Attribute != EFI_VECTOR_HANDOFF_LAST_ENTRY) {\r
403 VectorInfo ++;\r
404 Index ++;\r
405 }\r
406 VectorInfo = AllocateCopyPool (sizeof (EFI_VECTOR_HANDOFF_INFO) * Index, (VOID *) VectorInfoList);\r
407 ASSERT (VectorInfo != NULL);\r
408 Status = CoreInstallConfigurationTable (&gEfiVectorHandoffTableGuid, (VOID *) VectorInfo);\r
409 ASSERT_EFI_ERROR (Status);\r
410 }\r
411\r
412 //\r
413 // Get the Protocols that were passed in from PEI to DXE through GUIDed HOBs\r
414 //\r
415 // These Protocols are not architectural. This implementation is sharing code between\r
416 // PEI and DXE in order to save FLASH space. These Protocols could also be implemented\r
417 // as part of the DXE Core. However, that would also require the DXE Core to be ported\r
418 // each time a different CPU is used, a different Decompression algorithm is used, or a\r
419 // different Image type is used. By placing these Protocols in PEI, the DXE Core remains\r
420 // generic, and only PEI and the Arch Protocols need to be ported from Platform to Platform,\r
421 // and from CPU to CPU.\r
422 //\r
423\r
424 //\r
425 // Publish the EFI, Tiano, and Custom Decompress protocols for use by other DXE components\r
426 //\r
427 Status = CoreInstallMultipleProtocolInterfaces (\r
428 &mDecompressHandle,\r
429 &gEfiDecompressProtocolGuid, &gEfiDecompress,\r
430 NULL\r
431 );\r
432 ASSERT_EFI_ERROR (Status);\r
433\r
434 //\r
435 // Register for the GUIDs of the Architectural Protocols, so the rest of the\r
436 // EFI Boot Services and EFI Runtime Services tables can be filled in.\r
437 // Also register for the GUIDs of optional protocols.\r
438 //\r
439 CoreNotifyOnProtocolInstallation ();\r
440\r
441 //\r
442 // Produce Firmware Volume Protocols, one for each FV in the HOB list.\r
443 //\r
444 Status = FwVolBlockDriverInit (gDxeCoreImageHandle, gDxeCoreST);\r
445 ASSERT_EFI_ERROR (Status);\r
446\r
447 Status = FwVolDriverInit (gDxeCoreImageHandle, gDxeCoreST);\r
448 ASSERT_EFI_ERROR (Status);\r
449\r
450 //\r
451 // Produce the Section Extraction Protocol\r
452 //\r
453 Status = InitializeSectionExtraction (gDxeCoreImageHandle, gDxeCoreST);\r
454 ASSERT_EFI_ERROR (Status);\r
455\r
456 //\r
457 // Initialize the DXE Dispatcher\r
458 //\r
459 PERF_START (NULL,"CoreInitializeDispatcher", "DxeMain", 0) ;\r
460 CoreInitializeDispatcher ();\r
461 PERF_END (NULL,"CoreInitializeDispatcher", "DxeMain", 0) ;\r
462\r
463 //\r
464 // Invoke the DXE Dispatcher\r
465 //\r
466 PERF_START (NULL, "CoreDispatcher", "DxeMain", 0);\r
467 CoreDispatcher ();\r
468 PERF_END (NULL, "CoreDispatcher", "DxeMain", 0);\r
469\r
470 //\r
471 // Display Architectural protocols that were not loaded if this is DEBUG build\r
472 //\r
473 DEBUG_CODE_BEGIN ();\r
474 CoreDisplayMissingArchProtocols ();\r
475 DEBUG_CODE_END ();\r
476\r
477 //\r
478 // Display any drivers that were not dispatched because dependency expression\r
479 // evaluated to false if this is a debug build\r
480 //\r
481 DEBUG_CODE_BEGIN ();\r
482 CoreDisplayDiscoveredNotDispatched ();\r
483 DEBUG_CODE_END ();\r
484\r
485 //\r
486 // Assert if the Architectural Protocols are not present.\r
487 //\r
488 Status = CoreAllEfiServicesAvailable ();\r
489 if (EFI_ERROR(Status)) {\r
490 //\r
491 // Report Status code that some Architectural Protocols are not present.\r
492 //\r
493 REPORT_STATUS_CODE (\r
494 EFI_ERROR_CODE | EFI_ERROR_MAJOR,\r
495 (EFI_SOFTWARE_DXE_CORE | EFI_SW_DXE_CORE_EC_NO_ARCH)\r
496 ); \r
497 }\r
498 ASSERT_EFI_ERROR (Status);\r
499\r
500 //\r
501 // Report Status code before transfer control to BDS\r
502 //\r
503 REPORT_STATUS_CODE (\r
504 EFI_PROGRESS_CODE,\r
505 (EFI_SOFTWARE_DXE_CORE | EFI_SW_DXE_CORE_PC_HANDOFF_TO_NEXT)\r
506 );\r
507\r
508 //\r
509 // Transfer control to the BDS Architectural Protocol\r
510 //\r
511 gBds->Entry (gBds);\r
512\r
513 //\r
514 // BDS should never return\r
515 //\r
516 ASSERT (FALSE);\r
517 CpuDeadLoop ();\r
518}\r
519\r
520\r
521\r
522/**\r
523 Place holder function until all the Boot Services and Runtime Services are\r
524 available.\r
525\r
526 @return EFI_NOT_AVAILABLE_YET\r
527\r
528**/\r
529EFI_STATUS\r
530EFIAPI\r
531CoreEfiNotAvailableYetArg0 (\r
532 VOID\r
533 )\r
534{\r
535 //\r
536 // This function should never be executed. If it does, then the architectural protocols\r
537 // have not been designed correctly. The CpuBreakpoint () is commented out for now until the\r
538 // DXE Core and all the Architectural Protocols are complete.\r
539 //\r
540\r
541 return EFI_NOT_AVAILABLE_YET;\r
542}\r
543\r
544\r
545/**\r
546 Place holder function until all the Boot Services and Runtime Services are\r
547 available.\r
548\r
549 @param Arg1 Undefined\r
550\r
551 @return EFI_NOT_AVAILABLE_YET\r
552\r
553**/\r
554EFI_STATUS\r
555EFIAPI\r
556CoreEfiNotAvailableYetArg1 (\r
557 UINTN Arg1\r
558 )\r
559{\r
560 //\r
561 // This function should never be executed. If it does, then the architectural protocols\r
562 // have not been designed correctly. The CpuBreakpoint () is commented out for now until the\r
563 // DXE Core and all the Architectural Protocols are complete.\r
564 //\r
565\r
566 return EFI_NOT_AVAILABLE_YET;\r
567}\r
568\r
569\r
570/**\r
571 Place holder function until all the Boot Services and Runtime Services are available.\r
572\r
573 @param Arg1 Undefined\r
574 @param Arg2 Undefined\r
575\r
576 @return EFI_NOT_AVAILABLE_YET\r
577\r
578**/\r
579EFI_STATUS\r
580EFIAPI\r
581CoreEfiNotAvailableYetArg2 (\r
582 UINTN Arg1,\r
583 UINTN Arg2\r
584 )\r
585{\r
586 //\r
587 // This function should never be executed. If it does, then the architectural protocols\r
588 // have not been designed correctly. The CpuBreakpoint () is commented out for now until the\r
589 // DXE Core and all the Architectural Protocols are complete.\r
590 //\r
591\r
592 return EFI_NOT_AVAILABLE_YET;\r
593}\r
594\r
595\r
596/**\r
597 Place holder function until all the Boot Services and Runtime Services are available.\r
598\r
599 @param Arg1 Undefined\r
600 @param Arg2 Undefined\r
601 @param Arg3 Undefined\r
602\r
603 @return EFI_NOT_AVAILABLE_YET\r
604\r
605**/\r
606EFI_STATUS\r
607EFIAPI\r
608CoreEfiNotAvailableYetArg3 (\r
609 UINTN Arg1,\r
610 UINTN Arg2,\r
611 UINTN Arg3\r
612 )\r
613{\r
614 //\r
615 // This function should never be executed. If it does, then the architectural protocols\r
616 // have not been designed correctly. The CpuBreakpoint () is commented out for now until the\r
617 // DXE Core and all the Architectural Protocols are complete.\r
618 //\r
619\r
620 return EFI_NOT_AVAILABLE_YET;\r
621}\r
622\r
623\r
624/**\r
625 Place holder function until all the Boot Services and Runtime Services are available.\r
626\r
627 @param Arg1 Undefined\r
628 @param Arg2 Undefined\r
629 @param Arg3 Undefined\r
630 @param Arg4 Undefined\r
631\r
632 @return EFI_NOT_AVAILABLE_YET\r
633\r
634**/\r
635EFI_STATUS\r
636EFIAPI\r
637CoreEfiNotAvailableYetArg4 (\r
638 UINTN Arg1,\r
639 UINTN Arg2,\r
640 UINTN Arg3,\r
641 UINTN Arg4\r
642 )\r
643{\r
644 //\r
645 // This function should never be executed. If it does, then the architectural protocols\r
646 // have not been designed correctly. The CpuBreakpoint () is commented out for now until the\r
647 // DXE Core and all the Architectural Protocols are complete.\r
648 //\r
649\r
650 return EFI_NOT_AVAILABLE_YET;\r
651}\r
652\r
653\r
654/**\r
655 Place holder function until all the Boot Services and Runtime Services are available.\r
656\r
657 @param Arg1 Undefined\r
658 @param Arg2 Undefined\r
659 @param Arg3 Undefined\r
660 @param Arg4 Undefined\r
661 @param Arg5 Undefined\r
662\r
663 @return EFI_NOT_AVAILABLE_YET\r
664\r
665**/\r
666EFI_STATUS\r
667EFIAPI\r
668CoreEfiNotAvailableYetArg5 (\r
669 UINTN Arg1,\r
670 UINTN Arg2,\r
671 UINTN Arg3,\r
672 UINTN Arg4,\r
673 UINTN Arg5\r
674 )\r
675{\r
676 //\r
677 // This function should never be executed. If it does, then the architectural protocols\r
678 // have not been designed correctly. The CpuBreakpoint () is commented out for now until the\r
679 // DXE Core and all the Architectural Protocols are complete.\r
680 //\r
681\r
682 return EFI_NOT_AVAILABLE_YET;\r
683}\r
684\r
685\r
686/**\r
687 Calcualte the 32-bit CRC in a EFI table using the service provided by the\r
688 gRuntime service.\r
689\r
690 @param Hdr Pointer to an EFI standard header\r
691\r
692**/\r
693VOID\r
694CalculateEfiHdrCrc (\r
695 IN OUT EFI_TABLE_HEADER *Hdr\r
696 )\r
697{\r
698 UINT32 Crc;\r
699\r
700 Hdr->CRC32 = 0;\r
701\r
702 //\r
703 // If gBS->CalculateCrce32 () == CoreEfiNotAvailableYet () then\r
704 // Crc will come back as zero if we set it to zero here\r
705 //\r
706 Crc = 0;\r
707 gBS->CalculateCrc32 ((UINT8 *)Hdr, Hdr->HeaderSize, &Crc);\r
708 Hdr->CRC32 = Crc;\r
709}\r
710\r
711\r
712/**\r
713 Terminates all boot services.\r
714\r
715 @param ImageHandle Handle that identifies the exiting image.\r
716 @param MapKey Key to the latest memory map.\r
717\r
718 @retval EFI_SUCCESS Boot Services terminated\r
719 @retval EFI_INVALID_PARAMETER MapKey is incorrect.\r
720\r
721**/\r
722EFI_STATUS\r
723EFIAPI\r
724CoreExitBootServices (\r
725 IN EFI_HANDLE ImageHandle,\r
726 IN UINTN MapKey\r
727 )\r
728{\r
729 EFI_STATUS Status;\r
730\r
731 //\r
732 // Disable Timer\r
733 //\r
734 gTimer->SetTimerPeriod (gTimer, 0);\r
735\r
736 //\r
737 // Terminate memory services if the MapKey matches\r
738 //\r
739 Status = CoreTerminateMemoryMap (MapKey);\r
740 if (EFI_ERROR (Status)) {\r
741 //\r
742 // Notify other drivers that ExitBootServices fail \r
743 //\r
744 CoreNotifySignalList (&gEventExitBootServicesFailedGuid);\r
745 return Status;\r
746 }\r
747\r
748 //\r
749 // Notify other drivers that we are exiting boot services.\r
750 //\r
751 CoreNotifySignalList (&gEfiEventExitBootServicesGuid);\r
752\r
753 //\r
754 // Report that ExitBootServices() has been called\r
755 //\r
756 REPORT_STATUS_CODE (\r
757 EFI_PROGRESS_CODE,\r
758 (EFI_SOFTWARE_EFI_BOOT_SERVICE | EFI_SW_BS_PC_EXIT_BOOT_SERVICES)\r
759 );\r
760\r
761 //\r
762 // Disable interrupt of Debug timer.\r
763 //\r
764 SaveAndSetDebugTimerInterrupt (FALSE);\r
765\r
766 //\r
767 // Disable CPU Interrupts\r
768 //\r
769 gCpu->DisableInterrupt (gCpu);\r
770\r
771 //\r
772 // Clear the non-runtime values of the EFI System Table\r
773 //\r
774 gDxeCoreST->BootServices = NULL;\r
775 gDxeCoreST->ConIn = NULL;\r
776 gDxeCoreST->ConsoleInHandle = NULL;\r
777 gDxeCoreST->ConOut = NULL;\r
778 gDxeCoreST->ConsoleOutHandle = NULL;\r
779 gDxeCoreST->StdErr = NULL;\r
780 gDxeCoreST->StandardErrorHandle = NULL;\r
781\r
782 //\r
783 // Recompute the 32-bit CRC of the EFI System Table\r
784 //\r
785 CalculateEfiHdrCrc (&gDxeCoreST->Hdr);\r
786\r
787 //\r
788 // Zero out the Boot Service Table\r
789 //\r
790 ZeroMem (gBS, sizeof (EFI_BOOT_SERVICES));\r
791 gBS = NULL;\r
792\r
793 //\r
794 // Update the AtRuntime field in Runtiem AP.\r
795 //\r
796 gRuntime->AtRuntime = TRUE;\r
797\r
798 return Status;\r
799}\r
800\r
801\r
802/**\r
803 Given a compressed source buffer, this function retrieves the size of the\r
804 uncompressed buffer and the size of the scratch buffer required to decompress\r
805 the compressed source buffer.\r
806\r
807 The GetInfo() function retrieves the size of the uncompressed buffer and the\r
808 temporary scratch buffer required to decompress the buffer specified by Source\r
809 and SourceSize. If the size of the uncompressed buffer or the size of the\r
810 scratch buffer cannot be determined from the compressed data specified by\r
811 Source and SourceData, then EFI_INVALID_PARAMETER is returned. Otherwise, the\r
812 size of the uncompressed buffer is returned in DestinationSize, the size of\r
813 the scratch buffer is returned in ScratchSize, and EFI_SUCCESS is returned.\r
814 The GetInfo() function does not have scratch buffer available to perform a\r
815 thorough checking of the validity of the source data. It just retrieves the\r
816 "Original Size" field from the beginning bytes of the source data and output\r
817 it as DestinationSize. And ScratchSize is specific to the decompression\r
818 implementation.\r
819\r
820 @param This A pointer to the EFI_DECOMPRESS_PROTOCOL instance.\r
821 @param Source The source buffer containing the compressed data.\r
822 @param SourceSize The size, in bytes, of the source buffer.\r
823 @param DestinationSize A pointer to the size, in bytes, of the\r
824 uncompressed buffer that will be generated when the\r
825 compressed buffer specified by Source and\r
826 SourceSize is decompressed.\r
827 @param ScratchSize A pointer to the size, in bytes, of the scratch\r
828 buffer that is required to decompress the\r
829 compressed buffer specified by Source and\r
830 SourceSize.\r
831\r
832 @retval EFI_SUCCESS The size of the uncompressed data was returned in\r
833 DestinationSize and the size of the scratch buffer\r
834 was returned in ScratchSize.\r
835 @retval EFI_INVALID_PARAMETER The size of the uncompressed data or the size of\r
836 the scratch buffer cannot be determined from the\r
837 compressed data specified by Source and\r
838 SourceSize.\r
839\r
840**/\r
841EFI_STATUS\r
842EFIAPI\r
843DxeMainUefiDecompressGetInfo (\r
844 IN EFI_DECOMPRESS_PROTOCOL *This,\r
845 IN VOID *Source,\r
846 IN UINT32 SourceSize,\r
847 OUT UINT32 *DestinationSize,\r
848 OUT UINT32 *ScratchSize\r
849 )\r
850{\r
851 if (Source == NULL || DestinationSize == NULL || ScratchSize == NULL) {\r
852 return EFI_INVALID_PARAMETER;\r
853 }\r
854 return UefiDecompressGetInfo (Source, SourceSize, DestinationSize, ScratchSize);\r
855}\r
856\r
857\r
858/**\r
859 Decompresses a compressed source buffer.\r
860\r
861 The Decompress() function extracts decompressed data to its original form.\r
862 This protocol is designed so that the decompression algorithm can be\r
863 implemented without using any memory services. As a result, the Decompress()\r
864 Function is not allowed to call AllocatePool() or AllocatePages() in its\r
865 implementation. It is the caller's responsibility to allocate and free the\r
866 Destination and Scratch buffers.\r
867 If the compressed source data specified by Source and SourceSize is\r
868 successfully decompressed into Destination, then EFI_SUCCESS is returned. If\r
869 the compressed source data specified by Source and SourceSize is not in a\r
870 valid compressed data format, then EFI_INVALID_PARAMETER is returned.\r
871\r
872 @param This A pointer to the EFI_DECOMPRESS_PROTOCOL instance.\r
873 @param Source The source buffer containing the compressed data.\r
874 @param SourceSize SourceSizeThe size of source data.\r
875 @param Destination On output, the destination buffer that contains\r
876 the uncompressed data.\r
877 @param DestinationSize The size of the destination buffer. The size of\r
878 the destination buffer needed is obtained from\r
879 EFI_DECOMPRESS_PROTOCOL.GetInfo().\r
880 @param Scratch A temporary scratch buffer that is used to perform\r
881 the decompression.\r
882 @param ScratchSize The size of scratch buffer. The size of the\r
883 scratch buffer needed is obtained from GetInfo().\r
884\r
885 @retval EFI_SUCCESS Decompression completed successfully, and the\r
886 uncompressed buffer is returned in Destination.\r
887 @retval EFI_INVALID_PARAMETER The source buffer specified by Source and\r
888 SourceSize is corrupted (not in a valid\r
889 compressed format).\r
890\r
891**/\r
892EFI_STATUS\r
893EFIAPI\r
894DxeMainUefiDecompress (\r
895 IN EFI_DECOMPRESS_PROTOCOL *This,\r
896 IN VOID *Source,\r
897 IN UINT32 SourceSize,\r
898 IN OUT VOID *Destination,\r
899 IN UINT32 DestinationSize,\r
900 IN OUT VOID *Scratch,\r
901 IN UINT32 ScratchSize\r
902 )\r
903{\r
904 EFI_STATUS Status;\r
905 UINT32 TestDestinationSize;\r
906 UINT32 TestScratchSize;\r
907\r
908 if (Source == NULL || Destination== NULL || Scratch == NULL) {\r
909 return EFI_INVALID_PARAMETER;\r
910 }\r
911\r
912 Status = UefiDecompressGetInfo (Source, SourceSize, &TestDestinationSize, &TestScratchSize);\r
913 if (EFI_ERROR (Status)) {\r
914 return Status;\r
915 }\r
916\r
917 if (ScratchSize < TestScratchSize || DestinationSize < TestDestinationSize) {\r
918 return RETURN_INVALID_PARAMETER;\r
919 }\r
920\r
921 return UefiDecompress (Source, Destination, Scratch);\r
922}\r