]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/BdsDxe/MemoryTest.c
UEFI HII: Merge UEFI HII support changes from branch.
[mirror_edk2.git] / MdeModulePkg / Universal / BdsDxe / MemoryTest.c
1 /*++
2
3 Copyright (c) 2004 - 2008, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 MemoryTest.c
15
16 Abstract:
17
18 Perform the platform memory test
19
20 --*/
21
22 #include "Bds.h"
23 #include "String.h"
24
25 //
26 // BDS Platform Functions
27 //
28 EFI_STATUS
29 PlatformBdsShowProgress (
30 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL TitleForeground,
31 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL TitleBackground,
32 IN CHAR16 *Title,
33 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL ProgressColor,
34 IN UINTN Progress,
35 IN UINTN PreviousValue
36 )
37 /*++
38
39 Routine Description:
40
41 Show progress bar with title above it. It only works in Graphics mode.
42
43 Arguments:
44
45 TitleForeground - Foreground color for Title.
46 TitleBackground - Background color for Title.
47 Title - Title above progress bar.
48 ProgressColor - Progress bar color.
49 Progress - Progress (0-100)
50
51 Returns:
52
53 EFI_STATUS - Success update the progress bar
54
55 --*/
56 {
57 EFI_STATUS Status;
58 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput;
59 EFI_UGA_DRAW_PROTOCOL *UgaDraw;
60 UINT32 SizeOfX;
61 UINT32 SizeOfY;
62 UINT32 ColorDepth;
63 UINT32 RefreshRate;
64 EFI_GRAPHICS_OUTPUT_BLT_PIXEL Color;
65 UINTN BlockHeight;
66 UINTN BlockWidth;
67 UINTN BlockNum;
68 UINTN PosX;
69 UINTN PosY;
70 UINTN Index;
71
72 if (Progress > 100) {
73 return EFI_INVALID_PARAMETER;
74 }
75
76 UgaDraw = NULL;
77 Status = gBS->HandleProtocol (
78 gST->ConsoleOutHandle,
79 &gEfiGraphicsOutputProtocolGuid,
80 (VOID **) &GraphicsOutput
81 );
82 if (EFI_ERROR (Status)) {
83 GraphicsOutput = NULL;
84
85 Status = gBS->HandleProtocol (
86 gST->ConsoleOutHandle,
87 &gEfiUgaDrawProtocolGuid,
88 (VOID **) &UgaDraw
89 );
90 if (EFI_ERROR (Status)) {
91 return EFI_UNSUPPORTED;
92 }
93 }
94
95 if (GraphicsOutput != NULL) {
96 SizeOfX = GraphicsOutput->Mode->Info->HorizontalResolution;
97 SizeOfY = GraphicsOutput->Mode->Info->VerticalResolution;
98 } else {
99 Status = UgaDraw->GetMode (
100 UgaDraw,
101 &SizeOfX,
102 &SizeOfY,
103 &ColorDepth,
104 &RefreshRate
105 );
106 if (EFI_ERROR (Status)) {
107 return EFI_UNSUPPORTED;
108 }
109 }
110
111 BlockWidth = SizeOfX / 100;
112 BlockHeight = SizeOfY / 50;
113
114 BlockNum = Progress;
115
116 PosX = 0;
117 PosY = SizeOfY * 48 / 50;
118
119 if (BlockNum == 0) {
120 //
121 // Clear progress area
122 //
123 SetMem (&Color, sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL), 0x0);
124
125 if (GraphicsOutput != NULL) {
126 Status = GraphicsOutput->Blt (
127 GraphicsOutput,
128 &Color,
129 EfiBltVideoFill,
130 0,
131 0,
132 0,
133 PosY - GLYPH_HEIGHT - 1,
134 SizeOfX,
135 SizeOfY - (PosY - GLYPH_HEIGHT - 1),
136 SizeOfX * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL)
137 );
138 } else {
139 Status = UgaDraw->Blt (
140 UgaDraw,
141 (EFI_UGA_PIXEL *) &Color,
142 EfiUgaVideoFill,
143 0,
144 0,
145 0,
146 PosY - GLYPH_HEIGHT - 1,
147 SizeOfX,
148 SizeOfY - (PosY - GLYPH_HEIGHT - 1),
149 SizeOfX * sizeof (EFI_UGA_PIXEL)
150 );
151 }
152 }
153 //
154 // Show progress by drawing blocks
155 //
156 for (Index = PreviousValue; Index < BlockNum; Index++) {
157 PosX = Index * BlockWidth;
158 if (GraphicsOutput != NULL) {
159 Status = GraphicsOutput->Blt (
160 GraphicsOutput,
161 &ProgressColor,
162 EfiBltVideoFill,
163 0,
164 0,
165 PosX,
166 PosY,
167 BlockWidth - 1,
168 BlockHeight,
169 (BlockWidth) * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL)
170 );
171 } else {
172 Status = UgaDraw->Blt (
173 UgaDraw,
174 (EFI_UGA_PIXEL *) &ProgressColor,
175 EfiUgaVideoFill,
176 0,
177 0,
178 PosX,
179 PosY,
180 BlockWidth - 1,
181 BlockHeight,
182 (BlockWidth) * sizeof (EFI_UGA_PIXEL)
183 );
184 }
185 }
186
187 PrintXY (
188 (SizeOfX - StrLen (Title) * GLYPH_WIDTH) / 2,
189 PosY - GLYPH_HEIGHT - 1,
190 &TitleForeground,
191 &TitleBackground,
192 Title
193 );
194
195 return EFI_SUCCESS;
196 }
197
198 EFI_STATUS
199 BdsMemoryTest (
200 IN EXTENDMEM_COVERAGE_LEVEL Level
201 )
202 /*++
203
204 Routine Description:
205
206 Perform the memory test base on the memory test intensive level,
207 and update the memory resource.
208
209 Arguments:
210
211 Level - The memory test intensive level.
212
213 Returns:
214
215 EFI_STATUS - Success test all the system memory and update
216 the memory resource
217
218 --*/
219 {
220 EFI_STATUS Status;
221 EFI_STATUS InitStatus;
222 EFI_STATUS ReturnStatus;
223 BOOLEAN RequireSoftECCInit;
224 EFI_GENERIC_MEMORY_TEST_PROTOCOL *GenMemoryTest;
225 UINT64 TestedMemorySize;
226 UINT64 TotalMemorySize;
227 UINTN TestPercent;
228 UINT64 PreviousValue;
229 BOOLEAN ErrorOut;
230 BOOLEAN TestAbort;
231 EFI_INPUT_KEY Key;
232 CHAR16 StrPercent[16];
233 CHAR16 *StrTotalMemory;
234 CHAR16 *Pos;
235 CHAR16 *TmpStr;
236 EFI_GRAPHICS_OUTPUT_BLT_PIXEL Foreground;
237 EFI_GRAPHICS_OUTPUT_BLT_PIXEL Background;
238 EFI_GRAPHICS_OUTPUT_BLT_PIXEL Color;
239 UINT8 Value;
240 UINTN DataSize;
241 UINT32 Attributes;
242 UINT32 TempData;
243
244 ReturnStatus = EFI_SUCCESS;
245 ZeroMem (&Key, sizeof (EFI_INPUT_KEY));
246
247 Pos = AllocatePool (128);
248
249 if (Pos == NULL) {
250 return ReturnStatus;
251 }
252
253 StrTotalMemory = Pos;
254
255 TestedMemorySize = 0;
256 TotalMemorySize = 0;
257 PreviousValue = 0;
258 ErrorOut = FALSE;
259 TestAbort = FALSE;
260
261 SetMem (&Foreground, sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL), 0xff);
262 SetMem (&Background, sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL), 0x0);
263 SetMem (&Color, sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL), 0xff);
264
265 RequireSoftECCInit = FALSE;
266
267 gST->ConOut->ClearScreen (gST->ConOut);
268 gST->ConOut->SetAttribute (gST->ConOut, EFI_YELLOW | EFI_BRIGHT);
269 gST->ConOut->EnableCursor (gST->ConOut, FALSE);
270
271 Status = gBS->LocateProtocol (
272 &gEfiGenericMemTestProtocolGuid,
273 NULL,
274 (VOID **) &GenMemoryTest
275 );
276 if (EFI_ERROR (Status)) {
277 FreePool (Pos);
278 return EFI_SUCCESS;
279 }
280
281 InitStatus = GenMemoryTest->MemoryTestInit (
282 GenMemoryTest,
283 Level,
284 &RequireSoftECCInit
285 );
286 if (InitStatus == EFI_NO_MEDIA) {
287 //
288 // The PEI codes also have the relevant memory test code to check the memory,
289 // it can select to test some range of the memory or all of them. If PEI code
290 // checks all the memory, this BDS memory test will has no not-test memory to
291 // do the test, and then the status of EFI_NO_MEDIA will be returned by
292 // "MemoryTestInit". So it does not need to test memory again, just return.
293 //
294 FreePool (Pos);
295 return EFI_SUCCESS;
296 }
297
298 gST->ConOut->SetCursorPosition (gST->ConOut, 0, 2);
299 TmpStr = GetStringById (STRING_TOKEN (STR_ESC_TO_SKIP_MEM_TEST));
300
301 if (TmpStr != NULL) {
302 gST->ConOut->OutputString (gST->ConOut, TmpStr);
303 FreePool (TmpStr);
304 }
305
306 do {
307 Status = GenMemoryTest->PerformMemoryTest (
308 GenMemoryTest,
309 &TestedMemorySize,
310 &TotalMemorySize,
311 &ErrorOut,
312 TestAbort
313 );
314 if (ErrorOut && (Status == EFI_DEVICE_ERROR)) {
315 TmpStr = GetStringById (STRING_TOKEN (STR_SYSTEM_MEM_ERROR));
316 if (TmpStr != NULL) {
317 PrintXY (10, 10, NULL, NULL, TmpStr);
318 gST->ConOut->SetCursorPosition (gST->ConOut, 0, 4);
319 gST->ConOut->OutputString (gST->ConOut, TmpStr);
320 FreePool (TmpStr);
321 }
322
323 ASSERT (0);
324 }
325
326 TempData = (UINT32) DivU64x32 (TotalMemorySize, 16);
327 TestPercent = (UINTN) DivU64x32 (
328 DivU64x32 (MultU64x32 (TestedMemorySize, 100), 16),
329 TempData
330 );
331 if (TestPercent != PreviousValue) {
332 UnicodeValueToString (StrPercent, 0, TestPercent, 0);
333 gST->ConOut->SetCursorPosition (gST->ConOut, 0, 0);
334 TmpStr = GetStringById (STRING_TOKEN (STR_MEMORY_TEST_PERCENT));
335 if (TmpStr != NULL) {
336 BdsLibOutputStrings (gST->ConOut, StrPercent, TmpStr, NULL);
337 FreePool (TmpStr);
338 }
339
340 TmpStr = GetStringById (STRING_TOKEN (STR_PERFORM_MEM_TEST));
341 if (TmpStr != NULL) {
342 PlatformBdsShowProgress (
343 Foreground,
344 Background,
345 TmpStr,
346 Color,
347 TestPercent,
348 (UINTN) PreviousValue
349 );
350 FreePool (TmpStr);
351 }
352 }
353
354 PreviousValue = TestPercent;
355
356 if (Key.ScanCode == SCAN_ESC) {
357 if (!RequireSoftECCInit) {
358 TmpStr = GetStringById (STRING_TOKEN (STR_PERFORM_MEM_TEST));
359 if (TmpStr != NULL) {
360 PlatformBdsShowProgress (
361 Foreground,
362 Background,
363 TmpStr,
364 Color,
365 100,
366 (UINTN) PreviousValue
367 );
368 FreePool (TmpStr);
369 }
370
371 gST->ConOut->SetCursorPosition (gST->ConOut, 0, 0);
372 gST->ConOut->OutputString (gST->ConOut, L"100");
373 Status = GenMemoryTest->Finished (GenMemoryTest);
374 goto Done;
375 }
376
377 TestAbort = TRUE;
378 }
379 } while (Status != EFI_NOT_FOUND);
380
381 Status = GenMemoryTest->Finished (GenMemoryTest);
382
383 Done:
384 UnicodeValueToString (StrTotalMemory, COMMA_TYPE, TotalMemorySize, 0);
385 if (StrTotalMemory[0] == L',') {
386 StrTotalMemory++;
387 }
388
389 TmpStr = GetStringById (STRING_TOKEN (STR_MEM_TEST_COMPLETED));
390 if (TmpStr != NULL) {
391 StrCat (StrTotalMemory, TmpStr);
392 FreePool (TmpStr);
393 }
394
395 gST->ConOut->ClearScreen (gST->ConOut);
396 gST->ConOut->SetAttribute (gST->ConOut, EFI_YELLOW | EFI_BRIGHT);
397 gST->ConOut->EnableCursor (gST->ConOut, FALSE);
398 gST->ConOut->OutputString (gST->ConOut, StrTotalMemory);
399 PlatformBdsShowProgress (
400 Foreground,
401 Background,
402 StrTotalMemory,
403 Color,
404 100,
405 (UINTN) PreviousValue
406 );
407
408 FreePool (Pos);
409
410 DataSize = sizeof (Value);
411 Status = gRT->GetVariable (
412 L"BootState",
413 &gEfiBootStateGuid,
414 &Attributes,
415 &DataSize,
416 &Value
417 );
418
419 if (EFI_ERROR (Status)) {
420 Value = 1;
421 gRT->SetVariable (
422 L"BootState",
423 &gEfiBootStateGuid,
424 EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS,
425 sizeof (Value),
426 &Value
427 );
428 }
429
430 return ReturnStatus;
431 }