]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFspPkg/Include/Private/FspMeasurePointId.h
765bd0b98b058aec82d932f7c88a0468fe4e6bc6
[mirror_edk2.git] / IntelFspPkg / Include / Private / FspMeasurePointId.h
1 /** @file
2
3 Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
4 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 **/
13
14 #ifndef _FSP_MEASURE_POINT_ID_H_
15 #define _FSP_MEASURE_POINT_ID_H_
16
17 //
18 // 0xD0 - 0xEF are reserved for FSP common measure point
19 //
20 #define FSP_PERF_ID_MRCINIT_ENTRY 0xD0
21 #define FSP_PERF_ID_MRCINIT_EXIT (FSP_PERF_ID_MRCINIT_ENTRY + 1)
22
23 #define FSP_PERF_ID_SOCINIT_ENTRY 0xD8
24 #define FSP_PERF_ID_SOCINIT_EXIT (FSP_PERF_ID_SOCINIT_ENTRY + 1)
25
26 #define FSP_PERF_ID_PCHINIT_ENTRY 0xDA
27 #define FSP_PERF_ID_PCHINIT_EXIT (FSP_PERF_ID_PCHINIT_ENTRY + 1)
28
29 #define FSP_PERF_ID_CPUINIT_ENTRY 0xE0
30 #define FSP_PERF_ID_CPUINIT_EXIT (FSP_PERF_ID_CPUINIT_ENTRY + 1)
31
32
33 //
34 // 0xF0 - 0xFF are reserved for FSP API
35 //
36 #define FSP_PERF_ID_API_TMPRAMINIT_ENTRY 0xF0
37 #define FSP_PERF_ID_API_TMPRAMINIT_EXIT (FSP_PERF_ID_API_TMPRAMINIT_ENTRY + 1)
38
39 #define FSP_PERF_ID_API_FSPINIT_ENTRY 0xF2
40 #define FSP_PERF_ID_API_FSPINIT_EXIT (FSP_PERF_ID_API_FSPINIT_ENTRY + 1)
41
42 #define FSP_PERF_ID_API_NOTIFY_POSTPCI_ENTRY 0xF4
43 #define FSP_PERF_ID_API_NOTIFY_POSTPCI_EXIT (FSP_PERF_ID_API_NOTIFY_POSTPCI_ENTRY + 1)
44
45 #define FSP_PERF_ID_API_NOTIFY_RDYBOOT_ENTRY 0xF6
46 #define FSP_PERF_ID_API_NOTIFY_RDYBOOT_EXIT (FSP_PERF_ID_API_NOTIFY_RDYBOOT_ENTRY + 1)
47
48 #endif