]> git.proxmox.com Git - mirror_edk2.git/blob - EdkNt32Pkg/Dxe/PlatformBds/Generic/MemoryTest.c
- Fixed EDKT240. Now the Blank.pad file for alignment purpose will no longer be needed.
[mirror_edk2.git] / EdkNt32Pkg / Dxe / PlatformBds / Generic / MemoryTest.c
1 /*++
2
3 Copyright (c) 2006, 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 "BdsPlatform.h"
24 #include "String.h"
25
26 //
27 // BDS Platform Functions
28 //
29 EFI_STATUS
30 PlatformBdsShowProgress (
31 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL TitleForeground,
32 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL TitleBackground,
33 IN CHAR16 *Title,
34 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL ProgressColor,
35 IN UINTN Progress,
36 IN UINTN PreviousValue
37 )
38 /*++
39
40 Routine Description:
41
42 Show progress bar with title above it. It only works in UGA mode.
43
44 Arguments:
45
46 TitleForeground - Foreground color for Title.
47 TitleBackground - Background color for Title.
48 Title - Title above progress bar.
49 ProgressColor - Progress bar color.
50 Progress - Progress (0-100)
51
52 Returns:
53
54 EFI_STATUS - Success update the progress bar
55
56 --*/
57 {
58 EFI_STATUS Status;
59 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput;
60 EFI_UGA_DRAW_PROTOCOL *UgaDraw;
61 UINT32 SizeOfX;
62 UINT32 SizeOfY;
63 UINT32 ColorDepth;
64 UINT32 RefreshRate;
65 EFI_GRAPHICS_OUTPUT_BLT_PIXEL Color;
66 UINTN BlockHeight;
67 UINTN BlockWidth;
68 UINTN BlockNum;
69 UINTN PosX;
70 UINTN PosY;
71 UINTN Index;
72
73 if (Progress > 100) {
74 return EFI_INVALID_PARAMETER;
75 }
76
77 UgaDraw = NULL;
78 Status = gBS->HandleProtocol (
79 gST->ConsoleOutHandle,
80 &gEfiGraphicsOutputProtocolGuid,
81 &GraphicsOutput
82 );
83 if (EFI_ERROR (Status)) {
84 GraphicsOutput = NULL;
85
86 Status = gBS->HandleProtocol (
87 gST->ConsoleOutHandle,
88 &gEfiUgaDrawProtocolGuid,
89 &UgaDraw
90 );
91 if (EFI_ERROR (Status)) {
92 return EFI_UNSUPPORTED;
93 }
94 }
95
96 if (GraphicsOutput != NULL) {
97 SizeOfX = GraphicsOutput->Mode->Info->HorizontalResolution;
98 SizeOfY = GraphicsOutput->Mode->Info->VerticalResolution;
99 } else {
100 Status = UgaDraw->GetMode (
101 UgaDraw,
102 &SizeOfX,
103 &SizeOfY,
104 &ColorDepth,
105 &RefreshRate
106 );
107 if (EFI_ERROR (Status)) {
108 return EFI_UNSUPPORTED;
109 }
110 }
111
112 BlockWidth = SizeOfX / 100;
113 BlockHeight = SizeOfY / 50;
114
115 BlockNum = Progress;
116
117 PosX = 0;
118 PosY = SizeOfY * 48 / 50;
119
120 if (BlockNum == 0) {
121 //
122 // Clear progress area
123 //
124 SetMem (&Color, sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL), 0x0);
125
126 if (GraphicsOutput != NULL) {
127 Status = GraphicsOutput->Blt (
128 GraphicsOutput,
129 &Color,
130 EfiBltVideoFill,
131 0,
132 0,
133 0,
134 PosY - GLYPH_HEIGHT - 1,
135 SizeOfX,
136 SizeOfY - (PosY - GLYPH_HEIGHT - 1),
137 SizeOfX * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL)
138 );
139 } else {
140 Status = UgaDraw->Blt (
141 UgaDraw,
142 (EFI_UGA_PIXEL *) &Color,
143 EfiUgaVideoFill,
144 0,
145 0,
146 0,
147 PosY - GLYPH_HEIGHT - 1,
148 SizeOfX,
149 SizeOfY - (PosY - GLYPH_HEIGHT - 1),
150 SizeOfX * sizeof (EFI_UGA_PIXEL)
151 );
152 }
153 }
154 //
155 // Show progress by drawing blocks
156 //
157 for (Index = PreviousValue; Index < BlockNum; Index++) {
158 PosX = Index * BlockWidth;
159 if (GraphicsOutput != NULL) {
160 Status = GraphicsOutput->Blt (
161 GraphicsOutput,
162 &ProgressColor,
163 EfiBltVideoFill,
164 0,
165 0,
166 PosX,
167 PosY,
168 BlockWidth - 1,
169 BlockHeight,
170 (BlockWidth) * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL)
171 );
172 } else {
173 Status = UgaDraw->Blt (
174 UgaDraw,
175 (EFI_UGA_PIXEL *) &ProgressColor,
176 EfiUgaVideoFill,
177 0,
178 0,
179 PosX,
180 PosY,
181 BlockWidth - 1,
182 BlockHeight,
183 (BlockWidth) * sizeof (EFI_UGA_PIXEL)
184 );
185 }
186 }
187
188 PrintXY (
189 (SizeOfX - StrLen (Title) * GLYPH_WIDTH) / 2,
190 PosY - GLYPH_HEIGHT - 1,
191 &TitleForeground,
192 &TitleBackground,
193 Title
194 );
195
196 return EFI_SUCCESS;
197 }
198
199 EFI_STATUS
200 BdsMemoryTest (
201 IN EXTENDMEM_COVERAGE_LEVEL Level
202 )
203 /*++
204
205 Routine Description:
206
207 Perform the memory test base on the memory test intensive level,
208 and update the memory resource.
209
210 Arguments:
211
212 Level - The memory test intensive level.
213
214 Returns:
215
216 EFI_STATUS - Success test all the system memory and update
217 the memory resource
218
219 --*/
220 {
221 EFI_STATUS Status;
222 EFI_STATUS InitStatus;
223 EFI_STATUS KeyStatus;
224 EFI_STATUS ReturnStatus;
225 BOOLEAN RequireSoftECCInit;
226 EFI_GENERIC_MEMORY_TEST_PROTOCOL *GenMemoryTest;
227 UINT64 TestedMemorySize;
228 UINT64 TotalMemorySize;
229 UINTN TestPercent;
230 UINT64 PreviousValue;
231 BOOLEAN ErrorOut;
232 BOOLEAN TestAbort;
233 EFI_INPUT_KEY Key;
234 CHAR16 StrPercent[16];
235 CHAR16 *StrTotalMemory;
236 CHAR16 *Pos;
237 CHAR16 *TmpStr;
238 EFI_GRAPHICS_OUTPUT_BLT_PIXEL Foreground;
239 EFI_GRAPHICS_OUTPUT_BLT_PIXEL Background;
240 EFI_GRAPHICS_OUTPUT_BLT_PIXEL Color;
241 UINT8 Value;
242 UINTN DataSize;
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 &GenMemoryTest
275 );
276 if (EFI_ERROR (Status)) {
277 gBS->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 gBS->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 gBS->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 gBS->FreePool (TmpStr);
321 }
322
323 ASSERT (0);
324 }
325
326 TestPercent = (UINTN) DivU64x32 (
327 DivU64x32 (MultU64x32 (TestedMemorySize, 100), 16),
328 (UINTN)DivU64x32 (TotalMemorySize, 16)
329 );
330 if (TestPercent != PreviousValue) {
331 UnicodeValueToString (StrPercent, 0, TestPercent, 0);
332 gST->ConOut->SetCursorPosition (gST->ConOut, 0, 0);
333 TmpStr = GetStringById (STRING_TOKEN (STR_MEMORY_TEST_PERCENT));
334 if (TmpStr != NULL) {
335 BdsLibOutputStrings (gST->ConOut, StrPercent, TmpStr, NULL);
336 gBS->FreePool (TmpStr);
337 }
338
339 TmpStr = GetStringById (STRING_TOKEN (STR_PERFORM_MEM_TEST));
340 if (TmpStr != NULL) {
341 PlatformBdsShowProgress (
342 Foreground,
343 Background,
344 TmpStr,
345 Color,
346 TestPercent,
347 (UINTN) PreviousValue
348 );
349 gBS->FreePool (TmpStr);
350 }
351 }
352
353 PreviousValue = TestPercent;
354
355 KeyStatus = gST->ConIn->ReadKeyStroke (gST->ConIn, &Key);
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 gBS->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, (UINTN) 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 gBS->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 gBS->FreePool (Pos);
409
410 DataSize = sizeof (Value);
411 Status = gRT->GetVariable (
412 L"BootState",
413 &gEfiBootStateGuid,
414 NULL,
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 }