]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/Bds/Bds.c
ArmPlatformPkg/Bds: Do not start all devices when starting an OS loader
[mirror_edk2.git] / ArmPlatformPkg / Bds / Bds.c
CommitLineData
705b0c03 1/** @file\r
2*\r
9fc9aa46 3* Copyright (c) 2011-2014, ARM Limited. All rights reserved.\r
705b0c03 4*\r
c0b2e477 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
705b0c03 12*\r
13**/\r
14\r
15#include "BdsInternal.h"\r
16\r
17#include <Library/PcdLib.h>\r
18#include <Library/PerformanceLib.h>\r
19\r
20#include <Protocol/Bds.h>\r
21\r
22#define EFI_SET_TIMER_TO_SECOND 10000000\r
23\r
24EFI_HANDLE mImageHandle;\r
25\r
26STATIC\r
27EFI_STATUS\r
28GetConsoleDevicePathFromVariable (\r
29 IN CHAR16* ConsoleVarName,\r
30 IN CHAR16* DefaultConsolePaths,\r
31 OUT EFI_DEVICE_PATH** DevicePaths\r
32 )\r
33{\r
34 EFI_STATUS Status;\r
35 UINTN Size;\r
36 EFI_DEVICE_PATH_PROTOCOL* DevicePathInstances;\r
37 EFI_DEVICE_PATH_PROTOCOL* DevicePathInstance;\r
38 CHAR16* DevicePathStr;\r
39 CHAR16* NextDevicePathStr;\r
40 EFI_DEVICE_PATH_FROM_TEXT_PROTOCOL *EfiDevicePathFromTextProtocol;\r
41\r
c0b2e477 42 Status = GetGlobalEnvironmentVariable (ConsoleVarName, NULL, NULL, (VOID**)&DevicePathInstances);\r
705b0c03 43 if (EFI_ERROR(Status)) {\r
483bc3d3 44 // In case no default console device path has been defined we assume a driver handles the console (eg: SimpleTextInOutSerial)\r
45 if ((DefaultConsolePaths == NULL) || (DefaultConsolePaths[0] == L'\0')) {\r
46 *DevicePaths = NULL;\r
47 return EFI_SUCCESS;\r
48 }\r
49\r
705b0c03 50 Status = gBS->LocateProtocol (&gEfiDevicePathFromTextProtocolGuid, NULL, (VOID **)&EfiDevicePathFromTextProtocol);\r
51 ASSERT_EFI_ERROR(Status);\r
52\r
53 DevicePathInstances = NULL;\r
54\r
55 // Extract the Device Path instances from the multi-device path string\r
56 while ((DefaultConsolePaths != NULL) && (DefaultConsolePaths[0] != L'\0')) {\r
57 NextDevicePathStr = StrStr (DefaultConsolePaths, L";");\r
58 if (NextDevicePathStr == NULL) {\r
59 DevicePathStr = DefaultConsolePaths;\r
60 DefaultConsolePaths = NULL;\r
61 } else {\r
62 DevicePathStr = (CHAR16*)AllocateCopyPool ((NextDevicePathStr - DefaultConsolePaths + 1) * sizeof(CHAR16), DefaultConsolePaths);\r
63 *(DevicePathStr + (NextDevicePathStr - DefaultConsolePaths)) = L'\0';\r
64 DefaultConsolePaths = NextDevicePathStr;\r
65 if (DefaultConsolePaths[0] == L';') {\r
66 DefaultConsolePaths++;\r
67 }\r
68 }\r
69\r
70 DevicePathInstance = EfiDevicePathFromTextProtocol->ConvertTextToDevicePath (DevicePathStr);\r
71 ASSERT(DevicePathInstance != NULL);\r
72 DevicePathInstances = AppendDevicePathInstance (DevicePathInstances, DevicePathInstance);\r
73\r
74 if (NextDevicePathStr != NULL) {\r
75 FreePool (DevicePathStr);\r
76 }\r
77 FreePool (DevicePathInstance);\r
78 }\r
79\r
80 // Set the environment variable with this device path multi-instances\r
81 Size = GetDevicePathSize (DevicePathInstances);\r
82 if (Size > 0) {\r
83 gRT->SetVariable (\r
84 ConsoleVarName,\r
85 &gEfiGlobalVariableGuid,\r
86 EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,\r
87 Size,\r
88 DevicePathInstances\r
89 );\r
90 } else {\r
91 Status = EFI_INVALID_PARAMETER;\r
92 }\r
93 }\r
94\r
95 if (!EFI_ERROR(Status)) {\r
96 *DevicePaths = DevicePathInstances;\r
97 }\r
483bc3d3 98 return Status;\r
705b0c03 99}\r
100\r
101STATIC\r
102EFI_STATUS\r
103InitializeConsolePipe (\r
104 IN EFI_DEVICE_PATH *ConsoleDevicePaths,\r
105 IN EFI_GUID *Protocol,\r
106 OUT EFI_HANDLE *Handle,\r
107 OUT VOID* *Interface\r
108 )\r
109{\r
110 EFI_STATUS Status;\r
111 UINTN Size;\r
112 UINTN NoHandles;\r
113 EFI_HANDLE *Buffer;\r
114 EFI_DEVICE_PATH_PROTOCOL* DevicePath;\r
115\r
116 // Connect all the Device Path Consoles\r
483bc3d3 117 while (ConsoleDevicePaths != NULL) {\r
705b0c03 118 DevicePath = GetNextDevicePathInstance (&ConsoleDevicePaths, &Size);\r
119\r
120 Status = BdsConnectDevicePath (DevicePath, Handle, NULL);\r
121 DEBUG_CODE_BEGIN();\r
122 if (EFI_ERROR(Status)) {\r
123 // We convert back to the text representation of the device Path\r
124 EFI_DEVICE_PATH_TO_TEXT_PROTOCOL* DevicePathToTextProtocol;\r
125 CHAR16* DevicePathTxt;\r
126 EFI_STATUS Status;\r
c0b2e477 127\r
705b0c03 128 Status = gBS->LocateProtocol(&gEfiDevicePathToTextProtocolGuid, NULL, (VOID **)&DevicePathToTextProtocol);\r
129 if (!EFI_ERROR(Status)) {\r
130 DevicePathTxt = DevicePathToTextProtocol->ConvertDevicePathToText (DevicePath, TRUE, TRUE);\r
131\r
132 DEBUG((EFI_D_ERROR,"Fail to start the console with the Device Path '%s'. (Error '%r')\n", DevicePathTxt, Status));\r
133\r
134 FreePool (DevicePathTxt);\r
135 }\r
136 }\r
137 DEBUG_CODE_END();\r
138\r
139 // If the console splitter driver is not supported by the platform then use the first Device Path\r
140 // instance for the console interface.\r
141 if (!EFI_ERROR(Status) && (*Interface == NULL)) {\r
142 Status = gBS->HandleProtocol (*Handle, Protocol, Interface);\r
143 }\r
483bc3d3 144 }\r
705b0c03 145\r
146 // No Device Path has been defined for this console interface. We take the first protocol implementation\r
147 if (*Interface == NULL) {\r
148 Status = gBS->LocateHandleBuffer (ByProtocol, Protocol, NULL, &NoHandles, &Buffer);\r
149 if (EFI_ERROR (Status)) {\r
150 BdsConnectAllDrivers();\r
151 Status = gBS->LocateHandleBuffer (ByProtocol, Protocol, NULL, &NoHandles, &Buffer);\r
152 }\r
153\r
154 if (!EFI_ERROR(Status)) {\r
155 *Handle = Buffer[0];\r
156 Status = gBS->HandleProtocol (*Handle, Protocol, Interface);\r
157 ASSERT_EFI_ERROR(Status);\r
158 }\r
159 FreePool (Buffer);\r
160 } else {\r
161 Status = EFI_SUCCESS;\r
162 }\r
163\r
164 return Status;\r
165}\r
166\r
167EFI_STATUS\r
168InitializeConsole (\r
169 VOID\r
170 )\r
171{\r
172 EFI_STATUS Status;\r
173 EFI_DEVICE_PATH* ConOutDevicePaths;\r
174 EFI_DEVICE_PATH* ConInDevicePaths;\r
175 EFI_DEVICE_PATH* ConErrDevicePaths;\r
176\r
177 // By getting the Console Device Paths from the environment variables before initializing the console pipe, we\r
178 // create the 3 environment variables (ConIn, ConOut, ConErr) that allows to initialize all the console interface\r
179 // of newly installed console drivers\r
483bc3d3 180 Status = GetConsoleDevicePathFromVariable (L"ConOut", (CHAR16*)PcdGetPtr(PcdDefaultConOutPaths), &ConOutDevicePaths);\r
705b0c03 181 ASSERT_EFI_ERROR (Status);\r
483bc3d3 182 Status = GetConsoleDevicePathFromVariable (L"ConIn", (CHAR16*)PcdGetPtr(PcdDefaultConInPaths), &ConInDevicePaths);\r
705b0c03 183 ASSERT_EFI_ERROR (Status);\r
30d1bcd1 184 Status = GetConsoleDevicePathFromVariable (L"ErrOut", (CHAR16*)PcdGetPtr(PcdDefaultConOutPaths), &ConErrDevicePaths);\r
705b0c03 185 ASSERT_EFI_ERROR (Status);\r
186\r
187 // Initialize the Consoles\r
188 Status = InitializeConsolePipe (ConOutDevicePaths, &gEfiSimpleTextOutProtocolGuid, &gST->ConsoleOutHandle, (VOID **)&gST->ConOut);\r
189 ASSERT_EFI_ERROR (Status);\r
190 Status = InitializeConsolePipe (ConInDevicePaths, &gEfiSimpleTextInProtocolGuid, &gST->ConsoleInHandle, (VOID **)&gST->ConIn);\r
191 ASSERT_EFI_ERROR (Status);\r
192 Status = InitializeConsolePipe (ConErrDevicePaths, &gEfiSimpleTextOutProtocolGuid, &gST->StandardErrorHandle, (VOID **)&gST->StdErr);\r
193 if (EFI_ERROR(Status)) {\r
194 // In case of error, we reuse the console output for the error output\r
195 gST->StandardErrorHandle = gST->ConsoleOutHandle;\r
196 gST->StdErr = gST->ConOut;\r
197 }\r
198\r
b148591a 199 // Free Memory allocated for reading the UEFI Variables\r
200 if (ConOutDevicePaths) {\r
201 FreePool (ConOutDevicePaths);\r
202 }\r
203 if (ConInDevicePaths) {\r
204 FreePool (ConInDevicePaths);\r
205 }\r
206 if (ConErrDevicePaths) {\r
207 FreePool (ConErrDevicePaths);\r
208 }\r
209\r
705b0c03 210 return EFI_SUCCESS;\r
211}\r
212\r
213EFI_STATUS\r
214DefineDefaultBootEntries (\r
215 VOID\r
216 )\r
217{\r
218 BDS_LOAD_OPTION* BdsLoadOption;\r
219 UINTN Size;\r
220 EFI_STATUS Status;\r
221 EFI_DEVICE_PATH_FROM_TEXT_PROTOCOL* EfiDevicePathFromTextProtocol;\r
222 EFI_DEVICE_PATH* BootDevicePath;\r
90a44ec4
OM
223 UINT8* OptionalData;\r
224 UINTN OptionalDataSize;\r
705b0c03 225 ARM_BDS_LOADER_ARGUMENTS* BootArguments;\r
226 ARM_BDS_LOADER_TYPE BootType;\r
227 EFI_DEVICE_PATH* InitrdPath;\r
705b0c03 228 UINTN InitrdSize;\r
9fc9aa46
OM
229 UINTN CmdLineSize;\r
230 UINTN CmdLineAsciiSize;\r
231 CHAR16* DefaultBootArgument;\r
232 CHAR8* AsciiDefaultBootArgument;\r
705b0c03 233\r
234 //\r
235 // If Boot Order does not exist then create a default entry\r
236 //\r
237 Size = 0;\r
238 Status = gRT->GetVariable (L"BootOrder", &gEfiGlobalVariableGuid, NULL, &Size, NULL);\r
239 if (Status == EFI_NOT_FOUND) {\r
240 if ((PcdGetPtr(PcdDefaultBootDevicePath) == NULL) || (StrLen ((CHAR16*)PcdGetPtr(PcdDefaultBootDevicePath)) == 0)) {\r
241 return EFI_UNSUPPORTED;\r
242 }\r
243\r
244 Status = gBS->LocateProtocol (&gEfiDevicePathFromTextProtocolGuid, NULL, (VOID **)&EfiDevicePathFromTextProtocol);\r
245 if (EFI_ERROR(Status)) {\r
246 // You must provide an implementation of DevicePathFromTextProtocol in your firmware (eg: DevicePathDxe)\r
247 DEBUG((EFI_D_ERROR,"Error: Bds requires DevicePathFromTextProtocol\n"));\r
248 return Status;\r
249 }\r
250 BootDevicePath = EfiDevicePathFromTextProtocol->ConvertTextToDevicePath ((CHAR16*)PcdGetPtr(PcdDefaultBootDevicePath));\r
251\r
252 DEBUG_CODE_BEGIN();\r
253 // We convert back to the text representation of the device Path to see if the initial text is correct\r
254 EFI_DEVICE_PATH_TO_TEXT_PROTOCOL* DevicePathToTextProtocol;\r
255 CHAR16* DevicePathTxt;\r
256\r
257 Status = gBS->LocateProtocol(&gEfiDevicePathToTextProtocolGuid, NULL, (VOID **)&DevicePathToTextProtocol);\r
258 ASSERT_EFI_ERROR(Status);\r
259 DevicePathTxt = DevicePathToTextProtocol->ConvertDevicePathToText (BootDevicePath, TRUE, TRUE);\r
260\r
261 ASSERT (StrCmp ((CHAR16*)PcdGetPtr(PcdDefaultBootDevicePath), DevicePathTxt) == 0);\r
262\r
263 FreePool (DevicePathTxt);\r
264 DEBUG_CODE_END();\r
265\r
266 // Create the entry is the Default values are correct\r
267 if (BootDevicePath != NULL) {\r
268 BootType = (ARM_BDS_LOADER_TYPE)PcdGet32 (PcdDefaultBootType);\r
269\r
9fc9aa46
OM
270 // We do not support NULL pointer\r
271 ASSERT (PcdGetPtr (PcdDefaultBootArgument) != NULL);\r
272\r
273 //\r
274 // Logic to handle ASCII or Unicode default parameters\r
275 //\r
276 if (*(CHAR8*)PcdGetPtr (PcdDefaultBootArgument) == '\0') {\r
277 CmdLineSize = 0;\r
278 CmdLineAsciiSize = 0;\r
279 DefaultBootArgument = NULL;\r
280 AsciiDefaultBootArgument = NULL;\r
281 } else if (IsUnicodeString ((CHAR16*)PcdGetPtr (PcdDefaultBootArgument))) {\r
282 // The command line is a Unicode string\r
283 DefaultBootArgument = (CHAR16*)PcdGetPtr (PcdDefaultBootArgument);\r
284 CmdLineSize = StrSize (DefaultBootArgument);\r
285\r
286 // Initialize ASCII variables\r
287 CmdLineAsciiSize = CmdLineSize / 2;\r
288 AsciiDefaultBootArgument = AllocatePool (CmdLineAsciiSize);\r
289 if (AsciiDefaultBootArgument == NULL) {\r
290 return EFI_OUT_OF_RESOURCES;\r
291 }\r
292 UnicodeStrToAsciiStr ((CHAR16*)PcdGetPtr (PcdDefaultBootArgument), AsciiDefaultBootArgument);\r
293 } else {\r
294 // The command line is a ASCII string\r
295 AsciiDefaultBootArgument = (CHAR8*)PcdGetPtr (PcdDefaultBootArgument);\r
296 CmdLineAsciiSize = AsciiStrSize (AsciiDefaultBootArgument);\r
297\r
298 // Initialize ASCII variables\r
299 CmdLineSize = CmdLineAsciiSize * 2;\r
300 DefaultBootArgument = AllocatePool (CmdLineSize);\r
301 if (DefaultBootArgument == NULL) {\r
302 return EFI_OUT_OF_RESOURCES;\r
303 }\r
304 AsciiStrToUnicodeStr (AsciiDefaultBootArgument, DefaultBootArgument);\r
305 }\r
306\r
705b0c03 307 if ((BootType == BDS_LOADER_KERNEL_LINUX_ATAG) || (BootType == BDS_LOADER_KERNEL_LINUX_FDT)) {\r
705b0c03 308 InitrdPath = EfiDevicePathFromTextProtocol->ConvertTextToDevicePath ((CHAR16*)PcdGetPtr(PcdDefaultBootInitrdPath));\r
309 InitrdSize = GetDevicePathSize (InitrdPath);\r
310\r
90a44ec4
OM
311 OptionalDataSize = sizeof(ARM_BDS_LOADER_ARGUMENTS) + CmdLineAsciiSize + InitrdSize;\r
312 BootArguments = (ARM_BDS_LOADER_ARGUMENTS*)AllocatePool (OptionalDataSize);\r
9fc9aa46
OM
313 if (BootArguments == NULL) {\r
314 return EFI_OUT_OF_RESOURCES;\r
315 }\r
316 BootArguments->LinuxArguments.CmdLineSize = CmdLineAsciiSize;\r
705b0c03 317 BootArguments->LinuxArguments.InitrdSize = InitrdSize;\r
318\r
9fc9aa46
OM
319 CopyMem ((VOID*)(BootArguments + 1), AsciiDefaultBootArgument, CmdLineAsciiSize);\r
320 CopyMem ((VOID*)((UINTN)(BootArguments + 1) + CmdLineAsciiSize), InitrdPath, InitrdSize);\r
90a44ec4
OM
321\r
322 OptionalData = (UINT8*)BootArguments;\r
705b0c03 323 } else {\r
06044819
OM
324 OptionalData = (UINT8*)DefaultBootArgument;\r
325 OptionalDataSize = CmdLineSize;\r
705b0c03 326 }\r
327\r
328 BootOptionCreate (LOAD_OPTION_ACTIVE | LOAD_OPTION_CATEGORY_BOOT,\r
329 (CHAR16*)PcdGetPtr(PcdDefaultBootDescription),\r
330 BootDevicePath,\r
331 BootType,\r
90a44ec4
OM
332 OptionalData,\r
333 OptionalDataSize,\r
705b0c03 334 &BdsLoadOption\r
335 );\r
336 FreePool (BdsLoadOption);\r
9fc9aa46
OM
337\r
338 if (DefaultBootArgument == (CHAR16*)PcdGetPtr (PcdDefaultBootArgument)) {\r
339 FreePool (AsciiDefaultBootArgument);\r
340 } else {\r
341 FreePool (DefaultBootArgument);\r
342 }\r
705b0c03 343 } else {\r
344 Status = EFI_UNSUPPORTED;\r
345 }\r
346 }\r
347\r
348 return EFI_SUCCESS;\r
349}\r
350\r
351EFI_STATUS\r
352StartDefaultBootOnTimeout (\r
353 VOID\r
354 )\r
355{\r
356 UINTN Size;\r
357 UINT16 Timeout;\r
358 UINT16 *TimeoutPtr;\r
359 EFI_EVENT WaitList[2];\r
360 UINTN WaitIndex;\r
361 UINT16 *BootOrder;\r
362 UINTN BootOrderSize;\r
363 UINTN Index;\r
364 CHAR16 BootVariableName[9];\r
b34e4db3 365 EFI_STATUS Status;\r
366 EFI_INPUT_KEY Key;\r
705b0c03 367\r
368 Size = sizeof(UINT16);\r
369 Timeout = (UINT16)PcdGet16 (PcdPlatformBootTimeOut);\r
370 TimeoutPtr = &Timeout;\r
c0b2e477 371 GetGlobalEnvironmentVariable (L"Timeout", &Timeout, &Size, (VOID**)&TimeoutPtr);\r
705b0c03 372\r
373 if (Timeout != 0xFFFF) {\r
374 if (Timeout > 0) {\r
375 // Create the waiting events (keystroke and 1sec timer)\r
376 gBS->CreateEvent (EVT_TIMER, 0, NULL, NULL, &WaitList[0]);\r
377 gBS->SetTimer (WaitList[0], TimerPeriodic, EFI_SET_TIMER_TO_SECOND);\r
378 WaitList[1] = gST->ConIn->WaitForKey;\r
379\r
380 // Start the timer\r
381 WaitIndex = 0;\r
382 Print(L"The default boot selection will start in ");\r
383 while ((Timeout > 0) && (WaitIndex == 0)) {\r
384 Print(L"%3d seconds",Timeout);\r
385 gBS->WaitForEvent (2, WaitList, &WaitIndex);\r
386 if (WaitIndex == 0) {\r
387 Print(L"\b\b\b\b\b\b\b\b\b\b\b");\r
388 Timeout--;\r
389 }\r
390 }\r
391 // Discard key in the buffer\r
392 do {\r
393 Status = gST->ConIn->ReadKeyStroke (gST->ConIn, &Key);\r
394 } while(!EFI_ERROR(Status));\r
395 gBS->CloseEvent (WaitList[0]);\r
396 Print(L"\n\r");\r
397 }\r
398\r
399 // In case of Timeout we start the default boot selection\r
400 if (Timeout == 0) {\r
401 // Get the Boot Option Order from the environment variable (a default value should have been created)\r
c0b2e477 402 GetGlobalEnvironmentVariable (L"BootOrder", NULL, &BootOrderSize, (VOID**)&BootOrder);\r
705b0c03 403\r
404 for (Index = 0; Index < BootOrderSize / sizeof (UINT16); Index++) {\r
405 UnicodeSPrint (BootVariableName, 9 * sizeof(CHAR16), L"Boot%04X", BootOrder[Index]);\r
406 Status = BdsStartBootOption (BootVariableName);\r
407 if(!EFI_ERROR(Status)){\r
408 // Boot option returned successfully, hence don't need to start next boot option\r
409 break;\r
410 }\r
411 // In case of success, we should not return from this call.\r
412 }\r
b148591a 413 FreePool (BootOrder);\r
705b0c03 414 }\r
415 }\r
416 return EFI_SUCCESS;\r
417}\r
418\r
419/**\r
c0b2e477 420 This function uses policy data from the platform to determine what operating\r
421 system or system utility should be loaded and invoked. This function call\r
422 also optionally make the use of user input to determine the operating system\r
423 or system utility to be loaded and invoked. When the DXE Core has dispatched\r
424 all the drivers on the dispatch queue, this function is called. This\r
425 function will attempt to connect the boot devices required to load and invoke\r
426 the selected operating system or system utility. During this process,\r
427 additional firmware volumes may be discovered that may contain addition DXE\r
428 drivers that can be dispatched by the DXE Core. If a boot device cannot be\r
429 fully connected, this function calls the DXE Service Dispatch() to allow the\r
430 DXE drivers from any newly discovered firmware volumes to be dispatched.\r
431 Then the boot device connection can be attempted again. If the same boot\r
432 device connection operation fails twice in a row, then that boot device has\r
705b0c03 433 failed, and should be skipped. This function should never return.\r
434\r
435 @param This The EFI_BDS_ARCH_PROTOCOL instance.\r
436\r
437 @return None.\r
438\r
439**/\r
440VOID\r
441EFIAPI\r
442BdsEntry (\r
443 IN EFI_BDS_ARCH_PROTOCOL *This\r
444 )\r
445{\r
446 UINTN Size;\r
447 EFI_STATUS Status;\r
0e29bf5c 448 UINT16 *BootNext;\r
449 UINTN BootNextSize;\r
450 CHAR16 BootVariableName[9];\r
705b0c03 451\r
452 PERF_END (NULL, "DXE", NULL, 0);\r
453\r
454 //\r
455 // Declare the Firmware Vendor\r
456 //\r
457 if (FixedPcdGetPtr(PcdFirmwareVendor) != NULL) {\r
458 Size = 0x100;\r
459 gST->FirmwareVendor = AllocateRuntimePool (Size);\r
460 ASSERT (gST->FirmwareVendor != NULL);\r
461 UnicodeSPrint (gST->FirmwareVendor, Size, L"%a EFI %a %a", PcdGetPtr(PcdFirmwareVendor), __DATE__, __TIME__);\r
462 }\r
463\r
53cba4fe 464 //\r
465 // Fixup Table CRC after we updated Firmware Vendor\r
466 //\r
467 gST->Hdr.CRC32 = 0;\r
468 Status = gBS->CalculateCrc32 ((VOID*)gST, gST->Hdr.HeaderSize, &gST->Hdr.CRC32);\r
469 ASSERT_EFI_ERROR (Status);\r
470\r
705b0c03 471 // If BootNext environment variable is defined then we just load it !\r
0e29bf5c 472 BootNextSize = sizeof(UINT16);\r
c0b2e477 473 Status = GetGlobalEnvironmentVariable (L"BootNext", NULL, &BootNextSize, (VOID**)&BootNext);\r
0e29bf5c 474 if (!EFI_ERROR(Status)) {\r
475 ASSERT(BootNextSize == sizeof(UINT16));\r
476\r
477 // Generate the requested Boot Entry variable name\r
478 UnicodeSPrint (BootVariableName, 9 * sizeof(CHAR16), L"Boot%04X", *BootNext);\r
479\r
480 // Set BootCurrent variable\r
481 gRT->SetVariable (L"BootCurrent", &gEfiGlobalVariableGuid,\r
482 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,\r
483 BootNextSize, BootNext);\r
484\r
485 FreePool (BootNext);\r
486\r
487 // Start the requested Boot Entry\r
488 Status = BdsStartBootOption (BootVariableName);\r
489 if (Status != EFI_NOT_FOUND) {\r
490 // BootNext has not been succeeded launched\r
491 if (EFI_ERROR(Status)) {\r
492 Print(L"Fail to start BootNext.\n");\r
493 }\r
494\r
495 // Delete the BootNext environment variable\r
496 gRT->SetVariable (L"BootNext", &gEfiGlobalVariableGuid,\r
497 EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,\r
498 0, NULL);\r
705b0c03 499 }\r
500\r
0e29bf5c 501 // Clear BootCurrent variable\r
502 gRT->SetVariable (L"BootCurrent", &gEfiGlobalVariableGuid,\r
503 EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,\r
705b0c03 504 0, NULL);\r
505 }\r
506\r
507 // If Boot Order does not exist then create a default entry\r
508 DefineDefaultBootEntries ();\r
509\r
510 // Now we need to setup the EFI System Table with information about the console devices.\r
511 InitializeConsole ();\r
512\r
53cba4fe 513 //\r
514 // Update the CRC32 in the EFI System Table header\r
515 //\r
516 gST->Hdr.CRC32 = 0;\r
517 Status = gBS->CalculateCrc32 ((VOID*)gST, gST->Hdr.HeaderSize, &gST->Hdr.CRC32);\r
518 ASSERT_EFI_ERROR (Status);\r
519\r
705b0c03 520 // Timer before initiating the default boot selection\r
521 StartDefaultBootOnTimeout ();\r
522\r
523 // Start the Boot Menu\r
524 Status = BootMenuMain ();\r
525 ASSERT_EFI_ERROR (Status);\r
526\r
527}\r
528\r
529EFI_BDS_ARCH_PROTOCOL gBdsProtocol = {\r
530 BdsEntry,\r
531};\r
532\r
533EFI_STATUS\r
534EFIAPI\r
535BdsInitialize (\r
536 IN EFI_HANDLE ImageHandle,\r
537 IN EFI_SYSTEM_TABLE *SystemTable\r
538 )\r
539{\r
540 EFI_STATUS Status;\r
541\r
542 mImageHandle = ImageHandle;\r
543\r
544 Status = gBS->InstallMultipleProtocolInterfaces (\r
545 &ImageHandle,\r
546 &gEfiBdsArchProtocolGuid, &gBdsProtocol,\r
547 NULL\r
548 );\r
549 ASSERT_EFI_ERROR (Status);\r
550\r
551 return Status;\r
552}\r