]> git.proxmox.com Git - mirror_edk2.git/blob - BeagleBoardPkg/Bds/BdsEntry.c
Add some ldm/vldm optimized CopyMem routines. Add performance macros to BDS
[mirror_edk2.git] / BeagleBoardPkg / Bds / BdsEntry.c
1 /** @file
2 The entry of the embedded BDS. This BDS does not follow the Boot Manager requirements
3 of the UEFI specification as it is designed to implement an embedded systmes
4 propriatary boot scheme.
5
6 This template assume a DXE driver produces a SerialIo protocol not using the EFI
7 driver module and it will attempt to connect a console on top of this.
8
9 Copyright (c) 2008-2009, Apple Inc. All rights reserved.
10
11 All rights reserved. This program and the accompanying materials
12 are licensed and made available under the terms and conditions of the BSD License
13 which accompanies this distribution. The full text of the license may be found at
14 http://opensource.org/licenses/bsd-license.php
15
16 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
17 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
18
19 **/
20
21 #include "BdsEntry.h"
22
23
24 BOOLEAN gConsolePresent = FALSE;
25
26
27 EFI_HANDLE mBdsImageHandle = NULL;
28 EFI_BDS_ARCH_PROTOCOL gBdsProtocol = {
29 BdsEntry,
30 };
31
32
33
34
35 /**
36 This function uses policy data from the platform to determine what operating
37 system or system utility should be loaded and invoked. This function call
38 also optionally make the use of user input to determine the operating system
39 or system utility to be loaded and invoked. When the DXE Core has dispatched
40 all the drivers on the dispatch queue, this function is called. This
41 function will attempt to connect the boot devices required to load and invoke
42 the selected operating system or system utility. During this process,
43 additional firmware volumes may be discovered that may contain addition DXE
44 drivers that can be dispatched by the DXE Core. If a boot device cannot be
45 fully connected, this function calls the DXE Service Dispatch() to allow the
46 DXE drivers from any newly discovered firmware volumes to be dispatched.
47 Then the boot device connection can be attempted again. If the same boot
48 device connection operation fails twice in a row, then that boot device has
49 failed, and should be skipped. This function should never return.
50
51 @param This The EFI_BDS_ARCH_PROTOCOL instance.
52
53 @return None.
54
55 **/
56 VOID
57 EFIAPI
58 BdsEntry (
59 IN EFI_BDS_ARCH_PROTOCOL *This
60 )
61 {
62 EFI_STATUS Status;
63 UINTN NoHandles;
64 EFI_HANDLE *Buffer;
65 EFI_HANDLE FvHandle;
66 EFI_HANDLE ImageHandle;
67 EFI_HANDLE UsbDeviceHandle;
68 EFI_GUID NameGuid;
69 UINTN Size;
70 UINTN HandleCount;
71 UINTN OldHandleCount;
72 EFI_HANDLE *HandleBuffer;
73 UINTN Index;
74 EFI_DEVICE_PATH_PROTOCOL *LoadImageDevicePath;
75 EFI_DEVICE_PATH_PROTOCOL *FileSystemDevicePath;
76
77 PERF_END (NULL, "DXE", NULL, 0);
78 PERF_START (NULL, "BDS", NULL, 0);
79
80
81 //
82 // Now do the EFI stuff
83 //
84 Size = 0x100;
85 gST->FirmwareVendor = AllocateRuntimePool (Size);
86 ASSERT (gST->FirmwareVendor != NULL);
87
88 UnicodeSPrint (gST->FirmwareVendor, Size, L"BeagleBoard EFI %a %a", __DATE__, __TIME__);
89
90 //
91 // Now we need to setup the EFI System Table with information about the console devices.
92 // This code is normally in the console spliter driver on platforms that support multiple
93 // consoles at the same time
94 //
95 Status = gBS->LocateHandleBuffer (ByProtocol, &gEfiSimpleTextOutProtocolGuid, NULL, &NoHandles, &Buffer);
96 if (!EFI_ERROR (Status)) {
97 // Use the first SimpleTextOut we find and update the EFI System Table
98 gST->ConsoleOutHandle = Buffer[0];
99 gST->StandardErrorHandle = Buffer[0];
100 Status = gBS->HandleProtocol (Buffer[0], &gEfiSimpleTextOutProtocolGuid, (VOID **)&gST->ConOut);
101 ASSERT_EFI_ERROR (Status);
102
103 gST->StdErr = gST->ConOut;
104
105 gST->ConOut->OutputString (gST->ConOut, L"BDS: Console Started!!!!\n\r");
106 FreePool (Buffer);
107
108 gConsolePresent = TRUE;
109 }
110
111
112 Status = gBS->LocateHandleBuffer (ByProtocol, &gEfiSimpleTextInProtocolGuid, NULL, &NoHandles, &Buffer);
113 if (!EFI_ERROR (Status)) {
114 // Use the first SimpleTextIn we find and update the EFI System Table
115 gST->ConsoleInHandle = Buffer[0];
116 Status = gBS->HandleProtocol (Buffer[0], &gEfiSimpleTextInProtocolGuid, (VOID **)&gST->ConIn);
117 ASSERT_EFI_ERROR (Status);
118
119 FreePool (Buffer);
120 }
121
122 //
123 // We now have EFI Consoles up and running. Print () will work now. DEBUG () and ASSERT () worked
124 // prior to this point as they were configured to use a more primative output scheme.
125 //
126
127 //
128 //Perform Connect
129 //
130 HandleCount = 0;
131 while (1) {
132 OldHandleCount = HandleCount;
133 Status = gBS->LocateHandleBuffer (
134 AllHandles,
135 NULL,
136 NULL,
137 &HandleCount,
138 &HandleBuffer
139 );
140 if (EFI_ERROR (Status)) {
141 break;
142 }
143
144 if (HandleCount == OldHandleCount) {
145 break;
146 }
147
148 for (Index = 0; Index < HandleCount; Index++) {
149 gBS->ConnectController (HandleBuffer[Index], NULL, NULL, TRUE);
150 }
151 }
152
153 //Locate handles for SimpleFileSystem protocol
154 Status = gBS->LocateHandleBuffer (
155 ByProtocol,
156 &gEfiSimpleFileSystemProtocolGuid,
157 NULL,
158 &HandleCount,
159 &HandleBuffer
160 );
161 if (!EFI_ERROR(Status)) {
162 for (Index = 0; Index < HandleCount; Index++) {
163 //Get the device path
164 FileSystemDevicePath = DevicePathFromHandle(HandleBuffer[Index]);
165 if (FileSystemDevicePath == NULL) {
166 continue;
167 }
168
169 //Check if UsbIo is on any handles in the device path.
170 Status = gBS->LocateDevicePath(&gEfiUsbIoProtocolGuid, &FileSystemDevicePath, &UsbDeviceHandle);
171 if (EFI_ERROR(Status)) {
172 continue;
173 }
174
175 //Check if Usb stick has a magic EBL file.
176 LoadImageDevicePath = FileDevicePath(HandleBuffer[Index], L"Ebl.efi");
177 Status = gBS->LoadImage (TRUE, gImageHandle, LoadImageDevicePath, NULL, 0, &ImageHandle);
178 if (EFI_ERROR(Status)) {
179 continue;
180 }
181
182 //Boot to Shell on USB stick.
183 Status = gBS->StartImage (ImageHandle, NULL, NULL);
184 if (EFI_ERROR(Status)) {
185 continue;
186 }
187 }
188 }
189
190 //
191 // Normal UEFI behavior is to process Globally Defined Variables as defined in Chapter 3
192 // (Boot Manager) of the UEFI specification. For this embedded system we don't do this.
193 //
194
195 //
196 // Search all the FVs for an application with a UI Section of Ebl. A .FDF file can be used
197 // to control the names of UI sections in an FV.
198 //
199 Status = FindApplicationMatchingUiSection (L"Ebl", &FvHandle, &NameGuid);
200 if (!EFI_ERROR (Status)) {
201
202 //Boot to Shell.
203 Status = LoadPeCoffSectionFromFv (FvHandle, &NameGuid);
204
205 if (EFI_ERROR(Status)) {
206 DEBUG((EFI_D_ERROR, "Boot from Shell failed. Status: %r\n", Status));
207 }
208 }
209
210 //
211 // EFI does not define the behaviour if all boot attemps fail and the last one returns.
212 // So we make a policy choice to reset the system since this BDS does not have a UI.
213 //
214 gRT->ResetSystem (EfiResetShutdown, Status, 0, NULL);
215
216 return ;
217 }
218
219
220 EFI_STATUS
221 EFIAPI
222 BdsInitialize (
223 IN EFI_HANDLE ImageHandle,
224 IN EFI_SYSTEM_TABLE *SystemTable
225 )
226 {
227 EFI_STATUS Status;
228
229 mBdsImageHandle = ImageHandle;
230
231 //
232 // Install protocol interface
233 //
234 Status = gBS->InstallMultipleProtocolInterfaces (
235 &mBdsImageHandle,
236 &gEfiBdsArchProtocolGuid, &gBdsProtocol,
237 NULL
238 );
239 ASSERT_EFI_ERROR (Status);
240
241 return Status;
242 }
243
244