]> git.proxmox.com Git - mirror_edk2.git/blob - UefiCpuPkg/PiSmmCpuDxeSmm/SmmProfileInternal.h
bacb2f8ad32c240ff3932d43d2faf65380afd624
[mirror_edk2.git] / UefiCpuPkg / PiSmmCpuDxeSmm / SmmProfileInternal.h
1 /** @file
2 SMM profile internal header file.
3
4 Copyright (c) 2012 - 2017, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef _SMM_PROFILE_INTERNAL_H_
16 #define _SMM_PROFILE_INTERNAL_H_
17
18 #include <Guid/GlobalVariable.h>
19 #include <Guid/Acpi.h>
20 #include <Protocol/SmmReadyToLock.h>
21 #include <Library/UefiRuntimeServicesTableLib.h>
22 #include <Library/DxeServicesTableLib.h>
23 #include <Library/CpuLib.h>
24 #include <IndustryStandard/Acpi.h>
25
26 #include "SmmProfileArch.h"
27
28 //
29 // Configure the SMM_PROFILE DTS region size
30 //
31 #define SMM_PROFILE_DTS_SIZE (4 * 1024 * 1024) // 4M
32
33 #define MAX_PF_PAGE_COUNT 0x2
34
35 #define PEBS_RECORD_NUMBER 0x2
36
37 #define MAX_PF_ENTRY_COUNT 10
38
39 //
40 // This MACRO just enable unit test for the profile
41 // Please disable it.
42 //
43
44 #define IA32_PF_EC_ID (1u << 4)
45
46 #define SMM_PROFILE_NAME L"SmmProfileData"
47
48 //
49 // CPU generic definition
50 //
51 #define CPUID1_EDX_XD_SUPPORT 0x100000
52 #define MSR_EFER 0xc0000080
53 #define MSR_EFER_XD 0x800
54
55 #define CPUID1_EDX_BTS_AVAILABLE 0x200000
56
57 #define DR6_SINGLE_STEP 0x4000
58 #define RFLAG_TF 0x100
59
60 #define MSR_DEBUG_CTL 0x1D9
61 #define MSR_DEBUG_CTL_LBR 0x1
62 #define MSR_DEBUG_CTL_TR 0x40
63 #define MSR_DEBUG_CTL_BTS 0x80
64 #define MSR_DEBUG_CTL_BTINT 0x100
65 #define MSR_DS_AREA 0x600
66
67 #define HEAP_GUARD_NONSTOP_MODE \
68 ((PcdGet8 (PcdHeapGuardPropertyMask) & (BIT6|BIT3|BIT2)) > BIT6)
69
70 #define NULL_DETECTION_NONSTOP_MODE \
71 ((PcdGet8 (PcdNullPointerDetectionPropertyMask) & (BIT6|BIT1)) > BIT6)
72
73 typedef struct {
74 EFI_PHYSICAL_ADDRESS Base;
75 EFI_PHYSICAL_ADDRESS Top;
76 } MEMORY_RANGE;
77
78 typedef struct {
79 MEMORY_RANGE Range;
80 BOOLEAN Present;
81 BOOLEAN Nx;
82 } MEMORY_PROTECTION_RANGE;
83
84 typedef struct {
85 UINT64 HeaderSize;
86 UINT64 MaxDataEntries;
87 UINT64 MaxDataSize;
88 UINT64 CurDataEntries;
89 UINT64 CurDataSize;
90 UINT64 TsegStart;
91 UINT64 TsegSize;
92 UINT64 NumSmis;
93 UINT64 NumCpus;
94 } SMM_PROFILE_HEADER;
95
96 typedef struct {
97 UINT64 SmiNum;
98 UINT64 CpuNum;
99 UINT64 ApicId;
100 UINT64 ErrorCode;
101 UINT64 Instruction;
102 UINT64 Address;
103 UINT64 SmiCmd;
104 } SMM_PROFILE_ENTRY;
105
106 extern SMM_S3_RESUME_STATE *mSmmS3ResumeState;
107 extern UINTN gSmiExceptionHandlers[];
108 extern BOOLEAN mXdSupported;
109 X86_ASSEMBLY_PATCH_LABEL gPatchXdSupported;
110 extern UINTN *mPFEntryCount;
111 extern UINT64 (*mLastPFEntryValue)[MAX_PF_ENTRY_COUNT];
112 extern UINT64 *(*mLastPFEntryPointer)[MAX_PF_ENTRY_COUNT];
113
114 //
115 // Internal functions
116 //
117
118 /**
119 Update IDT table to replace page fault handler and INT 1 handler.
120
121 **/
122 VOID
123 InitIdtr (
124 VOID
125 );
126
127 /**
128 Check if the memory address will be mapped by 4KB-page.
129
130 @param Address The address of Memory.
131
132 **/
133 BOOLEAN
134 IsAddressSplit (
135 IN EFI_PHYSICAL_ADDRESS Address
136 );
137
138 /**
139 Check if the memory address will be mapped by 4KB-page.
140
141 @param Address The address of Memory.
142 @param Nx The flag indicates if the memory is execute-disable.
143
144 **/
145 BOOLEAN
146 IsAddressValid (
147 IN EFI_PHYSICAL_ADDRESS Address,
148 IN BOOLEAN *Nx
149 );
150
151 /**
152 Page Fault handler for SMM use.
153
154 **/
155 VOID
156 SmiDefaultPFHandler (
157 VOID
158 );
159
160 /**
161 Clear TF in FLAGS.
162
163 @param SystemContext A pointer to the processor context when
164 the interrupt occurred on the processor.
165
166 **/
167 VOID
168 ClearTrapFlag (
169 IN OUT EFI_SYSTEM_CONTEXT SystemContext
170 );
171
172 #endif // _SMM_PROFILE_H_