]> git.proxmox.com Git - mirror_edk2.git/blame - UefiCpuPkg/Include/Library/MtrrLib.h
UefiCpuPkg/MtrrLib: Add PCD PcdCpuNumberOfReservedVariableMtrrs
[mirror_edk2.git] / UefiCpuPkg / Include / Library / MtrrLib.h
CommitLineData
e50466da 1/** @file\r
2 MTRR setting library\r
3\r
46309b11 4 Copyright (c) 2008 - 2015, Intel Corporation. All rights reserved.<BR>\r
01a1c0fc 5 This program and the accompanying materials\r
e50466da 6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#ifndef _MTRR_LIB_H_\r
16#define _MTRR_LIB_H_\r
17\r
18//\r
19// According to IA32 SDM, MTRRs number and msr offset are always consistent\r
20// for IA32 processor family\r
21//\r
3b9be416
JY
22\r
23//\r
3ba736f3 24// The semantics of below macro is MAX_MTRR_NUMBER_OF_VARIABLE_MTRR, the real number can be read out from MTRR_CAP register.\r
3b9be416 25//\r
3ba736f3 26#define MTRR_NUMBER_OF_VARIABLE_MTRR 32\r
3b9be416
JY
27//\r
28// Firmware need reserve 2 MTRR for OS\r
46309b11 29// Note: It is replaced by PCD PcdCpuNumberOfReservedVariableMtrrs\r
3b9be416
JY
30//\r
31#define RESERVED_FIRMWARE_VARIABLE_MTRR_NUMBER 2\r
32\r
e50466da 33#define MTRR_NUMBER_OF_FIXED_MTRR 11\r
3ba736f3
JY
34//\r
35// Below macro is deprecated, and should not be used.\r
36//\r
37#define FIRMWARE_VARIABLE_MTRR_NUMBER 6\r
3b9be416
JY
38#define MTRR_LIB_IA32_MTRR_CAP 0x0FE\r
39#define MTRR_LIB_IA32_MTRR_CAP_VCNT_MASK 0x0FF\r
e50466da 40#define MTRR_LIB_IA32_MTRR_FIX64K_00000 0x250\r
41#define MTRR_LIB_IA32_MTRR_FIX16K_80000 0x258\r
42#define MTRR_LIB_IA32_MTRR_FIX16K_A0000 0x259\r
43#define MTRR_LIB_IA32_MTRR_FIX4K_C0000 0x268\r
44#define MTRR_LIB_IA32_MTRR_FIX4K_C8000 0x269\r
45#define MTRR_LIB_IA32_MTRR_FIX4K_D0000 0x26A\r
46#define MTRR_LIB_IA32_MTRR_FIX4K_D8000 0x26B\r
47#define MTRR_LIB_IA32_MTRR_FIX4K_E0000 0x26C\r
48#define MTRR_LIB_IA32_MTRR_FIX4K_E8000 0x26D\r
49#define MTRR_LIB_IA32_MTRR_FIX4K_F0000 0x26E\r
50#define MTRR_LIB_IA32_MTRR_FIX4K_F8000 0x26F\r
51#define MTRR_LIB_IA32_VARIABLE_MTRR_BASE 0x200\r
3ba736f3
JY
52//\r
53// Below macro is deprecated, and should not be used.\r
54//\r
55#define MTRR_LIB_IA32_VARIABLE_MTRR_END 0x20F\r
e50466da 56#define MTRR_LIB_IA32_MTRR_DEF_TYPE 0x2FF\r
57#define MTRR_LIB_MSR_VALID_MASK 0xFFFFFFFFFULL\r
58#define MTRR_LIB_CACHE_VALID_ADDRESS 0xFFFFFF000ULL\r
59#define MTRR_LIB_CACHE_MTRR_ENABLED 0x800\r
60#define MTRR_LIB_CACHE_FIXED_MTRR_ENABLED 0x400\r
61\r
62//\r
63// Structure to describe a fixed MTRR\r
64//\r
65typedef struct {\r
66 UINT32 Msr;\r
67 UINT32 BaseAddress;\r
68 UINT32 Length;\r
69} FIXED_MTRR;\r
70\r
71//\r
72// Structure to describe a variable MTRR\r
73//\r
74typedef struct {\r
75 UINT64 BaseAddress;\r
76 UINT64 Length;\r
77 UINT64 Type;\r
78 UINT32 Msr;\r
79 BOOLEAN Valid;\r
80 BOOLEAN Used;\r
81} VARIABLE_MTRR;\r
82\r
83//\r
84// Structure to hold base and mask pair for variable MTRR register\r
85//\r
86typedef struct _MTRR_VARIABLE_SETTING_ {\r
87 UINT64 Base;\r
88 UINT64 Mask;\r
89} MTRR_VARIABLE_SETTING;\r
90\r
91//\r
92// Array for variable MTRRs\r
93//\r
94typedef struct _MTRR_VARIABLE_SETTINGS_ {\r
3ba736f3 95 MTRR_VARIABLE_SETTING Mtrr[MTRR_NUMBER_OF_VARIABLE_MTRR];\r
e50466da 96} MTRR_VARIABLE_SETTINGS;\r
97\r
98//\r
99// Array for fixed mtrrs\r
100//\r
101typedef struct _MTRR_FIXED_SETTINGS_ {\r
102 UINT64 Mtrr[MTRR_NUMBER_OF_FIXED_MTRR];\r
103} MTRR_FIXED_SETTINGS;\r
104\r
105//\r
106// Structure to hold all MTRRs\r
107//\r
108typedef struct _MTRR_SETTINGS_ {\r
109 MTRR_FIXED_SETTINGS Fixed;\r
110 MTRR_VARIABLE_SETTINGS Variables;\r
111 UINT64 MtrrDefType;\r
112} MTRR_SETTINGS;\r
113\r
114//\r
115// Memory cache types\r
116//\r
117typedef enum {\r
118 CacheUncacheable = 0,\r
119 CacheWriteCombining = 1,\r
120 CacheWriteThrough = 4,\r
121 CacheWriteProtected = 5,\r
122 CacheWriteBack = 6\r
123} MTRR_MEMORY_CACHE_TYPE;\r
124\r
125#define MTRR_CACHE_UNCACHEABLE 0\r
126#define MTRR_CACHE_WRITE_COMBINING 1\r
127#define MTRR_CACHE_WRITE_THROUGH 4\r
128#define MTRR_CACHE_WRITE_PROTECTED 5\r
129#define MTRR_CACHE_WRITE_BACK 6\r
130#define MTRR_CACHE_INVALID_TYPE 7\r
131\r
3b9be416
JY
132/**\r
133 Returns the variable MTRR count for the CPU.\r
134\r
135 @return Variable MTRR count\r
136\r
137**/\r
138UINT32\r
ed8dfd7b 139EFIAPI\r
3b9be416
JY
140GetVariableMtrrCount (\r
141 VOID\r
142 );\r
143\r
144/**\r
145 Returns the firmware usable variable MTRR count for the CPU.\r
146\r
147 @return Firmware usable variable MTRR count\r
148\r
149**/\r
150UINT32\r
ed8dfd7b 151EFIAPI\r
3b9be416
JY
152GetFirmwareVariableMtrrCount (\r
153 VOID\r
154 );\r
155\r
e50466da 156/**\r
157 This function attempts to set the attributes for a memory range.\r
158\r
159 @param BaseAddress The physical address that is the start address of a memory region.\r
160 @param Length The size in bytes of the memory region.\r
161 @param Attributes The bit mask of attributes to set for the memory region.\r
162\r
163 @retval RETURN_SUCCESS The attributes were set for the memory region.\r
164 @retval RETURN_INVALID_PARAMETER Length is zero.\r
165 @retval RETURN_UNSUPPORTED The processor does not support one or more bytes of the\r
166 memory resource range specified by BaseAddress and Length.\r
167 @retval RETURN_UNSUPPORTED The bit mask of attributes is not support for the memory resource\r
168 range specified by BaseAddress and Length.\r
169 @retval RETURN_ACCESS_DENIED The attributes for the memory resource range specified by\r
170 BaseAddress and Length cannot be modified.\r
171 @retval RETURN_OUT_OF_RESOURCES There are not enough system resources to modify the attributes of\r
172 the memory resource range.\r
173\r
174**/\r
175RETURN_STATUS\r
176EFIAPI\r
177MtrrSetMemoryAttribute (\r
178 IN PHYSICAL_ADDRESS BaseAddress,\r
179 IN UINT64 Length,\r
180 IN MTRR_MEMORY_CACHE_TYPE Attribute\r
181 );\r
182\r
183\r
184/**\r
185 This function will get the memory cache type of the specific address.\r
186 This function is mainly for debugging purposes.\r
187\r
188 @param Address The specific address\r
189\r
190 @return The memory cache type of the specific address\r
191\r
192**/\r
193MTRR_MEMORY_CACHE_TYPE\r
194EFIAPI\r
195MtrrGetMemoryAttribute (\r
196 IN PHYSICAL_ADDRESS Address\r
197 );\r
198\r
199\r
200/**\r
201 This function will get the raw value in variable MTRRs\r
202\r
203 @param VariableSettings A buffer to hold variable MTRRs content.\r
204\r
205 @return The buffer point to MTRR_VARIABLE_SETTINGS in which holds the content of the variable mtrr\r
206\r
207**/\r
208MTRR_VARIABLE_SETTINGS*\r
209EFIAPI\r
210MtrrGetVariableMtrr (\r
211 OUT MTRR_VARIABLE_SETTINGS *VariableSettings\r
212 );\r
213\r
214\r
215/**\r
216 This function sets fixed MTRRs\r
217\r
218 @param VariableSettings A buffer to hold variable MTRRs content.\r
219\r
220 @return The pointer of VariableSettings\r
221\r
222**/\r
223MTRR_VARIABLE_SETTINGS*\r
224EFIAPI\r
225MtrrSetVariableMtrr (\r
226 IN MTRR_VARIABLE_SETTINGS *VariableSettings\r
227 );\r
228\r
229\r
230/**\r
231 This function gets the content in fixed MTRRs\r
232\r
233 @param FixedSettings A buffer to hold fixed MTRRs content.\r
234\r
235 @return The pointer of FixedSettings\r
236\r
237**/\r
238MTRR_FIXED_SETTINGS*\r
239EFIAPI\r
240MtrrGetFixedMtrr (\r
241 OUT MTRR_FIXED_SETTINGS *FixedSettings\r
242 );\r
243\r
244\r
245/**\r
246 This function sets fixed MTRRs\r
247\r
248 @param FixedSettings A buffer holding fixed MTRRs content.\r
249\r
250 @return The pointer of FixedSettings\r
251\r
252**/\r
253MTRR_FIXED_SETTINGS*\r
254EFIAPI\r
255MtrrSetFixedMtrr (\r
256 IN MTRR_FIXED_SETTINGS *FixedSettings\r
257 );\r
258\r
259\r
260/**\r
261 This function gets the content in all MTRRs (variable and fixed)\r
262\r
263 @param MtrrSetting A buffer to hold all MTRRs content.\r
264\r
265 @return The pointer of MtrrSetting\r
266\r
267**/\r
268MTRR_SETTINGS *\r
269EFIAPI\r
270MtrrGetAllMtrrs (\r
271 OUT MTRR_SETTINGS *MtrrSetting\r
272 );\r
273\r
274\r
275/**\r
276 This function sets all MTRRs (variable and fixed)\r
277\r
278 @param MtrrSetting A buffer to hold all MTRRs content.\r
279\r
280 @return The pointer of MtrrSetting\r
281\r
282**/\r
283MTRR_SETTINGS *\r
284EFIAPI\r
285MtrrSetAllMtrrs (\r
286 IN MTRR_SETTINGS *MtrrSetting\r
287 );\r
288\r
289\r
290/**\r
291 Get the attribute of variable MTRRs.\r
292\r
293 This function shadows the content of variable MTRRs into\r
294 an internal array: VariableMtrr\r
295\r
3ba736f3
JY
296 @param MtrrValidBitsMask The mask for the valid bit of the MTRR\r
297 @param MtrrValidAddressMask The valid address mask for MTRR since the base address in\r
298 MTRR must align to 4K, so valid address mask equal to\r
299 MtrrValidBitsMask & 0xfffffffffffff000ULL\r
300 @param VariableMtrr The array to shadow variable MTRRs content\r
301 @return The ruturn value of this paramter indicates the number of\r
302 MTRRs which has been used.\r
e50466da 303**/\r
3ba736f3 304UINT32\r
e50466da 305EFIAPI\r
306MtrrGetMemoryAttributeInVariableMtrr (\r
307 IN UINT64 MtrrValidBitsMask,\r
308 IN UINT64 MtrrValidAddressMask,\r
309 OUT VARIABLE_MTRR *VariableMtrr\r
310 );\r
311\r
312\r
313/**\r
314 This function prints all MTRRs for debugging.\r
315**/\r
316VOID\r
ed8dfd7b 317EFIAPI\r
e50466da 318MtrrDebugPrintAllMtrrs (\r
430fbbe0 319 VOID\r
e50466da 320 );\r
321\r
947a573a 322/**\r
323 Checks if MTRR is supported.\r
324\r
325 @retval TRUE MTRR is supported.\r
326 @retval FALSE MTRR is not supported.\r
327\r
328**/\r
329BOOLEAN\r
ed8dfd7b 330EFIAPI\r
947a573a 331IsMtrrSupported (\r
332 VOID\r
333 );\r
334\r
91ec7824 335/**\r
336 Returns the default MTRR cache type for the system.\r
337\r
338 @return The default MTRR cache type.\r
339\r
340**/\r
341MTRR_MEMORY_CACHE_TYPE\r
342EFIAPI\r
343MtrrGetDefaultMemoryType (\r
344 VOID\r
345 );\r
346\r
e50466da 347#endif // _MTRR_LIB_H_\r