summaryrefslogtreecommitdiff
path: root/EDK/Foundation/Library/Pei/PeiLib/Perf.c
blob: 86b8d6247326deeca4df87c92ad83bb428a57a39 (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
/*++

Copyright (c) 2004 - 2012, Intel Corporation                                                         
All rights reserved. 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:

  Perf.c

Abstract:

  Support for FPDT performance structures. 

--*/

#include "Tiano.h"
#include "Pei.h"
#include "PeiLib.h"
#include "PeiHob.h"
#include "CpuIA32.h"
#include "EfiCommonLib.h"

#include EFI_GUID_DEFINITION (PeiPerformanceHob)

#define MSR_PLATFORM_INFO             0xce
#define MAX_NON_TURBO_RATIO_OFFSET    8
#define MAX_NON_TURBO_RATIO_MASK      0xff
#define LOCAL_APIC_BASE               0xfee00000
#define APIC_ID_REGISTER              0x20
#define MSR_EXT_XAPIC_LOGICAL_APIC_ID 0x802
#define MSR_XAPIC_BASE                0x1b
#define MSR_XAPIC_BASE_MASK           0x0c00

#define MAX_FIRMWARE_PERFORMANCE_ENTRIES 80

//
// Prototype functions
//  
UINT64
IA32API
EfiReadMsr (
  IN UINT32     Index
  );

UINT64 GetTimeInNanoSec (
  UINT64 Ticker
  )
/*++

Routine Description:

  Internal routine to convert TSC value into nano second value

Arguments:

  Ticker - OPTIONAL. TSC value supplied by caller function

Returns:

  UINT64 - returns calculated timer value

--*/
{
  UINT64 Tick, pi;
  UINT8  Ratio;

  if(Ticker != 0){
    Tick = Ticker;
  } else {
    Tick = EfiReadTsc();
  }

  pi = EfiReadMsr(MSR_PLATFORM_INFO);
  Ratio = (UINT8)( ((UINT32)(UINTN)RShiftU64(pi, MAX_NON_TURBO_RATIO_OFFSET)) & MAX_NON_TURBO_RATIO_MASK);

  return (UINT64)DivU64x32(MultU64x32(Tick, 10), (UINTN)(Ratio), NULL);
}


UINT32 GetApicId (
  VOID
  )
/*++

Routine Description:

  Internal routine to retrieve current APIC Id

Arguments:

  None

Returns:

  UINT32 - returns Apic Id value

--*/
{
  BOOLEAN x2ApicEnabled;
  UINT32  ApicId;

  x2ApicEnabled = (BOOLEAN)(((EfiReadMsr (MSR_XAPIC_BASE)) & (MSR_XAPIC_BASE_MASK)) == MSR_XAPIC_BASE_MASK);
  if (x2ApicEnabled) {
    ApicId = (UINT32) EfiReadMsr (MSR_EXT_XAPIC_LOGICAL_APIC_ID);
  } else {
    ApicId = (UINT8) (*(volatile UINT32 *) (UINTN) (LOCAL_APIC_BASE + APIC_ID_REGISTER) >> 24);
  }

  return ApicId;
}

VOID
PeiPerfMeasureEx (
  EFI_PEI_SERVICES       **PeiServices,
  IN UINT16              *Token,
  IN EFI_FFS_FILE_HEADER *FileHeader,
  IN UINT16              Identifier,
  IN BOOLEAN             EntryExit,
  IN UINT64              Value
  )
/*++

Routine Description:

  Log an extended timestamp value.

Arguments:

  PeiServices - Pointer to the PEI Core Services table
  
  Token       - Pointer to Token Name
  
  FileHeader  - Pointer to the file header

  Identifier  - Identifier of the record

  EntryExit   - Indicates start or stop measurement

  Value       - The TSC value

Returns:

  None

--*/
{
  EFI_STATUS                   Status;
  EFI_PEI_PPI_DESCRIPTOR       *PerfHobDescriptor;
  PEI_FIRMWARE_PERFORMANCE_HOB *FirmwarePerformanceHob;
  PEI_GUID_EVENT_REC           *PeiGuidRec;
  //
  // Locate the Pei Performance Log Hob.
  //
  Status = (*PeiServices)->LocatePpi (
                             PeiServices,
                             &gPeiFirmwarePerformanceGuid,
                             0,
                             &PerfHobDescriptor,
                             NULL
                             );
  if (!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 performance buffer has filled up
    //
    if (FirmwarePerformanceHob->NumberOfEntries >= MAX_FIRMWARE_PERFORMANCE_ENTRIES) {
      return;
    }

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

    //
    // Get the GUID name
    //
    if (FileHeader != NULL) {
      PeiGuidRec->Guid = FileHeader->Name;
    }

    //
    // Record the time stamp nanosec value.
    //
    PeiGuidRec->Timestamp = GetTimeInNanoSec(Value);

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

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

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

  return;
}

VOID
PeiPerfMeasure (
  EFI_PEI_SERVICES       **PeiServices,
  IN UINT16              *Token,
  IN EFI_FFS_FILE_HEADER *FileHeader,
  IN BOOLEAN             EntryExit,
  IN UINT64              Value
  )
/*++

Routine Description:

  Log a timestamp count.

Arguments:

  PeiServices - Pointer to the PEI Core Services table
  
  Token       - Pointer to Token Name
  
  FileHeader  - Pointer to the file header

  EntryExit   - Indicates start or stop measurement

  Value       - The start time or the stop time

Returns:

--*/
{
  EFI_STATUS                   Status;
  EFI_HOB_GUID_TYPE            *Hob;
  PEI_FIRMWARE_PERFORMANCE_HOB *FirmwarePerformanceHob;
  EFI_PEI_PPI_DESCRIPTOR       *PerfHobDescriptor;
  PEI_GUID_EVENT_REC           *PeiGuidRec;
  //
  // Locate the Pei Performance Log Hob.
  //
  Status = (*PeiServices)->LocatePpi (
                             PeiServices,
                             &gPeiFirmwarePerformanceGuid,
                             0,
                             &PerfHobDescriptor,
                             NULL
                             );

  //
  // If the Performance Hob was not found, build and install one.
  //
  if (EFI_ERROR(Status)) {
    Status = PeiBuildHobGuid (
               PeiServices,
               &gPeiFirmwarePerformanceGuid,
               (sizeof(PEI_FIRMWARE_PERFORMANCE_HOB) +
                 ((MAX_FIRMWARE_PERFORMANCE_ENTRIES-1) * 
                 sizeof(PEI_GUID_EVENT_REC)) +
                 sizeof(EFI_PEI_PPI_DESCRIPTOR)
               ),
               &Hob
               );
    ASSERT_PEI_ERROR(PeiServices, Status);

    FirmwarePerformanceHob = (PEI_FIRMWARE_PERFORMANCE_HOB *)(Hob+1);
    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_PEI_ERROR(PeiServices, 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;
  }

  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 = FileHeader->Name;
  }

  //
  // Record the time stamp nanosec value.
  //
  PeiGuidRec->Timestamp = GetTimeInNanoSec(Value);

  //
  // Record the Progress Id based upon token field
  //
  if (!EfiStrCmp (Token, L"PEIM")) {
    if(!EntryExit) {
      PeiGuidRec->ProgressID = PEIM_START_ID;
    } else {
      PeiGuidRec->ProgressID = PEIM_END_ID;
    }   
  } else if (!EfiStrCmp (Token, L"PreMem")) {
    if(!EntryExit) {
      PeiGuidRec->ProgressID = PREMEM_START_ID;
    } else {
      PeiGuidRec->ProgressID = PREMEM_END_ID;
    }   
  } else if (!EfiStrCmp (Token, L"DisMem")) {
    if(!EntryExit) {
      PeiGuidRec->ProgressID = DISMEM_START_ID;
    } else {
      PeiGuidRec->ProgressID = DISMEM_END_ID;
    }   
  } else if (!EfiStrCmp (Token, L"PostMem")) {
    if(!EntryExit) {
      PeiGuidRec->ProgressID = POSTMEM_START_ID;
    } else {
      PeiGuidRec->ProgressID = POSTMEM_END_ID;
    }   
  } else {
    return ;
  }
  //
  // Record the APIC Id
  //
  PeiGuidRec->ApicID = GetApicId();

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

  return;
}