summaryrefslogtreecommitdiff
path: root/EDK/Foundation/Library/EdkIIGlueLib/Library/PeiFirmwarePerformanceLib/EdkIIGluePeiFirmwarePerformanceLib.c
blob: 5990272fb7c3319222dd66e9ed93bf6a9f4c591d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
/*++

Copyright (c) 2011 - 2012, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials                          
are licensed and made available under the terms and conditions of the BSD License         
which accompanies this distribution.  The full text of the license may be found at        
http://opensource.org/licenses/bsd-license.php                                            
                                                                                          
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.              

Module Name:

  EdkIIGluePeiFirmwarePerformanceLib.c
  
Abstract:

  PEI Library for FPDT performance logging. 

--*/

#include "EdkIIGluePeim.h"
#include EFI_GUID_DEFINITION (PeiPerformanceHob)

//
// MAX perfomance HOB Entries
//
#define MAX_FIRMWARE_PERFORMANCE_ENTRIES 80

EFI_STATUS
PeiPerfMeasureEx (
  IN VOID    *FileHeader,
  IN UINT16  *Token,
  IN BOOLEAN EntryExit,
  IN UINT64  TimeStamp,
  IN UINT16  Identifier
  )
/*++

Routine Description:

  Log an extended timestamp value into pre-allocated hob.

Arguments:

  FileHeader  - Pointer to the file header

  Token       - Pointer to Token Name
  
  EntryExit   - Indicates start or stop measurement

  Timestamp   - The TSC value

  Identifier  - Identifier of the record  

Returns:

  EFI_BUFFER_TOO_SMALL - Allocate buffer is not enough to hold new records
  
  EFI_SUCCESS          - Successfully updated the record in hob

--*/
{
  EFI_STATUS                    Status;
  EFI_PEI_PPI_DESCRIPTOR        *PerfHobDescriptor;
  PEI_FIRMWARE_PERFORMANCE_HOB  *FirmwarePerformanceHob;
  PEI_GUID_EVENT_REC            *PeiGuidRec;
  EFI_PEI_SERVICES              **PeiServices;
  UINTN                         BufferSize;
  EFI_PEI_HOB_POINTERS          Hob;

  PeiServices = GetPeiServicesTablePointer ();
  //
  // Locate the Pei Performance Log Hob.
  //
  Status = (*PeiServices)->LocatePpi (
                            PeiServices,
                            &gPeiFirmwarePerformanceGuid,
                            0,
                            &PerfHobDescriptor,
                            NULL
                            );
  if (EFI_ERROR (Status)) {
    BufferSize = (UINT16) (sizeof (PEI_FIRMWARE_PERFORMANCE_HOB) + 
                            ((MAX_FIRMWARE_PERFORMANCE_ENTRIES-1) * sizeof (PEI_GUID_EVENT_REC)) +
                            sizeof(EFI_PEI_PPI_DESCRIPTOR)
                           );

    Hob.Raw = BuildGuidHob (
                &gPeiFirmwarePerformanceGuid,
                BufferSize
                );

    if (Hob.Raw == NULL) {
      return EFI_BUFFER_TOO_SMALL;
    }

    FirmwarePerformanceHob  = (VOID *) (Hob.Raw);
    FirmwarePerformanceHob->NumberOfEntries = 0;
    FirmwarePerformanceHob->Reserved = 0;

    PerfHobDescriptor = (EFI_PEI_PPI_DESCRIPTOR *)((UINT8 *)(FirmwarePerformanceHob+1) +
                                                     (sizeof (PEI_GUID_EVENT_REC) *
                                                       (MAX_FIRMWARE_PERFORMANCE_ENTRIES-1))
                                                  );
    PerfHobDescriptor->Flags  = (EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST);
    PerfHobDescriptor->Guid   = &gPeiFirmwarePerformanceGuid;
    PerfHobDescriptor->Ppi    = NULL;

    (*PeiServices)->InstallPpi (PeiServices, PerfHobDescriptor);
    ASSERT_EFI_ERROR (Status);
  }

  FirmwarePerformanceHob = (PEI_FIRMWARE_PERFORMANCE_HOB *)(((UINT8 *)(PerfHobDescriptor)) -
                                                               ((sizeof (PEI_GUID_EVENT_REC) *
                                                                  (MAX_FIRMWARE_PERFORMANCE_ENTRIES-1))
                                                               + sizeof (PEI_FIRMWARE_PERFORMANCE_HOB)
                                                               )
                                                           );

  //
  // return if pre-allocated performance hob has filled up
  //
  if (FirmwarePerformanceHob->NumberOfEntries >= MAX_FIRMWARE_PERFORMANCE_ENTRIES) {
    return EFI_BUFFER_TOO_SMALL;
  }

  PeiGuidRec = &(FirmwarePerformanceHob->GuidEventRecord[FirmwarePerformanceHob->NumberOfEntries]);
  ((*PeiServices)->SetMem) (PeiGuidRec, sizeof (PEI_GUID_EVENT_REC), 0);

  //
  // If not NULL pointer, copy the file name
  //
  if (FileHeader != NULL) {
    PeiGuidRec->Guid = ((EFI_FFS_FILE_HEADER *)FileHeader)->Name;
  }
  //
  // Record the time stamp nanosec value.
  //
  PeiGuidRec->Timestamp = GetTimeInNanoSec (TimeStamp);

  //
  // Copy the progress ID
  //
  PeiGuidRec->ProgressID = Identifier;

  //
  // Record the APIC Id
  //
  PeiGuidRec->ApicID = GetApicId ();

  //
  // Increment the number of valid log entries.
  //
  FirmwarePerformanceHob->NumberOfEntries++;

  return EFI_SUCCESS;
}

EFI_STATUS
PeiPerfMeasure (
  IN VOID     *FileHeader,
  IN UINT16   *Token,
  IN BOOLEAN  EntryExit,
  IN UINT64   TimeStamp
  )
/*++

Routine Description:

  Log a timestamp value into pre-allocated buffer.
  Creates performance hob if not already installed

Arguments:

  FileHeader  - Pointer to the file header

  Token       - Pointer to Token Name

  EntryExit   - Indicates start or stop measurement

  TimeStamp   - The start time or the stop time

Returns:

  EFI_BUFFER_TOO_SMALL - Allocate buffer is not enough to hold new records

  EFI_UNSUPPORTED      - Unable to recognize used token
  
  EFI_SUCCESS          - Successfully updated the record in hob

--*/
{
  EFI_STATUS                    Status;
  PEI_FIRMWARE_PERFORMANCE_HOB  *FirmwarePerformanceHob;
  EFI_PEI_PPI_DESCRIPTOR        *PerfHobDescriptor;
  PEI_GUID_EVENT_REC            *PeiGuidRec;
  EFI_PEI_SERVICES              **PeiServices;
  UINTN                         BufferSize;
  EFI_PEI_HOB_POINTERS          Hob;

  PeiServices = GetPeiServicesTablePointer ();
  //
  // Locate the Pei Performance Log Hob.
  //
  Status = (*PeiServices)->LocatePpi (
                            PeiServices,
                            &gPeiFirmwarePerformanceGuid,
                            0,
                            &PerfHobDescriptor,
                            NULL
                            );

  if (EFI_ERROR (Status)) {

    BufferSize = (UINT16) (sizeof (PEI_FIRMWARE_PERFORMANCE_HOB) + 
                            ((MAX_FIRMWARE_PERFORMANCE_ENTRIES-1) * sizeof (PEI_GUID_EVENT_REC)) +
                            sizeof(EFI_PEI_PPI_DESCRIPTOR)
                           );

    Hob.Raw = BuildGuidHob (
                &gPeiFirmwarePerformanceGuid,
                BufferSize
                );

    if (Hob.Raw == NULL) {
      return EFI_BUFFER_TOO_SMALL;
    }

    FirmwarePerformanceHob  = (VOID *) (Hob.Raw);
    FirmwarePerformanceHob->NumberOfEntries = 0;
    FirmwarePerformanceHob->Reserved = 0;

    PerfHobDescriptor = (EFI_PEI_PPI_DESCRIPTOR *)((UINT8 *)(FirmwarePerformanceHob+1) +
                                                     (sizeof (PEI_GUID_EVENT_REC) *
                                                       (MAX_FIRMWARE_PERFORMANCE_ENTRIES-1))
                                                  );
    PerfHobDescriptor->Flags  = (EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST);
    PerfHobDescriptor->Guid   = &gPeiFirmwarePerformanceGuid;
    PerfHobDescriptor->Ppi    = NULL;

    (*PeiServices)->InstallPpi (PeiServices, PerfHobDescriptor);
    ASSERT_EFI_ERROR (Status);
  }

  FirmwarePerformanceHob = (PEI_FIRMWARE_PERFORMANCE_HOB *)(((UINT8 *)(PerfHobDescriptor)) -
                                                             ((sizeof (PEI_GUID_EVENT_REC) *
                                                               (MAX_FIRMWARE_PERFORMANCE_ENTRIES-1))
                                                             + sizeof (PEI_FIRMWARE_PERFORMANCE_HOB))
                                                           );

  if (FirmwarePerformanceHob->NumberOfEntries >= MAX_FIRMWARE_PERFORMANCE_ENTRIES) {
    return EFI_BUFFER_TOO_SMALL;
  }

  PeiGuidRec = &(FirmwarePerformanceHob->GuidEventRecord[FirmwarePerformanceHob->NumberOfEntries]);
  ((*PeiServices)->SetMem) (PeiGuidRec, sizeof (PEI_GUID_EVENT_REC), 0);

  //
  // If not NULL pointer, copy the file name
  //
  if (FileHeader != NULL) {
    PeiGuidRec->Guid = ((EFI_FFS_FILE_HEADER *)FileHeader)->Name;
  }
  //
  // Record the time stamp nanosec value.
  //
  PeiGuidRec->Timestamp = GetTimeInNanoSec (TimeStamp);

  //
  // Record the Progress Id
  // Tokens are used by PEI core to log various phases of PEI
  //
  if (!StrCmp (Token, L"PEIM")) {
    if (!EntryExit) {
      PeiGuidRec->ProgressID = PEIM_START_ID;
    } else {
      PeiGuidRec->ProgressID = PEIM_END_ID;
    }
  } else if (!StrCmp (Token, L"PreMem")) {
    if (!EntryExit) {
      PeiGuidRec->ProgressID = PREMEM_START_ID;
    } else {
      PeiGuidRec->ProgressID = PREMEM_END_ID;
    }
  } else if (!StrCmp (Token, L"DisMem")) {
    if (!EntryExit) {
      PeiGuidRec->ProgressID = DISMEM_START_ID;
    } else {
      PeiGuidRec->ProgressID = DISMEM_END_ID;
    }
  } else if (!StrCmp (Token, L"PostMem")) {
    if (!EntryExit) {
      PeiGuidRec->ProgressID = POSTMEM_START_ID;
    } else {
      PeiGuidRec->ProgressID = POSTMEM_END_ID;
    }
  } else {
    return EFI_UNSUPPORTED;
  }
  //
  // Record the APIC Id
  //
  PeiGuidRec->ApicID = GetApicId ();

  //
  // Increment the number of valid log entries.
  //
  FirmwarePerformanceHob->NumberOfEntries++;

  return EFI_SUCCESS;
}

EFI_STATUS
StartMeasure (
  IN VOID   *Handle, 
  IN UINT16 *Token,  
  IN UINT16 *Module, 
  IN UINT64 TimeStamp
  )
/*++

Routine Description:

  Start measurement according to token field and insert into pre-allocated buffer

Arguments:

  Handle     - Handle to measure
  Token      - Token to measure
  Module     - Module to measure
  Timestamp  - Ticker as start tick

Returns:

  EFI_SUCCESS - Located hob successfully, and buffer is updated with new record
  EFI_UNSUPPORTED - Failure in update
  EFI_BUFFER_TOO_SMALL - Allocate buffer is not enough to hold new records

--*/
{
  EFI_STATUS Status;

  Status = PeiPerfMeasure (Handle, Token, FALSE, TimeStamp);
  return Status;
}

EFI_STATUS
EndMeasure (
  IN VOID   *Handle, 
  IN UINT16 *Token,  
  IN UINT16 *Module, 
  IN UINT64 TimeStamp
  )
/*++

Routine Description:

  End measurement according to token field and insert into pre-allocated buffer

Arguments:

  Handle     - Handle to stop
  Token      - Token to stop
  Module     - Module to stop
  Timestamp  - Ticker as end tick

Returns:

  EFI_SUCCESS - Located hob successfully, and buffer is updated with new record
  EFI_UNSUPPORTED - Failure in update
  EFI_BUFFER_TOO_SMALL - Allocate buffer is not enough to hold new records

--*/
{
  EFI_STATUS Status;

  Status = PeiPerfMeasure (Handle, Token, TRUE, TimeStamp);
  return Status;
}

EFI_STATUS
StartMeasureEx (
  IN VOID   *Handle, 
  IN UINT16 *Token,  
  IN UINT16 *Module, 
  IN UINT64 TimeStamp,
  IN UINT16 Identifier
  )
/*++

Routine Description:

  Start extended measurement according to token field and insert into pre-allocated buffer

Arguments:

  Handle     - Handle to stop
  Token      - Token to stop
  Module     - Module to stop
  Timestamp  - Ticker as end tick
  Identifier - Identifier for a given record

Returns:

  EFI_SUCCESS - Located hob successfully, and buffer is updated with new record
  EFI_UNSUPPORTED - Failure in update
  EFI_BUFFER_TOO_SMALL - Allocate buffer is not enough to hold new records

--*/
{
  EFI_STATUS Status;

  Status = PeiPerfMeasureEx (Handle, Token, FALSE, TimeStamp, Identifier);
  return Status;
}

EFI_STATUS
EndMeasureEx (
  IN VOID   *Handle, 
  IN UINT16 *Token,  
  IN UINT16 *Module, 
  IN UINT64 TimeStamp,
  IN UINT16 Identifier
  )
/*++

Routine Description:

  End extended measurement according to token field and insert into pre-allocated buffer

Arguments:

  Handle     - Handle to stop
  Token      - Token to stop
  Module     - Module to stop
  Timestamp  - Ticker as end tick
  Identifier - Identifier for a given record

Returns:

  EFI_SUCCESS - Located hob successfully, and buffer is updated with new record
  EFI_UNSUPPORTED - Failure in update
  EFI_BUFFER_TOO_SMALL - Allocate buffer is not enough to hold new records

--*/
{
  EFI_STATUS Status;

  Status = PeiPerfMeasureEx (Handle, Token, TRUE, TimeStamp, Identifier);
  return Status;
}