]> git.proxmox.com Git - mirror_edk2.git/blame - ShellPkg/Library/UefiDpLib/DpUtilities.c
ShellPkg UefiDpLib: Remove TimerLib dependency
[mirror_edk2.git] / ShellPkg / Library / UefiDpLib / DpUtilities.c
CommitLineData
d41bc92c 1/** @file\r
2 Utility functions used by the Dp application.\r
3\r
ef224032 4 Copyright (c) 2009 - 2017, Intel Corporation. All rights reserved.\r
69af8476 5 (C) Copyright 2015-2016 Hewlett Packard Enterprise Development LP<BR>\r
d41bc92c 6 This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13**/\r
14\r
15#include <Library/BaseLib.h>\r
16#include <Library/BaseMemoryLib.h>\r
17#include <Library/MemoryAllocationLib.h>\r
18#include <Library/DebugLib.h>\r
19#include <Library/UefiBootServicesTableLib.h>\r
d41bc92c 20#include <Library/PeCoffGetEntryPointLib.h>\r
21#include <Library/PrintLib.h>\r
22#include <Library/HiiLib.h>\r
23#include <Library/PcdLib.h>\r
24#include <Library/UefiLib.h>\r
25#include <Library/DevicePathLib.h>\r
a71003f2 26#include <Library/HandleParsingLib.h>\r
d41bc92c 27\r
28#include <Pi/PiFirmwareFile.h>\r
29#include <Library/DxeServicesLib.h>\r
30\r
31#include <Protocol/LoadedImage.h>\r
32#include <Protocol/DriverBinding.h>\r
33#include <Protocol/ComponentName2.h>\r
34#include <Protocol/DevicePath.h>\r
d41bc92c 35\r
36#include <Guid/Performance.h>\r
37\r
38#include "Dp.h"\r
39#include "Literals.h"\r
40#include "DpInternal.h"\r
41\r
42/** \r
43 Calculate an event's duration in timer ticks.\r
44 \r
45 Given the count direction and the event's start and end timer values,\r
46 calculate the duration of the event in timer ticks. Information for\r
47 the current measurement is pointed to by the parameter.\r
48 \r
49 If the measurement's start time is 1, it indicates that the developer\r
50 is indicating that the measurement began at the release of reset.\r
51 The start time is adjusted to the timer's starting count before performing\r
52 the elapsed time calculation.\r
53 \r
54 The calculated duration, in ticks, is the absolute difference between\r
55 the measurement's ending and starting counts.\r
56 \r
57 @param Measurement Pointer to a MEASUREMENT_RECORD structure containing\r
58 data for the current measurement.\r
59 \r
60 @return The 64-bit duration of the event.\r
61**/\r
62UINT64\r
63GetDuration (\r
64 IN OUT MEASUREMENT_RECORD *Measurement\r
65 )\r
66{\r
67 UINT64 Duration;\r
68 BOOLEAN Error;\r
69\r
69af8476
CS
70 if (Measurement->EndTimeStamp == 0) {\r
71 return 0;\r
72 }\r
73\r
d41bc92c 74 // PERF_START macros are called with a value of 1 to indicate\r
75 // the beginning of time. So, adjust the start ticker value\r
76 // to the real beginning of time.\r
77 // Assumes no wraparound. Even then, there is a very low probability\r
78 // of having a valid StartTicker value of 1.\r
79 if (Measurement->StartTimeStamp == 1) {\r
80 Measurement->StartTimeStamp = TimerInfo.StartCount;\r
81 }\r
82 if (TimerInfo.CountUp) {\r
83 Duration = Measurement->EndTimeStamp - Measurement->StartTimeStamp;\r
84 Error = (BOOLEAN)(Duration > Measurement->EndTimeStamp);\r
85 }\r
86 else {\r
87 Duration = Measurement->StartTimeStamp - Measurement->EndTimeStamp;\r
88 Error = (BOOLEAN)(Duration > Measurement->StartTimeStamp);\r
89 }\r
90\r
91 if (Error) {\r
92 DEBUG ((EFI_D_ERROR, ALit_TimerLibError));\r
93 Duration = 0;\r
94 }\r
95 return Duration;\r
96}\r
97\r
98/** \r
99 Determine whether the Measurement record is for an EFI Phase.\r
100 \r
101 The Token and Module members of the measurement record are checked.\r
102 Module must be empty and Token must be one of SEC, PEI, DXE, BDS, or SHELL.\r
103 \r
104 @param[in] Measurement A pointer to the Measurement record to test.\r
105 \r
106 @retval TRUE The measurement record is for an EFI Phase.\r
107 @retval FALSE The measurement record is NOT for an EFI Phase.\r
108**/\r
109BOOLEAN\r
110IsPhase(\r
111 IN MEASUREMENT_RECORD *Measurement\r
112 )\r
113{\r
114 BOOLEAN RetVal;\r
115\r
116 RetVal = (BOOLEAN)( ( *Measurement->Module == '\0') &&\r
117 ((AsciiStrnCmp (Measurement->Token, ALit_SEC, PERF_TOKEN_LENGTH) == 0) ||\r
118 (AsciiStrnCmp (Measurement->Token, ALit_PEI, PERF_TOKEN_LENGTH) == 0) ||\r
119 (AsciiStrnCmp (Measurement->Token, ALit_DXE, PERF_TOKEN_LENGTH) == 0) ||\r
120 (AsciiStrnCmp (Measurement->Token, ALit_BDS, PERF_TOKEN_LENGTH) == 0))\r
121 );\r
122 return RetVal;\r
123}\r
124\r
125/** \r
126 Get the file name portion of the Pdb File Name.\r
127 \r
128 The portion of the Pdb File Name between the last backslash and\r
129 either a following period or the end of the string is converted\r
130 to Unicode and copied into UnicodeBuffer. The name is truncated,\r
131 if necessary, to ensure that UnicodeBuffer is not overrun.\r
132 \r
133 @param[in] PdbFileName Pdb file name.\r
134 @param[out] UnicodeBuffer The resultant Unicode File Name.\r
135 \r
136**/\r
137VOID\r
2c55a81a 138DpGetShortPdbFileName (\r
d41bc92c 139 IN CHAR8 *PdbFileName,\r
140 OUT CHAR16 *UnicodeBuffer\r
141 )\r
142{\r
143 UINTN IndexA; // Current work location within an ASCII string.\r
144 UINTN IndexU; // Current work location within a Unicode string.\r
145 UINTN StartIndex;\r
146 UINTN EndIndex;\r
147\r
e75390f0 148 ZeroMem (UnicodeBuffer, (DP_GAUGE_STRING_LENGTH + 1) * sizeof (CHAR16));\r
d41bc92c 149\r
150 if (PdbFileName == NULL) {\r
e75390f0 151 StrnCpyS (UnicodeBuffer, DP_GAUGE_STRING_LENGTH + 1, L" ", 1);\r
d41bc92c 152 } else {\r
153 StartIndex = 0;\r
154 for (EndIndex = 0; PdbFileName[EndIndex] != 0; EndIndex++)\r
155 ;\r
156 for (IndexA = 0; PdbFileName[IndexA] != 0; IndexA++) {\r
157 if (PdbFileName[IndexA] == '\\') {\r
158 StartIndex = IndexA + 1;\r
159 }\r
160\r
161 if (PdbFileName[IndexA] == '.') {\r
162 EndIndex = IndexA;\r
163 }\r
164 }\r
165\r
166 IndexU = 0;\r
167 for (IndexA = StartIndex; IndexA < EndIndex; IndexA++) {\r
168 UnicodeBuffer[IndexU] = (CHAR16) PdbFileName[IndexA];\r
169 IndexU++;\r
b9ffeab7
SZ
170 if (IndexU >= DP_GAUGE_STRING_LENGTH) {\r
171 UnicodeBuffer[DP_GAUGE_STRING_LENGTH] = 0;\r
d41bc92c 172 break;\r
173 }\r
174 }\r
175 }\r
176}\r
177\r
178/** \r
179 Get a human readable name for an image handle.\r
180 The following methods will be tried orderly:\r
181 1. Image PDB\r
182 2. ComponentName2 protocol\r
183 3. FFS UI section\r
184 4. Image GUID\r
185 5. Image DevicePath\r
186 6. Unknown Driver Name\r
187\r
188 @param[in] Handle\r
189\r
190 @post The resulting Unicode name string is stored in the\r
191 mGaugeString global array.\r
192\r
193**/\r
194VOID\r
2c55a81a 195DpGetNameFromHandle (\r
d41bc92c 196 IN EFI_HANDLE Handle\r
197 )\r
198{\r
199 EFI_STATUS Status;\r
200 EFI_LOADED_IMAGE_PROTOCOL *Image;\r
201 CHAR8 *PdbFileName;\r
202 EFI_DRIVER_BINDING_PROTOCOL *DriverBinding;\r
203 EFI_STRING StringPtr;\r
204 EFI_DEVICE_PATH_PROTOCOL *LoadedImageDevicePath;\r
205 EFI_DEVICE_PATH_PROTOCOL *DevicePath;\r
206 EFI_GUID *NameGuid;\r
207 CHAR16 *NameString;\r
208 UINTN StringSize;\r
209 CHAR8 *PlatformLanguage;\r
210 EFI_COMPONENT_NAME2_PROTOCOL *ComponentName2;\r
d41bc92c 211\r
3b672240
SZ
212 Image = NULL;\r
213 LoadedImageDevicePath = NULL;\r
214 DevicePath = NULL;\r
215\r
d41bc92c 216 //\r
217 // Method 1: Get the name string from image PDB\r
218 //\r
219 Status = gBS->HandleProtocol (\r
220 Handle,\r
221 &gEfiLoadedImageProtocolGuid,\r
222 (VOID **) &Image\r
223 );\r
224\r
225 if (EFI_ERROR (Status)) {\r
226 Status = gBS->OpenProtocol (\r
227 Handle,\r
228 &gEfiDriverBindingProtocolGuid,\r
229 (VOID **) &DriverBinding,\r
230 NULL,\r
231 NULL,\r
232 EFI_OPEN_PROTOCOL_GET_PROTOCOL\r
233 );\r
234 if (!EFI_ERROR (Status)) {\r
235 Status = gBS->HandleProtocol (\r
236 DriverBinding->ImageHandle,\r
237 &gEfiLoadedImageProtocolGuid,\r
238 (VOID **) &Image\r
239 );\r
240 }\r
241 }\r
242\r
243 if (!EFI_ERROR (Status)) {\r
244 PdbFileName = PeCoffLoaderGetPdbPointer (Image->ImageBase);\r
245\r
246 if (PdbFileName != NULL) {\r
2c55a81a 247 DpGetShortPdbFileName (PdbFileName, mGaugeString);\r
d41bc92c 248 return;\r
249 }\r
250 }\r
251\r
252 //\r
253 // Method 2: Get the name string from ComponentName2 protocol\r
254 //\r
255 Status = gBS->HandleProtocol (\r
256 Handle,\r
257 &gEfiComponentName2ProtocolGuid,\r
258 (VOID **) &ComponentName2\r
259 );\r
260 if (!EFI_ERROR (Status)) {\r
261 //\r
262 // Get the current platform language setting\r
263 //\r
a71003f2 264 PlatformLanguage = GetBestLanguageForDriver(ComponentName2->SupportedLanguages, NULL, FALSE);\r
d41bc92c 265 Status = ComponentName2->GetDriverName (\r
266 ComponentName2,\r
267 PlatformLanguage != NULL ? PlatformLanguage : "en-US",\r
268 &StringPtr\r
269 );\r
270 if (!EFI_ERROR (Status)) {\r
271 SHELL_FREE_NON_NULL (PlatformLanguage);\r
4dc0d578 272 StrnCpyS (mGaugeString, DP_GAUGE_STRING_LENGTH + 1, StringPtr, DP_GAUGE_STRING_LENGTH);\r
d41bc92c 273 mGaugeString[DP_GAUGE_STRING_LENGTH] = 0;\r
274 return;\r
275 }\r
276 }\r
277\r
278 Status = gBS->HandleProtocol (\r
279 Handle,\r
280 &gEfiLoadedImageDevicePathProtocolGuid,\r
281 (VOID **) &LoadedImageDevicePath\r
282 );\r
283 if (!EFI_ERROR (Status) && (LoadedImageDevicePath != NULL)) {\r
284 DevicePath = LoadedImageDevicePath;\r
3b672240
SZ
285 } else if (Image != NULL) {\r
286 DevicePath = Image->FilePath;\r
287 }\r
d41bc92c 288\r
3b672240 289 if (DevicePath != NULL) {\r
d41bc92c 290 //\r
3b672240 291 // Try to get image GUID from image DevicePath\r
d41bc92c 292 //\r
293 NameGuid = NULL;\r
294 while (!IsDevicePathEndType (DevicePath)) {\r
295 NameGuid = EfiGetNameGuidFromFwVolDevicePathNode ((MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) DevicePath);\r
296 if (NameGuid != NULL) {\r
297 break;\r
298 }\r
299 DevicePath = NextDevicePathNode (DevicePath);\r
300 }\r
301\r
302 if (NameGuid != NULL) {\r
303 //\r
304 // Try to get the image's FFS UI section by image GUID\r
305 //\r
306 NameString = NULL;\r
307 StringSize = 0;\r
308 Status = GetSectionFromAnyFv (\r
309 NameGuid,\r
310 EFI_SECTION_USER_INTERFACE,\r
311 0,\r
312 (VOID **) &NameString,\r
313 &StringSize\r
314 );\r
315\r
316 if (!EFI_ERROR (Status)) {\r
317 //\r
318 // Method 3. Get the name string from FFS UI section\r
319 //\r
4dc0d578 320 StrnCpyS (mGaugeString, DP_GAUGE_STRING_LENGTH + 1, NameString, DP_GAUGE_STRING_LENGTH);\r
d41bc92c 321 mGaugeString[DP_GAUGE_STRING_LENGTH] = 0;\r
322 FreePool (NameString);\r
323 } else {\r
324 //\r
325 // Method 4: Get the name string from image GUID\r
326 //\r
327 UnicodeSPrint (mGaugeString, sizeof (mGaugeString), L"%g", NameGuid);\r
328 }\r
329 return;\r
330 } else {\r
331 //\r
332 // Method 5: Get the name string from image DevicePath\r
333 //\r
3b672240 334 NameString = ConvertDevicePathToText (DevicePath, TRUE, FALSE);\r
863986b3 335 if (NameString != NULL) {\r
4dc0d578 336 StrnCpyS (mGaugeString, DP_GAUGE_STRING_LENGTH + 1, NameString, DP_GAUGE_STRING_LENGTH);\r
863986b3
RN
337 mGaugeString[DP_GAUGE_STRING_LENGTH] = 0;\r
338 FreePool (NameString);\r
339 return;\r
d41bc92c 340 }\r
341 }\r
342 }\r
343\r
344 //\r
345 // Method 6: Unknown Driver Name\r
346 //\r
347 StringPtr = HiiGetString (gDpHiiHandle, STRING_TOKEN (STR_DP_ERROR_NAME), NULL);\r
348 ASSERT (StringPtr != NULL);\r
4dc0d578 349 StrnCpyS (mGaugeString, DP_GAUGE_STRING_LENGTH + 1, StringPtr, DP_GAUGE_STRING_LENGTH);\r
d41bc92c 350 FreePool (StringPtr);\r
351}\r
352\r
353/** \r
354 Calculate the Duration in microseconds.\r
355 \r
356 Duration is multiplied by 1000, instead of Frequency being divided by 1000 or\r
357 multiplying the result by 1000, in order to maintain precision. Since Duration is\r
358 a 64-bit value, multiplying it by 1000 is unlikely to produce an overflow.\r
359 \r
360 The time is calculated as (Duration * 1000) / Timer_Frequency.\r
361 \r
362 @param[in] Duration The event duration in timer ticks.\r
363 \r
364 @return A 64-bit value which is the Elapsed time in microseconds.\r
365**/\r
366UINT64\r
367DurationInMicroSeconds (\r
368 IN UINT64 Duration\r
369 )\r
370{\r
371 UINT64 Temp;\r
372\r
373 Temp = MultU64x32 (Duration, 1000);\r
374 return DivU64x32 (Temp, TimerInfo.Frequency);\r
375}\r
376\r
377/** \r
378 Get index of Measurement Record's match in the CumData array.\r
379 \r
380 If the Measurement's Token value matches a Token in one of the CumData\r
381 records, the index of the matching record is returned. The returned\r
382 index is a signed value so that negative values can indicate that\r
383 the Measurement didn't match any entry in the CumData array.\r
384 \r
385 @param[in] Measurement A pointer to a Measurement Record to match against the CumData array.\r
386 \r
387 @retval <0 Token is not in the CumData array.\r
388 @retval >=0 Return value is the index into CumData where Token is found.\r
389**/\r
390INTN\r
391GetCumulativeItem(\r
392 IN MEASUREMENT_RECORD *Measurement\r
393 )\r
394{\r
395 INTN Index;\r
396\r
397 for( Index = 0; Index < (INTN)NumCum; ++Index) {\r
398 if (AsciiStrnCmp (Measurement->Token, CumData[Index].Name, PERF_TOKEN_LENGTH) == 0) {\r
399 return Index; // Exit, we found a match\r
400 }\r
401 }\r
402 // If the for loop exits, Token was not found.\r
403 return -1; // Indicate failure\r
404}\r