]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/DynamicCommand/DpDynamicCommand/Dp.c
ShellPkg/DP: Add more check for input parameters
[mirror_edk2.git] / ShellPkg / DynamicCommand / DpDynamicCommand / Dp.c
1 /** @file
2 Shell command for Displaying Performance Metrics.
3
4 The Dp command reads performance data and presents it in several
5 different formats depending upon the needs of the user. Both
6 Trace and Measured Profiling information is processed and presented.
7
8 Dp uses the "PerformanceLib" to read the measurement records.
9 The "TimerLib" provides information about the timer, such as frequency,
10 beginning, and ending counter values.
11 Measurement records contain identifying information (Handle, Token, Module)
12 and start and end time values.
13 Dp uses this information to group records in different ways. It also uses
14 timer information to calculate elapsed time for each measurement.
15
16 Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.
17 (C) Copyright 2015-2016 Hewlett Packard Enterprise Development LP<BR>
18 This program and the accompanying materials
19 are licensed and made available under the terms and conditions of the BSD License
20 which accompanies this distribution. The full text of the license may be found at
21 http://opensource.org/licenses/bsd-license.php
22
23 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
24 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
25 **/
26
27 #include "Dp.h"
28 #include "Literals.h"
29 #include "DpInternal.h"
30
31 #pragma pack(1)
32
33 typedef struct {
34 EFI_ACPI_DESCRIPTION_HEADER Header;
35 UINT32 Entry;
36 } RSDT_TABLE;
37
38 typedef struct {
39 EFI_ACPI_DESCRIPTION_HEADER Header;
40 UINT64 Entry;
41 } XSDT_TABLE;
42
43 #pragma pack()
44
45 EFI_HANDLE mDpHiiHandle;
46
47 typedef struct {
48 EFI_HANDLE Handle;
49 EFI_GUID ModuleGuid;
50 } HANDLE_GUID_MAP;
51
52 HANDLE_GUID_MAP *mCacheHandleGuidTable;
53 UINTN mCachePairCount = 0;
54
55 //
56 /// Module-Global Variables
57 ///@{
58 CHAR16 mGaugeString[DP_GAUGE_STRING_LENGTH + 1];
59 CHAR16 mUnicodeToken[DXE_PERFORMANCE_STRING_SIZE];
60 UINT64 mInterestThreshold;
61 BOOLEAN mShowId = FALSE;
62 UINT8 *mBootPerformanceTable;
63 UINTN mBootPerformanceTableSize;
64 BOOLEAN mPeiPhase = FALSE;
65 BOOLEAN mDxePhase = FALSE;
66
67 PERF_SUMMARY_DATA SummaryData = { 0 }; ///< Create the SummaryData structure and init. to ZERO.
68 MEASUREMENT_RECORD *mMeasurementList = NULL;
69 UINTN mMeasurementNum = 0;
70
71 /// Items for which to gather cumulative statistics.
72 PERF_CUM_DATA CumData[] = {
73 PERF_INIT_CUM_DATA (LOAD_IMAGE_TOK),
74 PERF_INIT_CUM_DATA (START_IMAGE_TOK),
75 PERF_INIT_CUM_DATA (DRIVERBINDING_START_TOK),
76 PERF_INIT_CUM_DATA (DRIVERBINDING_SUPPORT_TOK)
77 };
78
79 /// Number of items for which we are gathering cumulative statistics.
80 UINT32 const NumCum = sizeof(CumData) / sizeof(PERF_CUM_DATA);
81
82 STATIC CONST SHELL_PARAM_ITEM ParamList[] = {
83 {L"-v", TypeFlag}, // -v Verbose Mode
84 {L"-A", TypeFlag}, // -A All, Cooked
85 {L"-R", TypeFlag}, // -R RAW All
86 {L"-s", TypeFlag}, // -s Summary
87 {L"-x", TypeFlag}, // -x eXclude Cumulative Items
88 {L"-i", TypeFlag}, // -i Display Identifier
89 {L"-c", TypeValue}, // -c Display cumulative data.
90 {L"-n", TypeValue}, // -n # Number of records to display for A and R
91 {L"-t", TypeValue}, // -t # Threshold of interest
92 {NULL, TypeMax}
93 };
94
95 ///@}
96
97 /**
98 Display the trailing Verbose information.
99 **/
100 VOID
101 DumpStatistics( void )
102 {
103 EFI_STRING StringPtr;
104 EFI_STRING StringPtrUnknown;
105 StringPtr = HiiGetString (mDpHiiHandle, STRING_TOKEN (STR_DP_SECTION_STATISTICS), NULL);
106 StringPtrUnknown = HiiGetString (mDpHiiHandle, STRING_TOKEN (STR_ALIT_UNKNOWN), NULL);
107 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_SECTION_HEADER), mDpHiiHandle,
108 (StringPtr == NULL) ? StringPtrUnknown : StringPtr);
109 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_STATS_NUMTRACE), mDpHiiHandle, SummaryData.NumTrace);
110 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_STATS_NUMINCOMPLETE), mDpHiiHandle, SummaryData.NumIncomplete);
111 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_STATS_NUMPHASES), mDpHiiHandle, SummaryData.NumSummary);
112 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_STATS_NUMHANDLES), mDpHiiHandle, SummaryData.NumHandles, SummaryData.NumTrace - SummaryData.NumHandles);
113 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_STATS_NUMPEIMS), mDpHiiHandle, SummaryData.NumPEIMs);
114 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_STATS_NUMGLOBALS), mDpHiiHandle, SummaryData.NumGlobal);
115 SHELL_FREE_NON_NULL (StringPtr);
116 SHELL_FREE_NON_NULL (StringPtrUnknown);
117 }
118
119 /**
120 This function scan ACPI table in RSDT.
121
122 @param Rsdt ACPI RSDT
123 @param Signature ACPI table signature
124
125 @return ACPI table
126 **/
127 VOID *
128 ScanTableInRSDT (
129 IN RSDT_TABLE *Rsdt,
130 IN UINT32 Signature
131 )
132 {
133 UINTN Index;
134 UINT32 EntryCount;
135 UINT32 *EntryPtr;
136 EFI_ACPI_DESCRIPTION_HEADER *Table;
137
138 EntryCount = (Rsdt->Header.Length - sizeof (EFI_ACPI_DESCRIPTION_HEADER)) / sizeof(UINT32);
139
140 EntryPtr = &Rsdt->Entry;
141 for (Index = 0; Index < EntryCount; Index ++, EntryPtr ++) {
142 Table = (EFI_ACPI_DESCRIPTION_HEADER*)((UINTN)(*EntryPtr));
143 if (Table->Signature == Signature) {
144 return Table;
145 }
146 }
147
148 return NULL;
149 }
150
151 /**
152 This function scan ACPI table in XSDT.
153
154 @param Xsdt ACPI XSDT
155 @param Signature ACPI table signature
156
157 @return ACPI table
158 **/
159 VOID *
160 ScanTableInXSDT (
161 IN XSDT_TABLE *Xsdt,
162 IN UINT32 Signature
163 )
164 {
165 UINTN Index;
166 UINT32 EntryCount;
167 UINT64 EntryPtr;
168 UINTN BasePtr;
169 EFI_ACPI_DESCRIPTION_HEADER *Table;
170
171 EntryCount = (Xsdt->Header.Length - sizeof (EFI_ACPI_DESCRIPTION_HEADER)) / sizeof(UINT64);
172
173 BasePtr = (UINTN)(&(Xsdt->Entry));
174 for (Index = 0; Index < EntryCount; Index ++) {
175 CopyMem (&EntryPtr, (VOID *)(BasePtr + Index * sizeof(UINT64)), sizeof(UINT64));
176 Table = (EFI_ACPI_DESCRIPTION_HEADER*)((UINTN)(EntryPtr));
177 if (Table->Signature == Signature) {
178 return Table;
179 }
180 }
181
182 return NULL;
183 }
184
185 /**
186 This function scan ACPI table in RSDP.
187
188 @param Rsdp ACPI RSDP
189 @param Signature ACPI table signature
190
191 @return ACPI table
192 **/
193 VOID *
194 FindAcpiPtr (
195 IN EFI_ACPI_5_0_ROOT_SYSTEM_DESCRIPTION_POINTER *Rsdp,
196 IN UINT32 Signature
197 )
198 {
199 EFI_ACPI_DESCRIPTION_HEADER *AcpiTable;
200 RSDT_TABLE *Rsdt;
201 XSDT_TABLE *Xsdt;
202
203 AcpiTable = NULL;
204
205 //
206 // Check ACPI2.0 table
207 //
208 Rsdt = (RSDT_TABLE *)(UINTN)Rsdp->RsdtAddress;
209 Xsdt = NULL;
210 if ((Rsdp->Revision >= 2) && (Rsdp->XsdtAddress < (UINT64)(UINTN)-1)) {
211 Xsdt = (XSDT_TABLE *)(UINTN)Rsdp->XsdtAddress;
212 }
213 //
214 // Check Xsdt
215 //
216 if (Xsdt != NULL) {
217 AcpiTable = ScanTableInXSDT (Xsdt, Signature);
218 }
219 //
220 // Check Rsdt
221 //
222 if ((AcpiTable == NULL) && (Rsdt != NULL)) {
223 AcpiTable = ScanTableInRSDT (Rsdt, Signature);
224 }
225
226 return AcpiTable;
227 }
228
229 /**
230 Get Boot performance table form Acpi table.
231
232 **/
233 EFI_STATUS
234 GetBootPerformanceTable (
235 )
236 {
237 EFI_STATUS Status;
238 VOID *AcpiTable;
239 FIRMWARE_PERFORMANCE_TABLE *FirmwarePerformanceTable;
240
241 AcpiTable = NULL;
242
243 Status = EfiGetSystemConfigurationTable (
244 &gEfiAcpi20TableGuid,
245 &AcpiTable
246 );
247 if (EFI_ERROR (Status)) {
248 Status = EfiGetSystemConfigurationTable (
249 &gEfiAcpi10TableGuid,
250 &AcpiTable
251 );
252 }
253 if (EFI_ERROR(Status) || AcpiTable == NULL) {
254 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_GET_ACPI_TABLE_FAIL), mDpHiiHandle);
255 return Status;
256 }
257
258 FirmwarePerformanceTable = FindAcpiPtr (
259 (EFI_ACPI_5_0_ROOT_SYSTEM_DESCRIPTION_POINTER *)AcpiTable,
260 EFI_ACPI_5_0_FIRMWARE_PERFORMANCE_DATA_TABLE_SIGNATURE
261 );
262 if (FirmwarePerformanceTable == NULL) {
263 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_GET_ACPI_FPDT_FAIL), mDpHiiHandle);
264 return EFI_NOT_FOUND;
265 }
266
267 mBootPerformanceTable = (UINT8*) (UINTN)FirmwarePerformanceTable->BootPointerRecord.BootPerformanceTablePointer;
268 mBootPerformanceTableSize = ((BOOT_PERFORMANCE_TABLE *) mBootPerformanceTable)->Header.Length;
269
270 return EFI_SUCCESS;
271 }
272
273 /**
274 Get Handle form Module Guid.
275
276 @param ModuleGuid Module Guid.
277 @param Handle The handle to be returned.
278
279 **/
280 VOID
281 GetHandleFormModuleGuid (
282 IN EFI_GUID *ModuleGuid,
283 IN OUT EFI_HANDLE *Handle
284 )
285 {
286 UINTN Index;
287
288 if (IsZeroGuid (ModuleGuid)) {
289 *Handle = NULL;
290 }
291 //
292 // Try to get the Handle form the caached array.
293 //
294 for (Index = 0; Index < mCachePairCount; Index++) {
295 if (CompareGuid (ModuleGuid, &mCacheHandleGuidTable[Index].ModuleGuid)) {
296 *Handle = mCacheHandleGuidTable[Index].Handle;
297 break;
298 }
299 }
300 if (Index >= mCachePairCount) {
301 *Handle = NULL;
302 }
303 }
304
305 /**
306 Cache the GUID and handle mapping pairs. In order to save time for searching.
307
308 **/
309 EFI_STATUS
310 BuildCachedGuidHandleTable (
311 VOID
312 )
313 {
314 EFI_STATUS Status;
315 EFI_HANDLE *HandleBuffer;
316 UINTN HandleCount;
317 UINTN Index;
318 EFI_LOADED_IMAGE_PROTOCOL *LoadedImage;
319 EFI_DRIVER_BINDING_PROTOCOL *DriverBinding;
320 EFI_GUID *TempGuid;
321 MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *FvFilePath;
322
323 Status = gBS->LocateHandleBuffer (AllHandles, NULL, NULL, &HandleCount, &HandleBuffer);
324 if (EFI_ERROR (Status)) {
325 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_HANDLES_ERROR), mDpHiiHandle, Status);
326 return Status;
327 }
328
329 mCacheHandleGuidTable = AllocateZeroPool (HandleCount * sizeof (HANDLE_GUID_MAP));
330 if (mCacheHandleGuidTable == NULL) {
331 return EFI_OUT_OF_RESOURCES;
332 }
333
334 for (Index = 0; Index < HandleCount; Index++) {
335 //
336 // Try Handle as ImageHandle.
337 //
338 Status = gBS->HandleProtocol (
339 HandleBuffer[Index],
340 &gEfiLoadedImageProtocolGuid,
341 (VOID**) &LoadedImage
342 );
343 if (EFI_ERROR (Status)) {
344 //
345 // Try Handle as Controller Handle
346 //
347 Status = gBS->OpenProtocol (
348 HandleBuffer[Index],
349 &gEfiDriverBindingProtocolGuid,
350 (VOID **) &DriverBinding,
351 NULL,
352 NULL,
353 EFI_OPEN_PROTOCOL_GET_PROTOCOL
354 );
355 if (!EFI_ERROR (Status)) {
356 //
357 // Get Image protocol from ImageHandle
358 //
359 Status = gBS->HandleProtocol (
360 DriverBinding->ImageHandle,
361 &gEfiLoadedImageProtocolGuid,
362 (VOID**) &LoadedImage
363 );
364 }
365 }
366
367 if (!EFI_ERROR (Status) && LoadedImage != NULL) {
368 //
369 // Get Module Guid from DevicePath.
370 //
371 if (LoadedImage->FilePath != NULL &&
372 LoadedImage->FilePath->Type == MEDIA_DEVICE_PATH &&
373 LoadedImage->FilePath->SubType == MEDIA_PIWG_FW_FILE_DP
374 ) {
375 FvFilePath = (MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) LoadedImage->FilePath;
376 TempGuid = &FvFilePath->FvFileName;
377
378 mCacheHandleGuidTable[mCachePairCount].Handle = HandleBuffer[Index];
379 CopyGuid (&mCacheHandleGuidTable[mCachePairCount].ModuleGuid, TempGuid);
380 mCachePairCount ++;
381 }
382 }
383 }
384 if (HandleBuffer != NULL) {
385 FreePool (HandleBuffer);
386 HandleBuffer = NULL;
387 }
388 return EFI_SUCCESS;
389 }
390
391 /**
392 Get Measurement form Fpdt records.
393
394 @param RecordHeader Pointer to the start record.
395 @param IsStart Is start record or End record.
396 @param Measurement Pointer to the measurement which need to be filled.
397
398 **/
399 VOID
400 GetMeasurementInfo (
401 IN EFI_ACPI_5_0_FPDT_PERFORMANCE_RECORD_HEADER *RecordHeader,
402 IN BOOLEAN IsStart,
403 IN OUT MEASUREMENT_RECORD *Measurement
404 )
405 {
406 VOID *ModuleGuid;
407 EFI_HANDLE StartHandle;
408
409 switch (RecordHeader->Type) {
410 case FPDT_GUID_EVENT_TYPE:
411 ModuleGuid = &(((FPDT_GUID_EVENT_RECORD *)RecordHeader)->Guid);
412 Measurement->Identifier = ((UINT32)((FPDT_GUID_EVENT_RECORD *)RecordHeader)->ProgressID);
413 if (IsStart) {
414 Measurement->StartTimeStamp = ((FPDT_GUID_EVENT_RECORD *)RecordHeader)->Timestamp;
415 } else {
416 Measurement->EndTimeStamp = ((FPDT_GUID_EVENT_RECORD *)RecordHeader)->Timestamp;
417 }
418 switch (Measurement->Identifier) {
419 case MODULE_START_ID:
420 case MODULE_END_ID:
421 if (mPeiPhase) {
422 Measurement->Token = ALit_PEIM;
423 Measurement->Module = ALit_PEIM;
424 } else if (mDxePhase) {
425 Measurement->Token = ALit_START_IMAGE;
426 Measurement->Module = ALit_START_IMAGE;
427 }
428 break;
429 default:
430 ASSERT(FALSE);
431 }
432
433 if (Measurement->Token != NULL && AsciiStrCmp (Measurement->Token, ALit_PEIM) == 0) {
434 Measurement->Handle = &(((FPDT_DYNAMIC_STRING_EVENT_RECORD *)RecordHeader)->Guid);
435 } else {
436 GetHandleFormModuleGuid(ModuleGuid, &StartHandle);
437 Measurement->Handle = StartHandle;
438 //
439 // When no perf entry to record the PEI and DXE phase,
440 // For start image, we need detect the PEIM and non PEIM here.
441 //
442 if (Measurement->Token == NULL) {
443 if (StartHandle == NULL && !IsZeroGuid (ModuleGuid)) {
444 Measurement->Token = ALit_PEIM;
445 Measurement->Module = ALit_PEIM;
446 Measurement->Handle = ModuleGuid;
447 } else {
448 Measurement->Token = ALit_START_IMAGE;
449 Measurement->Module = ALit_START_IMAGE;
450 }
451 }
452 }
453 break;
454
455 case FPDT_DYNAMIC_STRING_EVENT_TYPE:
456 ModuleGuid = &(((FPDT_DYNAMIC_STRING_EVENT_RECORD *)RecordHeader)->Guid);
457 Measurement->Identifier = ((UINT32)((FPDT_DYNAMIC_STRING_EVENT_RECORD *)RecordHeader)->ProgressID);
458 if (IsStart) {
459 Measurement->StartTimeStamp = ((FPDT_DYNAMIC_STRING_EVENT_RECORD *)RecordHeader)->Timestamp;
460 } else {
461 Measurement->EndTimeStamp = ((FPDT_DYNAMIC_STRING_EVENT_RECORD *)RecordHeader)->Timestamp;
462 }
463 switch (Measurement->Identifier) {
464 case MODULE_START_ID:
465 case MODULE_END_ID:
466 if (mPeiPhase) {
467 Measurement->Token = ALit_PEIM;
468 } else if (mDxePhase) {
469 Measurement->Token = ALit_START_IMAGE;
470 }
471 break;
472
473 case MODULE_LOADIMAGE_START_ID:
474 case MODULE_LOADIMAGE_END_ID:
475 Measurement->Token = ALit_LOAD_IMAGE;
476 break;
477
478 case MODULE_DB_START_ID:
479 case MODULE_DB_END_ID:
480 Measurement->Token = ALit_DB_START;
481 break;
482
483 case MODULE_DB_SUPPORT_START_ID:
484 case MODULE_DB_SUPPORT_END_ID:
485 Measurement->Token = ALit_DB_SUPPORT;
486 break;
487
488 case MODULE_DB_STOP_START_ID:
489 case MODULE_DB_STOP_END_ID:
490 Measurement->Token = ALit_DB_STOP;
491 break;
492
493 default:
494 Measurement->Token = ((FPDT_DYNAMIC_STRING_EVENT_RECORD *)RecordHeader)->String;
495 break;
496 }
497
498 Measurement->Module = ((FPDT_DYNAMIC_STRING_EVENT_RECORD *)RecordHeader)->String;
499
500 if (Measurement->Token != NULL && AsciiStrCmp (Measurement->Token, ALit_PEIM) == 0) {
501 Measurement->Handle = &(((FPDT_DYNAMIC_STRING_EVENT_RECORD *)RecordHeader)->Guid);
502 } else {
503 GetHandleFormModuleGuid(ModuleGuid, &StartHandle);
504 Measurement->Handle = StartHandle;
505 //
506 // When no perf entry to record the PEI and DXE phase,
507 // For start image, we need detect the PEIM and non PEIM here.
508 //
509 if (Measurement->Token == NULL && (Measurement->Identifier == MODULE_START_ID || Measurement->Identifier == MODULE_END_ID)) {
510 if (StartHandle == NULL && !IsZeroGuid (ModuleGuid)) {
511 Measurement->Token = ALit_PEIM;
512 Measurement->Handle = ModuleGuid;
513 } else {
514 Measurement->Token = ALit_START_IMAGE;
515 }
516 }
517 }
518 break;
519
520 case FPDT_GUID_QWORD_EVENT_TYPE:
521 ModuleGuid = &(((FPDT_GUID_QWORD_EVENT_RECORD *)RecordHeader)->Guid);
522 Measurement->Identifier = ((UINT32)((FPDT_GUID_QWORD_EVENT_RECORD *)RecordHeader)->ProgressID);
523 if (IsStart) {
524 Measurement->StartTimeStamp = ((FPDT_GUID_QWORD_EVENT_RECORD *)RecordHeader)->Timestamp;
525 } else {
526 Measurement->EndTimeStamp = ((FPDT_GUID_QWORD_EVENT_RECORD *)RecordHeader)->Timestamp;
527 }
528 switch (Measurement->Identifier) {
529 case MODULE_DB_START_ID:
530 Measurement->Token = ALit_DB_START;
531 Measurement->Module = ALit_DB_START;
532 break;
533
534 case MODULE_DB_SUPPORT_START_ID:
535 case MODULE_DB_SUPPORT_END_ID:
536 Measurement->Token = ALit_DB_SUPPORT;
537 Measurement->Module = ALit_DB_SUPPORT;
538 break;
539
540 case MODULE_DB_STOP_START_ID:
541 case MODULE_DB_STOP_END_ID:
542 Measurement->Token = ALit_DB_STOP;
543 Measurement->Module = ALit_DB_STOP;
544 break;
545
546 case MODULE_LOADIMAGE_START_ID:
547 case MODULE_LOADIMAGE_END_ID:
548 Measurement->Token = ALit_LOAD_IMAGE;
549 Measurement->Module = ALit_LOAD_IMAGE;
550 break;
551
552 default:
553 ASSERT(FALSE);
554 }
555 GetHandleFormModuleGuid(ModuleGuid, &StartHandle);
556 Measurement->Handle = StartHandle;
557 break;
558
559 case FPDT_GUID_QWORD_STRING_EVENT_TYPE:
560 ModuleGuid = &(((FPDT_GUID_QWORD_STRING_EVENT_RECORD *)RecordHeader)->Guid);
561 Measurement->Identifier = ((UINT32)((FPDT_GUID_QWORD_STRING_EVENT_RECORD *)RecordHeader)->ProgressID);
562 if (IsStart) {
563 Measurement->StartTimeStamp = ((FPDT_GUID_QWORD_STRING_EVENT_RECORD*)RecordHeader)->Timestamp;
564 } else {
565 Measurement->EndTimeStamp = ((FPDT_GUID_QWORD_STRING_EVENT_RECORD *)RecordHeader)->Timestamp;
566 }
567 //
568 // Currently only "DB:Start:" end record with FPDT_GUID_QWORD_STRING_EVENT_TYPE.
569 //
570 switch (Measurement->Identifier) {
571 case MODULE_DB_END_ID:
572 Measurement->Token = ALit_DB_START;
573 Measurement->Module = ALit_DB_START;
574 break;
575 default:
576 ASSERT(FALSE);
577 }
578 GetHandleFormModuleGuid(ModuleGuid, &StartHandle);
579 Measurement->Handle = StartHandle;
580 break;
581
582 case FPDT_DUAL_GUID_STRING_EVENT_TYPE:
583 ModuleGuid = &(((FPDT_DUAL_GUID_STRING_EVENT_RECORD *)RecordHeader)->Guid1);
584 Measurement->Identifier = ((UINT32)((FPDT_DUAL_GUID_STRING_EVENT_RECORD *)RecordHeader)->ProgressID);
585 if (IsStart) {
586 Measurement->StartTimeStamp = ((FPDT_DUAL_GUID_STRING_EVENT_RECORD *)RecordHeader)->Timestamp;
587 } else {
588 Measurement->EndTimeStamp = ((FPDT_DUAL_GUID_STRING_EVENT_RECORD *)RecordHeader)->Timestamp;
589 }
590 Measurement->Token = ((FPDT_DUAL_GUID_STRING_EVENT_RECORD *)RecordHeader)->String;
591 Measurement->Module = ((FPDT_DUAL_GUID_STRING_EVENT_RECORD *)RecordHeader)->String;
592 GetHandleFormModuleGuid(ModuleGuid, &StartHandle);
593 Measurement->Handle = StartHandle;
594 break;
595
596 default:
597 break;
598 }
599 }
600
601 /**
602 Search the start measurement in the mMeasurementList for the end measurement.
603
604 @param EndMeasureMent Measurement for end record.
605
606 **/
607 VOID
608 SearchMeasurement (
609 IN MEASUREMENT_RECORD *EndMeasureMent
610 )
611 {
612 INTN Index;
613
614 for (Index = mMeasurementNum - 1; Index >= 0; Index--) {
615 if (AsciiStrCmp (EndMeasureMent->Token, ALit_PEIM) == 0) {
616 if (mMeasurementList[Index].EndTimeStamp == 0 && EndMeasureMent->Handle!= NULL && mMeasurementList[Index].Handle != NULL&&
617 CompareGuid(mMeasurementList[Index].Handle, EndMeasureMent->Handle) &&
618 (AsciiStrCmp (mMeasurementList[Index].Token, EndMeasureMent->Token) == 0) &&
619 (AsciiStrCmp (mMeasurementList[Index].Module, EndMeasureMent->Module) == 0)) {
620 mMeasurementList[Index].EndTimeStamp = EndMeasureMent->EndTimeStamp;
621 break;
622 }
623 } else if (EndMeasureMent->Identifier == PERF_CROSSMODULE_END_ID) {
624 if (mMeasurementList[Index].EndTimeStamp == 0 &&
625 (AsciiStrCmp (mMeasurementList[Index].Token, EndMeasureMent->Token) == 0) &&
626 (AsciiStrCmp (mMeasurementList[Index].Module, EndMeasureMent->Module) == 0) &&
627 mMeasurementList[Index].Identifier == PERF_CROSSMODULE_START_ID) {
628 mMeasurementList[Index].EndTimeStamp = EndMeasureMent->EndTimeStamp;
629 break;
630 }
631 } else {
632 if (mMeasurementList[Index].EndTimeStamp == 0 && mMeasurementList[Index].Handle == EndMeasureMent->Handle &&
633 (AsciiStrCmp (mMeasurementList[Index].Token, EndMeasureMent->Token) == 0) &&
634 (AsciiStrCmp (mMeasurementList[Index].Module, EndMeasureMent->Module) == 0)) {
635 mMeasurementList[Index].EndTimeStamp = EndMeasureMent->EndTimeStamp;
636 break;
637 }
638 }
639 }
640 }
641
642 /**
643 Generate the measure record array.
644
645 **/
646 EFI_STATUS
647 BuildMeasurementList (
648 )
649 {
650 EFI_ACPI_5_0_FPDT_PERFORMANCE_RECORD_HEADER *RecordHeader;
651 UINT8 *PerformanceTablePtr;
652 UINT16 StartProgressId;
653 UINTN TableLength;
654 UINT8 *StartRecordEvent;
655 MEASUREMENT_RECORD MeasureMent;
656
657 mMeasurementList = AllocateZeroPool (mBootPerformanceTableSize);
658 if (mMeasurementList == NULL) {
659 return EFI_OUT_OF_RESOURCES;
660 }
661
662 TableLength = sizeof (BOOT_PERFORMANCE_TABLE);
663 PerformanceTablePtr = (mBootPerformanceTable + TableLength);
664
665 while (TableLength < mBootPerformanceTableSize) {
666 RecordHeader = (EFI_ACPI_5_0_FPDT_PERFORMANCE_RECORD_HEADER*) PerformanceTablePtr;
667 StartRecordEvent = (UINT8 *)RecordHeader;
668 StartProgressId = ((FPDT_GUID_EVENT_RECORD *)StartRecordEvent)->ProgressID;
669
670 //
671 // If the record with ProgressId 0, the record doesn't appear in pairs. The timestamp in the record is the EndTimeStamp, its StartTimeStamp is 0.
672 // If the record is the start record, fill the info to the measurement in the mMeasurementList.
673 // If the record is the end record, find the related start measurement in the mMeasurementList and fill the EndTimeStamp.
674 //
675 if (StartProgressId == 0) {
676 GetMeasurementInfo (RecordHeader, FALSE, &(mMeasurementList[mMeasurementNum]));
677 mMeasurementNum ++;
678 } else if (((StartProgressId >= PERF_EVENTSIGNAL_START_ID && ((StartProgressId & 0x000F) == 0)) ||
679 (StartProgressId < PERF_EVENTSIGNAL_START_ID && ((StartProgressId & 0x0001) != 0)))) {
680 //
681 // Since PEIM and StartImage has same Type and ID when PCD PcdEdkiiFpdtStringRecordEnableOnly = FALSE
682 // So we need to identify these two kinds of record through different phase.
683 //
684 if(StartProgressId == PERF_CROSSMODULE_START_ID ){
685 if (AsciiStrCmp (((FPDT_DYNAMIC_STRING_EVENT_RECORD *)StartRecordEvent)->String, ALit_PEI) == 0) {
686 mPeiPhase = TRUE;
687 } else if (AsciiStrCmp (((FPDT_DYNAMIC_STRING_EVENT_RECORD *)StartRecordEvent)->String, ALit_DXE) == 0) {
688 mDxePhase = TRUE;
689 mPeiPhase = FALSE;
690 }
691 }
692 // Get measurement info form the start record to the mMeasurementList.
693 GetMeasurementInfo (RecordHeader, TRUE, &(mMeasurementList[mMeasurementNum]));
694 mMeasurementNum ++;
695 } else {
696 ZeroMem(&MeasureMent, sizeof(MEASUREMENT_RECORD));
697 GetMeasurementInfo (RecordHeader, FALSE, &MeasureMent);
698 SearchMeasurement (&MeasureMent);
699 }
700 TableLength += RecordHeader->Length;
701 PerformanceTablePtr += RecordHeader->Length;
702 }
703 return EFI_SUCCESS;
704 }
705
706 /**
707 Initialize the cumulative data.
708
709 **/
710 VOID
711 InitCumulativeData (
712 VOID
713 )
714 {
715 UINTN Index;
716
717 for (Index = 0; Index < NumCum; ++Index) {
718 CumData[Index].Count = 0;
719 CumData[Index].MinDur = PERF_MAXDUR;
720 CumData[Index].MaxDur = 0;
721 CumData[Index].Duration = 0;
722 }
723 }
724
725 /**
726 Initialize the Summary data.
727
728 **/
729 VOID
730 InitSummaryData (
731 VOID
732 )
733 {
734 SummaryData.NumTrace = 0;
735 SummaryData.NumIncomplete = 0;
736 SummaryData.NumSummary = 0;
737 SummaryData.NumHandles = 0;
738 SummaryData.NumPEIMs = 0;
739 SummaryData.NumGlobal = 0;
740 }
741
742 /**
743 Dump performance data.
744
745 @param[in] ImageHandle The image handle.
746 @param[in] SystemTable The system table.
747
748 @retval SHELL_SUCCESS Command completed successfully.
749 @retval SHELL_INVALID_PARAMETER Command usage error.
750 @retval SHELL_ABORTED The user aborts the operation.
751 @retval value Unknown error.
752 **/
753 SHELL_STATUS
754 RunDp (
755 IN EFI_HANDLE ImageHandle,
756 IN EFI_SYSTEM_TABLE *SystemTable
757 )
758 {
759 LIST_ENTRY *ParamPackage;
760 CONST CHAR16 *CmdLineArg;
761 EFI_STATUS Status;
762
763 PERFORMANCE_PROPERTY *PerformanceProperty;
764 UINTN Number2Display;
765
766 EFI_STRING StringPtr;
767 BOOLEAN SummaryMode;
768 BOOLEAN VerboseMode;
769 BOOLEAN AllMode;
770 BOOLEAN RawMode;
771 BOOLEAN ExcludeMode;
772 BOOLEAN CumulativeMode;
773 CONST CHAR16 *CustomCumulativeToken;
774 PERF_CUM_DATA *CustomCumulativeData;
775 UINTN NameSize;
776 SHELL_STATUS ShellStatus;
777 TIMER_INFO TimerInfo;
778 UINT64 Intermediate;
779
780 StringPtr = NULL;
781 SummaryMode = FALSE;
782 VerboseMode = FALSE;
783 AllMode = FALSE;
784 RawMode = FALSE;
785 ExcludeMode = FALSE;
786 CumulativeMode = FALSE;
787 CustomCumulativeData = NULL;
788 ShellStatus = SHELL_SUCCESS;
789
790 //
791 // initialize the shell lib (we must be in non-auto-init...)
792 //
793 Status = ShellInitialize();
794 ASSERT_EFI_ERROR(Status);
795
796 //
797 // Process Command Line arguments
798 //
799 Status = ShellCommandLineParse (ParamList, &ParamPackage, NULL, TRUE);
800 if (EFI_ERROR(Status)) {
801 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_INVALID_ARG), mDpHiiHandle);
802 return SHELL_INVALID_PARAMETER;
803 } else if (ShellCommandLineGetCount(ParamPackage) > 1){
804 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_TOO_MANY), mDpHiiHandle);
805 return SHELL_INVALID_PARAMETER;
806 }
807
808 //
809 // Boolean options
810 //
811 VerboseMode = ShellCommandLineGetFlag (ParamPackage, L"-v");
812 SummaryMode = (BOOLEAN) (ShellCommandLineGetFlag (ParamPackage, L"-S") || ShellCommandLineGetFlag (ParamPackage, L"-s"));
813 AllMode = ShellCommandLineGetFlag (ParamPackage, L"-A");
814 RawMode = ShellCommandLineGetFlag (ParamPackage, L"-R");
815 ExcludeMode = ShellCommandLineGetFlag (ParamPackage, L"-x");
816 mShowId = ShellCommandLineGetFlag (ParamPackage, L"-i");
817 CumulativeMode = ShellCommandLineGetFlag (ParamPackage, L"-c");
818
819 if (AllMode && RawMode) {
820 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_CONFLICT_ARG), mDpHiiHandle, L"-A", L"-R");
821 return SHELL_INVALID_PARAMETER;
822 }
823
824 // Options with Values
825 if (ShellCommandLineGetFlag (ParamPackage, L"-n")) {
826 CmdLineArg = ShellCommandLineGetValue (ParamPackage, L"-n");
827 if (CmdLineArg == NULL) {
828 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_TOO_FEW), mDpHiiHandle);
829 return SHELL_INVALID_PARAMETER;
830 } else {
831 if (!(RawMode || AllMode)) {
832 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_NO_RAW_ALL), mDpHiiHandle);
833 return SHELL_INVALID_PARAMETER;
834 }
835 Status = ShellConvertStringToUint64(CmdLineArg, &Intermediate, FALSE, TRUE);
836 if (EFI_ERROR (Status)) {
837 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_INVALID_NUM_ARG), mDpHiiHandle, L"-n");
838 return SHELL_INVALID_PARAMETER;
839 } else {
840 Number2Display = (UINTN)Intermediate;
841 if (Number2Display == 0 || Number2Display > MAXIMUM_DISPLAYCOUNT) {
842 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_INVALID_RANGE), mDpHiiHandle, L"-n", 0, MAXIMUM_DISPLAYCOUNT);
843 return SHELL_INVALID_PARAMETER;
844 }
845 }
846 }
847 } else {
848 Number2Display = DEFAULT_DISPLAYCOUNT;
849 }
850
851 if (ShellCommandLineGetFlag (ParamPackage, L"-t")) {
852 CmdLineArg = ShellCommandLineGetValue (ParamPackage, L"-t");
853 if (CmdLineArg == NULL) {
854 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_TOO_FEW), mDpHiiHandle);
855 return SHELL_INVALID_PARAMETER;
856 } else {
857 Status = ShellConvertStringToUint64(CmdLineArg, &Intermediate, FALSE, TRUE);
858 if (EFI_ERROR (Status)) {
859 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_INVALID_NUM_ARG), mDpHiiHandle, L"-t");
860 return SHELL_INVALID_PARAMETER;
861 } else {
862 mInterestThreshold = Intermediate;
863 }
864 }
865 } else {
866 mInterestThreshold = DEFAULT_THRESHOLD; // 1ms := 1,000 us
867 }
868
869 if (ShellCommandLineGetFlag (ParamPackage, L"-c")) {
870 CustomCumulativeToken = ShellCommandLineGetValue (ParamPackage, L"-c");
871 if (CustomCumulativeToken == NULL) {
872 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_TOO_FEW), mDpHiiHandle);
873 return SHELL_INVALID_PARAMETER;
874 } else {
875 CustomCumulativeData = AllocateZeroPool (sizeof (PERF_CUM_DATA));
876 if (CustomCumulativeData == NULL) {
877 ShellStatus = SHELL_OUT_OF_RESOURCES;
878 goto Done;
879 }
880 CustomCumulativeData->MinDur = PERF_MAXDUR;
881 CustomCumulativeData->MaxDur = 0;
882 CustomCumulativeData->Count = 0;
883 CustomCumulativeData->Duration = 0;
884 NameSize = StrLen (CustomCumulativeToken) + 1;
885 CustomCumulativeData->Name = AllocateZeroPool (NameSize);
886 if (CustomCumulativeData->Name == NULL) {
887 ShellStatus = SHELL_OUT_OF_RESOURCES;
888 goto Done;
889 }
890 UnicodeStrToAsciiStrS (CustomCumulativeToken, CustomCumulativeData->Name, NameSize);
891 }
892 }
893
894 //
895 // DP dump performance data by parsing FPDT table in ACPI table.
896 // Folloing 3 steps are to get the measurement form the FPDT table.
897 //
898
899 //
900 //1. Get FPDT from ACPI table.
901 //
902 Status = GetBootPerformanceTable ();
903 if (EFI_ERROR (Status)) {
904 ShellStatus = Status;
905 goto Done;
906 }
907
908 //
909 //2. Cache the ModuleGuid and hanlde mapping table.
910 //
911 Status = BuildCachedGuidHandleTable();
912 if (EFI_ERROR (Status)) {
913 ShellStatus = Status;
914 goto Done;
915 }
916
917 //
918 //3. Build the measurement array form the FPDT records.
919 //
920 Status = BuildMeasurementList ();
921 if (EFI_ERROR (Status)) {
922 ShellStatus = SHELL_OUT_OF_RESOURCES;
923 goto Done;
924 }
925
926 //
927 // Initialize the pre-defined cumulative data.
928 //
929 InitCumulativeData ();
930
931 //
932 // Initialize the Summary data.
933 //
934 InitSummaryData ();
935
936 //
937 // Timer specific processing
938 //
939 // Get the Performance counter characteristics:
940 // Freq = Frequency in Hz
941 // StartCount = Value loaded into the counter when it starts counting
942 // EndCount = Value counter counts to before it needs to be reset
943 //
944 Status = EfiGetSystemConfigurationTable (&gPerformanceProtocolGuid, (VOID **) &PerformanceProperty);
945 if (EFI_ERROR (Status) || (PerformanceProperty == NULL)) {
946 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_PERF_PROPERTY_NOT_FOUND), mDpHiiHandle);
947 goto Done;
948 }
949
950 TimerInfo.Frequency = (UINT32)DivU64x32 (PerformanceProperty->Frequency, 1000);
951 TimerInfo.StartCount = 0;
952 TimerInfo.EndCount = 0xFFFF;
953 TimerInfo.CountUp = TRUE;
954
955 //
956 // Print header
957 //
958 // print DP's build version
959 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_BUILD_REVISION), mDpHiiHandle, DP_MAJOR_VERSION, DP_MINOR_VERSION);
960
961 // print performance timer characteristics
962 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_KHZ), mDpHiiHandle, TimerInfo.Frequency);
963
964 if (VerboseMode && !RawMode) {
965 StringPtr = HiiGetString (mDpHiiHandle,
966 (EFI_STRING_ID) (TimerInfo.CountUp ? STRING_TOKEN (STR_DP_UP) : STRING_TOKEN (STR_DP_DOWN)), NULL);
967 ASSERT (StringPtr != NULL);
968 // Print Timer count range and direction
969 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_TIMER_PROPERTIES), mDpHiiHandle,
970 StringPtr,
971 TimerInfo.StartCount,
972 TimerInfo.EndCount
973 );
974 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_VERBOSE_THRESHOLD), mDpHiiHandle, mInterestThreshold);
975 }
976
977 /****************************************************************************
978 **** Print Sections based on command line options
979 ****
980 **** Option modes have the following priority:
981 **** v Verbose -- Valid in combination with any other options
982 **** t Threshold -- Modifies All, Raw, and Cooked output
983 **** Default is 0 for All and Raw mode
984 **** Default is DEFAULT_THRESHOLD for "Cooked" mode
985 **** n Number2Display Used by All and Raw mode. Otherwise ignored.
986 **** A All -- R and S options are ignored
987 **** R Raw -- S option is ignored
988 **** s Summary -- Modifies "Cooked" output only
989 **** Cooked (Default)
990 ****************************************************************************/
991 GatherStatistics (CustomCumulativeData);
992 if (CumulativeMode) {
993 ProcessCumulative (CustomCumulativeData);
994 } else if (AllMode) {
995 Status = DumpAllTrace( Number2Display, ExcludeMode);
996 if (Status == EFI_ABORTED) {
997 ShellStatus = SHELL_ABORTED;
998 goto Done;
999 }
1000 } else if (RawMode) {
1001 Status = DumpRawTrace( Number2Display, ExcludeMode);
1002 if (Status == EFI_ABORTED) {
1003 ShellStatus = SHELL_ABORTED;
1004 goto Done;
1005 }
1006 } else {
1007 //------------- Begin Cooked Mode Processing
1008 ProcessPhases ();
1009 if ( ! SummaryMode) {
1010 Status = ProcessHandles ( ExcludeMode);
1011 if (Status == EFI_ABORTED) {
1012 ShellStatus = SHELL_ABORTED;
1013 goto Done;
1014 }
1015
1016 Status = ProcessPeims ();
1017 if (Status == EFI_ABORTED) {
1018 ShellStatus = SHELL_ABORTED;
1019 goto Done;
1020 }
1021
1022 Status = ProcessGlobal ();
1023 if (Status == EFI_ABORTED) {
1024 ShellStatus = SHELL_ABORTED;
1025 goto Done;
1026 }
1027
1028 ProcessCumulative (NULL);
1029 }
1030 } //------------- End of Cooked Mode Processing
1031 if ( VerboseMode || SummaryMode) {
1032 DumpStatistics();
1033 }
1034
1035 Done:
1036 if (ParamPackage != NULL) {
1037 ShellCommandLineFreeVarList (ParamPackage);
1038 }
1039 SHELL_FREE_NON_NULL (StringPtr);
1040 if (CustomCumulativeData != NULL) {
1041 SHELL_FREE_NON_NULL (CustomCumulativeData->Name);
1042 }
1043 SHELL_FREE_NON_NULL (CustomCumulativeData);
1044
1045 SHELL_FREE_NON_NULL (mMeasurementList);
1046
1047 SHELL_FREE_NON_NULL (mCacheHandleGuidTable);
1048
1049 mMeasurementNum = 0;
1050 mCachePairCount = 0;
1051 return ShellStatus;
1052 }
1053
1054
1055 /**
1056 Retrive HII package list from ImageHandle and publish to HII database.
1057
1058 @param ImageHandle The image handle of the process.
1059
1060 @return HII handle.
1061 **/
1062 EFI_HANDLE
1063 InitializeHiiPackage (
1064 EFI_HANDLE ImageHandle
1065 )
1066 {
1067 EFI_STATUS Status;
1068 EFI_HII_PACKAGE_LIST_HEADER *PackageList;
1069 EFI_HANDLE HiiHandle;
1070
1071 //
1072 // Retrieve HII package list from ImageHandle
1073 //
1074 Status = gBS->OpenProtocol (
1075 ImageHandle,
1076 &gEfiHiiPackageListProtocolGuid,
1077 (VOID **)&PackageList,
1078 ImageHandle,
1079 NULL,
1080 EFI_OPEN_PROTOCOL_GET_PROTOCOL
1081 );
1082 ASSERT_EFI_ERROR (Status);
1083 if (EFI_ERROR (Status)) {
1084 return NULL;
1085 }
1086
1087 //
1088 // Publish HII package list to HII Database.
1089 //
1090 Status = gHiiDatabase->NewPackageList (
1091 gHiiDatabase,
1092 PackageList,
1093 NULL,
1094 &HiiHandle
1095 );
1096 ASSERT_EFI_ERROR (Status);
1097 if (EFI_ERROR (Status)) {
1098 return NULL;
1099 }
1100 return HiiHandle;
1101 }