]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Library/BaseLib.h
MdePkg: Change OPTIONAL keyword usage style
[mirror_edk2.git] / MdePkg / Include / Library / BaseLib.h
CommitLineData
ac644614 1/** @file\r
50a64e5b 2 Provides string functions, linked list functions, math functions, synchronization\r
ae591c14 3 functions, file path functions, and CPU architecture-specific functions.\r
ac644614 4\r
4ac02962 5Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.<BR>\r
9df063a0 6Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>\r
3b5a58c5 7Copyright (c) Microsoft Corporation.<BR>\r
7601b251
AC
8Portions Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>\r
9\r
9344f092 10SPDX-License-Identifier: BSD-2-Clause-Patent\r
ac644614 11\r
12**/\r
13\r
14#ifndef __BASE_LIB__\r
15#define __BASE_LIB__\r
16\r
1106ffe1 17//\r
1a2f870c 18// Definitions for architecture-specific types\r
1106ffe1 19//\r
ac644614 20#if defined (MDE_CPU_IA32)\r
fc30687f 21///\r
af2dc6a7 22/// The IA-32 architecture context buffer used by SetJump() and LongJump().\r
fc30687f 23///\r
ac644614 24typedef struct {\r
25 UINT32 Ebx;\r
26 UINT32 Esi;\r
27 UINT32 Edi;\r
28 UINT32 Ebp;\r
29 UINT32 Esp;\r
30 UINT32 Eip;\r
0aac2f77 31 UINT32 Ssp;\r
ac644614 32} BASE_LIBRARY_JUMP_BUFFER;\r
33\r
34#define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 4\r
35\r
aa4df547 36#endif // defined (MDE_CPU_IA32)\r
37\r
aa4df547 38#if defined (MDE_CPU_X64)\r
fc30687f 39///\r
af2dc6a7 40/// The x64 architecture context buffer used by SetJump() and LongJump().\r
fc30687f 41///\r
ac644614 42typedef struct {\r
43 UINT64 Rbx;\r
44 UINT64 Rsp;\r
45 UINT64 Rbp;\r
46 UINT64 Rdi;\r
47 UINT64 Rsi;\r
48 UINT64 R12;\r
49 UINT64 R13;\r
50 UINT64 R14;\r
51 UINT64 R15;\r
52 UINT64 Rip;\r
9b9641c6 53 UINT64 MxCsr;\r
af2dc6a7 54 UINT8 XmmBuffer[160]; ///< XMM6-XMM15.\r
0aac2f77 55 UINT64 Ssp;\r
ac644614 56} BASE_LIBRARY_JUMP_BUFFER;\r
57\r
58#define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 8\r
59\r
aa4df547 60#endif // defined (MDE_CPU_X64)\r
61\r
62#if defined (MDE_CPU_EBC)\r
fc30687f 63///\r
af2dc6a7 64/// The EBC context buffer used by SetJump() and LongJump().\r
fc30687f 65///\r
ac644614 66typedef struct {\r
67 UINT64 R0;\r
68 UINT64 R1;\r
69 UINT64 R2;\r
70 UINT64 R3;\r
71 UINT64 IP;\r
72} BASE_LIBRARY_JUMP_BUFFER;\r
73\r
74#define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 8\r
75\r
aa4df547 76#endif // defined (MDE_CPU_EBC)\r
ac644614 77\r
ebd04fc2 78#if defined (MDE_CPU_ARM)\r
79\r
80typedef struct {\r
af2dc6a7 81 UINT32 R3; ///< A copy of R13.\r
01a54966 82 UINT32 R4;\r
83 UINT32 R5;\r
84 UINT32 R6;\r
85 UINT32 R7;\r
86 UINT32 R8;\r
87 UINT32 R9;\r
88 UINT32 R10;\r
89 UINT32 R11;\r
90 UINT32 R12;\r
91 UINT32 R14;\r
ebd04fc2 92} BASE_LIBRARY_JUMP_BUFFER;\r
93\r
94#define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 4\r
95\r
96#endif // defined (MDE_CPU_ARM)\r
97\r
807e2604
HL
98#if defined (MDE_CPU_AARCH64)\r
99typedef struct {\r
100 // GP regs\r
101 UINT64 X19;\r
102 UINT64 X20;\r
103 UINT64 X21;\r
104 UINT64 X22;\r
105 UINT64 X23;\r
106 UINT64 X24;\r
107 UINT64 X25;\r
108 UINT64 X26;\r
109 UINT64 X27;\r
110 UINT64 X28;\r
111 UINT64 FP;\r
112 UINT64 LR;\r
113 UINT64 IP0;\r
114\r
115 // FP regs\r
116 UINT64 D8;\r
117 UINT64 D9;\r
118 UINT64 D10;\r
119 UINT64 D11;\r
120 UINT64 D12;\r
121 UINT64 D13;\r
122 UINT64 D14;\r
123 UINT64 D15;\r
124} BASE_LIBRARY_JUMP_BUFFER;\r
125\r
126#define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 8\r
127\r
128#endif // defined (MDE_CPU_AARCH64)\r
129\r
7601b251
AC
130#if defined (MDE_CPU_RISCV64)\r
131///\r
132/// The RISC-V architecture context buffer used by SetJump() and LongJump().\r
133///\r
134typedef struct {\r
135 UINT64 RA;\r
136 UINT64 S0;\r
137 UINT64 S1;\r
138 UINT64 S2;\r
139 UINT64 S3;\r
140 UINT64 S4;\r
141 UINT64 S5;\r
142 UINT64 S6;\r
143 UINT64 S7;\r
144 UINT64 S8;\r
145 UINT64 S9;\r
146 UINT64 S10;\r
147 UINT64 S11;\r
148 UINT64 SP;\r
149} BASE_LIBRARY_JUMP_BUFFER;\r
150\r
151#define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 8\r
152\r
153#endif // defined (MDE_CPU_RISCV64)\r
807e2604 154\r
ac644614 155//\r
156// String Services\r
157//\r
158\r
c058d59f
JY
159\r
160/**\r
161 Returns the length of a Null-terminated Unicode string.\r
162\r
328f84b1
JY
163 This function is similar as strlen_s defined in C11.\r
164\r
c058d59f
JY
165 If String is not aligned on a 16-bit boundary, then ASSERT().\r
166\r
167 @param String A pointer to a Null-terminated Unicode string.\r
168 @param MaxSize The maximum number of Destination Unicode\r
169 char, including terminating null char.\r
170\r
171 @retval 0 If String is NULL.\r
172 @retval MaxSize If there is no null character in the first MaxSize characters of String.\r
173 @return The number of characters that percede the terminating null character.\r
174\r
175**/\r
176UINTN\r
177EFIAPI\r
178StrnLenS (\r
179 IN CONST CHAR16 *String,\r
180 IN UINTN MaxSize\r
181 );\r
182\r
b590e43a
HW
183/**\r
184 Returns the size of a Null-terminated Unicode string in bytes, including the\r
185 Null terminator.\r
186\r
187 This function returns the size of the Null-terminated Unicode string\r
188 specified by String in bytes, including the Null terminator.\r
189\r
190 If String is not aligned on a 16-bit boundary, then ASSERT().\r
191\r
192 @param String A pointer to a Null-terminated Unicode string.\r
193 @param MaxSize The maximum number of Destination Unicode\r
194 char, including the Null terminator.\r
195\r
196 @retval 0 If String is NULL.\r
197 @retval (sizeof (CHAR16) * (MaxSize + 1))\r
198 If there is no Null terminator in the first MaxSize characters of\r
199 String.\r
200 @return The size of the Null-terminated Unicode string in bytes, including\r
201 the Null terminator.\r
202\r
203**/\r
204UINTN\r
205EFIAPI\r
206StrnSizeS (\r
207 IN CONST CHAR16 *String,\r
208 IN UINTN MaxSize\r
209 );\r
210\r
c058d59f
JY
211/**\r
212 Copies the string pointed to by Source (including the terminating null char)\r
213 to the array pointed to by Destination.\r
214\r
328f84b1
JY
215 This function is similar as strcpy_s defined in C11.\r
216\r
c058d59f
JY
217 If Destination is not aligned on a 16-bit boundary, then ASSERT().\r
218 If Source is not aligned on a 16-bit boundary, then ASSERT().\r
219\r
328f84b1
JY
220 If an error is returned, then the Destination is unmodified.\r
221\r
c058d59f
JY
222 @param Destination A pointer to a Null-terminated Unicode string.\r
223 @param DestMax The maximum number of Destination Unicode\r
224 char, including terminating null char.\r
225 @param Source A pointer to a Null-terminated Unicode string.\r
226\r
227 @retval RETURN_SUCCESS String is copied.\r
228 @retval RETURN_BUFFER_TOO_SMALL If DestMax is NOT greater than StrLen(Source).\r
229 @retval RETURN_INVALID_PARAMETER If Destination is NULL.\r
230 If Source is NULL.\r
231 If PcdMaximumUnicodeStringLength is not zero,\r
9095d37b 232 and DestMax is greater than\r
c058d59f
JY
233 PcdMaximumUnicodeStringLength.\r
234 If DestMax is 0.\r
235 @retval RETURN_ACCESS_DENIED If Source and Destination overlap.\r
236**/\r
237RETURN_STATUS\r
238EFIAPI\r
239StrCpyS (\r
240 OUT CHAR16 *Destination,\r
241 IN UINTN DestMax,\r
242 IN CONST CHAR16 *Source\r
243 );\r
244\r
245/**\r
246 Copies not more than Length successive char from the string pointed to by\r
247 Source to the array pointed to by Destination. If no null char is copied from\r
248 Source, then Destination[Length] is always set to null.\r
249\r
328f84b1
JY
250 This function is similar as strncpy_s defined in C11.\r
251\r
c058d59f
JY
252 If Length > 0 and Destination is not aligned on a 16-bit boundary, then ASSERT().\r
253 If Length > 0 and Source is not aligned on a 16-bit boundary, then ASSERT().\r
254\r
328f84b1
JY
255 If an error is returned, then the Destination is unmodified.\r
256\r
c058d59f
JY
257 @param Destination A pointer to a Null-terminated Unicode string.\r
258 @param DestMax The maximum number of Destination Unicode\r
259 char, including terminating null char.\r
260 @param Source A pointer to a Null-terminated Unicode string.\r
261 @param Length The maximum number of Unicode characters to copy.\r
262\r
263 @retval RETURN_SUCCESS String is copied.\r
9095d37b 264 @retval RETURN_BUFFER_TOO_SMALL If DestMax is NOT greater than\r
c058d59f
JY
265 MIN(StrLen(Source), Length).\r
266 @retval RETURN_INVALID_PARAMETER If Destination is NULL.\r
267 If Source is NULL.\r
268 If PcdMaximumUnicodeStringLength is not zero,\r
9095d37b 269 and DestMax is greater than\r
c058d59f
JY
270 PcdMaximumUnicodeStringLength.\r
271 If DestMax is 0.\r
272 @retval RETURN_ACCESS_DENIED If Source and Destination overlap.\r
273**/\r
274RETURN_STATUS\r
275EFIAPI\r
276StrnCpyS (\r
277 OUT CHAR16 *Destination,\r
278 IN UINTN DestMax,\r
279 IN CONST CHAR16 *Source,\r
280 IN UINTN Length\r
281 );\r
282\r
283/**\r
284 Appends a copy of the string pointed to by Source (including the terminating\r
285 null char) to the end of the string pointed to by Destination.\r
286\r
328f84b1
JY
287 This function is similar as strcat_s defined in C11.\r
288\r
c058d59f
JY
289 If Destination is not aligned on a 16-bit boundary, then ASSERT().\r
290 If Source is not aligned on a 16-bit boundary, then ASSERT().\r
291\r
328f84b1
JY
292 If an error is returned, then the Destination is unmodified.\r
293\r
c058d59f
JY
294 @param Destination A pointer to a Null-terminated Unicode string.\r
295 @param DestMax The maximum number of Destination Unicode\r
296 char, including terminating null char.\r
297 @param Source A pointer to a Null-terminated Unicode string.\r
298\r
299 @retval RETURN_SUCCESS String is appended.\r
9095d37b 300 @retval RETURN_BAD_BUFFER_SIZE If DestMax is NOT greater than\r
c058d59f
JY
301 StrLen(Destination).\r
302 @retval RETURN_BUFFER_TOO_SMALL If (DestMax - StrLen(Destination)) is NOT\r
303 greater than StrLen(Source).\r
304 @retval RETURN_INVALID_PARAMETER If Destination is NULL.\r
305 If Source is NULL.\r
306 If PcdMaximumUnicodeStringLength is not zero,\r
9095d37b 307 and DestMax is greater than\r
c058d59f
JY
308 PcdMaximumUnicodeStringLength.\r
309 If DestMax is 0.\r
310 @retval RETURN_ACCESS_DENIED If Source and Destination overlap.\r
311**/\r
312RETURN_STATUS\r
313EFIAPI\r
314StrCatS (\r
315 IN OUT CHAR16 *Destination,\r
316 IN UINTN DestMax,\r
317 IN CONST CHAR16 *Source\r
318 );\r
319\r
320/**\r
321 Appends not more than Length successive char from the string pointed to by\r
322 Source to the end of the string pointed to by Destination. If no null char is\r
323 copied from Source, then Destination[StrLen(Destination) + Length] is always\r
324 set to null.\r
325\r
328f84b1
JY
326 This function is similar as strncat_s defined in C11.\r
327\r
c058d59f 328 If Destination is not aligned on a 16-bit boundary, then ASSERT().\r
0e93edbb 329 If Source is not aligned on a 16-bit boundary, then ASSERT().\r
c058d59f 330\r
328f84b1
JY
331 If an error is returned, then the Destination is unmodified.\r
332\r
c058d59f
JY
333 @param Destination A pointer to a Null-terminated Unicode string.\r
334 @param DestMax The maximum number of Destination Unicode\r
335 char, including terminating null char.\r
336 @param Source A pointer to a Null-terminated Unicode string.\r
337 @param Length The maximum number of Unicode characters to copy.\r
338\r
339 @retval RETURN_SUCCESS String is appended.\r
340 @retval RETURN_BAD_BUFFER_SIZE If DestMax is NOT greater than\r
341 StrLen(Destination).\r
342 @retval RETURN_BUFFER_TOO_SMALL If (DestMax - StrLen(Destination)) is NOT\r
343 greater than MIN(StrLen(Source), Length).\r
344 @retval RETURN_INVALID_PARAMETER If Destination is NULL.\r
345 If Source is NULL.\r
346 If PcdMaximumUnicodeStringLength is not zero,\r
9095d37b 347 and DestMax is greater than\r
c058d59f
JY
348 PcdMaximumUnicodeStringLength.\r
349 If DestMax is 0.\r
350 @retval RETURN_ACCESS_DENIED If Source and Destination overlap.\r
351**/\r
352RETURN_STATUS\r
353EFIAPI\r
354StrnCatS (\r
355 IN OUT CHAR16 *Destination,\r
356 IN UINTN DestMax,\r
357 IN CONST CHAR16 *Source,\r
358 IN UINTN Length\r
359 );\r
360\r
d8af3301
HW
361/**\r
362 Convert a Null-terminated Unicode decimal string to a value of type UINTN.\r
363\r
364 This function outputs a value of type UINTN by interpreting the contents of\r
365 the Unicode string specified by String as a decimal number. The format of the\r
366 input Unicode string String is:\r
367\r
368 [spaces] [decimal digits].\r
369\r
370 The valid decimal digit character is in the range [0-9]. The function will\r
371 ignore the pad space, which includes spaces or tab characters, before\r
372 [decimal digits]. The running zero in the beginning of [decimal digits] will\r
373 be ignored. Then, the function stops at the first character that is a not a\r
374 valid decimal character or a Null-terminator, whichever one comes first.\r
375\r
d8af3301 376 If String is not aligned in a 16-bit boundary, then ASSERT().\r
d8af3301
HW
377\r
378 If String has no valid decimal digits in the above format, then 0 is stored\r
379 at the location pointed to by Data.\r
380 If the number represented by String exceeds the range defined by UINTN, then\r
381 MAX_UINTN is stored at the location pointed to by Data.\r
382\r
383 If EndPointer is not NULL, a pointer to the character that stopped the scan\r
384 is stored at the location pointed to by EndPointer. If String has no valid\r
385 decimal digits right after the optional pad spaces, the value of String is\r
386 stored at the location pointed to by EndPointer.\r
387\r
388 @param String Pointer to a Null-terminated Unicode string.\r
389 @param EndPointer Pointer to character that stops scan.\r
390 @param Data Pointer to the converted value.\r
391\r
392 @retval RETURN_SUCCESS Value is translated from String.\r
393 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
394 If Data is NULL.\r
395 If PcdMaximumUnicodeStringLength is not\r
396 zero, and String contains more than\r
397 PcdMaximumUnicodeStringLength Unicode\r
398 characters, not including the\r
399 Null-terminator.\r
400 @retval RETURN_UNSUPPORTED If the number represented by String exceeds\r
401 the range defined by UINTN.\r
402\r
403**/\r
404RETURN_STATUS\r
405EFIAPI\r
406StrDecimalToUintnS (\r
407 IN CONST CHAR16 *String,\r
d0e2f823 408 OUT CHAR16 **EndPointer OPTIONAL,\r
d8af3301
HW
409 OUT UINTN *Data\r
410 );\r
411\r
412/**\r
413 Convert a Null-terminated Unicode decimal string to a value of type UINT64.\r
414\r
415 This function outputs a value of type UINT64 by interpreting the contents of\r
416 the Unicode string specified by String as a decimal number. The format of the\r
417 input Unicode string String is:\r
418\r
419 [spaces] [decimal digits].\r
420\r
421 The valid decimal digit character is in the range [0-9]. The function will\r
422 ignore the pad space, which includes spaces or tab characters, before\r
423 [decimal digits]. The running zero in the beginning of [decimal digits] will\r
424 be ignored. Then, the function stops at the first character that is a not a\r
425 valid decimal character or a Null-terminator, whichever one comes first.\r
426\r
d8af3301 427 If String is not aligned in a 16-bit boundary, then ASSERT().\r
d8af3301
HW
428\r
429 If String has no valid decimal digits in the above format, then 0 is stored\r
430 at the location pointed to by Data.\r
431 If the number represented by String exceeds the range defined by UINT64, then\r
432 MAX_UINT64 is stored at the location pointed to by Data.\r
433\r
434 If EndPointer is not NULL, a pointer to the character that stopped the scan\r
435 is stored at the location pointed to by EndPointer. If String has no valid\r
436 decimal digits right after the optional pad spaces, the value of String is\r
437 stored at the location pointed to by EndPointer.\r
438\r
439 @param String Pointer to a Null-terminated Unicode string.\r
440 @param EndPointer Pointer to character that stops scan.\r
441 @param Data Pointer to the converted value.\r
442\r
443 @retval RETURN_SUCCESS Value is translated from String.\r
444 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
445 If Data is NULL.\r
446 If PcdMaximumUnicodeStringLength is not\r
447 zero, and String contains more than\r
448 PcdMaximumUnicodeStringLength Unicode\r
449 characters, not including the\r
450 Null-terminator.\r
451 @retval RETURN_UNSUPPORTED If the number represented by String exceeds\r
452 the range defined by UINT64.\r
453\r
454**/\r
455RETURN_STATUS\r
456EFIAPI\r
457StrDecimalToUint64S (\r
458 IN CONST CHAR16 *String,\r
d0e2f823 459 OUT CHAR16 **EndPointer OPTIONAL,\r
d8af3301
HW
460 OUT UINT64 *Data\r
461 );\r
462\r
463/**\r
464 Convert a Null-terminated Unicode hexadecimal string to a value of type\r
465 UINTN.\r
466\r
467 This function outputs a value of type UINTN by interpreting the contents of\r
468 the Unicode string specified by String as a hexadecimal number. The format of\r
469 the input Unicode string String is:\r
470\r
471 [spaces][zeros][x][hexadecimal digits].\r
472\r
473 The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F].\r
474 The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix.\r
475 If "x" appears in the input string, it must be prefixed with at least one 0.\r
476 The function will ignore the pad space, which includes spaces or tab\r
477 characters, before [zeros], [x] or [hexadecimal digit]. The running zero\r
478 before [x] or [hexadecimal digit] will be ignored. Then, the decoding starts\r
479 after [x] or the first valid hexadecimal digit. Then, the function stops at\r
480 the first character that is a not a valid hexadecimal character or NULL,\r
481 whichever one comes first.\r
482\r
d8af3301 483 If String is not aligned in a 16-bit boundary, then ASSERT().\r
d8af3301
HW
484\r
485 If String has no valid hexadecimal digits in the above format, then 0 is\r
486 stored at the location pointed to by Data.\r
487 If the number represented by String exceeds the range defined by UINTN, then\r
488 MAX_UINTN is stored at the location pointed to by Data.\r
489\r
490 If EndPointer is not NULL, a pointer to the character that stopped the scan\r
491 is stored at the location pointed to by EndPointer. If String has no valid\r
492 hexadecimal digits right after the optional pad spaces, the value of String\r
493 is stored at the location pointed to by EndPointer.\r
494\r
495 @param String Pointer to a Null-terminated Unicode string.\r
496 @param EndPointer Pointer to character that stops scan.\r
497 @param Data Pointer to the converted value.\r
498\r
499 @retval RETURN_SUCCESS Value is translated from String.\r
500 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
501 If Data is NULL.\r
502 If PcdMaximumUnicodeStringLength is not\r
503 zero, and String contains more than\r
504 PcdMaximumUnicodeStringLength Unicode\r
505 characters, not including the\r
506 Null-terminator.\r
507 @retval RETURN_UNSUPPORTED If the number represented by String exceeds\r
508 the range defined by UINTN.\r
509\r
510**/\r
511RETURN_STATUS\r
512EFIAPI\r
513StrHexToUintnS (\r
514 IN CONST CHAR16 *String,\r
d0e2f823 515 OUT CHAR16 **EndPointer OPTIONAL,\r
d8af3301
HW
516 OUT UINTN *Data\r
517 );\r
518\r
519/**\r
520 Convert a Null-terminated Unicode hexadecimal string to a value of type\r
521 UINT64.\r
522\r
523 This function outputs a value of type UINT64 by interpreting the contents of\r
524 the Unicode string specified by String as a hexadecimal number. The format of\r
525 the input Unicode string String is:\r
526\r
527 [spaces][zeros][x][hexadecimal digits].\r
528\r
529 The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F].\r
530 The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix.\r
531 If "x" appears in the input string, it must be prefixed with at least one 0.\r
532 The function will ignore the pad space, which includes spaces or tab\r
533 characters, before [zeros], [x] or [hexadecimal digit]. The running zero\r
534 before [x] or [hexadecimal digit] will be ignored. Then, the decoding starts\r
535 after [x] or the first valid hexadecimal digit. Then, the function stops at\r
536 the first character that is a not a valid hexadecimal character or NULL,\r
537 whichever one comes first.\r
538\r
d8af3301 539 If String is not aligned in a 16-bit boundary, then ASSERT().\r
d8af3301
HW
540\r
541 If String has no valid hexadecimal digits in the above format, then 0 is\r
542 stored at the location pointed to by Data.\r
543 If the number represented by String exceeds the range defined by UINT64, then\r
544 MAX_UINT64 is stored at the location pointed to by Data.\r
545\r
546 If EndPointer is not NULL, a pointer to the character that stopped the scan\r
547 is stored at the location pointed to by EndPointer. If String has no valid\r
548 hexadecimal digits right after the optional pad spaces, the value of String\r
549 is stored at the location pointed to by EndPointer.\r
550\r
551 @param String Pointer to a Null-terminated Unicode string.\r
552 @param EndPointer Pointer to character that stops scan.\r
553 @param Data Pointer to the converted value.\r
554\r
555 @retval RETURN_SUCCESS Value is translated from String.\r
556 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
557 If Data is NULL.\r
558 If PcdMaximumUnicodeStringLength is not\r
559 zero, and String contains more than\r
560 PcdMaximumUnicodeStringLength Unicode\r
561 characters, not including the\r
562 Null-terminator.\r
563 @retval RETURN_UNSUPPORTED If the number represented by String exceeds\r
564 the range defined by UINT64.\r
565\r
566**/\r
567RETURN_STATUS\r
568EFIAPI\r
569StrHexToUint64S (\r
570 IN CONST CHAR16 *String,\r
d0e2f823 571 OUT CHAR16 **EndPointer OPTIONAL,\r
d8af3301
HW
572 OUT UINT64 *Data\r
573 );\r
574\r
c058d59f
JY
575/**\r
576 Returns the length of a Null-terminated Ascii string.\r
577\r
328f84b1
JY
578 This function is similar as strlen_s defined in C11.\r
579\r
c058d59f
JY
580 @param String A pointer to a Null-terminated Ascii string.\r
581 @param MaxSize The maximum number of Destination Ascii\r
582 char, including terminating null char.\r
583\r
584 @retval 0 If String is NULL.\r
585 @retval MaxSize If there is no null character in the first MaxSize characters of String.\r
586 @return The number of characters that percede the terminating null character.\r
587\r
588**/\r
589UINTN\r
590EFIAPI\r
591AsciiStrnLenS (\r
592 IN CONST CHAR8 *String,\r
593 IN UINTN MaxSize\r
594 );\r
595\r
b590e43a
HW
596/**\r
597 Returns the size of a Null-terminated Ascii string in bytes, including the\r
598 Null terminator.\r
599\r
600 This function returns the size of the Null-terminated Ascii string specified\r
601 by String in bytes, including the Null terminator.\r
602\r
603 @param String A pointer to a Null-terminated Ascii string.\r
604 @param MaxSize The maximum number of Destination Ascii\r
605 char, including the Null terminator.\r
606\r
607 @retval 0 If String is NULL.\r
608 @retval (sizeof (CHAR8) * (MaxSize + 1))\r
609 If there is no Null terminator in the first MaxSize characters of\r
610 String.\r
611 @return The size of the Null-terminated Ascii string in bytes, including the\r
612 Null terminator.\r
613\r
614**/\r
615UINTN\r
616EFIAPI\r
617AsciiStrnSizeS (\r
618 IN CONST CHAR8 *String,\r
619 IN UINTN MaxSize\r
620 );\r
621\r
c058d59f
JY
622/**\r
623 Copies the string pointed to by Source (including the terminating null char)\r
624 to the array pointed to by Destination.\r
625\r
328f84b1
JY
626 This function is similar as strcpy_s defined in C11.\r
627\r
328f84b1
JY
628 If an error is returned, then the Destination is unmodified.\r
629\r
c058d59f
JY
630 @param Destination A pointer to a Null-terminated Ascii string.\r
631 @param DestMax The maximum number of Destination Ascii\r
632 char, including terminating null char.\r
633 @param Source A pointer to a Null-terminated Ascii string.\r
634\r
635 @retval RETURN_SUCCESS String is copied.\r
636 @retval RETURN_BUFFER_TOO_SMALL If DestMax is NOT greater than StrLen(Source).\r
637 @retval RETURN_INVALID_PARAMETER If Destination is NULL.\r
638 If Source is NULL.\r
639 If PcdMaximumAsciiStringLength is not zero,\r
9095d37b 640 and DestMax is greater than\r
c058d59f
JY
641 PcdMaximumAsciiStringLength.\r
642 If DestMax is 0.\r
643 @retval RETURN_ACCESS_DENIED If Source and Destination overlap.\r
644**/\r
645RETURN_STATUS\r
646EFIAPI\r
647AsciiStrCpyS (\r
648 OUT CHAR8 *Destination,\r
649 IN UINTN DestMax,\r
650 IN CONST CHAR8 *Source\r
651 );\r
652\r
653/**\r
654 Copies not more than Length successive char from the string pointed to by\r
655 Source to the array pointed to by Destination. If no null char is copied from\r
656 Source, then Destination[Length] is always set to null.\r
657\r
328f84b1
JY
658 This function is similar as strncpy_s defined in C11.\r
659\r
328f84b1
JY
660 If an error is returned, then the Destination is unmodified.\r
661\r
c058d59f
JY
662 @param Destination A pointer to a Null-terminated Ascii string.\r
663 @param DestMax The maximum number of Destination Ascii\r
664 char, including terminating null char.\r
665 @param Source A pointer to a Null-terminated Ascii string.\r
666 @param Length The maximum number of Ascii characters to copy.\r
667\r
668 @retval RETURN_SUCCESS String is copied.\r
9095d37b 669 @retval RETURN_BUFFER_TOO_SMALL If DestMax is NOT greater than\r
c058d59f
JY
670 MIN(StrLen(Source), Length).\r
671 @retval RETURN_INVALID_PARAMETER If Destination is NULL.\r
672 If Source is NULL.\r
673 If PcdMaximumAsciiStringLength is not zero,\r
9095d37b 674 and DestMax is greater than\r
c058d59f
JY
675 PcdMaximumAsciiStringLength.\r
676 If DestMax is 0.\r
677 @retval RETURN_ACCESS_DENIED If Source and Destination overlap.\r
678**/\r
679RETURN_STATUS\r
680EFIAPI\r
681AsciiStrnCpyS (\r
682 OUT CHAR8 *Destination,\r
683 IN UINTN DestMax,\r
684 IN CONST CHAR8 *Source,\r
685 IN UINTN Length\r
686 );\r
687\r
688/**\r
689 Appends a copy of the string pointed to by Source (including the terminating\r
690 null char) to the end of the string pointed to by Destination.\r
691\r
328f84b1
JY
692 This function is similar as strcat_s defined in C11.\r
693\r
328f84b1
JY
694 If an error is returned, then the Destination is unmodified.\r
695\r
c058d59f
JY
696 @param Destination A pointer to a Null-terminated Ascii string.\r
697 @param DestMax The maximum number of Destination Ascii\r
698 char, including terminating null char.\r
699 @param Source A pointer to a Null-terminated Ascii string.\r
700\r
701 @retval RETURN_SUCCESS String is appended.\r
9095d37b 702 @retval RETURN_BAD_BUFFER_SIZE If DestMax is NOT greater than\r
c058d59f
JY
703 StrLen(Destination).\r
704 @retval RETURN_BUFFER_TOO_SMALL If (DestMax - StrLen(Destination)) is NOT\r
705 greater than StrLen(Source).\r
706 @retval RETURN_INVALID_PARAMETER If Destination is NULL.\r
707 If Source is NULL.\r
708 If PcdMaximumAsciiStringLength is not zero,\r
9095d37b 709 and DestMax is greater than\r
c058d59f
JY
710 PcdMaximumAsciiStringLength.\r
711 If DestMax is 0.\r
712 @retval RETURN_ACCESS_DENIED If Source and Destination overlap.\r
713**/\r
714RETURN_STATUS\r
715EFIAPI\r
716AsciiStrCatS (\r
717 IN OUT CHAR8 *Destination,\r
718 IN UINTN DestMax,\r
719 IN CONST CHAR8 *Source\r
720 );\r
721\r
722/**\r
723 Appends not more than Length successive char from the string pointed to by\r
724 Source to the end of the string pointed to by Destination. If no null char is\r
725 copied from Source, then Destination[StrLen(Destination) + Length] is always\r
726 set to null.\r
727\r
328f84b1
JY
728 This function is similar as strncat_s defined in C11.\r
729\r
328f84b1
JY
730 If an error is returned, then the Destination is unmodified.\r
731\r
c058d59f
JY
732 @param Destination A pointer to a Null-terminated Ascii string.\r
733 @param DestMax The maximum number of Destination Ascii\r
734 char, including terminating null char.\r
735 @param Source A pointer to a Null-terminated Ascii string.\r
736 @param Length The maximum number of Ascii characters to copy.\r
737\r
738 @retval RETURN_SUCCESS String is appended.\r
739 @retval RETURN_BAD_BUFFER_SIZE If DestMax is NOT greater than\r
740 StrLen(Destination).\r
741 @retval RETURN_BUFFER_TOO_SMALL If (DestMax - StrLen(Destination)) is NOT\r
742 greater than MIN(StrLen(Source), Length).\r
743 @retval RETURN_INVALID_PARAMETER If Destination is NULL.\r
744 If Source is NULL.\r
745 If PcdMaximumAsciiStringLength is not zero,\r
9095d37b 746 and DestMax is greater than\r
c058d59f
JY
747 PcdMaximumAsciiStringLength.\r
748 If DestMax is 0.\r
749 @retval RETURN_ACCESS_DENIED If Source and Destination overlap.\r
750**/\r
751RETURN_STATUS\r
752EFIAPI\r
753AsciiStrnCatS (\r
754 IN OUT CHAR8 *Destination,\r
755 IN UINTN DestMax,\r
756 IN CONST CHAR8 *Source,\r
757 IN UINTN Length\r
758 );\r
759\r
d8af3301
HW
760/**\r
761 Convert a Null-terminated Ascii decimal string to a value of type UINTN.\r
762\r
763 This function outputs a value of type UINTN by interpreting the contents of\r
764 the Ascii string specified by String as a decimal number. The format of the\r
765 input Ascii string String is:\r
766\r
767 [spaces] [decimal digits].\r
768\r
769 The valid decimal digit character is in the range [0-9]. The function will\r
770 ignore the pad space, which includes spaces or tab characters, before\r
771 [decimal digits]. The running zero in the beginning of [decimal digits] will\r
772 be ignored. Then, the function stops at the first character that is a not a\r
773 valid decimal character or a Null-terminator, whichever one comes first.\r
774\r
d8af3301
HW
775 If String has no valid decimal digits in the above format, then 0 is stored\r
776 at the location pointed to by Data.\r
777 If the number represented by String exceeds the range defined by UINTN, then\r
778 MAX_UINTN is stored at the location pointed to by Data.\r
779\r
780 If EndPointer is not NULL, a pointer to the character that stopped the scan\r
781 is stored at the location pointed to by EndPointer. If String has no valid\r
782 decimal digits right after the optional pad spaces, the value of String is\r
783 stored at the location pointed to by EndPointer.\r
784\r
785 @param String Pointer to a Null-terminated Ascii string.\r
786 @param EndPointer Pointer to character that stops scan.\r
787 @param Data Pointer to the converted value.\r
788\r
789 @retval RETURN_SUCCESS Value is translated from String.\r
790 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
791 If Data is NULL.\r
792 If PcdMaximumAsciiStringLength is not zero,\r
793 and String contains more than\r
794 PcdMaximumAsciiStringLength Ascii\r
795 characters, not including the\r
796 Null-terminator.\r
797 @retval RETURN_UNSUPPORTED If the number represented by String exceeds\r
798 the range defined by UINTN.\r
799\r
800**/\r
801RETURN_STATUS\r
802EFIAPI\r
803AsciiStrDecimalToUintnS (\r
804 IN CONST CHAR8 *String,\r
d0e2f823 805 OUT CHAR8 **EndPointer OPTIONAL,\r
d8af3301
HW
806 OUT UINTN *Data\r
807 );\r
808\r
809/**\r
810 Convert a Null-terminated Ascii decimal string to a value of type UINT64.\r
811\r
812 This function outputs a value of type UINT64 by interpreting the contents of\r
813 the Ascii string specified by String as a decimal number. The format of the\r
814 input Ascii string String is:\r
815\r
816 [spaces] [decimal digits].\r
817\r
818 The valid decimal digit character is in the range [0-9]. The function will\r
819 ignore the pad space, which includes spaces or tab characters, before\r
820 [decimal digits]. The running zero in the beginning of [decimal digits] will\r
821 be ignored. Then, the function stops at the first character that is a not a\r
822 valid decimal character or a Null-terminator, whichever one comes first.\r
823\r
d8af3301
HW
824 If String has no valid decimal digits in the above format, then 0 is stored\r
825 at the location pointed to by Data.\r
826 If the number represented by String exceeds the range defined by UINT64, then\r
827 MAX_UINT64 is stored at the location pointed to by Data.\r
828\r
829 If EndPointer is not NULL, a pointer to the character that stopped the scan\r
830 is stored at the location pointed to by EndPointer. If String has no valid\r
831 decimal digits right after the optional pad spaces, the value of String is\r
832 stored at the location pointed to by EndPointer.\r
833\r
834 @param String Pointer to a Null-terminated Ascii string.\r
835 @param EndPointer Pointer to character that stops scan.\r
836 @param Data Pointer to the converted value.\r
837\r
838 @retval RETURN_SUCCESS Value is translated from String.\r
839 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
840 If Data is NULL.\r
841 If PcdMaximumAsciiStringLength is not zero,\r
842 and String contains more than\r
843 PcdMaximumAsciiStringLength Ascii\r
844 characters, not including the\r
845 Null-terminator.\r
846 @retval RETURN_UNSUPPORTED If the number represented by String exceeds\r
847 the range defined by UINT64.\r
848\r
849**/\r
850RETURN_STATUS\r
851EFIAPI\r
852AsciiStrDecimalToUint64S (\r
853 IN CONST CHAR8 *String,\r
d0e2f823 854 OUT CHAR8 **EndPointer OPTIONAL,\r
d8af3301
HW
855 OUT UINT64 *Data\r
856 );\r
857\r
858/**\r
859 Convert a Null-terminated Ascii hexadecimal string to a value of type UINTN.\r
860\r
861 This function outputs a value of type UINTN by interpreting the contents of\r
862 the Ascii string specified by String as a hexadecimal number. The format of\r
863 the input Ascii string String is:\r
864\r
865 [spaces][zeros][x][hexadecimal digits].\r
866\r
867 The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F].\r
868 The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix. If\r
869 "x" appears in the input string, it must be prefixed with at least one 0. The\r
870 function will ignore the pad space, which includes spaces or tab characters,\r
871 before [zeros], [x] or [hexadecimal digits]. The running zero before [x] or\r
872 [hexadecimal digits] will be ignored. Then, the decoding starts after [x] or\r
873 the first valid hexadecimal digit. Then, the function stops at the first\r
874 character that is a not a valid hexadecimal character or Null-terminator,\r
875 whichever on comes first.\r
876\r
d8af3301
HW
877 If String has no valid hexadecimal digits in the above format, then 0 is\r
878 stored at the location pointed to by Data.\r
879 If the number represented by String exceeds the range defined by UINTN, then\r
880 MAX_UINTN is stored at the location pointed to by Data.\r
881\r
882 If EndPointer is not NULL, a pointer to the character that stopped the scan\r
883 is stored at the location pointed to by EndPointer. If String has no valid\r
884 hexadecimal digits right after the optional pad spaces, the value of String\r
885 is stored at the location pointed to by EndPointer.\r
886\r
887 @param String Pointer to a Null-terminated Ascii string.\r
888 @param EndPointer Pointer to character that stops scan.\r
889 @param Data Pointer to the converted value.\r
890\r
891 @retval RETURN_SUCCESS Value is translated from String.\r
892 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
893 If Data is NULL.\r
894 If PcdMaximumAsciiStringLength is not zero,\r
895 and String contains more than\r
896 PcdMaximumAsciiStringLength Ascii\r
897 characters, not including the\r
898 Null-terminator.\r
899 @retval RETURN_UNSUPPORTED If the number represented by String exceeds\r
900 the range defined by UINTN.\r
901\r
902**/\r
903RETURN_STATUS\r
904EFIAPI\r
905AsciiStrHexToUintnS (\r
906 IN CONST CHAR8 *String,\r
d0e2f823 907 OUT CHAR8 **EndPointer OPTIONAL,\r
d8af3301
HW
908 OUT UINTN *Data\r
909 );\r
910\r
911/**\r
912 Convert a Null-terminated Ascii hexadecimal string to a value of type UINT64.\r
913\r
914 This function outputs a value of type UINT64 by interpreting the contents of\r
915 the Ascii string specified by String as a hexadecimal number. The format of\r
916 the input Ascii string String is:\r
917\r
918 [spaces][zeros][x][hexadecimal digits].\r
919\r
920 The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F].\r
921 The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix. If\r
922 "x" appears in the input string, it must be prefixed with at least one 0. The\r
923 function will ignore the pad space, which includes spaces or tab characters,\r
924 before [zeros], [x] or [hexadecimal digits]. The running zero before [x] or\r
925 [hexadecimal digits] will be ignored. Then, the decoding starts after [x] or\r
926 the first valid hexadecimal digit. Then, the function stops at the first\r
927 character that is a not a valid hexadecimal character or Null-terminator,\r
928 whichever on comes first.\r
929\r
d8af3301
HW
930 If String has no valid hexadecimal digits in the above format, then 0 is\r
931 stored at the location pointed to by Data.\r
932 If the number represented by String exceeds the range defined by UINT64, then\r
933 MAX_UINT64 is stored at the location pointed to by Data.\r
934\r
935 If EndPointer is not NULL, a pointer to the character that stopped the scan\r
936 is stored at the location pointed to by EndPointer. If String has no valid\r
937 hexadecimal digits right after the optional pad spaces, the value of String\r
938 is stored at the location pointed to by EndPointer.\r
939\r
940 @param String Pointer to a Null-terminated Ascii string.\r
941 @param EndPointer Pointer to character that stops scan.\r
942 @param Data Pointer to the converted value.\r
943\r
944 @retval RETURN_SUCCESS Value is translated from String.\r
945 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
946 If Data is NULL.\r
947 If PcdMaximumAsciiStringLength is not zero,\r
948 and String contains more than\r
949 PcdMaximumAsciiStringLength Ascii\r
950 characters, not including the\r
951 Null-terminator.\r
952 @retval RETURN_UNSUPPORTED If the number represented by String exceeds\r
953 the range defined by UINT64.\r
954\r
955**/\r
956RETURN_STATUS\r
957EFIAPI\r
958AsciiStrHexToUint64S (\r
959 IN CONST CHAR8 *String,\r
d0e2f823 960 OUT CHAR8 **EndPointer OPTIONAL,\r
d8af3301
HW
961 OUT UINT64 *Data\r
962 );\r
963\r
c058d59f 964\r
ac644614 965/**\r
966 Returns the length of a Null-terminated Unicode string.\r
967\r
968 This function returns the number of Unicode characters in the Null-terminated\r
969 Unicode string specified by String.\r
970\r
971 If String is NULL, then ASSERT().\r
972 If String is not aligned on a 16-bit boundary, then ASSERT().\r
973 If PcdMaximumUnicodeStringLength is not zero, and String contains more than\r
974 PcdMaximumUnicodeStringLength Unicode characters not including the\r
975 Null-terminator, then ASSERT().\r
976\r
977 @param String Pointer to a Null-terminated Unicode string.\r
978\r
979 @return The length of String.\r
980\r
981**/\r
982UINTN\r
983EFIAPI\r
984StrLen (\r
985 IN CONST CHAR16 *String\r
986 );\r
987\r
988\r
989/**\r
990 Returns the size of a Null-terminated Unicode string in bytes, including the\r
991 Null terminator.\r
992\r
9095d37b 993 This function returns the size, in bytes, of the Null-terminated Unicode string\r
17f695ed 994 specified by String.\r
ac644614 995\r
996 If String is NULL, then ASSERT().\r
997 If String is not aligned on a 16-bit boundary, then ASSERT().\r
998 If PcdMaximumUnicodeStringLength is not zero, and String contains more than\r
999 PcdMaximumUnicodeStringLength Unicode characters not including the\r
1000 Null-terminator, then ASSERT().\r
1001\r
af2dc6a7 1002 @param String The pointer to a Null-terminated Unicode string.\r
ac644614 1003\r
1004 @return The size of String.\r
1005\r
1006**/\r
1007UINTN\r
1008EFIAPI\r
1009StrSize (\r
1010 IN CONST CHAR16 *String\r
1011 );\r
1012\r
1013\r
1014/**\r
1015 Compares two Null-terminated Unicode strings, and returns the difference\r
1016 between the first mismatched Unicode characters.\r
1017\r
1018 This function compares the Null-terminated Unicode string FirstString to the\r
1019 Null-terminated Unicode string SecondString. If FirstString is identical to\r
1020 SecondString, then 0 is returned. Otherwise, the value returned is the first\r
1021 mismatched Unicode character in SecondString subtracted from the first\r
1022 mismatched Unicode character in FirstString.\r
1023\r
1024 If FirstString is NULL, then ASSERT().\r
1025 If FirstString is not aligned on a 16-bit boundary, then ASSERT().\r
1026 If SecondString is NULL, then ASSERT().\r
1027 If SecondString is not aligned on a 16-bit boundary, then ASSERT().\r
1028 If PcdMaximumUnicodeStringLength is not zero, and FirstString contains more\r
1029 than PcdMaximumUnicodeStringLength Unicode characters not including the\r
1030 Null-terminator, then ASSERT().\r
1031 If PcdMaximumUnicodeStringLength is not zero, and SecondString contains more\r
af2dc6a7 1032 than PcdMaximumUnicodeStringLength Unicode characters, not including the\r
ac644614 1033 Null-terminator, then ASSERT().\r
1034\r
af2dc6a7 1035 @param FirstString The pointer to a Null-terminated Unicode string.\r
1036 @param SecondString The pointer to a Null-terminated Unicode string.\r
ac644614 1037\r
1106ffe1 1038 @retval 0 FirstString is identical to SecondString.\r
1039 @return others FirstString is not identical to SecondString.\r
ac644614 1040\r
1041**/\r
1042INTN\r
1043EFIAPI\r
1044StrCmp (\r
1045 IN CONST CHAR16 *FirstString,\r
1046 IN CONST CHAR16 *SecondString\r
1047 );\r
1048\r
1049\r
1050/**\r
17f695ed 1051 Compares up to a specified length the contents of two Null-terminated Unicode strings,\r
1052 and returns the difference between the first mismatched Unicode characters.\r
9095d37b 1053\r
ac644614 1054 This function compares the Null-terminated Unicode string FirstString to the\r
1055 Null-terminated Unicode string SecondString. At most, Length Unicode\r
1056 characters will be compared. If Length is 0, then 0 is returned. If\r
1057 FirstString is identical to SecondString, then 0 is returned. Otherwise, the\r
1058 value returned is the first mismatched Unicode character in SecondString\r
1059 subtracted from the first mismatched Unicode character in FirstString.\r
1060\r
1061 If Length > 0 and FirstString is NULL, then ASSERT().\r
77f863ee 1062 If Length > 0 and FirstString is not aligned on a 16-bit boundary, then ASSERT().\r
ac644614 1063 If Length > 0 and SecondString is NULL, then ASSERT().\r
77f863ee 1064 If Length > 0 and SecondString is not aligned on a 16-bit boundary, then ASSERT().\r
50c247fd 1065 If PcdMaximumUnicodeStringLength is not zero, and Length is greater than\r
1066 PcdMaximumUnicodeStringLength, then ASSERT().\r
1067 If PcdMaximumUnicodeStringLength is not zero, and FirstString contains more than\r
1068 PcdMaximumUnicodeStringLength Unicode characters, not including the Null-terminator,\r
1069 then ASSERT().\r
1070 If PcdMaximumUnicodeStringLength is not zero, and SecondString contains more than\r
1071 PcdMaximumUnicodeStringLength Unicode characters, not including the Null-terminator,\r
1072 then ASSERT().\r
ac644614 1073\r
af2dc6a7 1074 @param FirstString The pointer to a Null-terminated Unicode string.\r
1075 @param SecondString The pointer to a Null-terminated Unicode string.\r
1076 @param Length The maximum number of Unicode characters to compare.\r
ac644614 1077\r
1106ffe1 1078 @retval 0 FirstString is identical to SecondString.\r
1079 @return others FirstString is not identical to SecondString.\r
ac644614 1080\r
1081**/\r
1082INTN\r
1083EFIAPI\r
1084StrnCmp (\r
1085 IN CONST CHAR16 *FirstString,\r
1086 IN CONST CHAR16 *SecondString,\r
1087 IN UINTN Length\r
1088 );\r
1089\r
1090\r
ac644614 1091/**\r
9aa049d9 1092 Returns the first occurrence of a Null-terminated Unicode sub-string\r
ac644614 1093 in a Null-terminated Unicode string.\r
1094\r
1095 This function scans the contents of the Null-terminated Unicode string\r
1096 specified by String and returns the first occurrence of SearchString.\r
1097 If SearchString is not found in String, then NULL is returned. If\r
af2dc6a7 1098 the length of SearchString is zero, then String is returned.\r
ac644614 1099\r
1100 If String is NULL, then ASSERT().\r
1101 If String is not aligned on a 16-bit boundary, then ASSERT().\r
1102 If SearchString is NULL, then ASSERT().\r
1103 If SearchString is not aligned on a 16-bit boundary, then ASSERT().\r
1104\r
1105 If PcdMaximumUnicodeStringLength is not zero, and SearchString\r
1106 or String contains more than PcdMaximumUnicodeStringLength Unicode\r
af2dc6a7 1107 characters, not including the Null-terminator, then ASSERT().\r
ac644614 1108\r
af2dc6a7 1109 @param String The pointer to a Null-terminated Unicode string.\r
1110 @param SearchString The pointer to a Null-terminated Unicode string to search for.\r
ac644614 1111\r
1112 @retval NULL If the SearchString does not appear in String.\r
1106ffe1 1113 @return others If there is a match.\r
ac644614 1114\r
1115**/\r
1116CHAR16 *\r
1117EFIAPI\r
1118StrStr (\r
17f695ed 1119 IN CONST CHAR16 *String,\r
1120 IN CONST CHAR16 *SearchString\r
ac644614 1121 );\r
1122\r
1123/**\r
1124 Convert a Null-terminated Unicode decimal string to a value of\r
1125 type UINTN.\r
1126\r
1127 This function returns a value of type UINTN by interpreting the contents\r
1128 of the Unicode string specified by String as a decimal number. The format\r
1129 of the input Unicode string String is:\r
1130\r
1131 [spaces] [decimal digits].\r
1132\r
1133 The valid decimal digit character is in the range [0-9]. The\r
1134 function will ignore the pad space, which includes spaces or\r
1135 tab characters, before [decimal digits]. The running zero in the\r
1136 beginning of [decimal digits] will be ignored. Then, the function\r
1137 stops at the first character that is a not a valid decimal character\r
1138 or a Null-terminator, whichever one comes first.\r
1139\r
1140 If String is NULL, then ASSERT().\r
1141 If String is not aligned in a 16-bit boundary, then ASSERT().\r
1142 If String has only pad spaces, then 0 is returned.\r
1143 If String has no pad spaces or valid decimal digits,\r
1144 then 0 is returned.\r
1145 If the number represented by String overflows according\r
ea2e0921 1146 to the range defined by UINTN, then MAX_UINTN is returned.\r
ac644614 1147\r
1148 If PcdMaximumUnicodeStringLength is not zero, and String contains\r
1149 more than PcdMaximumUnicodeStringLength Unicode characters not including\r
1150 the Null-terminator, then ASSERT().\r
1151\r
af2dc6a7 1152 @param String The pointer to a Null-terminated Unicode string.\r
ac644614 1153\r
38bbd3d9 1154 @retval Value translated from String.\r
ac644614 1155\r
1156**/\r
1157UINTN\r
1158EFIAPI\r
1159StrDecimalToUintn (\r
17f695ed 1160 IN CONST CHAR16 *String\r
ac644614 1161 );\r
1162\r
1163/**\r
1164 Convert a Null-terminated Unicode decimal string to a value of\r
1165 type UINT64.\r
1166\r
1167 This function returns a value of type UINT64 by interpreting the contents\r
1168 of the Unicode string specified by String as a decimal number. The format\r
1169 of the input Unicode string String is:\r
1170\r
1171 [spaces] [decimal digits].\r
1172\r
1173 The valid decimal digit character is in the range [0-9]. The\r
1174 function will ignore the pad space, which includes spaces or\r
1175 tab characters, before [decimal digits]. The running zero in the\r
1176 beginning of [decimal digits] will be ignored. Then, the function\r
1177 stops at the first character that is a not a valid decimal character\r
1178 or a Null-terminator, whichever one comes first.\r
1179\r
1180 If String is NULL, then ASSERT().\r
1181 If String is not aligned in a 16-bit boundary, then ASSERT().\r
1182 If String has only pad spaces, then 0 is returned.\r
1183 If String has no pad spaces or valid decimal digits,\r
1184 then 0 is returned.\r
1185 If the number represented by String overflows according\r
ea2e0921 1186 to the range defined by UINT64, then MAX_UINT64 is returned.\r
ac644614 1187\r
1188 If PcdMaximumUnicodeStringLength is not zero, and String contains\r
1189 more than PcdMaximumUnicodeStringLength Unicode characters not including\r
1190 the Null-terminator, then ASSERT().\r
1191\r
af2dc6a7 1192 @param String The pointer to a Null-terminated Unicode string.\r
ac644614 1193\r
38bbd3d9 1194 @retval Value translated from String.\r
ac644614 1195\r
1196**/\r
1197UINT64\r
1198EFIAPI\r
1199StrDecimalToUint64 (\r
17f695ed 1200 IN CONST CHAR16 *String\r
ac644614 1201 );\r
9095d37b 1202\r
ac644614 1203\r
1204/**\r
1205 Convert a Null-terminated Unicode hexadecimal string to a value of type UINTN.\r
1206\r
1207 This function returns a value of type UINTN by interpreting the contents\r
1208 of the Unicode string specified by String as a hexadecimal number.\r
1209 The format of the input Unicode string String is:\r
1210\r
1211 [spaces][zeros][x][hexadecimal digits].\r
1212\r
1213 The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F].\r
1214 The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix.\r
1215 If "x" appears in the input string, it must be prefixed with at least one 0.\r
1216 The function will ignore the pad space, which includes spaces or tab characters,\r
1217 before [zeros], [x] or [hexadecimal digit]. The running zero before [x] or\r
1218 [hexadecimal digit] will be ignored. Then, the decoding starts after [x] or the\r
9095d37b 1219 first valid hexadecimal digit. Then, the function stops at the first character\r
af2dc6a7 1220 that is a not a valid hexadecimal character or NULL, whichever one comes first.\r
ac644614 1221\r
1222 If String is NULL, then ASSERT().\r
1223 If String is not aligned in a 16-bit boundary, then ASSERT().\r
1224 If String has only pad spaces, then zero is returned.\r
1225 If String has no leading pad spaces, leading zeros or valid hexadecimal digits,\r
1226 then zero is returned.\r
1227 If the number represented by String overflows according to the range defined by\r
ea2e0921 1228 UINTN, then MAX_UINTN is returned.\r
ac644614 1229\r
1230 If PcdMaximumUnicodeStringLength is not zero, and String contains more than\r
1231 PcdMaximumUnicodeStringLength Unicode characters not including the Null-terminator,\r
1232 then ASSERT().\r
1233\r
af2dc6a7 1234 @param String The pointer to a Null-terminated Unicode string.\r
ac644614 1235\r
38bbd3d9 1236 @retval Value translated from String.\r
ac644614 1237\r
1238**/\r
1239UINTN\r
1240EFIAPI\r
1241StrHexToUintn (\r
17f695ed 1242 IN CONST CHAR16 *String\r
ac644614 1243 );\r
1244\r
1245\r
1246/**\r
1247 Convert a Null-terminated Unicode hexadecimal string to a value of type UINT64.\r
1248\r
1249 This function returns a value of type UINT64 by interpreting the contents\r
1250 of the Unicode string specified by String as a hexadecimal number.\r
1251 The format of the input Unicode string String is\r
1252\r
1253 [spaces][zeros][x][hexadecimal digits].\r
1254\r
1255 The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F].\r
1256 The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix.\r
1257 If "x" appears in the input string, it must be prefixed with at least one 0.\r
1258 The function will ignore the pad space, which includes spaces or tab characters,\r
1259 before [zeros], [x] or [hexadecimal digit]. The running zero before [x] or\r
1260 [hexadecimal digit] will be ignored. Then, the decoding starts after [x] or the\r
1261 first valid hexadecimal digit. Then, the function stops at the first character that is\r
1262 a not a valid hexadecimal character or NULL, whichever one comes first.\r
1263\r
1264 If String is NULL, then ASSERT().\r
1265 If String is not aligned in a 16-bit boundary, then ASSERT().\r
1266 If String has only pad spaces, then zero is returned.\r
1267 If String has no leading pad spaces, leading zeros or valid hexadecimal digits,\r
1268 then zero is returned.\r
1269 If the number represented by String overflows according to the range defined by\r
ea2e0921 1270 UINT64, then MAX_UINT64 is returned.\r
ac644614 1271\r
1272 If PcdMaximumUnicodeStringLength is not zero, and String contains more than\r
1273 PcdMaximumUnicodeStringLength Unicode characters not including the Null-terminator,\r
1274 then ASSERT().\r
1275\r
af2dc6a7 1276 @param String The pointer to a Null-terminated Unicode string.\r
ac644614 1277\r
38bbd3d9 1278 @retval Value translated from String.\r
ac644614 1279\r
1280**/\r
1281UINT64\r
1282EFIAPI\r
1283StrHexToUint64 (\r
17f695ed 1284 IN CONST CHAR16 *String\r
ac644614 1285 );\r
1286\r
36396ea2
RN
1287/**\r
1288 Convert a Null-terminated Unicode string to IPv6 address and prefix length.\r
1289\r
1290 This function outputs a value of type IPv6_ADDRESS and may output a value\r
1291 of type UINT8 by interpreting the contents of the Unicode string specified\r
1292 by String. The format of the input Unicode string String is as follows:\r
1293\r
1294 X:X:X:X:X:X:X:X[/P]\r
1295\r
1296 X contains one to four hexadecimal digit characters in the range [0-9], [a-f] and\r
1297 [A-F]. X is converted to a value of type UINT16, whose low byte is stored in low\r
1298 memory address and high byte is stored in high memory address. P contains decimal\r
1299 digit characters in the range [0-9]. The running zero in the beginning of P will\r
1300 be ignored. /P is optional.\r
1301\r
1302 When /P is not in the String, the function stops at the first character that is\r
1303 not a valid hexadecimal digit character after eight X's are converted.\r
1304\r
1305 When /P is in the String, the function stops at the first character that is not\r
1306 a valid decimal digit character after P is converted.\r
1307\r
1308 "::" can be used to compress one or more groups of X when X contains only 0.\r
1309 The "::" can only appear once in the String.\r
1310\r
36396ea2
RN
1311 If String is not aligned in a 16-bit boundary, then ASSERT().\r
1312\r
36396ea2
RN
1313 If EndPointer is not NULL and Address is translated from String, a pointer\r
1314 to the character that stopped the scan is stored at the location pointed to\r
1315 by EndPointer.\r
1316\r
1317 @param String Pointer to a Null-terminated Unicode string.\r
1318 @param EndPointer Pointer to character that stops scan.\r
1319 @param Address Pointer to the converted IPv6 address.\r
1320 @param PrefixLength Pointer to the converted IPv6 address prefix\r
1321 length. MAX_UINT8 is returned when /P is\r
1322 not in the String.\r
1323\r
1324 @retval RETURN_SUCCESS Address is translated from String.\r
1325 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
1326 If Data is NULL.\r
1327 @retval RETURN_UNSUPPORTED If X contains more than four hexadecimal\r
1328 digit characters.\r
1329 If String contains "::" and number of X\r
1330 is not less than 8.\r
1331 If P starts with character that is not a\r
1332 valid decimal digit character.\r
1333 If the decimal number converted from P\r
1334 exceeds 128.\r
1335\r
1336**/\r
1337RETURN_STATUS\r
1338EFIAPI\r
1339StrToIpv6Address (\r
1340 IN CONST CHAR16 *String,\r
d0e2f823 1341 OUT CHAR16 **EndPointer OPTIONAL,\r
36396ea2
RN
1342 OUT IPv6_ADDRESS *Address,\r
1343 OUT UINT8 *PrefixLength OPTIONAL\r
1344 );\r
1345\r
1346/**\r
1347 Convert a Null-terminated Unicode string to IPv4 address and prefix length.\r
1348\r
1349 This function outputs a value of type IPv4_ADDRESS and may output a value\r
1350 of type UINT8 by interpreting the contents of the Unicode string specified\r
1351 by String. The format of the input Unicode string String is as follows:\r
1352\r
1353 D.D.D.D[/P]\r
1354\r
1355 D and P are decimal digit characters in the range [0-9]. The running zero in\r
1356 the beginning of D and P will be ignored. /P is optional.\r
1357\r
1358 When /P is not in the String, the function stops at the first character that is\r
1359 not a valid decimal digit character after four D's are converted.\r
1360\r
1361 When /P is in the String, the function stops at the first character that is not\r
1362 a valid decimal digit character after P is converted.\r
1363\r
36396ea2
RN
1364 If String is not aligned in a 16-bit boundary, then ASSERT().\r
1365\r
36396ea2
RN
1366 If EndPointer is not NULL and Address is translated from String, a pointer\r
1367 to the character that stopped the scan is stored at the location pointed to\r
1368 by EndPointer.\r
1369\r
1370 @param String Pointer to a Null-terminated Unicode string.\r
1371 @param EndPointer Pointer to character that stops scan.\r
1372 @param Address Pointer to the converted IPv4 address.\r
1373 @param PrefixLength Pointer to the converted IPv4 address prefix\r
1374 length. MAX_UINT8 is returned when /P is\r
1375 not in the String.\r
1376\r
1377 @retval RETURN_SUCCESS Address is translated from String.\r
1378 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
1379 If Data is NULL.\r
1380 @retval RETURN_UNSUPPORTED If String is not in the correct format.\r
1381 If any decimal number converted from D\r
1382 exceeds 255.\r
1383 If the decimal number converted from P\r
1384 exceeds 32.\r
1385\r
1386**/\r
1387RETURN_STATUS\r
1388EFIAPI\r
1389StrToIpv4Address (\r
1390 IN CONST CHAR16 *String,\r
d0e2f823 1391 OUT CHAR16 **EndPointer OPTIONAL,\r
36396ea2
RN
1392 OUT IPv4_ADDRESS *Address,\r
1393 OUT UINT8 *PrefixLength OPTIONAL\r
1394 );\r
1395\r
1396#define GUID_STRING_LENGTH 36\r
1397\r
1398/**\r
1399 Convert a Null-terminated Unicode GUID string to a value of type\r
1400 EFI_GUID.\r
1401\r
1402 This function outputs a GUID value by interpreting the contents of\r
1403 the Unicode string specified by String. The format of the input\r
1404 Unicode string String consists of 36 characters, as follows:\r
1405\r
1406 aabbccdd-eeff-gghh-iijj-kkllmmnnoopp\r
1407\r
1408 The pairs aa - pp are two characters in the range [0-9], [a-f] and\r
1409 [A-F], with each pair representing a single byte hexadecimal value.\r
1410\r
1411 The mapping between String and the EFI_GUID structure is as follows:\r
1412 aa Data1[24:31]\r
1413 bb Data1[16:23]\r
1414 cc Data1[8:15]\r
1415 dd Data1[0:7]\r
1416 ee Data2[8:15]\r
1417 ff Data2[0:7]\r
1418 gg Data3[8:15]\r
1419 hh Data3[0:7]\r
1420 ii Data4[0:7]\r
1421 jj Data4[8:15]\r
1422 kk Data4[16:23]\r
1423 ll Data4[24:31]\r
1424 mm Data4[32:39]\r
1425 nn Data4[40:47]\r
1426 oo Data4[48:55]\r
1427 pp Data4[56:63]\r
1428\r
36396ea2
RN
1429 If String is not aligned in a 16-bit boundary, then ASSERT().\r
1430\r
1431 @param String Pointer to a Null-terminated Unicode string.\r
1432 @param Guid Pointer to the converted GUID.\r
1433\r
1434 @retval RETURN_SUCCESS Guid is translated from String.\r
1435 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
1436 If Data is NULL.\r
1437 @retval RETURN_UNSUPPORTED If String is not as the above format.\r
1438\r
1439**/\r
1440RETURN_STATUS\r
1441EFIAPI\r
1442StrToGuid (\r
1443 IN CONST CHAR16 *String,\r
1444 OUT GUID *Guid\r
1445 );\r
1446\r
1447/**\r
1448 Convert a Null-terminated Unicode hexadecimal string to a byte array.\r
1449\r
1450 This function outputs a byte array by interpreting the contents of\r
1451 the Unicode string specified by String in hexadecimal format. The format of\r
1452 the input Unicode string String is:\r
1453\r
1454 [XX]*\r
1455\r
1456 X is a hexadecimal digit character in the range [0-9], [a-f] and [A-F].\r
1457 The function decodes every two hexadecimal digit characters as one byte. The\r
1458 decoding stops after Length of characters and outputs Buffer containing\r
1459 (Length / 2) bytes.\r
1460\r
1461 If String is not aligned in a 16-bit boundary, then ASSERT().\r
1462\r
36396ea2
RN
1463 @param String Pointer to a Null-terminated Unicode string.\r
1464 @param Length The number of Unicode characters to decode.\r
1465 @param Buffer Pointer to the converted bytes array.\r
1466 @param MaxBufferSize The maximum size of Buffer.\r
1467\r
1468 @retval RETURN_SUCCESS Buffer is translated from String.\r
1469 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
1470 If Data is NULL.\r
1471 If Length is not multiple of 2.\r
1472 If PcdMaximumUnicodeStringLength is not zero,\r
1473 and Length is greater than\r
1474 PcdMaximumUnicodeStringLength.\r
1475 @retval RETURN_UNSUPPORTED If Length of characters from String contain\r
1476 a character that is not valid hexadecimal\r
1477 digit characters, or a Null-terminator.\r
1478 @retval RETURN_BUFFER_TOO_SMALL If MaxBufferSize is less than (Length / 2).\r
1479**/\r
1480RETURN_STATUS\r
1481EFIAPI\r
1482StrHexToBytes (\r
1483 IN CONST CHAR16 *String,\r
1484 IN UINTN Length,\r
1485 OUT UINT8 *Buffer,\r
1486 IN UINTN MaxBufferSize\r
1487 );\r
1488\r
415aa2f1 1489\r
3ab41b7a
JY
1490/**\r
1491 Convert a Null-terminated Unicode string to a Null-terminated\r
1492 ASCII string.\r
1493\r
1494 This function is similar to AsciiStrCpyS.\r
1495\r
1496 This function converts the content of the Unicode string Source\r
1497 to the ASCII string Destination by copying the lower 8 bits of\r
1498 each Unicode character. The function terminates the ASCII string\r
1499 Destination by appending a Null-terminator character at the end.\r
1500\r
1501 The caller is responsible to make sure Destination points to a buffer with size\r
1502 equal or greater than ((StrLen (Source) + 1) * sizeof (CHAR8)) in bytes.\r
1503\r
1504 If any Unicode characters in Source contain non-zero value in\r
1505 the upper 8 bits, then ASSERT().\r
1506\r
1507 If Source is not aligned on a 16-bit boundary, then ASSERT().\r
3ab41b7a
JY
1508\r
1509 If an error is returned, then the Destination is unmodified.\r
1510\r
1511 @param Source The pointer to a Null-terminated Unicode string.\r
1512 @param Destination The pointer to a Null-terminated ASCII string.\r
1513 @param DestMax The maximum number of Destination Ascii\r
1514 char, including terminating null char.\r
1515\r
1516 @retval RETURN_SUCCESS String is converted.\r
1517 @retval RETURN_BUFFER_TOO_SMALL If DestMax is NOT greater than StrLen(Source).\r
1518 @retval RETURN_INVALID_PARAMETER If Destination is NULL.\r
1519 If Source is NULL.\r
1520 If PcdMaximumAsciiStringLength is not zero,\r
1521 and DestMax is greater than\r
1522 PcdMaximumAsciiStringLength.\r
1523 If PcdMaximumUnicodeStringLength is not zero,\r
1524 and DestMax is greater than\r
1525 PcdMaximumUnicodeStringLength.\r
1526 If DestMax is 0.\r
1527 @retval RETURN_ACCESS_DENIED If Source and Destination overlap.\r
1528\r
1529**/\r
1530RETURN_STATUS\r
1531EFIAPI\r
1532UnicodeStrToAsciiStrS (\r
1533 IN CONST CHAR16 *Source,\r
1534 OUT CHAR8 *Destination,\r
1535 IN UINTN DestMax\r
1536 );\r
ac644614 1537\r
02263214
HW
1538/**\r
1539 Convert not more than Length successive characters from a Null-terminated\r
1540 Unicode string to a Null-terminated Ascii string. If no null char is copied\r
1541 from Source, then Destination[Length] is always set to null.\r
1542\r
1543 This function converts not more than Length successive characters from the\r
1544 Unicode string Source to the Ascii string Destination by copying the lower 8\r
1545 bits of each Unicode character. The function terminates the Ascii string\r
1546 Destination by appending a Null-terminator character at the end.\r
1547\r
1548 The caller is responsible to make sure Destination points to a buffer with size\r
1549 equal or greater than ((StrLen (Source) + 1) * sizeof (CHAR8)) in bytes.\r
1550\r
1551 If any Unicode characters in Source contain non-zero value in the upper 8\r
1552 bits, then ASSERT().\r
1553 If Source is not aligned on a 16-bit boundary, then ASSERT().\r
02263214
HW
1554\r
1555 If an error is returned, then the Destination is unmodified.\r
1556\r
1557 @param Source The pointer to a Null-terminated Unicode string.\r
1558 @param Length The maximum number of Unicode characters to\r
1559 convert.\r
1560 @param Destination The pointer to a Null-terminated Ascii string.\r
1561 @param DestMax The maximum number of Destination Ascii\r
1562 char, including terminating null char.\r
1563 @param DestinationLength The number of Unicode characters converted.\r
1564\r
1565 @retval RETURN_SUCCESS String is converted.\r
1566 @retval RETURN_INVALID_PARAMETER If Destination is NULL.\r
1567 If Source is NULL.\r
1568 If DestinationLength is NULL.\r
1569 If PcdMaximumAsciiStringLength is not zero,\r
1570 and Length or DestMax is greater than\r
1571 PcdMaximumAsciiStringLength.\r
1572 If PcdMaximumUnicodeStringLength is not\r
1573 zero, and Length or DestMax is greater than\r
1574 PcdMaximumUnicodeStringLength.\r
1575 If DestMax is 0.\r
1576 @retval RETURN_BUFFER_TOO_SMALL If DestMax is NOT greater than\r
1577 MIN(StrLen(Source), Length).\r
1578 @retval RETURN_ACCESS_DENIED If Source and Destination overlap.\r
1579\r
1580**/\r
1581RETURN_STATUS\r
1582EFIAPI\r
1583UnicodeStrnToAsciiStrS (\r
1584 IN CONST CHAR16 *Source,\r
1585 IN UINTN Length,\r
1586 OUT CHAR8 *Destination,\r
1587 IN UINTN DestMax,\r
1588 OUT UINTN *DestinationLength\r
1589 );\r
1590\r
ac644614 1591\r
1592/**\r
1593 Returns the length of a Null-terminated ASCII string.\r
1594\r
1595 This function returns the number of ASCII characters in the Null-terminated\r
1596 ASCII string specified by String.\r
1597\r
1598 If Length > 0 and Destination is NULL, then ASSERT().\r
1599 If Length > 0 and Source is NULL, then ASSERT().\r
1600 If PcdMaximumAsciiStringLength is not zero and String contains more than\r
1601 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,\r
1602 then ASSERT().\r
1603\r
af2dc6a7 1604 @param String The pointer to a Null-terminated ASCII string.\r
ac644614 1605\r
1606 @return The length of String.\r
1607\r
1608**/\r
1609UINTN\r
1610EFIAPI\r
1611AsciiStrLen (\r
1612 IN CONST CHAR8 *String\r
1613 );\r
1614\r
1615\r
1616/**\r
1617 Returns the size of a Null-terminated ASCII string in bytes, including the\r
1618 Null terminator.\r
1619\r
1620 This function returns the size, in bytes, of the Null-terminated ASCII string\r
1621 specified by String.\r
1622\r
1623 If String is NULL, then ASSERT().\r
1624 If PcdMaximumAsciiStringLength is not zero and String contains more than\r
1625 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,\r
1626 then ASSERT().\r
1627\r
af2dc6a7 1628 @param String The pointer to a Null-terminated ASCII string.\r
ac644614 1629\r
1630 @return The size of String.\r
1631\r
1632**/\r
1633UINTN\r
1634EFIAPI\r
1635AsciiStrSize (\r
1636 IN CONST CHAR8 *String\r
1637 );\r
1638\r
1639\r
1640/**\r
1641 Compares two Null-terminated ASCII strings, and returns the difference\r
1642 between the first mismatched ASCII characters.\r
1643\r
1644 This function compares the Null-terminated ASCII string FirstString to the\r
1645 Null-terminated ASCII string SecondString. If FirstString is identical to\r
1646 SecondString, then 0 is returned. Otherwise, the value returned is the first\r
1647 mismatched ASCII character in SecondString subtracted from the first\r
1648 mismatched ASCII character in FirstString.\r
1649\r
1650 If FirstString is NULL, then ASSERT().\r
1651 If SecondString is NULL, then ASSERT().\r
1652 If PcdMaximumAsciiStringLength is not zero and FirstString contains more than\r
1653 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,\r
1654 then ASSERT().\r
1655 If PcdMaximumAsciiStringLength is not zero and SecondString contains more\r
1656 than PcdMaximumAsciiStringLength ASCII characters not including the\r
1657 Null-terminator, then ASSERT().\r
1658\r
af2dc6a7 1659 @param FirstString The pointer to a Null-terminated ASCII string.\r
1660 @param SecondString The pointer to a Null-terminated ASCII string.\r
ac644614 1661\r
17f695ed 1662 @retval ==0 FirstString is identical to SecondString.\r
1663 @retval !=0 FirstString is not identical to SecondString.\r
ac644614 1664\r
1665**/\r
1666INTN\r
1667EFIAPI\r
1668AsciiStrCmp (\r
1669 IN CONST CHAR8 *FirstString,\r
1670 IN CONST CHAR8 *SecondString\r
1671 );\r
1672\r
1673\r
1674/**\r
1675 Performs a case insensitive comparison of two Null-terminated ASCII strings,\r
1676 and returns the difference between the first mismatched ASCII characters.\r
1677\r
1678 This function performs a case insensitive comparison of the Null-terminated\r
1679 ASCII string FirstString to the Null-terminated ASCII string SecondString. If\r
1680 FirstString is identical to SecondString, then 0 is returned. Otherwise, the\r
1681 value returned is the first mismatched lower case ASCII character in\r
1682 SecondString subtracted from the first mismatched lower case ASCII character\r
1683 in FirstString.\r
1684\r
1685 If FirstString is NULL, then ASSERT().\r
1686 If SecondString is NULL, then ASSERT().\r
1687 If PcdMaximumAsciiStringLength is not zero and FirstString contains more than\r
1688 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,\r
1689 then ASSERT().\r
1690 If PcdMaximumAsciiStringLength is not zero and SecondString contains more\r
1691 than PcdMaximumAsciiStringLength ASCII characters not including the\r
1692 Null-terminator, then ASSERT().\r
1693\r
af2dc6a7 1694 @param FirstString The pointer to a Null-terminated ASCII string.\r
1695 @param SecondString The pointer to a Null-terminated ASCII string.\r
ac644614 1696\r
17f695ed 1697 @retval ==0 FirstString is identical to SecondString using case insensitive\r
1106ffe1 1698 comparisons.\r
17f695ed 1699 @retval !=0 FirstString is not identical to SecondString using case\r
1106ffe1 1700 insensitive comparisons.\r
ac644614 1701\r
1702**/\r
1703INTN\r
1704EFIAPI\r
1705AsciiStriCmp (\r
1706 IN CONST CHAR8 *FirstString,\r
1707 IN CONST CHAR8 *SecondString\r
1708 );\r
1709\r
1710\r
1711/**\r
1712 Compares two Null-terminated ASCII strings with maximum lengths, and returns\r
1713 the difference between the first mismatched ASCII characters.\r
1714\r
1715 This function compares the Null-terminated ASCII string FirstString to the\r
1716 Null-terminated ASCII string SecondString. At most, Length ASCII characters\r
1717 will be compared. If Length is 0, then 0 is returned. If FirstString is\r
1718 identical to SecondString, then 0 is returned. Otherwise, the value returned\r
1719 is the first mismatched ASCII character in SecondString subtracted from the\r
1720 first mismatched ASCII character in FirstString.\r
1721\r
1722 If Length > 0 and FirstString is NULL, then ASSERT().\r
1723 If Length > 0 and SecondString is NULL, then ASSERT().\r
9095d37b 1724 If PcdMaximumAsciiStringLength is not zero, and Length is greater than\r
50c247fd 1725 PcdMaximumAsciiStringLength, then ASSERT().\r
1726 If PcdMaximumAsciiStringLength is not zero, and FirstString contains more than\r
1727 PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,\r
ac644614 1728 then ASSERT().\r
50c247fd 1729 If PcdMaximumAsciiStringLength is not zero, and SecondString contains more than\r
1730 PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,\r
ac644614 1731 then ASSERT().\r
1732\r
af2dc6a7 1733 @param FirstString The pointer to a Null-terminated ASCII string.\r
1734 @param SecondString The pointer to a Null-terminated ASCII string.\r
1735 @param Length The maximum number of ASCII characters for compare.\r
9095d37b 1736\r
17f695ed 1737 @retval ==0 FirstString is identical to SecondString.\r
1738 @retval !=0 FirstString is not identical to SecondString.\r
ac644614 1739\r
1740**/\r
1741INTN\r
1742EFIAPI\r
1743AsciiStrnCmp (\r
1744 IN CONST CHAR8 *FirstString,\r
1745 IN CONST CHAR8 *SecondString,\r
1746 IN UINTN Length\r
1747 );\r
1748\r
1749\r
ac644614 1750/**\r
9aa049d9 1751 Returns the first occurrence of a Null-terminated ASCII sub-string\r
ac644614 1752 in a Null-terminated ASCII string.\r
1753\r
1754 This function scans the contents of the ASCII string specified by String\r
1755 and returns the first occurrence of SearchString. If SearchString is not\r
1756 found in String, then NULL is returned. If the length of SearchString is zero,\r
1757 then String is returned.\r
1758\r
1759 If String is NULL, then ASSERT().\r
1760 If SearchString is NULL, then ASSERT().\r
1761\r
1762 If PcdMaximumAsciiStringLength is not zero, and SearchString or\r
1763 String contains more than PcdMaximumAsciiStringLength Unicode characters\r
1764 not including the Null-terminator, then ASSERT().\r
1765\r
af2dc6a7 1766 @param String The pointer to a Null-terminated ASCII string.\r
1767 @param SearchString The pointer to a Null-terminated ASCII string to search for.\r
ac644614 1768\r
1769 @retval NULL If the SearchString does not appear in String.\r
17f695ed 1770 @retval others If there is a match return the first occurrence of SearchingString.\r
9aa049d9 1771 If the length of SearchString is zero,return String.\r
ac644614 1772\r
1773**/\r
1774CHAR8 *\r
1775EFIAPI\r
1776AsciiStrStr (\r
17f695ed 1777 IN CONST CHAR8 *String,\r
1778 IN CONST CHAR8 *SearchString\r
ac644614 1779 );\r
1780\r
1781\r
1782/**\r
1783 Convert a Null-terminated ASCII decimal string to a value of type\r
1784 UINTN.\r
1785\r
1786 This function returns a value of type UINTN by interpreting the contents\r
1787 of the ASCII string String as a decimal number. The format of the input\r
1788 ASCII string String is:\r
1789\r
1790 [spaces] [decimal digits].\r
1791\r
1792 The valid decimal digit character is in the range [0-9]. The function will\r
1793 ignore the pad space, which includes spaces or tab characters, before the digits.\r
1794 The running zero in the beginning of [decimal digits] will be ignored. Then, the\r
1795 function stops at the first character that is a not a valid decimal character or\r
1796 Null-terminator, whichever on comes first.\r
1797\r
1798 If String has only pad spaces, then 0 is returned.\r
1799 If String has no pad spaces or valid decimal digits, then 0 is returned.\r
1800 If the number represented by String overflows according to the range defined by\r
ea2e0921 1801 UINTN, then MAX_UINTN is returned.\r
ac644614 1802 If String is NULL, then ASSERT().\r
1803 If PcdMaximumAsciiStringLength is not zero, and String contains more than\r
1804 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,\r
1805 then ASSERT().\r
1806\r
af2dc6a7 1807 @param String The pointer to a Null-terminated ASCII string.\r
ac644614 1808\r
af2dc6a7 1809 @retval The value translated from String.\r
ac644614 1810\r
1811**/\r
1812UINTN\r
1813EFIAPI\r
1814AsciiStrDecimalToUintn (\r
1815 IN CONST CHAR8 *String\r
1816 );\r
1817\r
1818\r
1819/**\r
1820 Convert a Null-terminated ASCII decimal string to a value of type\r
1821 UINT64.\r
1822\r
1823 This function returns a value of type UINT64 by interpreting the contents\r
1824 of the ASCII string String as a decimal number. The format of the input\r
1825 ASCII string String is:\r
1826\r
1827 [spaces] [decimal digits].\r
1828\r
1829 The valid decimal digit character is in the range [0-9]. The function will\r
1830 ignore the pad space, which includes spaces or tab characters, before the digits.\r
1831 The running zero in the beginning of [decimal digits] will be ignored. Then, the\r
1832 function stops at the first character that is a not a valid decimal character or\r
1833 Null-terminator, whichever on comes first.\r
1834\r
1835 If String has only pad spaces, then 0 is returned.\r
1836 If String has no pad spaces or valid decimal digits, then 0 is returned.\r
1837 If the number represented by String overflows according to the range defined by\r
ea2e0921 1838 UINT64, then MAX_UINT64 is returned.\r
ac644614 1839 If String is NULL, then ASSERT().\r
1840 If PcdMaximumAsciiStringLength is not zero, and String contains more than\r
1841 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,\r
1842 then ASSERT().\r
1843\r
af2dc6a7 1844 @param String The pointer to a Null-terminated ASCII string.\r
ac644614 1845\r
38bbd3d9 1846 @retval Value translated from String.\r
ac644614 1847\r
1848**/\r
1849UINT64\r
1850EFIAPI\r
1851AsciiStrDecimalToUint64 (\r
17f695ed 1852 IN CONST CHAR8 *String\r
ac644614 1853 );\r
1854\r
1855\r
1856/**\r
1857 Convert a Null-terminated ASCII hexadecimal string to a value of type UINTN.\r
1858\r
1859 This function returns a value of type UINTN by interpreting the contents of\r
1860 the ASCII string String as a hexadecimal number. The format of the input ASCII\r
1861 string String is:\r
1862\r
1863 [spaces][zeros][x][hexadecimal digits].\r
1864\r
1865 The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F].\r
1866 The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix. If "x"\r
1867 appears in the input string, it must be prefixed with at least one 0. The function\r
1868 will ignore the pad space, which includes spaces or tab characters, before [zeros],\r
1869 [x] or [hexadecimal digits]. The running zero before [x] or [hexadecimal digits]\r
1870 will be ignored. Then, the decoding starts after [x] or the first valid hexadecimal\r
1871 digit. Then, the function stops at the first character that is a not a valid\r
1872 hexadecimal character or Null-terminator, whichever on comes first.\r
1873\r
1874 If String has only pad spaces, then 0 is returned.\r
1875 If String has no leading pad spaces, leading zeros or valid hexadecimal digits, then\r
1876 0 is returned.\r
1877\r
1878 If the number represented by String overflows according to the range defined by UINTN,\r
ea2e0921 1879 then MAX_UINTN is returned.\r
ac644614 1880 If String is NULL, then ASSERT().\r
1881 If PcdMaximumAsciiStringLength is not zero,\r
1882 and String contains more than PcdMaximumAsciiStringLength ASCII characters not including\r
1883 the Null-terminator, then ASSERT().\r
1884\r
af2dc6a7 1885 @param String The pointer to a Null-terminated ASCII string.\r
ac644614 1886\r
38bbd3d9 1887 @retval Value translated from String.\r
ac644614 1888\r
1889**/\r
1890UINTN\r
1891EFIAPI\r
1892AsciiStrHexToUintn (\r
17f695ed 1893 IN CONST CHAR8 *String\r
ac644614 1894 );\r
1895\r
1896\r
1897/**\r
1898 Convert a Null-terminated ASCII hexadecimal string to a value of type UINT64.\r
1899\r
1900 This function returns a value of type UINT64 by interpreting the contents of\r
1901 the ASCII string String as a hexadecimal number. The format of the input ASCII\r
1902 string String is:\r
1903\r
1904 [spaces][zeros][x][hexadecimal digits].\r
1905\r
1906 The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F].\r
1907 The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix. If "x"\r
1908 appears in the input string, it must be prefixed with at least one 0. The function\r
1909 will ignore the pad space, which includes spaces or tab characters, before [zeros],\r
1910 [x] or [hexadecimal digits]. The running zero before [x] or [hexadecimal digits]\r
1911 will be ignored. Then, the decoding starts after [x] or the first valid hexadecimal\r
1912 digit. Then, the function stops at the first character that is a not a valid\r
1913 hexadecimal character or Null-terminator, whichever on comes first.\r
1914\r
1915 If String has only pad spaces, then 0 is returned.\r
1916 If String has no leading pad spaces, leading zeros or valid hexadecimal digits, then\r
1917 0 is returned.\r
1918\r
1919 If the number represented by String overflows according to the range defined by UINT64,\r
ea2e0921 1920 then MAX_UINT64 is returned.\r
ac644614 1921 If String is NULL, then ASSERT().\r
1922 If PcdMaximumAsciiStringLength is not zero,\r
1923 and String contains more than PcdMaximumAsciiStringLength ASCII characters not including\r
1924 the Null-terminator, then ASSERT().\r
1925\r
af2dc6a7 1926 @param String The pointer to a Null-terminated ASCII string.\r
ac644614 1927\r
38bbd3d9 1928 @retval Value translated from String.\r
ac644614 1929\r
1930**/\r
1931UINT64\r
1932EFIAPI\r
1933AsciiStrHexToUint64 (\r
17f695ed 1934 IN CONST CHAR8 *String\r
ac644614 1935 );\r
1936\r
fb4dd857
RN
1937/**\r
1938 Convert a Null-terminated ASCII string to IPv6 address and prefix length.\r
1939\r
1940 This function outputs a value of type IPv6_ADDRESS and may output a value\r
1941 of type UINT8 by interpreting the contents of the ASCII string specified\r
1942 by String. The format of the input ASCII string String is as follows:\r
1943\r
1944 X:X:X:X:X:X:X:X[/P]\r
1945\r
1946 X contains one to four hexadecimal digit characters in the range [0-9], [a-f] and\r
1947 [A-F]. X is converted to a value of type UINT16, whose low byte is stored in low\r
1948 memory address and high byte is stored in high memory address. P contains decimal\r
1949 digit characters in the range [0-9]. The running zero in the beginning of P will\r
1950 be ignored. /P is optional.\r
1951\r
1952 When /P is not in the String, the function stops at the first character that is\r
1953 not a valid hexadecimal digit character after eight X's are converted.\r
1954\r
1955 When /P is in the String, the function stops at the first character that is not\r
1956 a valid decimal digit character after P is converted.\r
1957\r
1958 "::" can be used to compress one or more groups of X when X contains only 0.\r
1959 The "::" can only appear once in the String.\r
1960\r
fb4dd857
RN
1961 If EndPointer is not NULL and Address is translated from String, a pointer\r
1962 to the character that stopped the scan is stored at the location pointed to\r
1963 by EndPointer.\r
1964\r
1965 @param String Pointer to a Null-terminated ASCII string.\r
1966 @param EndPointer Pointer to character that stops scan.\r
1967 @param Address Pointer to the converted IPv6 address.\r
1968 @param PrefixLength Pointer to the converted IPv6 address prefix\r
1969 length. MAX_UINT8 is returned when /P is\r
1970 not in the String.\r
1971\r
1972 @retval RETURN_SUCCESS Address is translated from String.\r
1973 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
1974 If Data is NULL.\r
1975 @retval RETURN_UNSUPPORTED If X contains more than four hexadecimal\r
1976 digit characters.\r
1977 If String contains "::" and number of X\r
1978 is not less than 8.\r
1979 If P starts with character that is not a\r
1980 valid decimal digit character.\r
1981 If the decimal number converted from P\r
1982 exceeds 128.\r
1983\r
1984**/\r
1985RETURN_STATUS\r
1986EFIAPI\r
1987AsciiStrToIpv6Address (\r
1988 IN CONST CHAR8 *String,\r
d0e2f823 1989 OUT CHAR8 **EndPointer OPTIONAL,\r
fb4dd857
RN
1990 OUT IPv6_ADDRESS *Address,\r
1991 OUT UINT8 *PrefixLength OPTIONAL\r
1992 );\r
1993\r
1994/**\r
1995 Convert a Null-terminated ASCII string to IPv4 address and prefix length.\r
1996\r
1997 This function outputs a value of type IPv4_ADDRESS and may output a value\r
1998 of type UINT8 by interpreting the contents of the ASCII string specified\r
1999 by String. The format of the input ASCII string String is as follows:\r
2000\r
2001 D.D.D.D[/P]\r
2002\r
2003 D and P are decimal digit characters in the range [0-9]. The running zero in\r
2004 the beginning of D and P will be ignored. /P is optional.\r
2005\r
2006 When /P is not in the String, the function stops at the first character that is\r
2007 not a valid decimal digit character after four D's are converted.\r
2008\r
2009 When /P is in the String, the function stops at the first character that is not\r
2010 a valid decimal digit character after P is converted.\r
2011\r
fb4dd857
RN
2012 If EndPointer is not NULL and Address is translated from String, a pointer\r
2013 to the character that stopped the scan is stored at the location pointed to\r
2014 by EndPointer.\r
2015\r
2016 @param String Pointer to a Null-terminated ASCII string.\r
2017 @param EndPointer Pointer to character that stops scan.\r
2018 @param Address Pointer to the converted IPv4 address.\r
2019 @param PrefixLength Pointer to the converted IPv4 address prefix\r
2020 length. MAX_UINT8 is returned when /P is\r
2021 not in the String.\r
2022\r
2023 @retval RETURN_SUCCESS Address is translated from String.\r
2024 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
2025 If Data is NULL.\r
2026 @retval RETURN_UNSUPPORTED If String is not in the correct format.\r
2027 If any decimal number converted from D\r
2028 exceeds 255.\r
2029 If the decimal number converted from P\r
2030 exceeds 32.\r
2031\r
2032**/\r
2033RETURN_STATUS\r
2034EFIAPI\r
2035AsciiStrToIpv4Address (\r
2036 IN CONST CHAR8 *String,\r
d0e2f823 2037 OUT CHAR8 **EndPointer OPTIONAL,\r
fb4dd857
RN
2038 OUT IPv4_ADDRESS *Address,\r
2039 OUT UINT8 *PrefixLength OPTIONAL\r
2040 );\r
2041\r
2042/**\r
2043 Convert a Null-terminated ASCII GUID string to a value of type\r
2044 EFI_GUID.\r
2045\r
2046 This function outputs a GUID value by interpreting the contents of\r
2047 the ASCII string specified by String. The format of the input\r
2048 ASCII string String consists of 36 characters, as follows:\r
2049\r
2050 aabbccdd-eeff-gghh-iijj-kkllmmnnoopp\r
2051\r
2052 The pairs aa - pp are two characters in the range [0-9], [a-f] and\r
2053 [A-F], with each pair representing a single byte hexadecimal value.\r
2054\r
2055 The mapping between String and the EFI_GUID structure is as follows:\r
2056 aa Data1[24:31]\r
2057 bb Data1[16:23]\r
2058 cc Data1[8:15]\r
2059 dd Data1[0:7]\r
2060 ee Data2[8:15]\r
2061 ff Data2[0:7]\r
2062 gg Data3[8:15]\r
2063 hh Data3[0:7]\r
2064 ii Data4[0:7]\r
2065 jj Data4[8:15]\r
2066 kk Data4[16:23]\r
2067 ll Data4[24:31]\r
2068 mm Data4[32:39]\r
2069 nn Data4[40:47]\r
2070 oo Data4[48:55]\r
2071 pp Data4[56:63]\r
2072\r
fb4dd857
RN
2073 @param String Pointer to a Null-terminated ASCII string.\r
2074 @param Guid Pointer to the converted GUID.\r
2075\r
2076 @retval RETURN_SUCCESS Guid is translated from String.\r
2077 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
2078 If Data is NULL.\r
2079 @retval RETURN_UNSUPPORTED If String is not as the above format.\r
2080\r
2081**/\r
2082RETURN_STATUS\r
2083EFIAPI\r
2084AsciiStrToGuid (\r
2085 IN CONST CHAR8 *String,\r
2086 OUT GUID *Guid\r
2087 );\r
2088\r
2089/**\r
2090 Convert a Null-terminated ASCII hexadecimal string to a byte array.\r
2091\r
2092 This function outputs a byte array by interpreting the contents of\r
2093 the ASCII string specified by String in hexadecimal format. The format of\r
2094 the input ASCII string String is:\r
2095\r
2096 [XX]*\r
2097\r
2098 X is a hexadecimal digit character in the range [0-9], [a-f] and [A-F].\r
2099 The function decodes every two hexadecimal digit characters as one byte. The\r
2100 decoding stops after Length of characters and outputs Buffer containing\r
2101 (Length / 2) bytes.\r
2102\r
fb4dd857
RN
2103 @param String Pointer to a Null-terminated ASCII string.\r
2104 @param Length The number of ASCII characters to decode.\r
2105 @param Buffer Pointer to the converted bytes array.\r
2106 @param MaxBufferSize The maximum size of Buffer.\r
2107\r
2108 @retval RETURN_SUCCESS Buffer is translated from String.\r
2109 @retval RETURN_INVALID_PARAMETER If String is NULL.\r
2110 If Data is NULL.\r
2111 If Length is not multiple of 2.\r
2112 If PcdMaximumAsciiStringLength is not zero,\r
2113 and Length is greater than\r
2114 PcdMaximumAsciiStringLength.\r
2115 @retval RETURN_UNSUPPORTED If Length of characters from String contain\r
2116 a character that is not valid hexadecimal\r
2117 digit characters, or a Null-terminator.\r
2118 @retval RETURN_BUFFER_TOO_SMALL If MaxBufferSize is less than (Length / 2).\r
2119**/\r
2120RETURN_STATUS\r
2121EFIAPI\r
2122AsciiStrHexToBytes (\r
2123 IN CONST CHAR8 *String,\r
2124 IN UINTN Length,\r
2125 OUT UINT8 *Buffer,\r
2126 IN UINTN MaxBufferSize\r
2127 );\r
2128\r
415aa2f1 2129\r
3ab41b7a
JY
2130/**\r
2131 Convert one Null-terminated ASCII string to a Null-terminated\r
2132 Unicode string.\r
2133\r
2134 This function is similar to StrCpyS.\r
2135\r
2136 This function converts the contents of the ASCII string Source to the Unicode\r
2137 string Destination. The function terminates the Unicode string Destination by\r
2138 appending a Null-terminator character at the end.\r
2139\r
2140 The caller is responsible to make sure Destination points to a buffer with size\r
2141 equal or greater than ((AsciiStrLen (Source) + 1) * sizeof (CHAR16)) in bytes.\r
2142\r
2143 If Destination is not aligned on a 16-bit boundary, then ASSERT().\r
3ab41b7a
JY
2144\r
2145 If an error is returned, then the Destination is unmodified.\r
2146\r
2147 @param Source The pointer to a Null-terminated ASCII string.\r
2148 @param Destination The pointer to a Null-terminated Unicode string.\r
2149 @param DestMax The maximum number of Destination Unicode\r
2150 char, including terminating null char.\r
2151\r
2152 @retval RETURN_SUCCESS String is converted.\r
2153 @retval RETURN_BUFFER_TOO_SMALL If DestMax is NOT greater than StrLen(Source).\r
2154 @retval RETURN_INVALID_PARAMETER If Destination is NULL.\r
2155 If Source is NULL.\r
2156 If PcdMaximumUnicodeStringLength is not zero,\r
2157 and DestMax is greater than\r
2158 PcdMaximumUnicodeStringLength.\r
2159 If PcdMaximumAsciiStringLength is not zero,\r
2160 and DestMax is greater than\r
2161 PcdMaximumAsciiStringLength.\r
2162 If DestMax is 0.\r
2163 @retval RETURN_ACCESS_DENIED If Source and Destination overlap.\r
2164\r
2165**/\r
2166RETURN_STATUS\r
2167EFIAPI\r
2168AsciiStrToUnicodeStrS (\r
2169 IN CONST CHAR8 *Source,\r
2170 OUT CHAR16 *Destination,\r
2171 IN UINTN DestMax\r
2172 );\r
ac644614 2173\r
02263214
HW
2174/**\r
2175 Convert not more than Length successive characters from a Null-terminated\r
2176 Ascii string to a Null-terminated Unicode string. If no null char is copied\r
2177 from Source, then Destination[Length] is always set to null.\r
2178\r
2179 This function converts not more than Length successive characters from the\r
2180 Ascii string Source to the Unicode string Destination. The function\r
2181 terminates the Unicode string Destination by appending a Null-terminator\r
2182 character at the end.\r
2183\r
2184 The caller is responsible to make sure Destination points to a buffer with\r
2185 size not smaller than\r
2186 ((MIN(AsciiStrLen(Source), Length) + 1) * sizeof (CHAR8)) in bytes.\r
2187\r
2188 If Destination is not aligned on a 16-bit boundary, then ASSERT().\r
02263214
HW
2189\r
2190 If an error is returned, then Destination and DestinationLength are\r
2191 unmodified.\r
2192\r
2193 @param Source The pointer to a Null-terminated Ascii string.\r
2194 @param Length The maximum number of Ascii characters to convert.\r
2195 @param Destination The pointer to a Null-terminated Unicode string.\r
2196 @param DestMax The maximum number of Destination Unicode char,\r
2197 including terminating null char.\r
2198 @param DestinationLength The number of Ascii characters converted.\r
2199\r
2200 @retval RETURN_SUCCESS String is converted.\r
2201 @retval RETURN_INVALID_PARAMETER If Destination is NULL.\r
2202 If Source is NULL.\r
2203 If DestinationLength is NULL.\r
2204 If PcdMaximumUnicodeStringLength is not\r
2205 zero, and Length or DestMax is greater than\r
2206 PcdMaximumUnicodeStringLength.\r
2207 If PcdMaximumAsciiStringLength is not zero,\r
2208 and Length or DestMax is greater than\r
2209 PcdMaximumAsciiStringLength.\r
2210 If DestMax is 0.\r
2211 @retval RETURN_BUFFER_TOO_SMALL If DestMax is NOT greater than\r
2212 MIN(AsciiStrLen(Source), Length).\r
2213 @retval RETURN_ACCESS_DENIED If Source and Destination overlap.\r
2214\r
2215**/\r
2216RETURN_STATUS\r
2217EFIAPI\r
2218AsciiStrnToUnicodeStrS (\r
2219 IN CONST CHAR8 *Source,\r
2220 IN UINTN Length,\r
2221 OUT CHAR16 *Destination,\r
2222 IN UINTN DestMax,\r
2223 OUT UINTN *DestinationLength\r
2224 );\r
2225\r
5dbfa01e
MT
2226/**\r
2227 Convert a Unicode character to upper case only if\r
2228 it maps to a valid small-case ASCII character.\r
2229\r
2230 This internal function only deal with Unicode character\r
2231 which maps to a valid small-case ASCII character, i.e.\r
2232 L'a' to L'z'. For other Unicode character, the input character\r
2233 is returned directly.\r
2234\r
2235 @param Char The character to convert.\r
2236\r
2237 @retval LowerCharacter If the Char is with range L'a' to L'z'.\r
2238 @retval Unchanged Otherwise.\r
2239\r
2240**/\r
2241CHAR16\r
2242EFIAPI\r
2243CharToUpper (\r
2244 IN CHAR16 Char\r
2245 );\r
2246\r
2247/**\r
2248 Converts a lowercase Ascii character to upper one.\r
2249\r
2250 If Chr is lowercase Ascii character, then converts it to upper one.\r
2251\r
2252 If Value >= 0xA0, then ASSERT().\r
2253 If (Value & 0x0F) >= 0x0A, then ASSERT().\r
2254\r
2255 @param Chr one Ascii character\r
2256\r
2257 @return The uppercase value of Ascii character\r
2258\r
2259**/\r
2260CHAR8\r
2261EFIAPI\r
2262AsciiCharToUpper (\r
2263 IN CHAR8 Chr\r
2264 );\r
2265\r
1f7af69d
MT
2266/**\r
2267 Convert binary data to a Base64 encoded ascii string based on RFC4648.\r
2268\r
2269 Produce a Null-terminated Ascii string in the output buffer specified by Destination and DestinationSize.\r
2270 The Ascii string is produced by converting the data string specified by Source and SourceLength.\r
2271\r
2272 @param Source Input UINT8 data\r
2273 @param SourceLength Number of UINT8 bytes of data\r
2274 @param Destination Pointer to output string buffer\r
2275 @param DestinationSize Size of ascii buffer. Set to 0 to get the size needed.\r
2276 Caller is responsible for passing in buffer of DestinationSize\r
2277\r
2278 @retval RETURN_SUCCESS When ascii buffer is filled in.\r
2279 @retval RETURN_INVALID_PARAMETER If Source is NULL or DestinationSize is NULL.\r
2280 @retval RETURN_INVALID_PARAMETER If SourceLength or DestinationSize is bigger than (MAX_ADDRESS - (UINTN)Destination).\r
2281 @retval RETURN_BUFFER_TOO_SMALL If SourceLength is 0 and DestinationSize is <1.\r
2282 @retval RETURN_BUFFER_TOO_SMALL If Destination is NULL or DestinationSize is smaller than required buffersize.\r
2283\r
2284**/\r
2285RETURN_STATUS\r
2286EFIAPI\r
2287Base64Encode (\r
2288 IN CONST UINT8 *Source,\r
2289 IN UINTN SourceLength,\r
2290 OUT CHAR8 *Destination OPTIONAL,\r
2291 IN OUT UINTN *DestinationSize\r
2292 );\r
2293\r
2294/**\r
5d68fc67
LE
2295 Decode Base64 ASCII encoded data to 8-bit binary representation, based on\r
2296 RFC4648.\r
2297\r
2298 Decoding occurs according to "Table 1: The Base 64 Alphabet" in RFC4648.\r
2299\r
2300 Whitespace is ignored at all positions:\r
2301 - 0x09 ('\t') horizontal tab\r
2302 - 0x0A ('\n') new line\r
2303 - 0x0B ('\v') vertical tab\r
2304 - 0x0C ('\f') form feed\r
2305 - 0x0D ('\r') carriage return\r
2306 - 0x20 (' ') space\r
2307\r
2308 The minimum amount of required padding (with ASCII 0x3D, '=') is tolerated\r
2309 and enforced at the end of the Base64 ASCII encoded data, and only there.\r
2310\r
2311 Other characters outside of the encoding alphabet cause the function to\r
2312 reject the Base64 ASCII encoded data.\r
2313\r
2314 @param[in] Source Array of CHAR8 elements containing the Base64\r
2315 ASCII encoding. May be NULL if SourceSize is\r
2316 zero.\r
2317\r
2318 @param[in] SourceSize Number of CHAR8 elements in Source.\r
2319\r
2320 @param[out] Destination Array of UINT8 elements receiving the decoded\r
2321 8-bit binary representation. Allocated by the\r
2322 caller. May be NULL if DestinationSize is\r
2323 zero on input. If NULL, decoding is\r
2324 performed, but the 8-bit binary\r
2325 representation is not stored. If non-NULL and\r
2326 the function returns an error, the contents\r
2327 of Destination are indeterminate.\r
2328\r
2329 @param[in,out] DestinationSize On input, the number of UINT8 elements that\r
2330 the caller allocated for Destination. On\r
2331 output, if the function returns\r
2332 RETURN_SUCCESS or RETURN_BUFFER_TOO_SMALL,\r
2333 the number of UINT8 elements that are\r
2334 required for decoding the Base64 ASCII\r
2335 representation. If the function returns a\r
2336 value different from both RETURN_SUCCESS and\r
2337 RETURN_BUFFER_TOO_SMALL, then DestinationSize\r
2338 is indeterminate on output.\r
2339\r
2340 @retval RETURN_SUCCESS SourceSize CHAR8 elements at Source have\r
2341 been decoded to on-output DestinationSize\r
2342 UINT8 elements at Destination. Note that\r
2343 RETURN_SUCCESS covers the case when\r
2344 DestinationSize is zero on input, and\r
2345 Source decodes to zero bytes (due to\r
2346 containing at most ignored whitespace).\r
2347\r
2348 @retval RETURN_BUFFER_TOO_SMALL The input value of DestinationSize is not\r
2349 large enough for decoding SourceSize CHAR8\r
2350 elements at Source. The required number of\r
2351 UINT8 elements has been stored to\r
2352 DestinationSize.\r
2353\r
2354 @retval RETURN_INVALID_PARAMETER DestinationSize is NULL.\r
2355\r
2356 @retval RETURN_INVALID_PARAMETER Source is NULL, but SourceSize is not zero.\r
2357\r
2358 @retval RETURN_INVALID_PARAMETER Destination is NULL, but DestinationSize is\r
2359 not zero on input.\r
2360\r
2361 @retval RETURN_INVALID_PARAMETER Source is non-NULL, and (Source +\r
2362 SourceSize) would wrap around MAX_ADDRESS.\r
2363\r
2364 @retval RETURN_INVALID_PARAMETER Destination is non-NULL, and (Destination +\r
2365 DestinationSize) would wrap around\r
2366 MAX_ADDRESS, as specified on input.\r
2367\r
2368 @retval RETURN_INVALID_PARAMETER None of Source and Destination are NULL,\r
2369 and CHAR8[SourceSize] at Source overlaps\r
2370 UINT8[DestinationSize] at Destination, as\r
2371 specified on input.\r
2372\r
2373 @retval RETURN_INVALID_PARAMETER Invalid CHAR8 element encountered in\r
2374 Source.\r
2375**/\r
1f7af69d
MT
2376RETURN_STATUS\r
2377EFIAPI\r
2378Base64Decode (\r
5d68fc67
LE
2379 IN CONST CHAR8 *Source OPTIONAL,\r
2380 IN UINTN SourceSize,\r
2381 OUT UINT8 *Destination OPTIONAL,\r
2382 IN OUT UINTN *DestinationSize\r
1f7af69d
MT
2383 );\r
2384\r
ac644614 2385/**\r
2386 Converts an 8-bit value to an 8-bit BCD value.\r
2387\r
2388 Converts the 8-bit value specified by Value to BCD. The BCD value is\r
2389 returned.\r
2390\r
2391 If Value >= 100, then ASSERT().\r
2392\r
2393 @param Value The 8-bit value to convert to BCD. Range 0..99.\r
2394\r
9aa049d9 2395 @return The BCD value.\r
ac644614 2396\r
2397**/\r
2398UINT8\r
2399EFIAPI\r
2400DecimalToBcd8 (\r
2401 IN UINT8 Value\r
2402 );\r
2403\r
2404\r
2405/**\r
2406 Converts an 8-bit BCD value to an 8-bit value.\r
2407\r
2408 Converts the 8-bit BCD value specified by Value to an 8-bit value. The 8-bit\r
2409 value is returned.\r
2410\r
2411 If Value >= 0xA0, then ASSERT().\r
2412 If (Value & 0x0F) >= 0x0A, then ASSERT().\r
2413\r
2414 @param Value The 8-bit BCD value to convert to an 8-bit value.\r
2415\r
2416 @return The 8-bit value is returned.\r
2417\r
2418**/\r
2419UINT8\r
2420EFIAPI\r
2421BcdToDecimal8 (\r
2422 IN UINT8 Value\r
2423 );\r
2424\r
ae591c14
DM
2425//\r
2426// File Path Manipulation Functions\r
2427//\r
2428\r
2429/**\r
6a623094 2430 Removes the last directory or file entry in a path.\r
ae591c14
DM
2431\r
2432 @param[in, out] Path The pointer to the path to modify.\r
2433\r
2434 @retval FALSE Nothing was found to remove.\r
2435 @retval TRUE A directory or file was removed.\r
2436**/\r
2437BOOLEAN\r
2438EFIAPI\r
2439PathRemoveLastItem(\r
2440 IN OUT CHAR16 *Path\r
2441 );\r
2442\r
2443/**\r
2444 Function to clean up paths.\r
2445 - Single periods in the path are removed.\r
2446 - Double periods in the path are removed along with a single parent directory.\r
2447 - Forward slashes L'/' are converted to backward slashes L'\'.\r
2448\r
2449 This will be done inline and the existing buffer may be larger than required\r
2450 upon completion.\r
2451\r
2452 @param[in] Path The pointer to the string containing the path.\r
2453\r
00b7cc0f 2454 @return Returns Path, otherwise returns NULL to indicate that an error has occurred.\r
ae591c14
DM
2455**/\r
2456CHAR16*\r
2457EFIAPI\r
2458PathCleanUpDirectories(\r
2459 IN CHAR16 *Path\r
909ac47b 2460 );\r
ac644614 2461\r
2462//\r
2463// Linked List Functions and Macros\r
2464//\r
2465\r
2466/**\r
2467 Initializes the head node of a doubly linked list that is declared as a\r
2468 global variable in a module.\r
2469\r
2470 Initializes the forward and backward links of a new linked list. After\r
2471 initializing a linked list with this macro, the other linked list functions\r
2472 may be used to add and remove nodes from the linked list. This macro results\r
2473 in smaller executables by initializing the linked list in the data section,\r
2474 instead if calling the InitializeListHead() function to perform the\r
2475 equivalent operation.\r
2476\r
77f863ee 2477 @param ListHead The head note of a list to initialize.\r
ac644614 2478\r
2479**/\r
17f695ed 2480#define INITIALIZE_LIST_HEAD_VARIABLE(ListHead) {&(ListHead), &(ListHead)}\r
ac644614 2481\r
3b5a58c5
MK
2482/**\r
2483 Iterates over each node in a doubly linked list using each node's forward link.\r
2484\r
2485 @param Entry A pointer to a list node used as a loop cursor during iteration\r
2486 @param ListHead The head node of the doubly linked list\r
2487\r
2488**/\r
2489#define BASE_LIST_FOR_EACH(Entry, ListHead) \\r
2490 for(Entry = (ListHead)->ForwardLink; Entry != (ListHead); Entry = Entry->ForwardLink)\r
2491\r
2492/**\r
2493 Iterates over each node in a doubly linked list using each node's forward link\r
2494 with safety against node removal.\r
2495\r
2496 This macro uses NextEntry to temporarily store the next list node so the node\r
2497 pointed to by Entry may be deleted in the current loop iteration step and\r
2498 iteration can continue from the node pointed to by NextEntry.\r
2499\r
2500 @param Entry A pointer to a list node used as a loop cursor during iteration\r
2501 @param NextEntry A pointer to a list node used to temporarily store the next node\r
2502 @param ListHead The head node of the doubly linked list\r
2503\r
2504**/\r
2505#define BASE_LIST_FOR_EACH_SAFE(Entry, NextEntry, ListHead) \\r
2506 for(Entry = (ListHead)->ForwardLink, NextEntry = Entry->ForwardLink;\\r
2507 Entry != (ListHead); Entry = NextEntry, NextEntry = Entry->ForwardLink)\r
ac644614 2508\r
d0aef615
MH
2509/**\r
2510 Checks whether FirstEntry and SecondEntry are part of the same doubly-linked\r
2511 list.\r
2512\r
2513 If FirstEntry is NULL, then ASSERT().\r
2514 If FirstEntry->ForwardLink is NULL, then ASSERT().\r
2515 If FirstEntry->BackLink is NULL, then ASSERT().\r
2516 If SecondEntry is NULL, then ASSERT();\r
2517 If PcdMaximumLinkedListLength is not zero, and List contains more than\r
2518 PcdMaximumLinkedListLength nodes, then ASSERT().\r
2519\r
2520 @param FirstEntry A pointer to a node in a linked list.\r
2521 @param SecondEntry A pointer to the node to locate.\r
2522\r
2523 @retval TRUE SecondEntry is in the same doubly-linked list as FirstEntry.\r
2524 @retval FALSE SecondEntry isn't in the same doubly-linked list as FirstEntry,\r
2525 or FirstEntry is invalid.\r
2526\r
2527**/\r
2528BOOLEAN\r
2529EFIAPI\r
2530IsNodeInList (\r
2531 IN CONST LIST_ENTRY *FirstEntry,\r
2532 IN CONST LIST_ENTRY *SecondEntry\r
2533 );\r
2534\r
2535\r
ac644614 2536/**\r
2537 Initializes the head node of a doubly linked list, and returns the pointer to\r
2538 the head node of the doubly linked list.\r
2539\r
2540 Initializes the forward and backward links of a new linked list. After\r
2541 initializing a linked list with this function, the other linked list\r
2542 functions may be used to add and remove nodes from the linked list. It is up\r
2543 to the caller of this function to allocate the memory for ListHead.\r
2544\r
2545 If ListHead is NULL, then ASSERT().\r
2546\r
2547 @param ListHead A pointer to the head node of a new doubly linked list.\r
2548\r
2549 @return ListHead\r
2550\r
2551**/\r
2552LIST_ENTRY *\r
2553EFIAPI\r
2554InitializeListHead (\r
aa0583c7 2555 IN OUT LIST_ENTRY *ListHead\r
ac644614 2556 );\r
2557\r
2558\r
2559/**\r
2560 Adds a node to the beginning of a doubly linked list, and returns the pointer\r
2561 to the head node of the doubly linked list.\r
2562\r
2563 Adds the node Entry at the beginning of the doubly linked list denoted by\r
2564 ListHead, and returns ListHead.\r
2565\r
2566 If ListHead is NULL, then ASSERT().\r
2567 If Entry is NULL, then ASSERT().\r
17f695ed 2568 If ListHead was not initialized with INTIALIZE_LIST_HEAD_VARIABLE() or\r
2569 InitializeListHead(), then ASSERT().\r
a71865b1 2570 If PcdMaximumLinkedListLength is not zero, and prior to insertion the number\r
ac644614 2571 of nodes in ListHead, including the ListHead node, is greater than or\r
2572 equal to PcdMaximumLinkedListLength, then ASSERT().\r
2573\r
2574 @param ListHead A pointer to the head node of a doubly linked list.\r
2575 @param Entry A pointer to a node that is to be inserted at the beginning\r
2576 of a doubly linked list.\r
2577\r
2578 @return ListHead\r
2579\r
2580**/\r
2581LIST_ENTRY *\r
2582EFIAPI\r
2583InsertHeadList (\r
aa0583c7 2584 IN OUT LIST_ENTRY *ListHead,\r
2585 IN OUT LIST_ENTRY *Entry\r
ac644614 2586 );\r
2587\r
2588\r
2589/**\r
2590 Adds a node to the end of a doubly linked list, and returns the pointer to\r
2591 the head node of the doubly linked list.\r
2592\r
2593 Adds the node Entry to the end of the doubly linked list denoted by ListHead,\r
2594 and returns ListHead.\r
2595\r
2596 If ListHead is NULL, then ASSERT().\r
2597 If Entry is NULL, then ASSERT().\r
9095d37b 2598 If ListHead was not initialized with INTIALIZE_LIST_HEAD_VARIABLE() or\r
17f695ed 2599 InitializeListHead(), then ASSERT().\r
a71865b1 2600 If PcdMaximumLinkedListLength is not zero, and prior to insertion the number\r
ac644614 2601 of nodes in ListHead, including the ListHead node, is greater than or\r
2602 equal to PcdMaximumLinkedListLength, then ASSERT().\r
2603\r
2604 @param ListHead A pointer to the head node of a doubly linked list.\r
2605 @param Entry A pointer to a node that is to be added at the end of the\r
2606 doubly linked list.\r
2607\r
2608 @return ListHead\r
2609\r
2610**/\r
2611LIST_ENTRY *\r
2612EFIAPI\r
2613InsertTailList (\r
aa0583c7 2614 IN OUT LIST_ENTRY *ListHead,\r
2615 IN OUT LIST_ENTRY *Entry\r
ac644614 2616 );\r
2617\r
2618\r
2619/**\r
2620 Retrieves the first node of a doubly linked list.\r
2621\r
9095d37b 2622 Returns the first node of a doubly linked list. List must have been\r
17f695ed 2623 initialized with INTIALIZE_LIST_HEAD_VARIABLE() or InitializeListHead().\r
2624 If List is empty, then List is returned.\r
ac644614 2625\r
2626 If List is NULL, then ASSERT().\r
9095d37b 2627 If List was not initialized with INTIALIZE_LIST_HEAD_VARIABLE() or\r
17f695ed 2628 InitializeListHead(), then ASSERT().\r
a71865b1 2629 If PcdMaximumLinkedListLength is not zero, and the number of nodes\r
ac644614 2630 in List, including the List node, is greater than or equal to\r
2631 PcdMaximumLinkedListLength, then ASSERT().\r
2632\r
2633 @param List A pointer to the head node of a doubly linked list.\r
2634\r
2635 @return The first node of a doubly linked list.\r
e01a125f 2636 @retval List The list is empty.\r
ac644614 2637\r
2638**/\r
2639LIST_ENTRY *\r
2640EFIAPI\r
2641GetFirstNode (\r
2642 IN CONST LIST_ENTRY *List\r
2643 );\r
2644\r
2645\r
2646/**\r
2647 Retrieves the next node of a doubly linked list.\r
2648\r
9095d37b 2649 Returns the node of a doubly linked list that follows Node.\r
17f695ed 2650 List must have been initialized with INTIALIZE_LIST_HEAD_VARIABLE()\r
2651 or InitializeListHead(). If List is empty, then List is returned.\r
ac644614 2652\r
2653 If List is NULL, then ASSERT().\r
2654 If Node is NULL, then ASSERT().\r
9095d37b 2655 If List was not initialized with INTIALIZE_LIST_HEAD_VARIABLE() or\r
17f695ed 2656 InitializeListHead(), then ASSERT().\r
a71865b1
LG
2657 If PcdMaximumLinkedListLength is not zero, and List contains more than\r
2658 PcdMaximumLinkedListLength nodes, then ASSERT().\r
1081f624 2659 If PcdVerifyNodeInList is TRUE and Node is not a node in List, then ASSERT().\r
ac644614 2660\r
2661 @param List A pointer to the head node of a doubly linked list.\r
2662 @param Node A pointer to a node in the doubly linked list.\r
2663\r
af2dc6a7 2664 @return The pointer to the next node if one exists. Otherwise List is returned.\r
ac644614 2665\r
2666**/\r
2667LIST_ENTRY *\r
2668EFIAPI\r
2669GetNextNode (\r
2670 IN CONST LIST_ENTRY *List,\r
2671 IN CONST LIST_ENTRY *Node\r
2672 );\r
2673\r
9095d37b 2674\r
cbca8de5 2675/**\r
2676 Retrieves the previous node of a doubly linked list.\r
9095d37b
LG
2677\r
2678 Returns the node of a doubly linked list that precedes Node.\r
cbca8de5 2679 List must have been initialized with INTIALIZE_LIST_HEAD_VARIABLE()\r
2680 or InitializeListHead(). If List is empty, then List is returned.\r
9095d37b 2681\r
cbca8de5 2682 If List is NULL, then ASSERT().\r
2683 If Node is NULL, then ASSERT().\r
9095d37b 2684 If List was not initialized with INTIALIZE_LIST_HEAD_VARIABLE() or\r
cbca8de5 2685 InitializeListHead(), then ASSERT().\r
a71865b1
LG
2686 If PcdMaximumLinkedListLength is not zero, and List contains more than\r
2687 PcdMaximumLinkedListLength nodes, then ASSERT().\r
cbca8de5 2688 If PcdVerifyNodeInList is TRUE and Node is not a node in List, then ASSERT().\r
9095d37b 2689\r
cbca8de5 2690 @param List A pointer to the head node of a doubly linked list.\r
2691 @param Node A pointer to a node in the doubly linked list.\r
9095d37b 2692\r
af2dc6a7 2693 @return The pointer to the previous node if one exists. Otherwise List is returned.\r
9095d37b 2694\r
cbca8de5 2695**/\r
2696LIST_ENTRY *\r
2697EFIAPI\r
2698GetPreviousNode (\r
2699 IN CONST LIST_ENTRY *List,\r
2700 IN CONST LIST_ENTRY *Node\r
2701 );\r
ac644614 2702\r
9095d37b 2703\r
ac644614 2704/**\r
2705 Checks to see if a doubly linked list is empty or not.\r
2706\r
2707 Checks to see if the doubly linked list is empty. If the linked list contains\r
2708 zero nodes, this function returns TRUE. Otherwise, it returns FALSE.\r
2709\r
2710 If ListHead is NULL, then ASSERT().\r
9095d37b 2711 If ListHead was not initialized with INTIALIZE_LIST_HEAD_VARIABLE() or\r
17f695ed 2712 InitializeListHead(), then ASSERT().\r
a71865b1 2713 If PcdMaximumLinkedListLength is not zero, and the number of nodes\r
ac644614 2714 in List, including the List node, is greater than or equal to\r
2715 PcdMaximumLinkedListLength, then ASSERT().\r
2716\r
2717 @param ListHead A pointer to the head node of a doubly linked list.\r
2718\r
2719 @retval TRUE The linked list is empty.\r
2720 @retval FALSE The linked list is not empty.\r
2721\r
2722**/\r
2723BOOLEAN\r
2724EFIAPI\r
2725IsListEmpty (\r
2726 IN CONST LIST_ENTRY *ListHead\r
2727 );\r
2728\r
2729\r
2730/**\r
aa0583c7 2731 Determines if a node in a doubly linked list is the head node of a the same\r
2732 doubly linked list. This function is typically used to terminate a loop that\r
2733 traverses all the nodes in a doubly linked list starting with the head node.\r
ac644614 2734\r
aa0583c7 2735 Returns TRUE if Node is equal to List. Returns FALSE if Node is one of the\r
2736 nodes in the doubly linked list specified by List. List must have been\r
17f695ed 2737 initialized with INTIALIZE_LIST_HEAD_VARIABLE() or InitializeListHead().\r
ac644614 2738\r
2739 If List is NULL, then ASSERT().\r
2740 If Node is NULL, then ASSERT().\r
9095d37b 2741 If List was not initialized with INTIALIZE_LIST_HEAD_VARIABLE() or InitializeListHead(),\r
17f695ed 2742 then ASSERT().\r
a71865b1 2743 If PcdMaximumLinkedListLength is not zero, and the number of nodes\r
ac644614 2744 in List, including the List node, is greater than or equal to\r
2745 PcdMaximumLinkedListLength, then ASSERT().\r
9095d37b 2746 If PcdVerifyNodeInList is TRUE and Node is not a node in List the and Node is not equal\r
1081f624 2747 to List, then ASSERT().\r
ac644614 2748\r
2749 @param List A pointer to the head node of a doubly linked list.\r
2750 @param Node A pointer to a node in the doubly linked list.\r
2751\r
1955808d
LG
2752 @retval TRUE Node is the head of the doubly-linked list pointed by List.\r
2753 @retval FALSE Node is not the head of the doubly-linked list pointed by List.\r
ac644614 2754\r
2755**/\r
2756BOOLEAN\r
2757EFIAPI\r
2758IsNull (\r
2759 IN CONST LIST_ENTRY *List,\r
2760 IN CONST LIST_ENTRY *Node\r
2761 );\r
2762\r
2763\r
2764/**\r
2765 Determines if a node the last node in a doubly linked list.\r
2766\r
2767 Returns TRUE if Node is the last node in the doubly linked list specified by\r
2768 List. Otherwise, FALSE is returned. List must have been initialized with\r
17f695ed 2769 INTIALIZE_LIST_HEAD_VARIABLE() or InitializeListHead().\r
ac644614 2770\r
2771 If List is NULL, then ASSERT().\r
2772 If Node is NULL, then ASSERT().\r
17f695ed 2773 If List was not initialized with INTIALIZE_LIST_HEAD_VARIABLE() or\r
2774 InitializeListHead(), then ASSERT().\r
a71865b1 2775 If PcdMaximumLinkedListLength is not zero, and the number of nodes\r
ac644614 2776 in List, including the List node, is greater than or equal to\r
2777 PcdMaximumLinkedListLength, then ASSERT().\r
1081f624 2778 If PcdVerifyNodeInList is TRUE and Node is not a node in List, then ASSERT().\r
ac644614 2779\r
2780 @param List A pointer to the head node of a doubly linked list.\r
2781 @param Node A pointer to a node in the doubly linked list.\r
2782\r
2783 @retval TRUE Node is the last node in the linked list.\r
2784 @retval FALSE Node is not the last node in the linked list.\r
2785\r
2786**/\r
2787BOOLEAN\r
2788EFIAPI\r
2789IsNodeAtEnd (\r
2790 IN CONST LIST_ENTRY *List,\r
2791 IN CONST LIST_ENTRY *Node\r
2792 );\r
2793\r
2794\r
2795/**\r
2796 Swaps the location of two nodes in a doubly linked list, and returns the\r
2797 first node after the swap.\r
2798\r
2799 If FirstEntry is identical to SecondEntry, then SecondEntry is returned.\r
2800 Otherwise, the location of the FirstEntry node is swapped with the location\r
2801 of the SecondEntry node in a doubly linked list. SecondEntry must be in the\r
2802 same double linked list as FirstEntry and that double linked list must have\r
9095d37b 2803 been initialized with INTIALIZE_LIST_HEAD_VARIABLE() or InitializeListHead().\r
17f695ed 2804 SecondEntry is returned after the nodes are swapped.\r
ac644614 2805\r
2806 If FirstEntry is NULL, then ASSERT().\r
2807 If SecondEntry is NULL, then ASSERT().\r
9095d37b 2808 If PcdVerifyNodeInList is TRUE and SecondEntry and FirstEntry are not in the\r
1081f624 2809 same linked list, then ASSERT().\r
ac644614 2810 If PcdMaximumLinkedListLength is not zero, and the number of nodes in the\r
2811 linked list containing the FirstEntry and SecondEntry nodes, including\r
2812 the FirstEntry and SecondEntry nodes, is greater than or equal to\r
2813 PcdMaximumLinkedListLength, then ASSERT().\r
2814\r
2815 @param FirstEntry A pointer to a node in a linked list.\r
2816 @param SecondEntry A pointer to another node in the same linked list.\r
9095d37b 2817\r
9aa049d9 2818 @return SecondEntry.\r
ac644614 2819\r
2820**/\r
2821LIST_ENTRY *\r
2822EFIAPI\r
2823SwapListEntries (\r
aa0583c7 2824 IN OUT LIST_ENTRY *FirstEntry,\r
2825 IN OUT LIST_ENTRY *SecondEntry\r
ac644614 2826 );\r
2827\r
2828\r
2829/**\r
2830 Removes a node from a doubly linked list, and returns the node that follows\r
2831 the removed node.\r
2832\r
2833 Removes the node Entry from a doubly linked list. It is up to the caller of\r
2834 this function to release the memory used by this node if that is required. On\r
2835 exit, the node following Entry in the doubly linked list is returned. If\r
2836 Entry is the only node in the linked list, then the head node of the linked\r
2837 list is returned.\r
2838\r
2839 If Entry is NULL, then ASSERT().\r
2840 If Entry is the head node of an empty list, then ASSERT().\r
2841 If PcdMaximumLinkedListLength is not zero, and the number of nodes in the\r
2842 linked list containing Entry, including the Entry node, is greater than\r
2843 or equal to PcdMaximumLinkedListLength, then ASSERT().\r
2844\r
9aa049d9 2845 @param Entry A pointer to a node in a linked list.\r
ac644614 2846\r
9aa049d9 2847 @return Entry.\r
ac644614 2848\r
2849**/\r
2850LIST_ENTRY *\r
2851EFIAPI\r
2852RemoveEntryList (\r
2853 IN CONST LIST_ENTRY *Entry\r
2854 );\r
2855\r
2856//\r
2857// Math Services\r
2858//\r
4225a464
IK
2859/**\r
2860 Prototype for comparison function for any two element types.\r
2861\r
2862 @param[in] Buffer1 The pointer to first buffer.\r
2863 @param[in] Buffer2 The pointer to second buffer.\r
2864\r
2865 @retval 0 Buffer1 equal to Buffer2.\r
2866 @return <0 Buffer1 is less than Buffer2.\r
2867 @return >0 Buffer1 is greater than Buffer2.\r
2868**/\r
2869typedef\r
2870INTN\r
2871(EFIAPI *BASE_SORT_COMPARE)(\r
2872 IN CONST VOID *Buffer1,\r
2873 IN CONST VOID *Buffer2\r
2874 );\r
2875\r
2876/**\r
2877 This function is identical to perform QuickSort,\r
2878 except that is uses the pre-allocated buffer so the in place sorting does not need to\r
2879 allocate and free buffers constantly.\r
2880\r
2881 Each element must be equal sized.\r
2882\r
2883 if BufferToSort is NULL, then ASSERT.\r
2884 if CompareFunction is NULL, then ASSERT.\r
2885 if BufferOneElement is NULL, then ASSERT.\r
2886 if ElementSize is < 1, then ASSERT.\r
2887\r
2888 if Count is < 2 then perform no action.\r
2889\r
2890 @param[in, out] BufferToSort on call a Buffer of (possibly sorted) elements\r
2891 on return a buffer of sorted elements\r
2892 @param[in] Count the number of elements in the buffer to sort\r
2893 @param[in] ElementSize Size of an element in bytes\r
2894 @param[in] CompareFunction The function to call to perform the comparison\r
2895 of any 2 elements\r
2896 @param[out] BufferOneElement Caller provided buffer whose size equals to ElementSize.\r
2897 It's used by QuickSort() for swapping in sorting.\r
2898**/\r
2899VOID\r
2900EFIAPI\r
2901QuickSort (\r
2902 IN OUT VOID *BufferToSort,\r
2903 IN CONST UINTN Count,\r
2904 IN CONST UINTN ElementSize,\r
2905 IN BASE_SORT_COMPARE CompareFunction,\r
2906 OUT VOID *BufferOneElement\r
2907 );\r
ac644614 2908\r
2909/**\r
2910 Shifts a 64-bit integer left between 0 and 63 bits. The low bits are filled\r
2911 with zeros. The shifted value is returned.\r
2912\r
2913 This function shifts the 64-bit value Operand to the left by Count bits. The\r
2914 low Count bits are set to zero. The shifted value is returned.\r
2915\r
2916 If Count is greater than 63, then ASSERT().\r
2917\r
2918 @param Operand The 64-bit operand to shift left.\r
2919 @param Count The number of bits to shift left.\r
2920\r
9aa049d9 2921 @return Operand << Count.\r
ac644614 2922\r
2923**/\r
2924UINT64\r
2925EFIAPI\r
2926LShiftU64 (\r
2927 IN UINT64 Operand,\r
2928 IN UINTN Count\r
2929 );\r
2930\r
2931\r
2932/**\r
2933 Shifts a 64-bit integer right between 0 and 63 bits. This high bits are\r
2934 filled with zeros. The shifted value is returned.\r
2935\r
2936 This function shifts the 64-bit value Operand to the right by Count bits. The\r
2937 high Count bits are set to zero. The shifted value is returned.\r
2938\r
2939 If Count is greater than 63, then ASSERT().\r
2940\r
2941 @param Operand The 64-bit operand to shift right.\r
2942 @param Count The number of bits to shift right.\r
2943\r
2944 @return Operand >> Count\r
2945\r
2946**/\r
2947UINT64\r
2948EFIAPI\r
2949RShiftU64 (\r
2950 IN UINT64 Operand,\r
2951 IN UINTN Count\r
2952 );\r
2953\r
2954\r
2955/**\r
2956 Shifts a 64-bit integer right between 0 and 63 bits. The high bits are filled\r
2957 with original integer's bit 63. The shifted value is returned.\r
2958\r
2959 This function shifts the 64-bit value Operand to the right by Count bits. The\r
2960 high Count bits are set to bit 63 of Operand. The shifted value is returned.\r
2961\r
2962 If Count is greater than 63, then ASSERT().\r
2963\r
2964 @param Operand The 64-bit operand to shift right.\r
2965 @param Count The number of bits to shift right.\r
2966\r
2967 @return Operand >> Count\r
2968\r
2969**/\r
2970UINT64\r
2971EFIAPI\r
2972ARShiftU64 (\r
2973 IN UINT64 Operand,\r
2974 IN UINTN Count\r
2975 );\r
2976\r
2977\r
2978/**\r
2979 Rotates a 32-bit integer left between 0 and 31 bits, filling the low bits\r
2980 with the high bits that were rotated.\r
2981\r
2982 This function rotates the 32-bit value Operand to the left by Count bits. The\r
2983 low Count bits are fill with the high Count bits of Operand. The rotated\r
2984 value is returned.\r
2985\r
2986 If Count is greater than 31, then ASSERT().\r
2987\r
2988 @param Operand The 32-bit operand to rotate left.\r
2989 @param Count The number of bits to rotate left.\r
2990\r
17f695ed 2991 @return Operand << Count\r
ac644614 2992\r
2993**/\r
2994UINT32\r
2995EFIAPI\r
2996LRotU32 (\r
2997 IN UINT32 Operand,\r
2998 IN UINTN Count\r
2999 );\r
3000\r
3001\r
3002/**\r
3003 Rotates a 32-bit integer right between 0 and 31 bits, filling the high bits\r
3004 with the low bits that were rotated.\r
3005\r
3006 This function rotates the 32-bit value Operand to the right by Count bits.\r
3007 The high Count bits are fill with the low Count bits of Operand. The rotated\r
3008 value is returned.\r
3009\r
3010 If Count is greater than 31, then ASSERT().\r
3011\r
3012 @param Operand The 32-bit operand to rotate right.\r
3013 @param Count The number of bits to rotate right.\r
3014\r
2fe241a2 3015 @return Operand >> Count\r
ac644614 3016\r
3017**/\r
3018UINT32\r
3019EFIAPI\r
3020RRotU32 (\r
3021 IN UINT32 Operand,\r
3022 IN UINTN Count\r
3023 );\r
3024\r
3025\r
3026/**\r
3027 Rotates a 64-bit integer left between 0 and 63 bits, filling the low bits\r
3028 with the high bits that were rotated.\r
3029\r
3030 This function rotates the 64-bit value Operand to the left by Count bits. The\r
3031 low Count bits are fill with the high Count bits of Operand. The rotated\r
3032 value is returned.\r
3033\r
3034 If Count is greater than 63, then ASSERT().\r
3035\r
3036 @param Operand The 64-bit operand to rotate left.\r
3037 @param Count The number of bits to rotate left.\r
3038\r
17f695ed 3039 @return Operand << Count\r
ac644614 3040\r
3041**/\r
3042UINT64\r
3043EFIAPI\r
3044LRotU64 (\r
3045 IN UINT64 Operand,\r
3046 IN UINTN Count\r
3047 );\r
3048\r
3049\r
3050/**\r
3051 Rotates a 64-bit integer right between 0 and 63 bits, filling the high bits\r
3052 with the high low bits that were rotated.\r
3053\r
3054 This function rotates the 64-bit value Operand to the right by Count bits.\r
3055 The high Count bits are fill with the low Count bits of Operand. The rotated\r
3056 value is returned.\r
3057\r
3058 If Count is greater than 63, then ASSERT().\r
3059\r
3060 @param Operand The 64-bit operand to rotate right.\r
3061 @param Count The number of bits to rotate right.\r
3062\r
17f695ed 3063 @return Operand >> Count\r
ac644614 3064\r
3065**/\r
3066UINT64\r
3067EFIAPI\r
3068RRotU64 (\r
3069 IN UINT64 Operand,\r
3070 IN UINTN Count\r
3071 );\r
3072\r
3073\r
3074/**\r
3075 Returns the bit position of the lowest bit set in a 32-bit value.\r
3076\r
3077 This function computes the bit position of the lowest bit set in the 32-bit\r
3078 value specified by Operand. If Operand is zero, then -1 is returned.\r
3079 Otherwise, a value between 0 and 31 is returned.\r
3080\r
3081 @param Operand The 32-bit operand to evaluate.\r
3082\r
9aa049d9 3083 @retval 0..31 The lowest bit set in Operand was found.\r
17f695ed 3084 @retval -1 Operand is zero.\r
ac644614 3085\r
3086**/\r
3087INTN\r
3088EFIAPI\r
3089LowBitSet32 (\r
3090 IN UINT32 Operand\r
3091 );\r
3092\r
3093\r
3094/**\r
3095 Returns the bit position of the lowest bit set in a 64-bit value.\r
3096\r
3097 This function computes the bit position of the lowest bit set in the 64-bit\r
3098 value specified by Operand. If Operand is zero, then -1 is returned.\r
3099 Otherwise, a value between 0 and 63 is returned.\r
3100\r
3101 @param Operand The 64-bit operand to evaluate.\r
3102\r
9aa049d9 3103 @retval 0..63 The lowest bit set in Operand was found.\r
17f695ed 3104 @retval -1 Operand is zero.\r
3105\r
ac644614 3106\r
3107**/\r
3108INTN\r
3109EFIAPI\r
3110LowBitSet64 (\r
3111 IN UINT64 Operand\r
3112 );\r
3113\r
3114\r
3115/**\r
3116 Returns the bit position of the highest bit set in a 32-bit value. Equivalent\r
3117 to log2(x).\r
3118\r
3119 This function computes the bit position of the highest bit set in the 32-bit\r
3120 value specified by Operand. If Operand is zero, then -1 is returned.\r
3121 Otherwise, a value between 0 and 31 is returned.\r
3122\r
3123 @param Operand The 32-bit operand to evaluate.\r
3124\r
9aa049d9 3125 @retval 0..31 Position of the highest bit set in Operand if found.\r
17f695ed 3126 @retval -1 Operand is zero.\r
ac644614 3127\r
3128**/\r
3129INTN\r
3130EFIAPI\r
3131HighBitSet32 (\r
3132 IN UINT32 Operand\r
3133 );\r
3134\r
3135\r
3136/**\r
3137 Returns the bit position of the highest bit set in a 64-bit value. Equivalent\r
3138 to log2(x).\r
3139\r
3140 This function computes the bit position of the highest bit set in the 64-bit\r
3141 value specified by Operand. If Operand is zero, then -1 is returned.\r
3142 Otherwise, a value between 0 and 63 is returned.\r
3143\r
3144 @param Operand The 64-bit operand to evaluate.\r
3145\r
9aa049d9 3146 @retval 0..63 Position of the highest bit set in Operand if found.\r
17f695ed 3147 @retval -1 Operand is zero.\r
ac644614 3148\r
3149**/\r
3150INTN\r
3151EFIAPI\r
3152HighBitSet64 (\r
3153 IN UINT64 Operand\r
3154 );\r
3155\r
3156\r
3157/**\r
3158 Returns the value of the highest bit set in a 32-bit value. Equivalent to\r
17f695ed 3159 1 << log2(x).\r
ac644614 3160\r
3161 This function computes the value of the highest bit set in the 32-bit value\r
3162 specified by Operand. If Operand is zero, then zero is returned.\r
3163\r
3164 @param Operand The 32-bit operand to evaluate.\r
3165\r
3166 @return 1 << HighBitSet32(Operand)\r
3167 @retval 0 Operand is zero.\r
3168\r
3169**/\r
3170UINT32\r
3171EFIAPI\r
3172GetPowerOfTwo32 (\r
3173 IN UINT32 Operand\r
3174 );\r
3175\r
3176\r
3177/**\r
3178 Returns the value of the highest bit set in a 64-bit value. Equivalent to\r
17f695ed 3179 1 << log2(x).\r
ac644614 3180\r
3181 This function computes the value of the highest bit set in the 64-bit value\r
3182 specified by Operand. If Operand is zero, then zero is returned.\r
3183\r
3184 @param Operand The 64-bit operand to evaluate.\r
3185\r
3186 @return 1 << HighBitSet64(Operand)\r
3187 @retval 0 Operand is zero.\r
3188\r
3189**/\r
3190UINT64\r
3191EFIAPI\r
3192GetPowerOfTwo64 (\r
3193 IN UINT64 Operand\r
3194 );\r
3195\r
3196\r
3197/**\r
af2dc6a7 3198 Switches the endianness of a 16-bit integer.\r
ac644614 3199\r
3200 This function swaps the bytes in a 16-bit unsigned value to switch the value\r
3201 from little endian to big endian or vice versa. The byte swapped value is\r
3202 returned.\r
3203\r
2a53dabf 3204 @param Value A 16-bit unsigned value.\r
ac644614 3205\r
efb23117 3206 @return The byte swapped Value.\r
ac644614 3207\r
3208**/\r
3209UINT16\r
3210EFIAPI\r
3211SwapBytes16 (\r
3212 IN UINT16 Value\r
3213 );\r
3214\r
3215\r
3216/**\r
af2dc6a7 3217 Switches the endianness of a 32-bit integer.\r
ac644614 3218\r
3219 This function swaps the bytes in a 32-bit unsigned value to switch the value\r
3220 from little endian to big endian or vice versa. The byte swapped value is\r
3221 returned.\r
3222\r
2a53dabf 3223 @param Value A 32-bit unsigned value.\r
ac644614 3224\r
efb23117 3225 @return The byte swapped Value.\r
ac644614 3226\r
3227**/\r
3228UINT32\r
3229EFIAPI\r
3230SwapBytes32 (\r
3231 IN UINT32 Value\r
3232 );\r
3233\r
3234\r
3235/**\r
af2dc6a7 3236 Switches the endianness of a 64-bit integer.\r
ac644614 3237\r
3238 This function swaps the bytes in a 64-bit unsigned value to switch the value\r
3239 from little endian to big endian or vice versa. The byte swapped value is\r
3240 returned.\r
3241\r
2a53dabf 3242 @param Value A 64-bit unsigned value.\r
ac644614 3243\r
efb23117 3244 @return The byte swapped Value.\r
ac644614 3245\r
3246**/\r
3247UINT64\r
3248EFIAPI\r
3249SwapBytes64 (\r
3250 IN UINT64 Value\r
3251 );\r
3252\r
3253\r
3254/**\r
3255 Multiples a 64-bit unsigned integer by a 32-bit unsigned integer and\r
3256 generates a 64-bit unsigned result.\r
3257\r
3258 This function multiples the 64-bit unsigned value Multiplicand by the 32-bit\r
3259 unsigned value Multiplier and generates a 64-bit unsigned result. This 64-\r
3260 bit unsigned result is returned.\r
3261\r
ac644614 3262 @param Multiplicand A 64-bit unsigned value.\r
3263 @param Multiplier A 32-bit unsigned value.\r
3264\r
3265 @return Multiplicand * Multiplier\r
3266\r
3267**/\r
3268UINT64\r
3269EFIAPI\r
3270MultU64x32 (\r
3271 IN UINT64 Multiplicand,\r
3272 IN UINT32 Multiplier\r
3273 );\r
3274\r
3275\r
3276/**\r
3277 Multiples a 64-bit unsigned integer by a 64-bit unsigned integer and\r
3278 generates a 64-bit unsigned result.\r
3279\r
3280 This function multiples the 64-bit unsigned value Multiplicand by the 64-bit\r
3281 unsigned value Multiplier and generates a 64-bit unsigned result. This 64-\r
3282 bit unsigned result is returned.\r
3283\r
ac644614 3284 @param Multiplicand A 64-bit unsigned value.\r
3285 @param Multiplier A 64-bit unsigned value.\r
3286\r
af2dc6a7 3287 @return Multiplicand * Multiplier.\r
ac644614 3288\r
3289**/\r
3290UINT64\r
3291EFIAPI\r
3292MultU64x64 (\r
3293 IN UINT64 Multiplicand,\r
3294 IN UINT64 Multiplier\r
3295 );\r
3296\r
3297\r
3298/**\r
3299 Multiples a 64-bit signed integer by a 64-bit signed integer and generates a\r
3300 64-bit signed result.\r
3301\r
3302 This function multiples the 64-bit signed value Multiplicand by the 64-bit\r
3303 signed value Multiplier and generates a 64-bit signed result. This 64-bit\r
3304 signed result is returned.\r
3305\r
ac644614 3306 @param Multiplicand A 64-bit signed value.\r
3307 @param Multiplier A 64-bit signed value.\r
3308\r
3309 @return Multiplicand * Multiplier\r
3310\r
3311**/\r
3312INT64\r
3313EFIAPI\r
3314MultS64x64 (\r
3315 IN INT64 Multiplicand,\r
3316 IN INT64 Multiplier\r
3317 );\r
3318\r
3319\r
3320/**\r
3321 Divides a 64-bit unsigned integer by a 32-bit unsigned integer and generates\r
3322 a 64-bit unsigned result.\r
3323\r
3324 This function divides the 64-bit unsigned value Dividend by the 32-bit\r
3325 unsigned value Divisor and generates a 64-bit unsigned quotient. This\r
3326 function returns the 64-bit unsigned quotient.\r
3327\r
3328 If Divisor is 0, then ASSERT().\r
3329\r
3330 @param Dividend A 64-bit unsigned value.\r
3331 @param Divisor A 32-bit unsigned value.\r
3332\r
af2dc6a7 3333 @return Dividend / Divisor.\r
ac644614 3334\r
3335**/\r
3336UINT64\r
3337EFIAPI\r
3338DivU64x32 (\r
3339 IN UINT64 Dividend,\r
3340 IN UINT32 Divisor\r
3341 );\r
3342\r
3343\r
3344/**\r
3345 Divides a 64-bit unsigned integer by a 32-bit unsigned integer and generates\r
3346 a 32-bit unsigned remainder.\r
3347\r
3348 This function divides the 64-bit unsigned value Dividend by the 32-bit\r
3349 unsigned value Divisor and generates a 32-bit remainder. This function\r
3350 returns the 32-bit unsigned remainder.\r
3351\r
3352 If Divisor is 0, then ASSERT().\r
3353\r
3354 @param Dividend A 64-bit unsigned value.\r
3355 @param Divisor A 32-bit unsigned value.\r
3356\r
af2dc6a7 3357 @return Dividend % Divisor.\r
ac644614 3358\r
3359**/\r
3360UINT32\r
3361EFIAPI\r
3362ModU64x32 (\r
3363 IN UINT64 Dividend,\r
3364 IN UINT32 Divisor\r
3365 );\r
3366\r
3367\r
3368/**\r
3369 Divides a 64-bit unsigned integer by a 32-bit unsigned integer and generates\r
3370 a 64-bit unsigned result and an optional 32-bit unsigned remainder.\r
3371\r
3372 This function divides the 64-bit unsigned value Dividend by the 32-bit\r
3373 unsigned value Divisor and generates a 64-bit unsigned quotient. If Remainder\r
3374 is not NULL, then the 32-bit unsigned remainder is returned in Remainder.\r
3375 This function returns the 64-bit unsigned quotient.\r
3376\r
3377 If Divisor is 0, then ASSERT().\r
3378\r
3379 @param Dividend A 64-bit unsigned value.\r
3380 @param Divisor A 32-bit unsigned value.\r
3381 @param Remainder A pointer to a 32-bit unsigned value. This parameter is\r
3382 optional and may be NULL.\r
3383\r
af2dc6a7 3384 @return Dividend / Divisor.\r
ac644614 3385\r
3386**/\r
3387UINT64\r
3388EFIAPI\r
3389DivU64x32Remainder (\r
3390 IN UINT64 Dividend,\r
3391 IN UINT32 Divisor,\r
3392 OUT UINT32 *Remainder OPTIONAL\r
3393 );\r
3394\r
3395\r
3396/**\r
3397 Divides a 64-bit unsigned integer by a 64-bit unsigned integer and generates\r
3398 a 64-bit unsigned result and an optional 64-bit unsigned remainder.\r
3399\r
3400 This function divides the 64-bit unsigned value Dividend by the 64-bit\r
3401 unsigned value Divisor and generates a 64-bit unsigned quotient. If Remainder\r
3402 is not NULL, then the 64-bit unsigned remainder is returned in Remainder.\r
3403 This function returns the 64-bit unsigned quotient.\r
3404\r
3405 If Divisor is 0, then ASSERT().\r
3406\r
3407 @param Dividend A 64-bit unsigned value.\r
3408 @param Divisor A 64-bit unsigned value.\r
3409 @param Remainder A pointer to a 64-bit unsigned value. This parameter is\r
3410 optional and may be NULL.\r
3411\r
af2dc6a7 3412 @return Dividend / Divisor.\r
ac644614 3413\r
3414**/\r
3415UINT64\r
3416EFIAPI\r
3417DivU64x64Remainder (\r
3418 IN UINT64 Dividend,\r
3419 IN UINT64 Divisor,\r
3420 OUT UINT64 *Remainder OPTIONAL\r
3421 );\r
3422\r
3423\r
3424/**\r
3425 Divides a 64-bit signed integer by a 64-bit signed integer and generates a\r
3426 64-bit signed result and a optional 64-bit signed remainder.\r
3427\r
3428 This function divides the 64-bit signed value Dividend by the 64-bit signed\r
3429 value Divisor and generates a 64-bit signed quotient. If Remainder is not\r
3430 NULL, then the 64-bit signed remainder is returned in Remainder. This\r
3431 function returns the 64-bit signed quotient.\r
3432\r
9aa049d9 3433 It is the caller's responsibility to not call this function with a Divisor of 0.\r
9095d37b 3434 If Divisor is 0, then the quotient and remainder should be assumed to be\r
17f695ed 3435 the largest negative integer.\r
3436\r
ac644614 3437 If Divisor is 0, then ASSERT().\r
3438\r
3439 @param Dividend A 64-bit signed value.\r
3440 @param Divisor A 64-bit signed value.\r
3441 @param Remainder A pointer to a 64-bit signed value. This parameter is\r
3442 optional and may be NULL.\r
3443\r
af2dc6a7 3444 @return Dividend / Divisor.\r
ac644614 3445\r
3446**/\r
3447INT64\r
3448EFIAPI\r
3449DivS64x64Remainder (\r
3450 IN INT64 Dividend,\r
3451 IN INT64 Divisor,\r
3452 OUT INT64 *Remainder OPTIONAL\r
3453 );\r
3454\r
3455\r
3456/**\r
3457 Reads a 16-bit value from memory that may be unaligned.\r
3458\r
3459 This function returns the 16-bit value pointed to by Buffer. The function\r
3460 guarantees that the read operation does not produce an alignment fault.\r
3461\r
3462 If the Buffer is NULL, then ASSERT().\r
3463\r
af2dc6a7 3464 @param Buffer The pointer to a 16-bit value that may be unaligned.\r
ac644614 3465\r
5385a579 3466 @return The 16-bit value read from Buffer.\r
ac644614 3467\r
3468**/\r
3469UINT16\r
3470EFIAPI\r
3471ReadUnaligned16 (\r
5385a579 3472 IN CONST UINT16 *Buffer\r
ac644614 3473 );\r
3474\r
3475\r
3476/**\r
3477 Writes a 16-bit value to memory that may be unaligned.\r
3478\r
3479 This function writes the 16-bit value specified by Value to Buffer. Value is\r
3480 returned. The function guarantees that the write operation does not produce\r
3481 an alignment fault.\r
3482\r
3483 If the Buffer is NULL, then ASSERT().\r
3484\r
af2dc6a7 3485 @param Buffer The pointer to a 16-bit value that may be unaligned.\r
ac644614 3486 @param Value 16-bit value to write to Buffer.\r
3487\r
5385a579 3488 @return The 16-bit value to write to Buffer.\r
ac644614 3489\r
3490**/\r
3491UINT16\r
3492EFIAPI\r
3493WriteUnaligned16 (\r
5385a579 3494 OUT UINT16 *Buffer,\r
3495 IN UINT16 Value\r
ac644614 3496 );\r
3497\r
3498\r
3499/**\r
3500 Reads a 24-bit value from memory that may be unaligned.\r
3501\r
3502 This function returns the 24-bit value pointed to by Buffer. The function\r
3503 guarantees that the read operation does not produce an alignment fault.\r
3504\r
3505 If the Buffer is NULL, then ASSERT().\r
3506\r
af2dc6a7 3507 @param Buffer The pointer to a 24-bit value that may be unaligned.\r
ac644614 3508\r
5385a579 3509 @return The 24-bit value read from Buffer.\r
ac644614 3510\r
3511**/\r
3512UINT32\r
3513EFIAPI\r
3514ReadUnaligned24 (\r
5385a579 3515 IN CONST UINT32 *Buffer\r
ac644614 3516 );\r
3517\r
3518\r
3519/**\r
3520 Writes a 24-bit value to memory that may be unaligned.\r
3521\r
3522 This function writes the 24-bit value specified by Value to Buffer. Value is\r
3523 returned. The function guarantees that the write operation does not produce\r
3524 an alignment fault.\r
3525\r
3526 If the Buffer is NULL, then ASSERT().\r
3527\r
af2dc6a7 3528 @param Buffer The pointer to a 24-bit value that may be unaligned.\r
ac644614 3529 @param Value 24-bit value to write to Buffer.\r
3530\r
5385a579 3531 @return The 24-bit value to write to Buffer.\r
ac644614 3532\r
3533**/\r
3534UINT32\r
3535EFIAPI\r
3536WriteUnaligned24 (\r
5385a579 3537 OUT UINT32 *Buffer,\r
3538 IN UINT32 Value\r
ac644614 3539 );\r
3540\r
3541\r
3542/**\r
3543 Reads a 32-bit value from memory that may be unaligned.\r
3544\r
3545 This function returns the 32-bit value pointed to by Buffer. The function\r
3546 guarantees that the read operation does not produce an alignment fault.\r
3547\r
3548 If the Buffer is NULL, then ASSERT().\r
3549\r
af2dc6a7 3550 @param Buffer The pointer to a 32-bit value that may be unaligned.\r
ac644614 3551\r
5385a579 3552 @return The 32-bit value read from Buffer.\r
ac644614 3553\r
3554**/\r
3555UINT32\r
3556EFIAPI\r
3557ReadUnaligned32 (\r
5385a579 3558 IN CONST UINT32 *Buffer\r
ac644614 3559 );\r
3560\r
3561\r
3562/**\r
3563 Writes a 32-bit value to memory that may be unaligned.\r
3564\r
3565 This function writes the 32-bit value specified by Value to Buffer. Value is\r
3566 returned. The function guarantees that the write operation does not produce\r
3567 an alignment fault.\r
3568\r
3569 If the Buffer is NULL, then ASSERT().\r
3570\r
af2dc6a7 3571 @param Buffer The pointer to a 32-bit value that may be unaligned.\r
ac644614 3572 @param Value 32-bit value to write to Buffer.\r
3573\r
5385a579 3574 @return The 32-bit value to write to Buffer.\r
ac644614 3575\r
3576**/\r
3577UINT32\r
3578EFIAPI\r
3579WriteUnaligned32 (\r
5385a579 3580 OUT UINT32 *Buffer,\r
3581 IN UINT32 Value\r
ac644614 3582 );\r
3583\r
3584\r
3585/**\r
3586 Reads a 64-bit value from memory that may be unaligned.\r
3587\r
3588 This function returns the 64-bit value pointed to by Buffer. The function\r
3589 guarantees that the read operation does not produce an alignment fault.\r
3590\r
3591 If the Buffer is NULL, then ASSERT().\r
3592\r
af2dc6a7 3593 @param Buffer The pointer to a 64-bit value that may be unaligned.\r
ac644614 3594\r
5385a579 3595 @return The 64-bit value read from Buffer.\r
ac644614 3596\r
3597**/\r
3598UINT64\r
3599EFIAPI\r
3600ReadUnaligned64 (\r
5385a579 3601 IN CONST UINT64 *Buffer\r
ac644614 3602 );\r
3603\r
3604\r
3605/**\r
3606 Writes a 64-bit value to memory that may be unaligned.\r
3607\r
3608 This function writes the 64-bit value specified by Value to Buffer. Value is\r
3609 returned. The function guarantees that the write operation does not produce\r
3610 an alignment fault.\r
3611\r
3612 If the Buffer is NULL, then ASSERT().\r
3613\r
af2dc6a7 3614 @param Buffer The pointer to a 64-bit value that may be unaligned.\r
ac644614 3615 @param Value 64-bit value to write to Buffer.\r
3616\r
5385a579 3617 @return The 64-bit value to write to Buffer.\r
ac644614 3618\r
3619**/\r
3620UINT64\r
3621EFIAPI\r
3622WriteUnaligned64 (\r
5385a579 3623 OUT UINT64 *Buffer,\r
3624 IN UINT64 Value\r
ac644614 3625 );\r
3626\r
3627\r
3628//\r
3629// Bit Field Functions\r
3630//\r
3631\r
3632/**\r
3633 Returns a bit field from an 8-bit value.\r
3634\r
3635 Returns the bitfield specified by the StartBit and the EndBit from Operand.\r
3636\r
3637 If 8-bit operations are not supported, then ASSERT().\r
3638 If StartBit is greater than 7, then ASSERT().\r
3639 If EndBit is greater than 7, then ASSERT().\r
3640 If EndBit is less than StartBit, then ASSERT().\r
3641\r
3642 @param Operand Operand on which to perform the bitfield operation.\r
3643 @param StartBit The ordinal of the least significant bit in the bit field.\r
3644 Range 0..7.\r
3645 @param EndBit The ordinal of the most significant bit in the bit field.\r
3646 Range 0..7.\r
3647\r
3648 @return The bit field read.\r
3649\r
3650**/\r
3651UINT8\r
3652EFIAPI\r
3653BitFieldRead8 (\r
3654 IN UINT8 Operand,\r
3655 IN UINTN StartBit,\r
3656 IN UINTN EndBit\r
3657 );\r
3658\r
3659\r
3660/**\r
3661 Writes a bit field to an 8-bit value, and returns the result.\r
3662\r
3663 Writes Value to the bit field specified by the StartBit and the EndBit in\r
3664 Operand. All other bits in Operand are preserved. The new 8-bit value is\r
3665 returned.\r
3666\r
3667 If 8-bit operations are not supported, then ASSERT().\r
3668 If StartBit is greater than 7, then ASSERT().\r
3669 If EndBit is greater than 7, then ASSERT().\r
3670 If EndBit is less than StartBit, then ASSERT().\r
94952554 3671 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 3672\r
3673 @param Operand Operand on which to perform the bitfield operation.\r
3674 @param StartBit The ordinal of the least significant bit in the bit field.\r
3675 Range 0..7.\r
3676 @param EndBit The ordinal of the most significant bit in the bit field.\r
3677 Range 0..7.\r
3678 @param Value New value of the bit field.\r
3679\r
3680 @return The new 8-bit value.\r
3681\r
3682**/\r
3683UINT8\r
3684EFIAPI\r
3685BitFieldWrite8 (\r
3686 IN UINT8 Operand,\r
3687 IN UINTN StartBit,\r
3688 IN UINTN EndBit,\r
3689 IN UINT8 Value\r
3690 );\r
3691\r
3692\r
3693/**\r
3694 Reads a bit field from an 8-bit value, performs a bitwise OR, and returns the\r
3695 result.\r
3696\r
62991af2 3697 Performs a bitwise OR between the bit field specified by StartBit\r
ac644614 3698 and EndBit in Operand and the value specified by OrData. All other bits in\r
3699 Operand are preserved. The new 8-bit value is returned.\r
3700\r
3701 If 8-bit operations are not supported, then ASSERT().\r
3702 If StartBit is greater than 7, then ASSERT().\r
3703 If EndBit is greater than 7, then ASSERT().\r
3704 If EndBit is less than StartBit, then ASSERT().\r
94952554 3705 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 3706\r
3707 @param Operand Operand on which to perform the bitfield operation.\r
3708 @param StartBit The ordinal of the least significant bit in the bit field.\r
3709 Range 0..7.\r
3710 @param EndBit The ordinal of the most significant bit in the bit field.\r
3711 Range 0..7.\r
3712 @param OrData The value to OR with the read value from the value\r
3713\r
3714 @return The new 8-bit value.\r
3715\r
3716**/\r
3717UINT8\r
3718EFIAPI\r
3719BitFieldOr8 (\r
3720 IN UINT8 Operand,\r
3721 IN UINTN StartBit,\r
3722 IN UINTN EndBit,\r
3723 IN UINT8 OrData\r
3724 );\r
3725\r
3726\r
3727/**\r
3728 Reads a bit field from an 8-bit value, performs a bitwise AND, and returns\r
3729 the result.\r
3730\r
3731 Performs a bitwise AND between the bit field specified by StartBit and EndBit\r
3732 in Operand and the value specified by AndData. All other bits in Operand are\r
3733 preserved. The new 8-bit value is returned.\r
3734\r
3735 If 8-bit operations are not supported, then ASSERT().\r
3736 If StartBit is greater than 7, then ASSERT().\r
3737 If EndBit is greater than 7, then ASSERT().\r
3738 If EndBit is less than StartBit, then ASSERT().\r
94952554 3739 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 3740\r
3741 @param Operand Operand on which to perform the bitfield operation.\r
3742 @param StartBit The ordinal of the least significant bit in the bit field.\r
3743 Range 0..7.\r
3744 @param EndBit The ordinal of the most significant bit in the bit field.\r
3745 Range 0..7.\r
3746 @param AndData The value to AND with the read value from the value.\r
3747\r
3748 @return The new 8-bit value.\r
3749\r
3750**/\r
3751UINT8\r
3752EFIAPI\r
3753BitFieldAnd8 (\r
3754 IN UINT8 Operand,\r
3755 IN UINTN StartBit,\r
3756 IN UINTN EndBit,\r
3757 IN UINT8 AndData\r
3758 );\r
3759\r
3760\r
3761/**\r
3762 Reads a bit field from an 8-bit value, performs a bitwise AND followed by a\r
3763 bitwise OR, and returns the result.\r
3764\r
3765 Performs a bitwise AND between the bit field specified by StartBit and EndBit\r
9095d37b 3766 in Operand and the value specified by AndData, followed by a bitwise\r
62991af2 3767 OR with value specified by OrData. All other bits in Operand are\r
ac644614 3768 preserved. The new 8-bit value is returned.\r
3769\r
3770 If 8-bit operations are not supported, then ASSERT().\r
3771 If StartBit is greater than 7, then ASSERT().\r
3772 If EndBit is greater than 7, then ASSERT().\r
3773 If EndBit is less than StartBit, then ASSERT().\r
94952554
LG
3774 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
3775 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 3776\r
3777 @param Operand Operand on which to perform the bitfield operation.\r
3778 @param StartBit The ordinal of the least significant bit in the bit field.\r
3779 Range 0..7.\r
3780 @param EndBit The ordinal of the most significant bit in the bit field.\r
3781 Range 0..7.\r
3782 @param AndData The value to AND with the read value from the value.\r
3783 @param OrData The value to OR with the result of the AND operation.\r
3784\r
3785 @return The new 8-bit value.\r
3786\r
3787**/\r
3788UINT8\r
3789EFIAPI\r
3790BitFieldAndThenOr8 (\r
3791 IN UINT8 Operand,\r
3792 IN UINTN StartBit,\r
3793 IN UINTN EndBit,\r
3794 IN UINT8 AndData,\r
3795 IN UINT8 OrData\r
3796 );\r
3797\r
3798\r
3799/**\r
3800 Returns a bit field from a 16-bit value.\r
3801\r
3802 Returns the bitfield specified by the StartBit and the EndBit from Operand.\r
3803\r
3804 If 16-bit operations are not supported, then ASSERT().\r
3805 If StartBit is greater than 15, then ASSERT().\r
3806 If EndBit is greater than 15, then ASSERT().\r
3807 If EndBit is less than StartBit, then ASSERT().\r
3808\r
3809 @param Operand Operand on which to perform the bitfield operation.\r
3810 @param StartBit The ordinal of the least significant bit in the bit field.\r
3811 Range 0..15.\r
3812 @param EndBit The ordinal of the most significant bit in the bit field.\r
3813 Range 0..15.\r
3814\r
3815 @return The bit field read.\r
3816\r
3817**/\r
3818UINT16\r
3819EFIAPI\r
3820BitFieldRead16 (\r
3821 IN UINT16 Operand,\r
3822 IN UINTN StartBit,\r
3823 IN UINTN EndBit\r
3824 );\r
3825\r
3826\r
3827/**\r
3828 Writes a bit field to a 16-bit value, and returns the result.\r
3829\r
3830 Writes Value to the bit field specified by the StartBit and the EndBit in\r
3831 Operand. All other bits in Operand are preserved. The new 16-bit value is\r
3832 returned.\r
3833\r
3834 If 16-bit operations are not supported, then ASSERT().\r
3835 If StartBit is greater than 15, then ASSERT().\r
3836 If EndBit is greater than 15, then ASSERT().\r
3837 If EndBit is less than StartBit, then ASSERT().\r
94952554 3838 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 3839\r
3840 @param Operand Operand on which to perform the bitfield operation.\r
3841 @param StartBit The ordinal of the least significant bit in the bit field.\r
3842 Range 0..15.\r
3843 @param EndBit The ordinal of the most significant bit in the bit field.\r
3844 Range 0..15.\r
3845 @param Value New value of the bit field.\r
3846\r
3847 @return The new 16-bit value.\r
3848\r
3849**/\r
3850UINT16\r
3851EFIAPI\r
3852BitFieldWrite16 (\r
3853 IN UINT16 Operand,\r
3854 IN UINTN StartBit,\r
3855 IN UINTN EndBit,\r
3856 IN UINT16 Value\r
3857 );\r
3858\r
3859\r
3860/**\r
3861 Reads a bit field from a 16-bit value, performs a bitwise OR, and returns the\r
3862 result.\r
3863\r
62991af2 3864 Performs a bitwise OR between the bit field specified by StartBit\r
ac644614 3865 and EndBit in Operand and the value specified by OrData. All other bits in\r
3866 Operand are preserved. The new 16-bit value is returned.\r
3867\r
3868 If 16-bit operations are not supported, then ASSERT().\r
3869 If StartBit is greater than 15, then ASSERT().\r
3870 If EndBit is greater than 15, then ASSERT().\r
3871 If EndBit is less than StartBit, then ASSERT().\r
94952554 3872 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 3873\r
3874 @param Operand Operand on which to perform the bitfield operation.\r
3875 @param StartBit The ordinal of the least significant bit in the bit field.\r
3876 Range 0..15.\r
3877 @param EndBit The ordinal of the most significant bit in the bit field.\r
3878 Range 0..15.\r
3879 @param OrData The value to OR with the read value from the value\r
3880\r
3881 @return The new 16-bit value.\r
3882\r
3883**/\r
3884UINT16\r
3885EFIAPI\r
3886BitFieldOr16 (\r
3887 IN UINT16 Operand,\r
3888 IN UINTN StartBit,\r
3889 IN UINTN EndBit,\r
3890 IN UINT16 OrData\r
3891 );\r
3892\r
3893\r
3894/**\r
3895 Reads a bit field from a 16-bit value, performs a bitwise AND, and returns\r
3896 the result.\r
3897\r
3898 Performs a bitwise AND between the bit field specified by StartBit and EndBit\r
3899 in Operand and the value specified by AndData. All other bits in Operand are\r
3900 preserved. The new 16-bit value is returned.\r
3901\r
3902 If 16-bit operations are not supported, then ASSERT().\r
3903 If StartBit is greater than 15, then ASSERT().\r
3904 If EndBit is greater than 15, then ASSERT().\r
3905 If EndBit is less than StartBit, then ASSERT().\r
94952554 3906 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 3907\r
3908 @param Operand Operand on which to perform the bitfield operation.\r
3909 @param StartBit The ordinal of the least significant bit in the bit field.\r
3910 Range 0..15.\r
3911 @param EndBit The ordinal of the most significant bit in the bit field.\r
3912 Range 0..15.\r
3913 @param AndData The value to AND with the read value from the value\r
3914\r
3915 @return The new 16-bit value.\r
3916\r
3917**/\r
3918UINT16\r
3919EFIAPI\r
3920BitFieldAnd16 (\r
3921 IN UINT16 Operand,\r
3922 IN UINTN StartBit,\r
3923 IN UINTN EndBit,\r
3924 IN UINT16 AndData\r
3925 );\r
3926\r
3927\r
3928/**\r
3929 Reads a bit field from a 16-bit value, performs a bitwise AND followed by a\r
3930 bitwise OR, and returns the result.\r
3931\r
3932 Performs a bitwise AND between the bit field specified by StartBit and EndBit\r
9095d37b 3933 in Operand and the value specified by AndData, followed by a bitwise\r
62991af2 3934 OR with value specified by OrData. All other bits in Operand are\r
ac644614 3935 preserved. The new 16-bit value is returned.\r
3936\r
3937 If 16-bit operations are not supported, then ASSERT().\r
3938 If StartBit is greater than 15, then ASSERT().\r
3939 If EndBit is greater than 15, then ASSERT().\r
3940 If EndBit is less than StartBit, then ASSERT().\r
94952554
LG
3941 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
3942 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 3943\r
3944 @param Operand Operand on which to perform the bitfield operation.\r
3945 @param StartBit The ordinal of the least significant bit in the bit field.\r
3946 Range 0..15.\r
3947 @param EndBit The ordinal of the most significant bit in the bit field.\r
3948 Range 0..15.\r
3949 @param AndData The value to AND with the read value from the value.\r
3950 @param OrData The value to OR with the result of the AND operation.\r
3951\r
3952 @return The new 16-bit value.\r
3953\r
3954**/\r
3955UINT16\r
3956EFIAPI\r
3957BitFieldAndThenOr16 (\r
3958 IN UINT16 Operand,\r
3959 IN UINTN StartBit,\r
3960 IN UINTN EndBit,\r
3961 IN UINT16 AndData,\r
3962 IN UINT16 OrData\r
3963 );\r
3964\r
3965\r
3966/**\r
3967 Returns a bit field from a 32-bit value.\r
3968\r
3969 Returns the bitfield specified by the StartBit and the EndBit from Operand.\r
3970\r
3971 If 32-bit operations are not supported, then ASSERT().\r
3972 If StartBit is greater than 31, then ASSERT().\r
3973 If EndBit is greater than 31, then ASSERT().\r
3974 If EndBit is less than StartBit, then ASSERT().\r
3975\r
3976 @param Operand Operand on which to perform the bitfield operation.\r
3977 @param StartBit The ordinal of the least significant bit in the bit field.\r
3978 Range 0..31.\r
3979 @param EndBit The ordinal of the most significant bit in the bit field.\r
3980 Range 0..31.\r
3981\r
3982 @return The bit field read.\r
3983\r
3984**/\r
3985UINT32\r
3986EFIAPI\r
3987BitFieldRead32 (\r
3988 IN UINT32 Operand,\r
3989 IN UINTN StartBit,\r
3990 IN UINTN EndBit\r
3991 );\r
3992\r
3993\r
3994/**\r
3995 Writes a bit field to a 32-bit value, and returns the result.\r
3996\r
3997 Writes Value to the bit field specified by the StartBit and the EndBit in\r
3998 Operand. All other bits in Operand are preserved. The new 32-bit value is\r
3999 returned.\r
4000\r
4001 If 32-bit operations are not supported, then ASSERT().\r
4002 If StartBit is greater than 31, then ASSERT().\r
4003 If EndBit is greater than 31, then ASSERT().\r
4004 If EndBit is less than StartBit, then ASSERT().\r
94952554 4005 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 4006\r
4007 @param Operand Operand on which to perform the bitfield operation.\r
4008 @param StartBit The ordinal of the least significant bit in the bit field.\r
4009 Range 0..31.\r
4010 @param EndBit The ordinal of the most significant bit in the bit field.\r
4011 Range 0..31.\r
4012 @param Value New value of the bit field.\r
4013\r
4014 @return The new 32-bit value.\r
4015\r
4016**/\r
4017UINT32\r
4018EFIAPI\r
4019BitFieldWrite32 (\r
4020 IN UINT32 Operand,\r
4021 IN UINTN StartBit,\r
4022 IN UINTN EndBit,\r
4023 IN UINT32 Value\r
4024 );\r
4025\r
4026\r
4027/**\r
4028 Reads a bit field from a 32-bit value, performs a bitwise OR, and returns the\r
4029 result.\r
4030\r
62991af2 4031 Performs a bitwise OR between the bit field specified by StartBit\r
ac644614 4032 and EndBit in Operand and the value specified by OrData. All other bits in\r
4033 Operand are preserved. The new 32-bit value is returned.\r
4034\r
4035 If 32-bit operations are not supported, then ASSERT().\r
4036 If StartBit is greater than 31, then ASSERT().\r
4037 If EndBit is greater than 31, then ASSERT().\r
4038 If EndBit is less than StartBit, then ASSERT().\r
94952554 4039 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 4040\r
4041 @param Operand Operand on which to perform the bitfield operation.\r
4042 @param StartBit The ordinal of the least significant bit in the bit field.\r
4043 Range 0..31.\r
4044 @param EndBit The ordinal of the most significant bit in the bit field.\r
4045 Range 0..31.\r
af2dc6a7 4046 @param OrData The value to OR with the read value from the value.\r
ac644614 4047\r
4048 @return The new 32-bit value.\r
4049\r
4050**/\r
4051UINT32\r
4052EFIAPI\r
4053BitFieldOr32 (\r
4054 IN UINT32 Operand,\r
4055 IN UINTN StartBit,\r
4056 IN UINTN EndBit,\r
4057 IN UINT32 OrData\r
4058 );\r
4059\r
4060\r
4061/**\r
4062 Reads a bit field from a 32-bit value, performs a bitwise AND, and returns\r
4063 the result.\r
4064\r
4065 Performs a bitwise AND between the bit field specified by StartBit and EndBit\r
4066 in Operand and the value specified by AndData. All other bits in Operand are\r
4067 preserved. The new 32-bit value is returned.\r
4068\r
4069 If 32-bit operations are not supported, then ASSERT().\r
4070 If StartBit is greater than 31, then ASSERT().\r
4071 If EndBit is greater than 31, then ASSERT().\r
4072 If EndBit is less than StartBit, then ASSERT().\r
94952554 4073 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 4074\r
4075 @param Operand Operand on which to perform the bitfield operation.\r
4076 @param StartBit The ordinal of the least significant bit in the bit field.\r
4077 Range 0..31.\r
4078 @param EndBit The ordinal of the most significant bit in the bit field.\r
4079 Range 0..31.\r
4080 @param AndData The value to AND with the read value from the value\r
4081\r
4082 @return The new 32-bit value.\r
4083\r
4084**/\r
4085UINT32\r
4086EFIAPI\r
4087BitFieldAnd32 (\r
4088 IN UINT32 Operand,\r
4089 IN UINTN StartBit,\r
4090 IN UINTN EndBit,\r
4091 IN UINT32 AndData\r
4092 );\r
4093\r
4094\r
4095/**\r
4096 Reads a bit field from a 32-bit value, performs a bitwise AND followed by a\r
4097 bitwise OR, and returns the result.\r
4098\r
4099 Performs a bitwise AND between the bit field specified by StartBit and EndBit\r
9095d37b 4100 in Operand and the value specified by AndData, followed by a bitwise\r
62991af2 4101 OR with value specified by OrData. All other bits in Operand are\r
ac644614 4102 preserved. The new 32-bit value is returned.\r
4103\r
4104 If 32-bit operations are not supported, then ASSERT().\r
4105 If StartBit is greater than 31, then ASSERT().\r
4106 If EndBit is greater than 31, then ASSERT().\r
4107 If EndBit is less than StartBit, then ASSERT().\r
94952554
LG
4108 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
4109 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 4110\r
4111 @param Operand Operand on which to perform the bitfield operation.\r
4112 @param StartBit The ordinal of the least significant bit in the bit field.\r
4113 Range 0..31.\r
4114 @param EndBit The ordinal of the most significant bit in the bit field.\r
4115 Range 0..31.\r
4116 @param AndData The value to AND with the read value from the value.\r
4117 @param OrData The value to OR with the result of the AND operation.\r
4118\r
4119 @return The new 32-bit value.\r
4120\r
4121**/\r
4122UINT32\r
4123EFIAPI\r
4124BitFieldAndThenOr32 (\r
4125 IN UINT32 Operand,\r
4126 IN UINTN StartBit,\r
4127 IN UINTN EndBit,\r
4128 IN UINT32 AndData,\r
4129 IN UINT32 OrData\r
4130 );\r
4131\r
4132\r
4133/**\r
4134 Returns a bit field from a 64-bit value.\r
4135\r
4136 Returns the bitfield specified by the StartBit and the EndBit from Operand.\r
4137\r
4138 If 64-bit operations are not supported, then ASSERT().\r
4139 If StartBit is greater than 63, then ASSERT().\r
4140 If EndBit is greater than 63, then ASSERT().\r
4141 If EndBit is less than StartBit, then ASSERT().\r
4142\r
4143 @param Operand Operand on which to perform the bitfield operation.\r
4144 @param StartBit The ordinal of the least significant bit in the bit field.\r
4145 Range 0..63.\r
4146 @param EndBit The ordinal of the most significant bit in the bit field.\r
4147 Range 0..63.\r
4148\r
4149 @return The bit field read.\r
4150\r
4151**/\r
4152UINT64\r
4153EFIAPI\r
4154BitFieldRead64 (\r
4155 IN UINT64 Operand,\r
4156 IN UINTN StartBit,\r
4157 IN UINTN EndBit\r
4158 );\r
4159\r
4160\r
4161/**\r
4162 Writes a bit field to a 64-bit value, and returns the result.\r
4163\r
4164 Writes Value to the bit field specified by the StartBit and the EndBit in\r
4165 Operand. All other bits in Operand are preserved. The new 64-bit value is\r
4166 returned.\r
4167\r
4168 If 64-bit operations are not supported, then ASSERT().\r
4169 If StartBit is greater than 63, then ASSERT().\r
4170 If EndBit is greater than 63, then ASSERT().\r
4171 If EndBit is less than StartBit, then ASSERT().\r
94952554 4172 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 4173\r
4174 @param Operand Operand on which to perform the bitfield operation.\r
4175 @param StartBit The ordinal of the least significant bit in the bit field.\r
4176 Range 0..63.\r
4177 @param EndBit The ordinal of the most significant bit in the bit field.\r
4178 Range 0..63.\r
4179 @param Value New value of the bit field.\r
4180\r
4181 @return The new 64-bit value.\r
4182\r
4183**/\r
4184UINT64\r
4185EFIAPI\r
4186BitFieldWrite64 (\r
4187 IN UINT64 Operand,\r
4188 IN UINTN StartBit,\r
4189 IN UINTN EndBit,\r
4190 IN UINT64 Value\r
4191 );\r
4192\r
4193\r
4194/**\r
4195 Reads a bit field from a 64-bit value, performs a bitwise OR, and returns the\r
4196 result.\r
4197\r
62991af2 4198 Performs a bitwise OR between the bit field specified by StartBit\r
ac644614 4199 and EndBit in Operand and the value specified by OrData. All other bits in\r
4200 Operand are preserved. The new 64-bit value is returned.\r
4201\r
4202 If 64-bit operations are not supported, then ASSERT().\r
4203 If StartBit is greater than 63, then ASSERT().\r
4204 If EndBit is greater than 63, then ASSERT().\r
4205 If EndBit is less than StartBit, then ASSERT().\r
94952554 4206 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 4207\r
4208 @param Operand Operand on which to perform the bitfield operation.\r
4209 @param StartBit The ordinal of the least significant bit in the bit field.\r
4210 Range 0..63.\r
4211 @param EndBit The ordinal of the most significant bit in the bit field.\r
4212 Range 0..63.\r
4213 @param OrData The value to OR with the read value from the value\r
4214\r
4215 @return The new 64-bit value.\r
4216\r
4217**/\r
4218UINT64\r
4219EFIAPI\r
4220BitFieldOr64 (\r
4221 IN UINT64 Operand,\r
4222 IN UINTN StartBit,\r
4223 IN UINTN EndBit,\r
4224 IN UINT64 OrData\r
4225 );\r
4226\r
4227\r
4228/**\r
4229 Reads a bit field from a 64-bit value, performs a bitwise AND, and returns\r
4230 the result.\r
4231\r
4232 Performs a bitwise AND between the bit field specified by StartBit and EndBit\r
4233 in Operand and the value specified by AndData. All other bits in Operand are\r
4234 preserved. The new 64-bit value is returned.\r
4235\r
4236 If 64-bit operations are not supported, then ASSERT().\r
4237 If StartBit is greater than 63, then ASSERT().\r
4238 If EndBit is greater than 63, then ASSERT().\r
4239 If EndBit is less than StartBit, then ASSERT().\r
94952554 4240 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 4241\r
4242 @param Operand Operand on which to perform the bitfield operation.\r
4243 @param StartBit The ordinal of the least significant bit in the bit field.\r
4244 Range 0..63.\r
4245 @param EndBit The ordinal of the most significant bit in the bit field.\r
4246 Range 0..63.\r
4247 @param AndData The value to AND with the read value from the value\r
4248\r
4249 @return The new 64-bit value.\r
4250\r
4251**/\r
4252UINT64\r
4253EFIAPI\r
4254BitFieldAnd64 (\r
4255 IN UINT64 Operand,\r
4256 IN UINTN StartBit,\r
4257 IN UINTN EndBit,\r
4258 IN UINT64 AndData\r
4259 );\r
4260\r
4261\r
4262/**\r
4263 Reads a bit field from a 64-bit value, performs a bitwise AND followed by a\r
4264 bitwise OR, and returns the result.\r
4265\r
4266 Performs a bitwise AND between the bit field specified by StartBit and EndBit\r
9095d37b 4267 in Operand and the value specified by AndData, followed by a bitwise\r
62991af2 4268 OR with value specified by OrData. All other bits in Operand are\r
ac644614 4269 preserved. The new 64-bit value is returned.\r
4270\r
4271 If 64-bit operations are not supported, then ASSERT().\r
4272 If StartBit is greater than 63, then ASSERT().\r
4273 If EndBit is greater than 63, then ASSERT().\r
4274 If EndBit is less than StartBit, then ASSERT().\r
94952554
LG
4275 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
4276 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 4277\r
4278 @param Operand Operand on which to perform the bitfield operation.\r
4279 @param StartBit The ordinal of the least significant bit in the bit field.\r
4280 Range 0..63.\r
4281 @param EndBit The ordinal of the most significant bit in the bit field.\r
4282 Range 0..63.\r
4283 @param AndData The value to AND with the read value from the value.\r
4284 @param OrData The value to OR with the result of the AND operation.\r
4285\r
4286 @return The new 64-bit value.\r
4287\r
4288**/\r
4289UINT64\r
4290EFIAPI\r
4291BitFieldAndThenOr64 (\r
4292 IN UINT64 Operand,\r
4293 IN UINTN StartBit,\r
4294 IN UINTN EndBit,\r
4295 IN UINT64 AndData,\r
4296 IN UINT64 OrData\r
4297 );\r
4298\r
d7634dc0
TP
4299/**\r
4300 Reads a bit field from a 32-bit value, counts and returns\r
4301 the number of set bits.\r
4302\r
4303 Counts the number of set bits in the bit field specified by\r
4304 StartBit and EndBit in Operand. The count is returned.\r
4305\r
4306 If StartBit is greater than 31, then ASSERT().\r
4307 If EndBit is greater than 31, then ASSERT().\r
4308 If EndBit is less than StartBit, then ASSERT().\r
4309\r
4310 @param Operand Operand on which to perform the bitfield operation.\r
4311 @param StartBit The ordinal of the least significant bit in the bit field.\r
4312 Range 0..31.\r
4313 @param EndBit The ordinal of the most significant bit in the bit field.\r
4314 Range 0..31.\r
4315\r
4316 @return The number of bits set between StartBit and EndBit.\r
4317\r
4318**/\r
4319UINT8\r
4320EFIAPI\r
4321BitFieldCountOnes32 (\r
4322 IN UINT32 Operand,\r
4323 IN UINTN StartBit,\r
4324 IN UINTN EndBit\r
4325 );\r
4326\r
4327/**\r
4328 Reads a bit field from a 64-bit value, counts and returns\r
4329 the number of set bits.\r
4330\r
4331 Counts the number of set bits in the bit field specified by\r
4332 StartBit and EndBit in Operand. The count is returned.\r
4333\r
4334 If StartBit is greater than 63, then ASSERT().\r
4335 If EndBit is greater than 63, then ASSERT().\r
4336 If EndBit is less than StartBit, then ASSERT().\r
4337\r
4338 @param Operand Operand on which to perform the bitfield operation.\r
4339 @param StartBit The ordinal of the least significant bit in the bit field.\r
4340 Range 0..63.\r
4341 @param EndBit The ordinal of the most significant bit in the bit field.\r
4342 Range 0..63.\r
4343\r
4344 @return The number of bits set between StartBit and EndBit.\r
4345\r
4346**/\r
4347UINT8\r
4348EFIAPI\r
4349BitFieldCountOnes64 (\r
4350 IN UINT64 Operand,\r
4351 IN UINTN StartBit,\r
4352 IN UINTN EndBit\r
4353 );\r
4354\r
ac644614 4355//\r
4356// Base Library Checksum Functions\r
4357//\r
4358\r
4359/**\r
17f695ed 4360 Returns the sum of all elements in a buffer in unit of UINT8.\r
ac644614 4361 During calculation, the carry bits are dropped.\r
4362\r
4363 This function calculates the sum of all elements in a buffer\r
4364 in unit of UINT8. The carry bits in result of addition are dropped.\r
4365 The result is returned as UINT8. If Length is Zero, then Zero is\r
4366 returned.\r
4367\r
4368 If Buffer is NULL, then ASSERT().\r
4369 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().\r
4370\r
af2dc6a7 4371 @param Buffer The pointer to the buffer to carry out the sum operation.\r
17f695ed 4372 @param Length The size, in bytes, of Buffer.\r
ac644614 4373\r
4374 @return Sum The sum of Buffer with carry bits dropped during additions.\r
4375\r
4376**/\r
4377UINT8\r
4378EFIAPI\r
4379CalculateSum8 (\r
ee6c452c 4380 IN CONST UINT8 *Buffer,\r
4381 IN UINTN Length\r
ac644614 4382 );\r
4383\r
4384\r
4385/**\r
4386 Returns the two's complement checksum of all elements in a buffer\r
4387 of 8-bit values.\r
4388\r
4389 This function first calculates the sum of the 8-bit values in the\r
4390 buffer specified by Buffer and Length. The carry bits in the result\r
4391 of addition are dropped. Then, the two's complement of the sum is\r
4392 returned. If Length is 0, then 0 is returned.\r
4393\r
4394 If Buffer is NULL, then ASSERT().\r
4395 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().\r
4396\r
af2dc6a7 4397 @param Buffer The pointer to the buffer to carry out the checksum operation.\r
1106ffe1 4398 @param Length The size, in bytes, of Buffer.\r
ac644614 4399\r
af2dc6a7 4400 @return Checksum The two's complement checksum of Buffer.\r
ac644614 4401\r
4402**/\r
4403UINT8\r
4404EFIAPI\r
4405CalculateCheckSum8 (\r
ee6c452c 4406 IN CONST UINT8 *Buffer,\r
4407 IN UINTN Length\r
ac644614 4408 );\r
4409\r
4410\r
4411/**\r
4412 Returns the sum of all elements in a buffer of 16-bit values. During\r
4413 calculation, the carry bits are dropped.\r
4414\r
4415 This function calculates the sum of the 16-bit values in the buffer\r
4416 specified by Buffer and Length. The carry bits in result of addition are dropped.\r
4417 The 16-bit result is returned. If Length is 0, then 0 is returned.\r
4418\r
4419 If Buffer is NULL, then ASSERT().\r
4420 If Buffer is not aligned on a 16-bit boundary, then ASSERT().\r
4421 If Length is not aligned on a 16-bit boundary, then ASSERT().\r
4422 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().\r
4423\r
af2dc6a7 4424 @param Buffer The pointer to the buffer to carry out the sum operation.\r
1106ffe1 4425 @param Length The size, in bytes, of Buffer.\r
ac644614 4426\r
4427 @return Sum The sum of Buffer with carry bits dropped during additions.\r
4428\r
4429**/\r
4430UINT16\r
4431EFIAPI\r
4432CalculateSum16 (\r
ee6c452c 4433 IN CONST UINT16 *Buffer,\r
4434 IN UINTN Length\r
ac644614 4435 );\r
4436\r
4437\r
4438/**\r
4439 Returns the two's complement checksum of all elements in a buffer of\r
4440 16-bit values.\r
4441\r
4442 This function first calculates the sum of the 16-bit values in the buffer\r
4443 specified by Buffer and Length. The carry bits in the result of addition\r
4444 are dropped. Then, the two's complement of the sum is returned. If Length\r
4445 is 0, then 0 is returned.\r
4446\r
4447 If Buffer is NULL, then ASSERT().\r
4448 If Buffer is not aligned on a 16-bit boundary, then ASSERT().\r
4449 If Length is not aligned on a 16-bit boundary, then ASSERT().\r
4450 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().\r
4451\r
af2dc6a7 4452 @param Buffer The pointer to the buffer to carry out the checksum operation.\r
1106ffe1 4453 @param Length The size, in bytes, of Buffer.\r
ac644614 4454\r
af2dc6a7 4455 @return Checksum The two's complement checksum of Buffer.\r
ac644614 4456\r
4457**/\r
4458UINT16\r
4459EFIAPI\r
4460CalculateCheckSum16 (\r
ee6c452c 4461 IN CONST UINT16 *Buffer,\r
4462 IN UINTN Length\r
ac644614 4463 );\r
4464\r
4465\r
4466/**\r
17f695ed 4467 Returns the sum of all elements in a buffer of 32-bit values. During\r
ac644614 4468 calculation, the carry bits are dropped.\r
4469\r
4470 This function calculates the sum of the 32-bit values in the buffer\r
4471 specified by Buffer and Length. The carry bits in result of addition are dropped.\r
17f695ed 4472 The 32-bit result is returned. If Length is 0, then 0 is returned.\r
ac644614 4473\r
4474 If Buffer is NULL, then ASSERT().\r
4475 If Buffer is not aligned on a 32-bit boundary, then ASSERT().\r
4476 If Length is not aligned on a 32-bit boundary, then ASSERT().\r
4477 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().\r
4478\r
af2dc6a7 4479 @param Buffer The pointer to the buffer to carry out the sum operation.\r
1106ffe1 4480 @param Length The size, in bytes, of Buffer.\r
ac644614 4481\r
4482 @return Sum The sum of Buffer with carry bits dropped during additions.\r
4483\r
4484**/\r
4485UINT32\r
4486EFIAPI\r
4487CalculateSum32 (\r
ee6c452c 4488 IN CONST UINT32 *Buffer,\r
4489 IN UINTN Length\r
ac644614 4490 );\r
4491\r
4492\r
4493/**\r
4494 Returns the two's complement checksum of all elements in a buffer of\r
4495 32-bit values.\r
4496\r
4497 This function first calculates the sum of the 32-bit values in the buffer\r
4498 specified by Buffer and Length. The carry bits in the result of addition\r
4499 are dropped. Then, the two's complement of the sum is returned. If Length\r
4500 is 0, then 0 is returned.\r
4501\r
4502 If Buffer is NULL, then ASSERT().\r
4503 If Buffer is not aligned on a 32-bit boundary, then ASSERT().\r
4504 If Length is not aligned on a 32-bit boundary, then ASSERT().\r
4505 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().\r
4506\r
af2dc6a7 4507 @param Buffer The pointer to the buffer to carry out the checksum operation.\r
1106ffe1 4508 @param Length The size, in bytes, of Buffer.\r
ac644614 4509\r
af2dc6a7 4510 @return Checksum The two's complement checksum of Buffer.\r
ac644614 4511\r
4512**/\r
4513UINT32\r
4514EFIAPI\r
4515CalculateCheckSum32 (\r
ee6c452c 4516 IN CONST UINT32 *Buffer,\r
4517 IN UINTN Length\r
ac644614 4518 );\r
4519\r
4520\r
4521/**\r
4522 Returns the sum of all elements in a buffer of 64-bit values. During\r
4523 calculation, the carry bits are dropped.\r
4524\r
4525 This function calculates the sum of the 64-bit values in the buffer\r
4526 specified by Buffer and Length. The carry bits in result of addition are dropped.\r
4527 The 64-bit result is returned. If Length is 0, then 0 is returned.\r
4528\r
4529 If Buffer is NULL, then ASSERT().\r
4530 If Buffer is not aligned on a 64-bit boundary, then ASSERT().\r
4531 If Length is not aligned on a 64-bit boundary, then ASSERT().\r
4532 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().\r
4533\r
af2dc6a7 4534 @param Buffer The pointer to the buffer to carry out the sum operation.\r
1106ffe1 4535 @param Length The size, in bytes, of Buffer.\r
ac644614 4536\r
4537 @return Sum The sum of Buffer with carry bits dropped during additions.\r
4538\r
4539**/\r
4540UINT64\r
4541EFIAPI\r
4542CalculateSum64 (\r
ee6c452c 4543 IN CONST UINT64 *Buffer,\r
4544 IN UINTN Length\r
ac644614 4545 );\r
4546\r
4547\r
4548/**\r
4549 Returns the two's complement checksum of all elements in a buffer of\r
4550 64-bit values.\r
4551\r
4552 This function first calculates the sum of the 64-bit values in the buffer\r
4553 specified by Buffer and Length. The carry bits in the result of addition\r
4554 are dropped. Then, the two's complement of the sum is returned. If Length\r
4555 is 0, then 0 is returned.\r
4556\r
4557 If Buffer is NULL, then ASSERT().\r
4558 If Buffer is not aligned on a 64-bit boundary, then ASSERT().\r
4559 If Length is not aligned on a 64-bit boundary, then ASSERT().\r
4560 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().\r
4561\r
af2dc6a7 4562 @param Buffer The pointer to the buffer to carry out the checksum operation.\r
1106ffe1 4563 @param Length The size, in bytes, of Buffer.\r
ac644614 4564\r
af2dc6a7 4565 @return Checksum The two's complement checksum of Buffer.\r
ac644614 4566\r
4567**/\r
4568UINT64\r
4569EFIAPI\r
4570CalculateCheckSum64 (\r
ee6c452c 4571 IN CONST UINT64 *Buffer,\r
4572 IN UINTN Length\r
ac644614 4573 );\r
4574\r
0a8e6f79
LG
4575/**\r
4576 Computes and returns a 32-bit CRC for a data buffer.\r
4577 CRC32 value bases on ITU-T V.42.\r
4578\r
4579 If Buffer is NULL, then ASSERT().\r
4580 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().\r
4581\r
4582 @param[in] Buffer A pointer to the buffer on which the 32-bit CRC is to be computed.\r
4583 @param[in] Length The number of bytes in the buffer Data.\r
4584\r
4585 @retval Crc32 The 32-bit CRC was computed for the data buffer.\r
4586\r
4587**/\r
4588UINT32\r
4589EFIAPI\r
4590CalculateCrc32(\r
4591 IN VOID *Buffer,\r
4592 IN UINTN Length\r
4593 );\r
ac644614 4594\r
d75f9fc2 4595//\r
4596// Base Library CPU Functions\r
4597//\r
4598\r
4599/**\r
4600 Function entry point used when a stack switch is requested with SwitchStack()\r
4601\r
4602 @param Context1 Context1 parameter passed into SwitchStack().\r
4603 @param Context2 Context2 parameter passed into SwitchStack().\r
4604\r
4605**/\r
ac644614 4606typedef\r
4607VOID\r
9810cdd8 4608(EFIAPI *SWITCH_STACK_ENTRY_POINT)(\r
d0e2f823 4609 IN VOID *Context1 OPTIONAL,\r
ac644614 4610 IN VOID *Context2 OPTIONAL\r
4611 );\r
4612\r
4613\r
4614/**\r
4615 Used to serialize load and store operations.\r
4616\r
4617 All loads and stores that proceed calls to this function are guaranteed to be\r
4618 globally visible when this function returns.\r
4619\r
4620**/\r
4621VOID\r
4622EFIAPI\r
4623MemoryFence (\r
4624 VOID\r
4625 );\r
4626\r
4627\r
4628/**\r
4629 Saves the current CPU context that can be restored with a call to LongJump()\r
4630 and returns 0.\r
4631\r
4632 Saves the current CPU context in the buffer specified by JumpBuffer and\r
4633 returns 0. The initial call to SetJump() must always return 0. Subsequent\r
4634 calls to LongJump() cause a non-zero value to be returned by SetJump().\r
4635\r
4636 If JumpBuffer is NULL, then ASSERT().\r
1a2f870c 4637 For Itanium processors, if JumpBuffer is not aligned on a 16-byte boundary, then ASSERT().\r
9095d37b 4638\r
17f695ed 4639 NOTE: The structure BASE_LIBRARY_JUMP_BUFFER is CPU architecture specific.\r
4640 The same structure must never be used for more than one CPU architecture context.\r
9095d37b
LG
4641 For example, a BASE_LIBRARY_JUMP_BUFFER allocated by an IA-32 module must never be used from an x64 module.\r
4642 SetJump()/LongJump() is not currently supported for the EBC processor type.\r
ac644614 4643\r
4644 @param JumpBuffer A pointer to CPU context buffer.\r
4645\r
4646 @retval 0 Indicates a return from SetJump().\r
4647\r
4648**/\r
2117989c 4649RETURNS_TWICE\r
ac644614 4650UINTN\r
4651EFIAPI\r
4652SetJump (\r
4653 OUT BASE_LIBRARY_JUMP_BUFFER *JumpBuffer\r
4654 );\r
4655\r
4656\r
4657/**\r
4658 Restores the CPU context that was saved with SetJump().\r
4659\r
4660 Restores the CPU context from the buffer specified by JumpBuffer. This\r
4661 function never returns to the caller. Instead is resumes execution based on\r
4662 the state of JumpBuffer.\r
4663\r
4664 If JumpBuffer is NULL, then ASSERT().\r
1a2f870c 4665 For Itanium processors, if JumpBuffer is not aligned on a 16-byte boundary, then ASSERT().\r
ac644614 4666 If Value is 0, then ASSERT().\r
4667\r
4668 @param JumpBuffer A pointer to CPU context buffer.\r
4669 @param Value The value to return when the SetJump() context is\r
4670 restored and must be non-zero.\r
4671\r
4672**/\r
4673VOID\r
4674EFIAPI\r
4675LongJump (\r
4676 IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer,\r
4677 IN UINTN Value\r
4678 );\r
4679\r
4680\r
4681/**\r
4682 Enables CPU interrupts.\r
4683\r
ac644614 4684**/\r
4685VOID\r
4686EFIAPI\r
4687EnableInterrupts (\r
4688 VOID\r
4689 );\r
4690\r
4691\r
4692/**\r
4693 Disables CPU interrupts.\r
4694\r
ac644614 4695**/\r
4696VOID\r
4697EFIAPI\r
4698DisableInterrupts (\r
4699 VOID\r
4700 );\r
4701\r
4702\r
4703/**\r
4704 Disables CPU interrupts and returns the interrupt state prior to the disable\r
4705 operation.\r
4706\r
ac644614 4707 @retval TRUE CPU interrupts were enabled on entry to this call.\r
4708 @retval FALSE CPU interrupts were disabled on entry to this call.\r
4709\r
4710**/\r
4711BOOLEAN\r
4712EFIAPI\r
4713SaveAndDisableInterrupts (\r
4714 VOID\r
4715 );\r
4716\r
4717\r
4718/**\r
4719 Enables CPU interrupts for the smallest window required to capture any\r
4720 pending interrupts.\r
4721\r
ac644614 4722**/\r
4723VOID\r
4724EFIAPI\r
4725EnableDisableInterrupts (\r
4726 VOID\r
4727 );\r
4728\r
4729\r
4730/**\r
4731 Retrieves the current CPU interrupt state.\r
4732\r
af2dc6a7 4733 Returns TRUE if interrupts are currently enabled. Otherwise\r
38bbd3d9 4734 returns FALSE.\r
ac644614 4735\r
4736 @retval TRUE CPU interrupts are enabled.\r
4737 @retval FALSE CPU interrupts are disabled.\r
4738\r
4739**/\r
4740BOOLEAN\r
4741EFIAPI\r
4742GetInterruptState (\r
4743 VOID\r
4744 );\r
4745\r
4746\r
4747/**\r
4748 Set the current CPU interrupt state.\r
4749\r
4750 Sets the current CPU interrupt state to the state specified by\r
4751 InterruptState. If InterruptState is TRUE, then interrupts are enabled. If\r
4752 InterruptState is FALSE, then interrupts are disabled. InterruptState is\r
4753 returned.\r
4754\r
4755 @param InterruptState TRUE if interrupts should enabled. FALSE if\r
4756 interrupts should be disabled.\r
4757\r
4758 @return InterruptState\r
4759\r
4760**/\r
4761BOOLEAN\r
4762EFIAPI\r
4763SetInterruptState (\r
4764 IN BOOLEAN InterruptState\r
4765 );\r
4766\r
4767\r
4768/**\r
4769 Requests CPU to pause for a short period of time.\r
4770\r
4771 Requests CPU to pause for a short period of time. Typically used in MP\r
4772 systems to prevent memory starvation while waiting for a spin lock.\r
4773\r
4774**/\r
4775VOID\r
4776EFIAPI\r
4777CpuPause (\r
4778 VOID\r
4779 );\r
4780\r
4781\r
4782/**\r
4783 Transfers control to a function starting with a new stack.\r
4784\r
4785 Transfers control to the function specified by EntryPoint using the\r
4786 new stack specified by NewStack and passing in the parameters specified\r
4787 by Context1 and Context2. Context1 and Context2 are optional and may\r
4788 be NULL. The function EntryPoint must never return. This function\r
4789 supports a variable number of arguments following the NewStack parameter.\r
1a2f870c 4790 These additional arguments are ignored on IA-32, x64, and EBC architectures.\r
4791 Itanium processors expect one additional parameter of type VOID * that specifies\r
ac644614 4792 the new backing store pointer.\r
4793\r
4794 If EntryPoint is NULL, then ASSERT().\r
4795 If NewStack is NULL, then ASSERT().\r
4796\r
4797 @param EntryPoint A pointer to function to call with the new stack.\r
4798 @param Context1 A pointer to the context to pass into the EntryPoint\r
4799 function.\r
4800 @param Context2 A pointer to the context to pass into the EntryPoint\r
4801 function.\r
4802 @param NewStack A pointer to the new stack to use for the EntryPoint\r
4803 function.\r
9095d37b
LG
4804 @param ... This variable argument list is ignored for IA-32, x64, and\r
4805 EBC architectures. For Itanium processors, this variable\r
4806 argument list is expected to contain a single parameter of\r
af2dc6a7 4807 type VOID * that specifies the new backing store pointer.\r
42eedea9 4808\r
ac644614 4809\r
4810**/\r
4811VOID\r
4812EFIAPI\r
4813SwitchStack (\r
4814 IN SWITCH_STACK_ENTRY_POINT EntryPoint,\r
d0e2f823
MK
4815 IN VOID *Context1 OPTIONAL,\r
4816 IN VOID *Context2 OPTIONAL,\r
ac644614 4817 IN VOID *NewStack,\r
4818 ...\r
4819 );\r
4820\r
4821\r
4822/**\r
4823 Generates a breakpoint on the CPU.\r
4824\r
4825 Generates a breakpoint on the CPU. The breakpoint must be implemented such\r
4826 that code can resume normal execution after the breakpoint.\r
4827\r
4828**/\r
4829VOID\r
4830EFIAPI\r
4831CpuBreakpoint (\r
4832 VOID\r
4833 );\r
4834\r
4835\r
4836/**\r
4837 Executes an infinite loop.\r
4838\r
4839 Forces the CPU to execute an infinite loop. A debugger may be used to skip\r
4840 past the loop and the code that follows the loop must execute properly. This\r
4841 implies that the infinite loop must not cause the code that follow it to be\r
4842 optimized away.\r
4843\r
4844**/\r
4845VOID\r
4846EFIAPI\r
4847CpuDeadLoop (\r
4848 VOID\r
4849 );\r
9095d37b 4850\r
d9f1cac5
HW
4851\r
4852/**\r
4853 Uses as a barrier to stop speculative execution.\r
4854\r
4855 Ensures that no later instruction will execute speculatively, until all prior\r
4856 instructions have completed.\r
4857\r
4858**/\r
4859VOID\r
4860EFIAPI\r
4861SpeculationBarrier (\r
4862 VOID\r
4863 );\r
4864\r
5a7cbd54
BS
4865#if defined (MDE_CPU_X64)\r
4866//\r
4867// The page size for the PVALIDATE instruction\r
4868//\r
4869typedef enum {\r
4870 PvalidatePageSize4K = 0,\r
4871 PvalidatePageSize2MB,\r
4872} PVALIDATE_PAGE_SIZE;\r
4873\r
4874//\r
4875// PVALIDATE Return Code.\r
4876//\r
4877#define PVALIDATE_RET_SUCCESS 0\r
4878#define PVALIDATE_RET_FAIL_INPUT 1\r
4879#define PVALIDATE_RET_SIZE_MISMATCH 6\r
4880\r
4881//\r
4882// The PVALIDATE instruction did not make any changes to the RMP entry.\r
4883//\r
4884#define PVALIDATE_RET_NO_RMPUPDATE 255\r
4885\r
4886/**\r
4887 Execute a PVALIDATE instruction to validate or to rescinds validation of a guest\r
4888 page's RMP entry.\r
4889\r
4890 The instruction is available only when CPUID Fn8000_001F_EAX[SNP]=1.\r
4891\r
4892 The function is available on X64.\r
4893\r
4894 @param[in] PageSize The page size to use.\r
4895 @param[in] Validate If TRUE, validate the guest virtual address\r
4896 otherwise invalidate the guest virtual address.\r
4897 @param[in] Address The guest virtual address.\r
4898\r
4899 @retval PVALIDATE_RET_SUCCESS The PVALIDATE instruction succeeded, and\r
4900 updated the RMP entry.\r
4901 @retval PVALIDATE_RET_NO_RMPUPDATE The PVALIDATE instruction succeeded, but\r
4902 did not update the RMP entry.\r
4903 @return Failure code from the PVALIDATE\r
4904 instruction.\r
4905**/\r
4906UINT32\r
4907EFIAPI\r
4908AsmPvalidate (\r
4909 IN PVALIDATE_PAGE_SIZE PageSize,\r
4910 IN BOOLEAN Validate,\r
4911 IN PHYSICAL_ADDRESS Address\r
4912 );\r
2b5b2ff0
TL
4913\r
4914//\r
4915// RDX settings for RMPADJUST\r
4916//\r
4917#define RMPADJUST_VMPL_MAX 3\r
4918#define RMPADJUST_VMPL_MASK 0xFF\r
4919#define RMPADJUST_VMPL_SHIFT 0\r
4920#define RMPADJUST_PERMISSION_MASK_MASK 0xFF\r
4921#define RMPADJUST_PERMISSION_MASK_SHIFT 8\r
4922#define RMPADJUST_VMSA_PAGE_BIT BIT16\r
4923\r
4924/**\r
4925 Adjusts the permissions of an SEV-SNP guest page.\r
4926\r
4927 Executes a RMPADJUST instruction with the register state specified by Rax,\r
4928 Rcx, and Rdx. Returns Eax. This function is only available on X64.\r
4929\r
4930 The instruction is available only when CPUID Fn8000_001F_EAX[SNP]=1.\r
4931\r
4932 @param[in] Rax The value to load into RAX before executing the RMPADJUST\r
4933 instruction.\r
4934 @param[in] Rcx The value to load into RCX before executing the RMPADJUST\r
4935 instruction.\r
4936 @param[in] Rdx The value to load into RDX before executing the RMPADJUST\r
4937 instruction.\r
4938\r
4939 @return Eax\r
4940**/\r
4941UINT32\r
4942EFIAPI\r
4943AsmRmpAdjust (\r
4944 IN UINT64 Rax,\r
4945 IN UINT64 Rcx,\r
4946 IN UINT64 Rdx\r
4947 );\r
5a7cbd54
BS
4948#endif\r
4949\r
d9f1cac5 4950\r
fd163050 4951#if defined (MDE_CPU_IA32) || defined (MDE_CPU_X64)\r
1106ffe1 4952///\r
af2dc6a7 4953/// IA32 and x64 Specific Functions.\r
4954/// Byte packed structure for 16-bit Real Mode EFLAGS.\r
1106ffe1 4955///\r
ac644614 4956typedef union {\r
4957 struct {\r
af2dc6a7 4958 UINT32 CF:1; ///< Carry Flag.\r
4959 UINT32 Reserved_0:1; ///< Reserved.\r
4960 UINT32 PF:1; ///< Parity Flag.\r
4961 UINT32 Reserved_1:1; ///< Reserved.\r
4962 UINT32 AF:1; ///< Auxiliary Carry Flag.\r
4963 UINT32 Reserved_2:1; ///< Reserved.\r
4964 UINT32 ZF:1; ///< Zero Flag.\r
4965 UINT32 SF:1; ///< Sign Flag.\r
4966 UINT32 TF:1; ///< Trap Flag.\r
4967 UINT32 IF:1; ///< Interrupt Enable Flag.\r
4968 UINT32 DF:1; ///< Direction Flag.\r
4969 UINT32 OF:1; ///< Overflow Flag.\r
4970 UINT32 IOPL:2; ///< I/O Privilege Level.\r
4971 UINT32 NT:1; ///< Nested Task.\r
4972 UINT32 Reserved_3:1; ///< Reserved.\r
ac644614 4973 } Bits;\r
4974 UINT16 Uint16;\r
4975} IA32_FLAGS16;\r
4976\r
1106ffe1 4977///\r
af2dc6a7 4978/// Byte packed structure for EFLAGS/RFLAGS.\r
4979/// 32-bits on IA-32.\r
4980/// 64-bits on x64. The upper 32-bits on x64 are reserved.\r
1106ffe1 4981///\r
ac644614 4982typedef union {\r
4983 struct {\r
af2dc6a7 4984 UINT32 CF:1; ///< Carry Flag.\r
4985 UINT32 Reserved_0:1; ///< Reserved.\r
4986 UINT32 PF:1; ///< Parity Flag.\r
4987 UINT32 Reserved_1:1; ///< Reserved.\r
4988 UINT32 AF:1; ///< Auxiliary Carry Flag.\r
4989 UINT32 Reserved_2:1; ///< Reserved.\r
4990 UINT32 ZF:1; ///< Zero Flag.\r
4991 UINT32 SF:1; ///< Sign Flag.\r
4992 UINT32 TF:1; ///< Trap Flag.\r
4993 UINT32 IF:1; ///< Interrupt Enable Flag.\r
4994 UINT32 DF:1; ///< Direction Flag.\r
4995 UINT32 OF:1; ///< Overflow Flag.\r
4996 UINT32 IOPL:2; ///< I/O Privilege Level.\r
4997 UINT32 NT:1; ///< Nested Task.\r
4998 UINT32 Reserved_3:1; ///< Reserved.\r
4999 UINT32 RF:1; ///< Resume Flag.\r
5000 UINT32 VM:1; ///< Virtual 8086 Mode.\r
5001 UINT32 AC:1; ///< Alignment Check.\r
5002 UINT32 VIF:1; ///< Virtual Interrupt Flag.\r
5003 UINT32 VIP:1; ///< Virtual Interrupt Pending.\r
5004 UINT32 ID:1; ///< ID Flag.\r
5005 UINT32 Reserved_4:10; ///< Reserved.\r
ac644614 5006 } Bits;\r
5007 UINTN UintN;\r
5008} IA32_EFLAGS32;\r
5009\r
1106ffe1 5010///\r
af2dc6a7 5011/// Byte packed structure for Control Register 0 (CR0).\r
5012/// 32-bits on IA-32.\r
5013/// 64-bits on x64. The upper 32-bits on x64 are reserved.\r
1106ffe1 5014///\r
ac644614 5015typedef union {\r
5016 struct {\r
af2dc6a7 5017 UINT32 PE:1; ///< Protection Enable.\r
5018 UINT32 MP:1; ///< Monitor Coprocessor.\r
5019 UINT32 EM:1; ///< Emulation.\r
5020 UINT32 TS:1; ///< Task Switched.\r
5021 UINT32 ET:1; ///< Extension Type.\r
5022 UINT32 NE:1; ///< Numeric Error.\r
5023 UINT32 Reserved_0:10; ///< Reserved.\r
5024 UINT32 WP:1; ///< Write Protect.\r
5025 UINT32 Reserved_1:1; ///< Reserved.\r
5026 UINT32 AM:1; ///< Alignment Mask.\r
5027 UINT32 Reserved_2:10; ///< Reserved.\r
5028 UINT32 NW:1; ///< Mot Write-through.\r
5029 UINT32 CD:1; ///< Cache Disable.\r
5030 UINT32 PG:1; ///< Paging.\r
ac644614 5031 } Bits;\r
5032 UINTN UintN;\r
5033} IA32_CR0;\r
5034\r
1106ffe1 5035///\r
af2dc6a7 5036/// Byte packed structure for Control Register 4 (CR4).\r
5037/// 32-bits on IA-32.\r
5038/// 64-bits on x64. The upper 32-bits on x64 are reserved.\r
1106ffe1 5039///\r
ac644614 5040typedef union {\r
5041 struct {\r
af2dc6a7 5042 UINT32 VME:1; ///< Virtual-8086 Mode Extensions.\r
5043 UINT32 PVI:1; ///< Protected-Mode Virtual Interrupts.\r
5044 UINT32 TSD:1; ///< Time Stamp Disable.\r
5045 UINT32 DE:1; ///< Debugging Extensions.\r
5046 UINT32 PSE:1; ///< Page Size Extensions.\r
5047 UINT32 PAE:1; ///< Physical Address Extension.\r
5048 UINT32 MCE:1; ///< Machine Check Enable.\r
5049 UINT32 PGE:1; ///< Page Global Enable.\r
2a53dabf 5050 UINT32 PCE:1; ///< Performance Monitoring Counter\r
af2dc6a7 5051 ///< Enable.\r
2a53dabf
LG
5052 UINT32 OSFXSR:1; ///< Operating System Support for\r
5053 ///< FXSAVE and FXRSTOR instructions\r
5054 UINT32 OSXMMEXCPT:1; ///< Operating System Support for\r
5055 ///< Unmasked SIMD Floating Point\r
af2dc6a7 5056 ///< Exceptions.\r
859046e0 5057 UINT32 UMIP:1; ///< User-Mode Instruction Prevention.\r
6e5a33d1 5058 UINT32 LA57:1; ///< Linear Address 57bit.\r
859046e0
JV
5059 UINT32 VMXE:1; ///< VMX Enable.\r
5060 UINT32 SMXE:1; ///< SMX Enable.\r
5061 UINT32 Reserved_3:1; ///< Reserved.\r
5062 UINT32 FSGSBASE:1; ///< FSGSBASE Enable.\r
5063 UINT32 PCIDE:1; ///< PCID Enable.\r
5064 UINT32 OSXSAVE:1; ///< XSAVE and Processor Extended States Enable.\r
5065 UINT32 Reserved_4:1; ///< Reserved.\r
5066 UINT32 SMEP:1; ///< SMEP Enable.\r
5067 UINT32 SMAP:1; ///< SMAP Enable.\r
5068 UINT32 PKE:1; ///< Protection-Key Enable.\r
5069 UINT32 Reserved_5:9; ///< Reserved.\r
ac644614 5070 } Bits;\r
5071 UINTN UintN;\r
5072} IA32_CR4;\r
5073\r
6088db38 5074///\r
5075/// Byte packed structure for a segment descriptor in a GDT/LDT.\r
5076///\r
5077typedef union {\r
5078 struct {\r
5079 UINT32 LimitLow:16;\r
5080 UINT32 BaseLow:16;\r
5081 UINT32 BaseMid:8;\r
5082 UINT32 Type:4;\r
5083 UINT32 S:1;\r
5084 UINT32 DPL:2;\r
5085 UINT32 P:1;\r
5086 UINT32 LimitHigh:4;\r
5087 UINT32 AVL:1;\r
5088 UINT32 L:1;\r
5089 UINT32 DB:1;\r
5090 UINT32 G:1;\r
5091 UINT32 BaseHigh:8;\r
5092 } Bits;\r
5093 UINT64 Uint64;\r
5094} IA32_SEGMENT_DESCRIPTOR;\r
5095\r
1106ffe1 5096///\r
af2dc6a7 5097/// Byte packed structure for an IDTR, GDTR, LDTR descriptor.\r
1106ffe1 5098///\r
ac644614 5099#pragma pack (1)\r
5100typedef struct {\r
5101 UINT16 Limit;\r
5102 UINTN Base;\r
5103} IA32_DESCRIPTOR;\r
5104#pragma pack ()\r
5105\r
5106#define IA32_IDT_GATE_TYPE_TASK 0x85\r
5107#define IA32_IDT_GATE_TYPE_INTERRUPT_16 0x86\r
5108#define IA32_IDT_GATE_TYPE_TRAP_16 0x87\r
5109#define IA32_IDT_GATE_TYPE_INTERRUPT_32 0x8E\r
5110#define IA32_IDT_GATE_TYPE_TRAP_32 0x8F\r
5111\r
364a5474
JW
5112#define IA32_GDT_TYPE_TSS 0x9\r
5113#define IA32_GDT_ALIGNMENT 8\r
6f4aad3b 5114\r
5115#if defined (MDE_CPU_IA32)\r
1106ffe1 5116///\r
af2dc6a7 5117/// Byte packed structure for an IA-32 Interrupt Gate Descriptor.\r
1106ffe1 5118///\r
dc317713 5119typedef union {\r
5120 struct {\r
af2dc6a7 5121 UINT32 OffsetLow:16; ///< Offset bits 15..0.\r
5122 UINT32 Selector:16; ///< Selector.\r
5123 UINT32 Reserved_0:8; ///< Reserved.\r
5124 UINT32 GateType:8; ///< Gate Type. See #defines above.\r
5125 UINT32 OffsetHigh:16; ///< Offset bits 31..16.\r
dc317713 5126 } Bits;\r
5127 UINT64 Uint64;\r
5128} IA32_IDT_GATE_DESCRIPTOR;\r
5129\r
364a5474
JW
5130#pragma pack (1)\r
5131//\r
5132// IA32 Task-State Segment Definition\r
5133//\r
5134typedef struct {\r
5135 UINT16 PreviousTaskLink;\r
5136 UINT16 Reserved_2;\r
3ab032fc
JW
5137 UINT32 ESP0;\r
5138 UINT16 SS0;\r
364a5474 5139 UINT16 Reserved_10;\r
3ab032fc
JW
5140 UINT32 ESP1;\r
5141 UINT16 SS1;\r
364a5474 5142 UINT16 Reserved_18;\r
3ab032fc
JW
5143 UINT32 ESP2;\r
5144 UINT16 SS2;\r
364a5474 5145 UINT16 Reserved_26;\r
3ab032fc
JW
5146 UINT32 CR3;\r
5147 UINT32 EIP;\r
5148 UINT32 EFLAGS;\r
5149 UINT32 EAX;\r
5150 UINT32 ECX;\r
5151 UINT32 EDX;\r
5152 UINT32 EBX;\r
5153 UINT32 ESP;\r
5154 UINT32 EBP;\r
5155 UINT32 ESI;\r
5156 UINT32 EDI;\r
5157 UINT16 ES;\r
364a5474 5158 UINT16 Reserved_74;\r
3ab032fc 5159 UINT16 CS;\r
364a5474 5160 UINT16 Reserved_78;\r
3ab032fc 5161 UINT16 SS;\r
364a5474 5162 UINT16 Reserved_82;\r
3ab032fc 5163 UINT16 DS;\r
364a5474 5164 UINT16 Reserved_86;\r
3ab032fc 5165 UINT16 FS;\r
364a5474 5166 UINT16 Reserved_90;\r
3ab032fc 5167 UINT16 GS;\r
364a5474
JW
5168 UINT16 Reserved_94;\r
5169 UINT16 LDTSegmentSelector;\r
5170 UINT16 Reserved_98;\r
3ab032fc 5171 UINT16 T;\r
364a5474
JW
5172 UINT16 IOMapBaseAddress;\r
5173} IA32_TASK_STATE_SEGMENT;\r
5174\r
5175typedef union {\r
5176 struct {\r
5177 UINT32 LimitLow:16; ///< Segment Limit 15..00\r
5178 UINT32 BaseLow:16; ///< Base Address 15..00\r
5179 UINT32 BaseMid:8; ///< Base Address 23..16\r
5180 UINT32 Type:4; ///< Type (1 0 B 1)\r
5181 UINT32 Reserved_43:1; ///< 0\r
3ab032fc
JW
5182 UINT32 DPL:2; ///< Descriptor Privilege Level\r
5183 UINT32 P:1; ///< Segment Present\r
364a5474 5184 UINT32 LimitHigh:4; ///< Segment Limit 19..16\r
3ab032fc 5185 UINT32 AVL:1; ///< Available for use by system software\r
364a5474 5186 UINT32 Reserved_52:2; ///< 0 0\r
3ab032fc 5187 UINT32 G:1; ///< Granularity\r
364a5474
JW
5188 UINT32 BaseHigh:8; ///< Base Address 31..24\r
5189 } Bits;\r
5190 UINT64 Uint64;\r
5191} IA32_TSS_DESCRIPTOR;\r
5192#pragma pack ()\r
5193\r
de4f7f52 5194#endif // defined (MDE_CPU_IA32)\r
dc317713 5195\r
5196#if defined (MDE_CPU_X64)\r
6f4aad3b 5197///\r
af2dc6a7 5198/// Byte packed structure for an x64 Interrupt Gate Descriptor.\r
6f4aad3b 5199///\r
ac644614 5200typedef union {\r
5201 struct {\r
af2dc6a7 5202 UINT32 OffsetLow:16; ///< Offset bits 15..0.\r
5203 UINT32 Selector:16; ///< Selector.\r
5204 UINT32 Reserved_0:8; ///< Reserved.\r
5205 UINT32 GateType:8; ///< Gate Type. See #defines above.\r
5206 UINT32 OffsetHigh:16; ///< Offset bits 31..16.\r
5207 UINT32 OffsetUpper:32; ///< Offset bits 63..32.\r
5208 UINT32 Reserved_1:32; ///< Reserved.\r
ac644614 5209 } Bits;\r
6f4aad3b 5210 struct {\r
5211 UINT64 Uint64;\r
5212 UINT64 Uint64_1;\r
9095d37b 5213 } Uint128;\r
ac644614 5214} IA32_IDT_GATE_DESCRIPTOR;\r
5215\r
364a5474
JW
5216#pragma pack (1)\r
5217//\r
5218// IA32 Task-State Segment Definition\r
5219//\r
5220typedef struct {\r
5221 UINT32 Reserved_0;\r
3ab032fc
JW
5222 UINT64 RSP0;\r
5223 UINT64 RSP1;\r
5224 UINT64 RSP2;\r
364a5474 5225 UINT64 Reserved_28;\r
3ab032fc 5226 UINT64 IST[7];\r
364a5474
JW
5227 UINT64 Reserved_92;\r
5228 UINT16 Reserved_100;\r
5229 UINT16 IOMapBaseAddress;\r
5230} IA32_TASK_STATE_SEGMENT;\r
5231\r
5232typedef union {\r
5233 struct {\r
5234 UINT32 LimitLow:16; ///< Segment Limit 15..00\r
5235 UINT32 BaseLow:16; ///< Base Address 15..00\r
5236 UINT32 BaseMidl:8; ///< Base Address 23..16\r
5237 UINT32 Type:4; ///< Type (1 0 B 1)\r
5238 UINT32 Reserved_43:1; ///< 0\r
3ab032fc
JW
5239 UINT32 DPL:2; ///< Descriptor Privilege Level\r
5240 UINT32 P:1; ///< Segment Present\r
364a5474 5241 UINT32 LimitHigh:4; ///< Segment Limit 19..16\r
3ab032fc 5242 UINT32 AVL:1; ///< Available for use by system software\r
364a5474 5243 UINT32 Reserved_52:2; ///< 0 0\r
3ab032fc 5244 UINT32 G:1; ///< Granularity\r
364a5474
JW
5245 UINT32 BaseMidh:8; ///< Base Address 31..24\r
5246 UINT32 BaseHigh:32; ///< Base Address 63..32\r
5247 UINT32 Reserved_96:32; ///< Reserved\r
5248 } Bits;\r
5249 struct {\r
5250 UINT64 Uint64;\r
5251 UINT64 Uint64_1;\r
5252 } Uint128;\r
5253} IA32_TSS_DESCRIPTOR;\r
5254#pragma pack ()\r
5255\r
de4f7f52 5256#endif // defined (MDE_CPU_X64)\r
dc317713 5257\r
1106ffe1 5258///\r
af2dc6a7 5259/// Byte packed structure for an FP/SSE/SSE2 context.\r
1106ffe1 5260///\r
ac644614 5261typedef struct {\r
5262 UINT8 Buffer[512];\r
5263} IA32_FX_BUFFER;\r
5264\r
1106ffe1 5265///\r
af2dc6a7 5266/// Structures for the 16-bit real mode thunks.\r
1106ffe1 5267///\r
ac644614 5268typedef struct {\r
5269 UINT32 Reserved1;\r
5270 UINT32 Reserved2;\r
5271 UINT32 Reserved3;\r
5272 UINT32 Reserved4;\r
5273 UINT8 BL;\r
5274 UINT8 BH;\r
5275 UINT16 Reserved5;\r
5276 UINT8 DL;\r
5277 UINT8 DH;\r
5278 UINT16 Reserved6;\r
5279 UINT8 CL;\r
5280 UINT8 CH;\r
5281 UINT16 Reserved7;\r
5282 UINT8 AL;\r
5283 UINT8 AH;\r
5284 UINT16 Reserved8;\r
5285} IA32_BYTE_REGS;\r
5286\r
5287typedef struct {\r
5288 UINT16 DI;\r
5289 UINT16 Reserved1;\r
5290 UINT16 SI;\r
5291 UINT16 Reserved2;\r
5292 UINT16 BP;\r
5293 UINT16 Reserved3;\r
5294 UINT16 SP;\r
5295 UINT16 Reserved4;\r
5296 UINT16 BX;\r
5297 UINT16 Reserved5;\r
5298 UINT16 DX;\r
5299 UINT16 Reserved6;\r
5300 UINT16 CX;\r
5301 UINT16 Reserved7;\r
5302 UINT16 AX;\r
5303 UINT16 Reserved8;\r
5304} IA32_WORD_REGS;\r
5305\r
5306typedef struct {\r
5307 UINT32 EDI;\r
5308 UINT32 ESI;\r
5309 UINT32 EBP;\r
5310 UINT32 ESP;\r
5311 UINT32 EBX;\r
5312 UINT32 EDX;\r
5313 UINT32 ECX;\r
5314 UINT32 EAX;\r
5315 UINT16 DS;\r
5316 UINT16 ES;\r
5317 UINT16 FS;\r
5318 UINT16 GS;\r
5319 IA32_EFLAGS32 EFLAGS;\r
5320 UINT32 Eip;\r
5321 UINT16 CS;\r
5322 UINT16 SS;\r
5323} IA32_DWORD_REGS;\r
5324\r
5325typedef union {\r
5326 IA32_DWORD_REGS E;\r
5327 IA32_WORD_REGS X;\r
5328 IA32_BYTE_REGS H;\r
5329} IA32_REGISTER_SET;\r
5330\r
1106ffe1 5331///\r
af2dc6a7 5332/// Byte packed structure for an 16-bit real mode thunks.\r
1106ffe1 5333///\r
ac644614 5334typedef struct {\r
5335 IA32_REGISTER_SET *RealModeState;\r
5336 VOID *RealModeBuffer;\r
5337 UINT32 RealModeBufferSize;\r
5338 UINT32 ThunkAttributes;\r
5339} THUNK_CONTEXT;\r
5340\r
5341#define THUNK_ATTRIBUTE_BIG_REAL_MODE 0x00000001\r
5342#define THUNK_ATTRIBUTE_DISABLE_A20_MASK_INT_15 0x00000002\r
5343#define THUNK_ATTRIBUTE_DISABLE_A20_MASK_KBD_CTRL 0x00000004\r
5344\r
8596c140
LE
5345///\r
5346/// Type definition for representing labels in NASM source code that allow for\r
5347/// the patching of immediate operands of IA32 and X64 instructions.\r
5348///\r
5349/// While the type is technically defined as a function type (note: not a\r
5350/// pointer-to-function type), such labels in NASM source code never stand for\r
5351/// actual functions, and identifiers declared with this function type should\r
5352/// never be called. This is also why the EFIAPI calling convention specifier\r
5353/// is missing from the typedef, and why the typedef does not follow the usual\r
5354/// edk2 coding style for function (or pointer-to-function) typedefs. The VOID\r
5355/// return type and the VOID argument list are merely artifacts.\r
5356///\r
5357typedef VOID (X86_ASSEMBLY_PATCH_LABEL) (VOID);\r
5358\r
ac644614 5359/**\r
5360 Retrieves CPUID information.\r
5361\r
5362 Executes the CPUID instruction with EAX set to the value specified by Index.\r
5363 This function always returns Index.\r
5364 If Eax is not NULL, then the value of EAX after CPUID is returned in Eax.\r
5365 If Ebx is not NULL, then the value of EBX after CPUID is returned in Ebx.\r
5366 If Ecx is not NULL, then the value of ECX after CPUID is returned in Ecx.\r
5367 If Edx is not NULL, then the value of EDX after CPUID is returned in Edx.\r
030cd1a2 5368 This function is only available on IA-32 and x64.\r
ac644614 5369\r
5370 @param Index The 32-bit value to load into EAX prior to invoking the CPUID\r
5371 instruction.\r
af2dc6a7 5372 @param Eax The pointer to the 32-bit EAX value returned by the CPUID\r
ac644614 5373 instruction. This is an optional parameter that may be NULL.\r
af2dc6a7 5374 @param Ebx The pointer to the 32-bit EBX value returned by the CPUID\r
ac644614 5375 instruction. This is an optional parameter that may be NULL.\r
af2dc6a7 5376 @param Ecx The pointer to the 32-bit ECX value returned by the CPUID\r
ac644614 5377 instruction. This is an optional parameter that may be NULL.\r
af2dc6a7 5378 @param Edx The pointer to the 32-bit EDX value returned by the CPUID\r
ac644614 5379 instruction. This is an optional parameter that may be NULL.\r
5380\r
2fe241a2 5381 @return Index.\r
ac644614 5382\r
5383**/\r
5384UINT32\r
5385EFIAPI\r
5386AsmCpuid (\r
5387 IN UINT32 Index,\r
d0e2f823
MK
5388 OUT UINT32 *Eax OPTIONAL,\r
5389 OUT UINT32 *Ebx OPTIONAL,\r
5390 OUT UINT32 *Ecx OPTIONAL,\r
ac644614 5391 OUT UINT32 *Edx OPTIONAL\r
5392 );\r
5393\r
5394\r
5395/**\r
5396 Retrieves CPUID information using an extended leaf identifier.\r
5397\r
5398 Executes the CPUID instruction with EAX set to the value specified by Index\r
5399 and ECX set to the value specified by SubIndex. This function always returns\r
5400 Index. This function is only available on IA-32 and x64.\r
5401\r
5402 If Eax is not NULL, then the value of EAX after CPUID is returned in Eax.\r
5403 If Ebx is not NULL, then the value of EBX after CPUID is returned in Ebx.\r
5404 If Ecx is not NULL, then the value of ECX after CPUID is returned in Ecx.\r
5405 If Edx is not NULL, then the value of EDX after CPUID is returned in Edx.\r
5406\r
5407 @param Index The 32-bit value to load into EAX prior to invoking the\r
5408 CPUID instruction.\r
5409 @param SubIndex The 32-bit value to load into ECX prior to invoking the\r
5410 CPUID instruction.\r
af2dc6a7 5411 @param Eax The pointer to the 32-bit EAX value returned by the CPUID\r
ac644614 5412 instruction. This is an optional parameter that may be\r
5413 NULL.\r
af2dc6a7 5414 @param Ebx The pointer to the 32-bit EBX value returned by the CPUID\r
ac644614 5415 instruction. This is an optional parameter that may be\r
5416 NULL.\r
af2dc6a7 5417 @param Ecx The pointer to the 32-bit ECX value returned by the CPUID\r
ac644614 5418 instruction. This is an optional parameter that may be\r
5419 NULL.\r
af2dc6a7 5420 @param Edx The pointer to the 32-bit EDX value returned by the CPUID\r
ac644614 5421 instruction. This is an optional parameter that may be\r
5422 NULL.\r
5423\r
2fe241a2 5424 @return Index.\r
ac644614 5425\r
5426**/\r
5427UINT32\r
5428EFIAPI\r
5429AsmCpuidEx (\r
5430 IN UINT32 Index,\r
5431 IN UINT32 SubIndex,\r
d0e2f823
MK
5432 OUT UINT32 *Eax OPTIONAL,\r
5433 OUT UINT32 *Ebx OPTIONAL,\r
5434 OUT UINT32 *Ecx OPTIONAL,\r
ac644614 5435 OUT UINT32 *Edx OPTIONAL\r
5436 );\r
5437\r
5438\r
be5f1614 5439/**\r
5440 Set CD bit and clear NW bit of CR0 followed by a WBINVD.\r
5441\r
5442 Disables the caches by setting the CD bit of CR0 to 1, clearing the NW bit of CR0 to 0,\r
5443 and executing a WBINVD instruction. This function is only available on IA-32 and x64.\r
5444\r
5445**/\r
5446VOID\r
5447EFIAPI\r
5448AsmDisableCache (\r
5449 VOID\r
5450 );\r
5451\r
5452\r
5453/**\r
5454 Perform a WBINVD and clear both the CD and NW bits of CR0.\r
5455\r
5456 Enables the caches by executing a WBINVD instruction and then clear both the CD and NW\r
5457 bits of CR0 to 0. This function is only available on IA-32 and x64.\r
5458\r
5459**/\r
5460VOID\r
5461EFIAPI\r
5462AsmEnableCache (\r
5463 VOID\r
5464 );\r
5465\r
5466\r
ac644614 5467/**\r
5468 Returns the lower 32-bits of a Machine Specific Register(MSR).\r
5469\r
5470 Reads and returns the lower 32-bits of the MSR specified by Index.\r
5471 No parameter checking is performed on Index, and some Index values may cause\r
5472 CPU exceptions. The caller must either guarantee that Index is valid, or the\r
5473 caller must set up exception handlers to catch the exceptions. This function\r
030cd1a2 5474 is only available on IA-32 and x64.\r
ac644614 5475\r
5476 @param Index The 32-bit MSR index to read.\r
5477\r
5478 @return The lower 32 bits of the MSR identified by Index.\r
5479\r
5480**/\r
5481UINT32\r
5482EFIAPI\r
5483AsmReadMsr32 (\r
5484 IN UINT32 Index\r
5485 );\r
5486\r
5487\r
5488/**\r
17f695ed 5489 Writes a 32-bit value to a Machine Specific Register(MSR), and returns the value.\r
5490 The upper 32-bits of the MSR are set to zero.\r
ac644614 5491\r
5492 Writes the 32-bit value specified by Value to the MSR specified by Index. The\r
5493 upper 32-bits of the MSR write are set to zero. The 32-bit value written to\r
5494 the MSR is returned. No parameter checking is performed on Index or Value,\r
5495 and some of these may cause CPU exceptions. The caller must either guarantee\r
5496 that Index and Value are valid, or the caller must establish proper exception\r
030cd1a2 5497 handlers. This function is only available on IA-32 and x64.\r
ac644614 5498\r
5499 @param Index The 32-bit MSR index to write.\r
5500 @param Value The 32-bit value to write to the MSR.\r
5501\r
5502 @return Value\r
5503\r
5504**/\r
5505UINT32\r
5506EFIAPI\r
5507AsmWriteMsr32 (\r
5508 IN UINT32 Index,\r
5509 IN UINT32 Value\r
5510 );\r
5511\r
5512\r
5513/**\r
62991af2 5514 Reads a 64-bit MSR, performs a bitwise OR on the lower 32-bits, and\r
ac644614 5515 writes the result back to the 64-bit MSR.\r
5516\r
62991af2 5517 Reads the 64-bit MSR specified by Index, performs a bitwise OR\r
ac644614 5518 between the lower 32-bits of the read result and the value specified by\r
5519 OrData, and writes the result to the 64-bit MSR specified by Index. The lower\r
5520 32-bits of the value written to the MSR is returned. No parameter checking is\r
5521 performed on Index or OrData, and some of these may cause CPU exceptions. The\r
5522 caller must either guarantee that Index and OrData are valid, or the caller\r
5523 must establish proper exception handlers. This function is only available on\r
030cd1a2 5524 IA-32 and x64.\r
ac644614 5525\r
5526 @param Index The 32-bit MSR index to write.\r
5527 @param OrData The value to OR with the read value from the MSR.\r
5528\r
5529 @return The lower 32-bit value written to the MSR.\r
5530\r
5531**/\r
5532UINT32\r
5533EFIAPI\r
5534AsmMsrOr32 (\r
5535 IN UINT32 Index,\r
5536 IN UINT32 OrData\r
5537 );\r
5538\r
5539\r
5540/**\r
5541 Reads a 64-bit MSR, performs a bitwise AND on the lower 32-bits, and writes\r
5542 the result back to the 64-bit MSR.\r
5543\r
5544 Reads the 64-bit MSR specified by Index, performs a bitwise AND between the\r
5545 lower 32-bits of the read result and the value specified by AndData, and\r
5546 writes the result to the 64-bit MSR specified by Index. The lower 32-bits of\r
5547 the value written to the MSR is returned. No parameter checking is performed\r
5548 on Index or AndData, and some of these may cause CPU exceptions. The caller\r
5549 must either guarantee that Index and AndData are valid, or the caller must\r
5550 establish proper exception handlers. This function is only available on IA-32\r
030cd1a2 5551 and x64.\r
ac644614 5552\r
5553 @param Index The 32-bit MSR index to write.\r
5554 @param AndData The value to AND with the read value from the MSR.\r
5555\r
5556 @return The lower 32-bit value written to the MSR.\r
5557\r
5558**/\r
5559UINT32\r
5560EFIAPI\r
5561AsmMsrAnd32 (\r
5562 IN UINT32 Index,\r
5563 IN UINT32 AndData\r
5564 );\r
5565\r
5566\r
5567/**\r
62991af2 5568 Reads a 64-bit MSR, performs a bitwise AND followed by a bitwise OR\r
ac644614 5569 on the lower 32-bits, and writes the result back to the 64-bit MSR.\r
5570\r
5571 Reads the 64-bit MSR specified by Index, performs a bitwise AND between the\r
5572 lower 32-bits of the read result and the value specified by AndData\r
62991af2 5573 preserving the upper 32-bits, performs a bitwise OR between the\r
ac644614 5574 result of the AND operation and the value specified by OrData, and writes the\r
5575 result to the 64-bit MSR specified by Address. The lower 32-bits of the value\r
5576 written to the MSR is returned. No parameter checking is performed on Index,\r
5577 AndData, or OrData, and some of these may cause CPU exceptions. The caller\r
5578 must either guarantee that Index, AndData, and OrData are valid, or the\r
5579 caller must establish proper exception handlers. This function is only\r
030cd1a2 5580 available on IA-32 and x64.\r
ac644614 5581\r
5582 @param Index The 32-bit MSR index to write.\r
5583 @param AndData The value to AND with the read value from the MSR.\r
5584 @param OrData The value to OR with the result of the AND operation.\r
5585\r
5586 @return The lower 32-bit value written to the MSR.\r
5587\r
5588**/\r
5589UINT32\r
5590EFIAPI\r
5591AsmMsrAndThenOr32 (\r
5592 IN UINT32 Index,\r
5593 IN UINT32 AndData,\r
5594 IN UINT32 OrData\r
5595 );\r
5596\r
5597\r
5598/**\r
5599 Reads a bit field of an MSR.\r
5600\r
5601 Reads the bit field in the lower 32-bits of a 64-bit MSR. The bit field is\r
5602 specified by the StartBit and the EndBit. The value of the bit field is\r
5603 returned. The caller must either guarantee that Index is valid, or the caller\r
5604 must set up exception handlers to catch the exceptions. This function is only\r
030cd1a2 5605 available on IA-32 and x64.\r
ac644614 5606\r
5607 If StartBit is greater than 31, then ASSERT().\r
5608 If EndBit is greater than 31, then ASSERT().\r
5609 If EndBit is less than StartBit, then ASSERT().\r
5610\r
5611 @param Index The 32-bit MSR index to read.\r
5612 @param StartBit The ordinal of the least significant bit in the bit field.\r
5613 Range 0..31.\r
5614 @param EndBit The ordinal of the most significant bit in the bit field.\r
5615 Range 0..31.\r
5616\r
5617 @return The bit field read from the MSR.\r
5618\r
5619**/\r
5620UINT32\r
5621EFIAPI\r
5622AsmMsrBitFieldRead32 (\r
5623 IN UINT32 Index,\r
5624 IN UINTN StartBit,\r
5625 IN UINTN EndBit\r
5626 );\r
5627\r
5628\r
5629/**\r
5630 Writes a bit field to an MSR.\r
5631\r
2fe241a2 5632 Writes Value to a bit field in the lower 32-bits of a 64-bit MSR. The bit\r
ac644614 5633 field is specified by the StartBit and the EndBit. All other bits in the\r
5634 destination MSR are preserved. The lower 32-bits of the MSR written is\r
9095d37b
LG
5635 returned. The caller must either guarantee that Index and the data written\r
5636 is valid, or the caller must set up exception handlers to catch the exceptions.\r
62991af2 5637 This function is only available on IA-32 and x64.\r
ac644614 5638\r
5639 If StartBit is greater than 31, then ASSERT().\r
5640 If EndBit is greater than 31, then ASSERT().\r
5641 If EndBit is less than StartBit, then ASSERT().\r
94952554 5642 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 5643\r
5644 @param Index The 32-bit MSR index to write.\r
5645 @param StartBit The ordinal of the least significant bit in the bit field.\r
5646 Range 0..31.\r
5647 @param EndBit The ordinal of the most significant bit in the bit field.\r
5648 Range 0..31.\r
5649 @param Value New value of the bit field.\r
5650\r
5651 @return The lower 32-bit of the value written to the MSR.\r
5652\r
5653**/\r
5654UINT32\r
5655EFIAPI\r
5656AsmMsrBitFieldWrite32 (\r
5657 IN UINT32 Index,\r
5658 IN UINTN StartBit,\r
5659 IN UINTN EndBit,\r
5660 IN UINT32 Value\r
5661 );\r
5662\r
5663\r
5664/**\r
5665 Reads a bit field in a 64-bit MSR, performs a bitwise OR, and writes the\r
5666 result back to the bit field in the 64-bit MSR.\r
5667\r
62991af2 5668 Reads the 64-bit MSR specified by Index, performs a bitwise OR\r
ac644614 5669 between the read result and the value specified by OrData, and writes the\r
5670 result to the 64-bit MSR specified by Index. The lower 32-bits of the value\r
5671 written to the MSR are returned. Extra left bits in OrData are stripped. The\r
5672 caller must either guarantee that Index and the data written is valid, or\r
5673 the caller must set up exception handlers to catch the exceptions. This\r
030cd1a2 5674 function is only available on IA-32 and x64.\r
ac644614 5675\r
5676 If StartBit is greater than 31, then ASSERT().\r
5677 If EndBit is greater than 31, then ASSERT().\r
5678 If EndBit is less than StartBit, then ASSERT().\r
94952554 5679 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 5680\r
5681 @param Index The 32-bit MSR index to write.\r
5682 @param StartBit The ordinal of the least significant bit in the bit field.\r
5683 Range 0..31.\r
5684 @param EndBit The ordinal of the most significant bit in the bit field.\r
5685 Range 0..31.\r
5686 @param OrData The value to OR with the read value from the MSR.\r
5687\r
5688 @return The lower 32-bit of the value written to the MSR.\r
5689\r
5690**/\r
5691UINT32\r
5692EFIAPI\r
5693AsmMsrBitFieldOr32 (\r
5694 IN UINT32 Index,\r
5695 IN UINTN StartBit,\r
5696 IN UINTN EndBit,\r
5697 IN UINT32 OrData\r
5698 );\r
5699\r
5700\r
5701/**\r
5702 Reads a bit field in a 64-bit MSR, performs a bitwise AND, and writes the\r
5703 result back to the bit field in the 64-bit MSR.\r
5704\r
5705 Reads the 64-bit MSR specified by Index, performs a bitwise AND between the\r
5706 read result and the value specified by AndData, and writes the result to the\r
5707 64-bit MSR specified by Index. The lower 32-bits of the value written to the\r
5708 MSR are returned. Extra left bits in AndData are stripped. The caller must\r
5709 either guarantee that Index and the data written is valid, or the caller must\r
5710 set up exception handlers to catch the exceptions. This function is only\r
030cd1a2 5711 available on IA-32 and x64.\r
ac644614 5712\r
5713 If StartBit is greater than 31, then ASSERT().\r
5714 If EndBit is greater than 31, then ASSERT().\r
5715 If EndBit is less than StartBit, then ASSERT().\r
94952554 5716 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 5717\r
5718 @param Index The 32-bit MSR index to write.\r
5719 @param StartBit The ordinal of the least significant bit in the bit field.\r
5720 Range 0..31.\r
5721 @param EndBit The ordinal of the most significant bit in the bit field.\r
5722 Range 0..31.\r
5723 @param AndData The value to AND with the read value from the MSR.\r
5724\r
5725 @return The lower 32-bit of the value written to the MSR.\r
5726\r
5727**/\r
5728UINT32\r
5729EFIAPI\r
5730AsmMsrBitFieldAnd32 (\r
5731 IN UINT32 Index,\r
5732 IN UINTN StartBit,\r
5733 IN UINTN EndBit,\r
5734 IN UINT32 AndData\r
5735 );\r
5736\r
5737\r
5738/**\r
5739 Reads a bit field in a 64-bit MSR, performs a bitwise AND followed by a\r
62991af2 5740 bitwise OR, and writes the result back to the bit field in the\r
ac644614 5741 64-bit MSR.\r
5742\r
5743 Reads the 64-bit MSR specified by Index, performs a bitwise AND followed by a\r
62991af2 5744 bitwise OR between the read result and the value specified by\r
ac644614 5745 AndData, and writes the result to the 64-bit MSR specified by Index. The\r
5746 lower 32-bits of the value written to the MSR are returned. Extra left bits\r
5747 in both AndData and OrData are stripped. The caller must either guarantee\r
5748 that Index and the data written is valid, or the caller must set up exception\r
5749 handlers to catch the exceptions. This function is only available on IA-32\r
030cd1a2 5750 and x64.\r
ac644614 5751\r
5752 If StartBit is greater than 31, then ASSERT().\r
5753 If EndBit is greater than 31, then ASSERT().\r
5754 If EndBit is less than StartBit, then ASSERT().\r
94952554
LG
5755 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
5756 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 5757\r
5758 @param Index The 32-bit MSR index to write.\r
5759 @param StartBit The ordinal of the least significant bit in the bit field.\r
5760 Range 0..31.\r
5761 @param EndBit The ordinal of the most significant bit in the bit field.\r
5762 Range 0..31.\r
5763 @param AndData The value to AND with the read value from the MSR.\r
5764 @param OrData The value to OR with the result of the AND operation.\r
5765\r
5766 @return The lower 32-bit of the value written to the MSR.\r
5767\r
5768**/\r
5769UINT32\r
5770EFIAPI\r
5771AsmMsrBitFieldAndThenOr32 (\r
5772 IN UINT32 Index,\r
5773 IN UINTN StartBit,\r
5774 IN UINTN EndBit,\r
5775 IN UINT32 AndData,\r
5776 IN UINT32 OrData\r
5777 );\r
5778\r
5779\r
5780/**\r
5781 Returns a 64-bit Machine Specific Register(MSR).\r
5782\r
5783 Reads and returns the 64-bit MSR specified by Index. No parameter checking is\r
5784 performed on Index, and some Index values may cause CPU exceptions. The\r
5785 caller must either guarantee that Index is valid, or the caller must set up\r
5786 exception handlers to catch the exceptions. This function is only available\r
030cd1a2 5787 on IA-32 and x64.\r
ac644614 5788\r
5789 @param Index The 32-bit MSR index to read.\r
5790\r
5791 @return The value of the MSR identified by Index.\r
5792\r
5793**/\r
5794UINT64\r
5795EFIAPI\r
5796AsmReadMsr64 (\r
5797 IN UINT32 Index\r
5798 );\r
5799\r
5800\r
5801/**\r
5802 Writes a 64-bit value to a Machine Specific Register(MSR), and returns the\r
5803 value.\r
5804\r
5805 Writes the 64-bit value specified by Value to the MSR specified by Index. The\r
5806 64-bit value written to the MSR is returned. No parameter checking is\r
5807 performed on Index or Value, and some of these may cause CPU exceptions. The\r
5808 caller must either guarantee that Index and Value are valid, or the caller\r
5809 must establish proper exception handlers. This function is only available on\r
030cd1a2 5810 IA-32 and x64.\r
ac644614 5811\r
5812 @param Index The 32-bit MSR index to write.\r
5813 @param Value The 64-bit value to write to the MSR.\r
5814\r
5815 @return Value\r
5816\r
5817**/\r
5818UINT64\r
5819EFIAPI\r
5820AsmWriteMsr64 (\r
5821 IN UINT32 Index,\r
5822 IN UINT64 Value\r
5823 );\r
5824\r
5825\r
5826/**\r
62991af2 5827 Reads a 64-bit MSR, performs a bitwise OR, and writes the result\r
ac644614 5828 back to the 64-bit MSR.\r
5829\r
62991af2 5830 Reads the 64-bit MSR specified by Index, performs a bitwise OR\r
ac644614 5831 between the read result and the value specified by OrData, and writes the\r
5832 result to the 64-bit MSR specified by Index. The value written to the MSR is\r
5833 returned. No parameter checking is performed on Index or OrData, and some of\r
5834 these may cause CPU exceptions. The caller must either guarantee that Index\r
5835 and OrData are valid, or the caller must establish proper exception handlers.\r
030cd1a2 5836 This function is only available on IA-32 and x64.\r
ac644614 5837\r
5838 @param Index The 32-bit MSR index to write.\r
5839 @param OrData The value to OR with the read value from the MSR.\r
5840\r
5841 @return The value written back to the MSR.\r
5842\r
5843**/\r
5844UINT64\r
5845EFIAPI\r
5846AsmMsrOr64 (\r
5847 IN UINT32 Index,\r
5848 IN UINT64 OrData\r
5849 );\r
5850\r
5851\r
5852/**\r
5853 Reads a 64-bit MSR, performs a bitwise AND, and writes the result back to the\r
5854 64-bit MSR.\r
5855\r
5856 Reads the 64-bit MSR specified by Index, performs a bitwise AND between the\r
5857 read result and the value specified by OrData, and writes the result to the\r
5858 64-bit MSR specified by Index. The value written to the MSR is returned. No\r
5859 parameter checking is performed on Index or OrData, and some of these may\r
5860 cause CPU exceptions. The caller must either guarantee that Index and OrData\r
5861 are valid, or the caller must establish proper exception handlers. This\r
030cd1a2 5862 function is only available on IA-32 and x64.\r
ac644614 5863\r
5864 @param Index The 32-bit MSR index to write.\r
5865 @param AndData The value to AND with the read value from the MSR.\r
5866\r
5867 @return The value written back to the MSR.\r
5868\r
5869**/\r
5870UINT64\r
5871EFIAPI\r
5872AsmMsrAnd64 (\r
5873 IN UINT32 Index,\r
5874 IN UINT64 AndData\r
5875 );\r
5876\r
5877\r
5878/**\r
9095d37b 5879 Reads a 64-bit MSR, performs a bitwise AND followed by a bitwise\r
ac644614 5880 OR, and writes the result back to the 64-bit MSR.\r
5881\r
5882 Reads the 64-bit MSR specified by Index, performs a bitwise AND between read\r
62991af2 5883 result and the value specified by AndData, performs a bitwise OR\r
ac644614 5884 between the result of the AND operation and the value specified by OrData,\r
5885 and writes the result to the 64-bit MSR specified by Index. The value written\r
5886 to the MSR is returned. No parameter checking is performed on Index, AndData,\r
5887 or OrData, and some of these may cause CPU exceptions. The caller must either\r
5888 guarantee that Index, AndData, and OrData are valid, or the caller must\r
5889 establish proper exception handlers. This function is only available on IA-32\r
030cd1a2 5890 and x64.\r
ac644614 5891\r
5892 @param Index The 32-bit MSR index to write.\r
5893 @param AndData The value to AND with the read value from the MSR.\r
5894 @param OrData The value to OR with the result of the AND operation.\r
5895\r
5896 @return The value written back to the MSR.\r
5897\r
5898**/\r
5899UINT64\r
5900EFIAPI\r
5901AsmMsrAndThenOr64 (\r
5902 IN UINT32 Index,\r
5903 IN UINT64 AndData,\r
5904 IN UINT64 OrData\r
5905 );\r
5906\r
5907\r
5908/**\r
5909 Reads a bit field of an MSR.\r
5910\r
5911 Reads the bit field in the 64-bit MSR. The bit field is specified by the\r
5912 StartBit and the EndBit. The value of the bit field is returned. The caller\r
5913 must either guarantee that Index is valid, or the caller must set up\r
5914 exception handlers to catch the exceptions. This function is only available\r
030cd1a2 5915 on IA-32 and x64.\r
ac644614 5916\r
5917 If StartBit is greater than 63, then ASSERT().\r
5918 If EndBit is greater than 63, then ASSERT().\r
5919 If EndBit is less than StartBit, then ASSERT().\r
5920\r
5921 @param Index The 32-bit MSR index to read.\r
5922 @param StartBit The ordinal of the least significant bit in the bit field.\r
5923 Range 0..63.\r
5924 @param EndBit The ordinal of the most significant bit in the bit field.\r
5925 Range 0..63.\r
5926\r
5927 @return The value read from the MSR.\r
5928\r
5929**/\r
5930UINT64\r
5931EFIAPI\r
5932AsmMsrBitFieldRead64 (\r
5933 IN UINT32 Index,\r
5934 IN UINTN StartBit,\r
5935 IN UINTN EndBit\r
5936 );\r
5937\r
5938\r
5939/**\r
5940 Writes a bit field to an MSR.\r
5941\r
5942 Writes Value to a bit field in a 64-bit MSR. The bit field is specified by\r
5943 the StartBit and the EndBit. All other bits in the destination MSR are\r
9095d37b
LG
5944 preserved. The MSR written is returned. The caller must either guarantee\r
5945 that Index and the data written is valid, or the caller must set up exception\r
62991af2 5946 handlers to catch the exceptions. This function is only available on IA-32 and x64.\r
ac644614 5947\r
5948 If StartBit is greater than 63, then ASSERT().\r
5949 If EndBit is greater than 63, then ASSERT().\r
5950 If EndBit is less than StartBit, then ASSERT().\r
94952554 5951 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 5952\r
5953 @param Index The 32-bit MSR index to write.\r
5954 @param StartBit The ordinal of the least significant bit in the bit field.\r
5955 Range 0..63.\r
5956 @param EndBit The ordinal of the most significant bit in the bit field.\r
5957 Range 0..63.\r
5958 @param Value New value of the bit field.\r
5959\r
5960 @return The value written back to the MSR.\r
5961\r
5962**/\r
5963UINT64\r
5964EFIAPI\r
5965AsmMsrBitFieldWrite64 (\r
5966 IN UINT32 Index,\r
5967 IN UINTN StartBit,\r
5968 IN UINTN EndBit,\r
5969 IN UINT64 Value\r
5970 );\r
5971\r
5972\r
5973/**\r
62991af2 5974 Reads a bit field in a 64-bit MSR, performs a bitwise OR, and\r
ac644614 5975 writes the result back to the bit field in the 64-bit MSR.\r
5976\r
62991af2 5977 Reads the 64-bit MSR specified by Index, performs a bitwise OR\r
ac644614 5978 between the read result and the value specified by OrData, and writes the\r
5979 result to the 64-bit MSR specified by Index. The value written to the MSR is\r
5980 returned. Extra left bits in OrData are stripped. The caller must either\r
5981 guarantee that Index and the data written is valid, or the caller must set up\r
5982 exception handlers to catch the exceptions. This function is only available\r
030cd1a2 5983 on IA-32 and x64.\r
ac644614 5984\r
5985 If StartBit is greater than 63, then ASSERT().\r
5986 If EndBit is greater than 63, then ASSERT().\r
5987 If EndBit is less than StartBit, then ASSERT().\r
94952554 5988 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 5989\r
5990 @param Index The 32-bit MSR index to write.\r
5991 @param StartBit The ordinal of the least significant bit in the bit field.\r
5992 Range 0..63.\r
5993 @param EndBit The ordinal of the most significant bit in the bit field.\r
5994 Range 0..63.\r
5995 @param OrData The value to OR with the read value from the bit field.\r
5996\r
5997 @return The value written back to the MSR.\r
5998\r
5999**/\r
6000UINT64\r
6001EFIAPI\r
6002AsmMsrBitFieldOr64 (\r
6003 IN UINT32 Index,\r
6004 IN UINTN StartBit,\r
6005 IN UINTN EndBit,\r
6006 IN UINT64 OrData\r
6007 );\r
6008\r
6009\r
6010/**\r
6011 Reads a bit field in a 64-bit MSR, performs a bitwise AND, and writes the\r
6012 result back to the bit field in the 64-bit MSR.\r
6013\r
6014 Reads the 64-bit MSR specified by Index, performs a bitwise AND between the\r
6015 read result and the value specified by AndData, and writes the result to the\r
6016 64-bit MSR specified by Index. The value written to the MSR is returned.\r
6017 Extra left bits in AndData are stripped. The caller must either guarantee\r
6018 that Index and the data written is valid, or the caller must set up exception\r
6019 handlers to catch the exceptions. This function is only available on IA-32\r
030cd1a2 6020 and x64.\r
ac644614 6021\r
6022 If StartBit is greater than 63, then ASSERT().\r
6023 If EndBit is greater than 63, then ASSERT().\r
6024 If EndBit is less than StartBit, then ASSERT().\r
94952554 6025 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 6026\r
6027 @param Index The 32-bit MSR index to write.\r
6028 @param StartBit The ordinal of the least significant bit in the bit field.\r
6029 Range 0..63.\r
6030 @param EndBit The ordinal of the most significant bit in the bit field.\r
6031 Range 0..63.\r
6032 @param AndData The value to AND with the read value from the bit field.\r
6033\r
6034 @return The value written back to the MSR.\r
6035\r
6036**/\r
6037UINT64\r
6038EFIAPI\r
6039AsmMsrBitFieldAnd64 (\r
6040 IN UINT32 Index,\r
6041 IN UINTN StartBit,\r
6042 IN UINTN EndBit,\r
6043 IN UINT64 AndData\r
6044 );\r
6045\r
6046\r
6047/**\r
6048 Reads a bit field in a 64-bit MSR, performs a bitwise AND followed by a\r
62991af2 6049 bitwise OR, and writes the result back to the bit field in the\r
ac644614 6050 64-bit MSR.\r
6051\r
6052 Reads the 64-bit MSR specified by Index, performs a bitwise AND followed by\r
62991af2 6053 a bitwise OR between the read result and the value specified by\r
ac644614 6054 AndData, and writes the result to the 64-bit MSR specified by Index. The\r
6055 value written to the MSR is returned. Extra left bits in both AndData and\r
6056 OrData are stripped. The caller must either guarantee that Index and the data\r
6057 written is valid, or the caller must set up exception handlers to catch the\r
030cd1a2 6058 exceptions. This function is only available on IA-32 and x64.\r
ac644614 6059\r
6060 If StartBit is greater than 63, then ASSERT().\r
6061 If EndBit is greater than 63, then ASSERT().\r
6062 If EndBit is less than StartBit, then ASSERT().\r
94952554
LG
6063 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
6064 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().\r
ac644614 6065\r
6066 @param Index The 32-bit MSR index to write.\r
6067 @param StartBit The ordinal of the least significant bit in the bit field.\r
6068 Range 0..63.\r
6069 @param EndBit The ordinal of the most significant bit in the bit field.\r
6070 Range 0..63.\r
6071 @param AndData The value to AND with the read value from the bit field.\r
6072 @param OrData The value to OR with the result of the AND operation.\r
6073\r
6074 @return The value written back to the MSR.\r
6075\r
6076**/\r
6077UINT64\r
6078EFIAPI\r
6079AsmMsrBitFieldAndThenOr64 (\r
6080 IN UINT32 Index,\r
6081 IN UINTN StartBit,\r
6082 IN UINTN EndBit,\r
6083 IN UINT64 AndData,\r
6084 IN UINT64 OrData\r
6085 );\r
6086\r
6087\r
6088/**\r
6089 Reads the current value of the EFLAGS register.\r
6090\r
6091 Reads and returns the current value of the EFLAGS register. This function is\r
030cd1a2 6092 only available on IA-32 and x64. This returns a 32-bit value on IA-32 and a\r
6093 64-bit value on x64.\r
ac644614 6094\r
030cd1a2 6095 @return EFLAGS on IA-32 or RFLAGS on x64.\r
ac644614 6096\r
6097**/\r
6098UINTN\r
6099EFIAPI\r
6100AsmReadEflags (\r
6101 VOID\r
6102 );\r
6103\r
6104\r
6105/**\r
6106 Reads the current value of the Control Register 0 (CR0).\r
6107\r
6108 Reads and returns the current value of CR0. This function is only available\r
030cd1a2 6109 on IA-32 and x64. This returns a 32-bit value on IA-32 and a 64-bit value on\r
6110 x64.\r
ac644614 6111\r
6112 @return The value of the Control Register 0 (CR0).\r
6113\r
6114**/\r
6115UINTN\r
6116EFIAPI\r
6117AsmReadCr0 (\r
6118 VOID\r
6119 );\r
6120\r
6121\r
6122/**\r
6123 Reads the current value of the Control Register 2 (CR2).\r
6124\r
6125 Reads and returns the current value of CR2. This function is only available\r
030cd1a2 6126 on IA-32 and x64. This returns a 32-bit value on IA-32 and a 64-bit value on\r
6127 x64.\r
ac644614 6128\r
6129 @return The value of the Control Register 2 (CR2).\r
6130\r
6131**/\r
6132UINTN\r
6133EFIAPI\r
6134AsmReadCr2 (\r
6135 VOID\r
6136 );\r
6137\r
6138\r
6139/**\r
6140 Reads the current value of the Control Register 3 (CR3).\r
6141\r
6142 Reads and returns the current value of CR3. This function is only available\r
030cd1a2 6143 on IA-32 and x64. This returns a 32-bit value on IA-32 and a 64-bit value on\r
6144 x64.\r
ac644614 6145\r
6146 @return The value of the Control Register 3 (CR3).\r
6147\r
6148**/\r
6149UINTN\r
6150EFIAPI\r
6151AsmReadCr3 (\r
6152 VOID\r
6153 );\r
6154\r
6155\r
6156/**\r
6157 Reads the current value of the Control Register 4 (CR4).\r
6158\r
6159 Reads and returns the current value of CR4. This function is only available\r
030cd1a2 6160 on IA-32 and x64. This returns a 32-bit value on IA-32 and a 64-bit value on\r
6161 x64.\r
ac644614 6162\r
6163 @return The value of the Control Register 4 (CR4).\r
6164\r
6165**/\r
6166UINTN\r
6167EFIAPI\r
6168AsmReadCr4 (\r
6169 VOID\r
6170 );\r
6171\r
6172\r
6173/**\r
6174 Writes a value to Control Register 0 (CR0).\r
6175\r
6176 Writes and returns a new value to CR0. This function is only available on\r
030cd1a2 6177 IA-32 and x64. This writes a 32-bit value on IA-32 and a 64-bit value on x64.\r
ac644614 6178\r
6179 @param Cr0 The value to write to CR0.\r
6180\r
6181 @return The value written to CR0.\r
6182\r
6183**/\r
6184UINTN\r
6185EFIAPI\r
6186AsmWriteCr0 (\r
6187 UINTN Cr0\r
6188 );\r
6189\r
6190\r
6191/**\r
6192 Writes a value to Control Register 2 (CR2).\r
6193\r
6194 Writes and returns a new value to CR2. This function is only available on\r
030cd1a2 6195 IA-32 and x64. This writes a 32-bit value on IA-32 and a 64-bit value on x64.\r
ac644614 6196\r
6197 @param Cr2 The value to write to CR2.\r
6198\r
6199 @return The value written to CR2.\r
6200\r
6201**/\r
6202UINTN\r
6203EFIAPI\r
6204AsmWriteCr2 (\r
6205 UINTN Cr2\r
6206 );\r
6207\r
6208\r
6209/**\r
6210 Writes a value to Control Register 3 (CR3).\r
6211\r
6212 Writes and returns a new value to CR3. This function is only available on\r
030cd1a2 6213 IA-32 and x64. This writes a 32-bit value on IA-32 and a 64-bit value on x64.\r
ac644614 6214\r
6215 @param Cr3 The value to write to CR3.\r
6216\r
6217 @return The value written to CR3.\r
6218\r
6219**/\r
6220UINTN\r
6221EFIAPI\r
6222AsmWriteCr3 (\r
6223 UINTN Cr3\r
6224 );\r
6225\r
6226\r
6227/**\r
6228 Writes a value to Control Register 4 (CR4).\r
6229\r
6230 Writes and returns a new value to CR4. This function is only available on\r
030cd1a2 6231 IA-32 and x64. This writes a 32-bit value on IA-32 and a 64-bit value on x64.\r
ac644614 6232\r
6233 @param Cr4 The value to write to CR4.\r
6234\r
6235 @return The value written to CR4.\r
6236\r
6237**/\r
6238UINTN\r
6239EFIAPI\r
6240AsmWriteCr4 (\r
6241 UINTN Cr4\r
6242 );\r
6243\r
6244\r
6245/**\r
6246 Reads the current value of Debug Register 0 (DR0).\r
6247\r
6248 Reads and returns the current value of DR0. This function is only available\r
030cd1a2 6249 on IA-32 and x64. This returns a 32-bit value on IA-32 and a 64-bit value on\r
6250 x64.\r
ac644614 6251\r
6252 @return The value of Debug Register 0 (DR0).\r
6253\r
6254**/\r
6255UINTN\r
6256EFIAPI\r
6257AsmReadDr0 (\r
6258 VOID\r
6259 );\r
6260\r
6261\r
6262/**\r
6263 Reads the current value of Debug Register 1 (DR1).\r
6264\r
6265 Reads and returns the current value of DR1. This function is only available\r
030cd1a2 6266 on IA-32 and x64. This returns a 32-bit value on IA-32 and a 64-bit value on\r
6267 x64.\r
ac644614 6268\r
6269 @return The value of Debug Register 1 (DR1).\r
6270\r
6271**/\r
6272UINTN\r
6273EFIAPI\r
6274AsmReadDr1 (\r
6275 VOID\r
6276 );\r
6277\r
6278\r
6279/**\r
6280 Reads the current value of Debug Register 2 (DR2).\r
6281\r
6282 Reads and returns the current value of DR2. This function is only available\r
030cd1a2 6283 on IA-32 and x64. This returns a 32-bit value on IA-32 and a 64-bit value on\r
6284 x64.\r
ac644614 6285\r
6286 @return The value of Debug Register 2 (DR2).\r
6287\r
6288**/\r
6289UINTN\r
6290EFIAPI\r
6291AsmReadDr2 (\r
6292 VOID\r
6293 );\r
6294\r
6295\r
6296/**\r
6297 Reads the current value of Debug Register 3 (DR3).\r
6298\r
6299 Reads and returns the current value of DR3. This function is only available\r
030cd1a2 6300 on IA-32 and x64. This returns a 32-bit value on IA-32 and a 64-bit value on\r
6301 x64.\r
ac644614 6302\r
6303 @return The value of Debug Register 3 (DR3).\r
6304\r
6305**/\r
6306UINTN\r
6307EFIAPI\r
6308AsmReadDr3 (\r
6309 VOID\r
6310 );\r
6311\r
6312\r
6313/**\r
6314 Reads the current value of Debug Register 4 (DR4).\r
6315\r
6316 Reads and returns the current value of DR4. This function is only available\r
030cd1a2 6317 on IA-32 and x64. This returns a 32-bit value on IA-32 and a 64-bit value on\r
6318 x64.\r
ac644614 6319\r
6320 @return The value of Debug Register 4 (DR4).\r
6321\r
6322**/\r
6323UINTN\r
6324EFIAPI\r
6325AsmReadDr4 (\r
6326 VOID\r
6327 );\r
6328\r
6329\r
6330/**\r
6331 Reads the current value of Debug Register 5 (DR5).\r
6332\r
6333 Reads and returns the current value of DR5. This function is only available\r
030cd1a2 6334 on IA-32 and x64. This returns a 32-bit value on IA-32 and a 64-bit value on\r
6335 x64.\r
ac644614 6336\r
6337 @return The value of Debug Register 5 (DR5).\r
6338\r
6339**/\r
6340UINTN\r
6341EFIAPI\r
6342AsmReadDr5 (\r
6343 VOID\r
6344 );\r
6345\r
6346\r
6347/**\r
6348 Reads the current value of Debug Register 6 (DR6).\r
6349\r
6350 Reads and returns the current value of DR6. This function is only available\r
030cd1a2 6351 on IA-32 and x64. This returns a 32-bit value on IA-32 and a 64-bit value on\r
6352 x64.\r
ac644614 6353\r
6354 @return The value of Debug Register 6 (DR6).\r
6355\r
6356**/\r
6357UINTN\r
6358EFIAPI\r
6359AsmReadDr6 (\r
6360 VOID\r
6361 );\r
6362\r
6363\r
6364/**\r
6365 Reads the current value of Debug Register 7 (DR7).\r
6366\r
6367 Reads and returns the current value of DR7. This function is only available\r
030cd1a2 6368 on IA-32 and x64. This returns a 32-bit value on IA-32 and a 64-bit value on\r
6369 x64.\r
ac644614 6370\r
6371 @return The value of Debug Register 7 (DR7).\r
6372\r
6373**/\r
6374UINTN\r
6375EFIAPI\r
6376AsmReadDr7 (\r
6377 VOID\r
6378 );\r
6379\r
6380\r
6381/**\r
6382 Writes a value to Debug Register 0 (DR0).\r
6383\r
6384 Writes and returns a new value to DR0. This function is only available on\r
030cd1a2 6385 IA-32 and x64. This writes a 32-bit value on IA-32 and a 64-bit value on x64.\r
ac644614 6386\r
6387 @param Dr0 The value to write to Dr0.\r
6388\r
6389 @return The value written to Debug Register 0 (DR0).\r
6390\r
6391**/\r
6392UINTN\r
6393EFIAPI\r
6394AsmWriteDr0 (\r
6395 UINTN Dr0\r
6396 );\r
6397\r
6398\r
6399/**\r
6400 Writes a value to Debug Register 1 (DR1).\r
6401\r
6402 Writes and returns a new value to DR1. This function is only available on\r
030cd1a2 6403 IA-32 and x64. This writes a 32-bit value on IA-32 and a 64-bit value on x64.\r
ac644614 6404\r
6405 @param Dr1 The value to write to Dr1.\r
6406\r
6407 @return The value written to Debug Register 1 (DR1).\r
6408\r
6409**/\r
6410UINTN\r
6411EFIAPI\r
6412AsmWriteDr1 (\r
6413 UINTN Dr1\r
6414 );\r
6415\r
6416\r
6417/**\r
6418 Writes a value to Debug Register 2 (DR2).\r
6419\r
6420 Writes and returns a new value to DR2. This function is only available on\r
030cd1a2 6421 IA-32 and x64. This writes a 32-bit value on IA-32 and a 64-bit value on x64.\r
ac644614 6422\r
6423 @param Dr2 The value to write to Dr2.\r
6424\r
6425 @return The value written to Debug Register 2 (DR2).\r
6426\r
6427**/\r
6428UINTN\r
6429EFIAPI\r
6430AsmWriteDr2 (\r
6431 UINTN Dr2\r
6432 );\r
6433\r
6434\r
6435/**\r
6436 Writes a value to Debug Register 3 (DR3).\r
6437\r
6438 Writes and returns a new value to DR3. This function is only available on\r
030cd1a2 6439 IA-32 and x64. This writes a 32-bit value on IA-32 and a 64-bit value on x64.\r
ac644614 6440\r
6441 @param Dr3 The value to write to Dr3.\r
6442\r
6443 @return The value written to Debug Register 3 (DR3).\r
6444\r
6445**/\r
6446UINTN\r
6447EFIAPI\r
6448AsmWriteDr3 (\r
6449 UINTN Dr3\r
6450 );\r
6451\r
6452\r
6453/**\r
6454 Writes a value to Debug Register 4 (DR4).\r
6455\r
6456 Writes and returns a new value to DR4. This function is only available on\r
030cd1a2 6457 IA-32 and x64. This writes a 32-bit value on IA-32 and a 64-bit value on x64.\r
ac644614 6458\r
6459 @param Dr4 The value to write to Dr4.\r
6460\r
6461 @return The value written to Debug Register 4 (DR4).\r
6462\r
6463**/\r
6464UINTN\r
6465EFIAPI\r
6466AsmWriteDr4 (\r
6467 UINTN Dr4\r
6468 );\r
6469\r
6470\r
6471/**\r
6472 Writes a value to Debug Register 5 (DR5).\r
6473\r
6474 Writes and returns a new value to DR5. This function is only available on\r
030cd1a2 6475 IA-32 and x64. This writes a 32-bit value on IA-32 and a 64-bit value on x64.\r
ac644614 6476\r
6477 @param Dr5 The value to write to Dr5.\r
6478\r
6479 @return The value written to Debug Register 5 (DR5).\r
6480\r
6481**/\r
6482UINTN\r
6483EFIAPI\r
6484AsmWriteDr5 (\r
6485 UINTN Dr5\r
6486 );\r
6487\r
6488\r
6489/**\r
6490 Writes a value to Debug Register 6 (DR6).\r
6491\r
6492 Writes and returns a new value to DR6. This function is only available on\r
030cd1a2 6493 IA-32 and x64. This writes a 32-bit value on IA-32 and a 64-bit value on x64.\r
ac644614 6494\r
6495 @param Dr6 The value to write to Dr6.\r
6496\r
6497 @return The value written to Debug Register 6 (DR6).\r
6498\r
6499**/\r
6500UINTN\r
6501EFIAPI\r
6502AsmWriteDr6 (\r
6503 UINTN Dr6\r
6504 );\r
6505\r
6506\r
6507/**\r
6508 Writes a value to Debug Register 7 (DR7).\r
6509\r
6510 Writes and returns a new value to DR7. This function is only available on\r
030cd1a2 6511 IA-32 and x64. This writes a 32-bit value on IA-32 and a 64-bit value on x64.\r
ac644614 6512\r
6513 @param Dr7 The value to write to Dr7.\r
6514\r
6515 @return The value written to Debug Register 7 (DR7).\r
6516\r
6517**/\r
6518UINTN\r
6519EFIAPI\r
6520AsmWriteDr7 (\r
6521 UINTN Dr7\r
6522 );\r
6523\r
6524\r
6525/**\r
6526 Reads the current value of Code Segment Register (CS).\r
6527\r
6528 Reads and returns the current value of CS. This function is only available on\r
030cd1a2 6529 IA-32 and x64.\r
ac644614 6530\r
6531 @return The current value of CS.\r
6532\r
6533**/\r
6534UINT16\r
6535EFIAPI\r
6536AsmReadCs (\r
6537 VOID\r
6538 );\r
6539\r
6540\r
6541/**\r
6542 Reads the current value of Data Segment Register (DS).\r
6543\r
6544 Reads and returns the current value of DS. This function is only available on\r
030cd1a2 6545 IA-32 and x64.\r
ac644614 6546\r
6547 @return The current value of DS.\r
6548\r
6549**/\r
6550UINT16\r
6551EFIAPI\r
6552AsmReadDs (\r
6553 VOID\r
6554 );\r
6555\r
6556\r
6557/**\r
6558 Reads the current value of Extra Segment Register (ES).\r
6559\r
6560 Reads and returns the current value of ES. This function is only available on\r
030cd1a2 6561 IA-32 and x64.\r
ac644614 6562\r
6563 @return The current value of ES.\r
6564\r
6565**/\r
6566UINT16\r
6567EFIAPI\r
6568AsmReadEs (\r
6569 VOID\r
6570 );\r
6571\r
6572\r
6573/**\r
6574 Reads the current value of FS Data Segment Register (FS).\r
6575\r
6576 Reads and returns the current value of FS. This function is only available on\r
030cd1a2 6577 IA-32 and x64.\r
ac644614 6578\r
6579 @return The current value of FS.\r
6580\r
6581**/\r
6582UINT16\r
6583EFIAPI\r
6584AsmReadFs (\r
6585 VOID\r
6586 );\r
6587\r
6588\r
6589/**\r
6590 Reads the current value of GS Data Segment Register (GS).\r
6591\r
6592 Reads and returns the current value of GS. This function is only available on\r
030cd1a2 6593 IA-32 and x64.\r
ac644614 6594\r
6595 @return The current value of GS.\r
6596\r
6597**/\r
6598UINT16\r
6599EFIAPI\r
6600AsmReadGs (\r
6601 VOID\r
6602 );\r
6603\r
6604\r
6605/**\r
6606 Reads the current value of Stack Segment Register (SS).\r
6607\r
6608 Reads and returns the current value of SS. This function is only available on\r
030cd1a2 6609 IA-32 and x64.\r
ac644614 6610\r
6611 @return The current value of SS.\r
6612\r
6613**/\r
6614UINT16\r
6615EFIAPI\r
6616AsmReadSs (\r
6617 VOID\r
6618 );\r
6619\r
6620\r
6621/**\r
6622 Reads the current value of Task Register (TR).\r
6623\r
6624 Reads and returns the current value of TR. This function is only available on\r
030cd1a2 6625 IA-32 and x64.\r
ac644614 6626\r
6627 @return The current value of TR.\r
6628\r
6629**/\r
6630UINT16\r
6631EFIAPI\r
6632AsmReadTr (\r
6633 VOID\r
6634 );\r
6635\r
6636\r
6637/**\r
6638 Reads the current Global Descriptor Table Register(GDTR) descriptor.\r
6639\r
6640 Reads and returns the current GDTR descriptor and returns it in Gdtr. This\r
030cd1a2 6641 function is only available on IA-32 and x64.\r
ac644614 6642\r
6643 If Gdtr is NULL, then ASSERT().\r
6644\r
af2dc6a7 6645 @param Gdtr The pointer to a GDTR descriptor.\r
ac644614 6646\r
6647**/\r
6648VOID\r
6649EFIAPI\r
6650AsmReadGdtr (\r
6651 OUT IA32_DESCRIPTOR *Gdtr\r
6652 );\r
6653\r
6654\r
6655/**\r
6656 Writes the current Global Descriptor Table Register (GDTR) descriptor.\r
6657\r
6658 Writes and the current GDTR descriptor specified by Gdtr. This function is\r
030cd1a2 6659 only available on IA-32 and x64.\r
ac644614 6660\r
6661 If Gdtr is NULL, then ASSERT().\r
6662\r
af2dc6a7 6663 @param Gdtr The pointer to a GDTR descriptor.\r
ac644614 6664\r
6665**/\r
6666VOID\r
6667EFIAPI\r
6668AsmWriteGdtr (\r
6669 IN CONST IA32_DESCRIPTOR *Gdtr\r
6670 );\r
6671\r
6672\r
6673/**\r
17f695ed 6674 Reads the current Interrupt Descriptor Table Register(IDTR) descriptor.\r
ac644614 6675\r
6676 Reads and returns the current IDTR descriptor and returns it in Idtr. This\r
030cd1a2 6677 function is only available on IA-32 and x64.\r
ac644614 6678\r
6679 If Idtr is NULL, then ASSERT().\r
6680\r
af2dc6a7 6681 @param Idtr The pointer to a IDTR descriptor.\r
ac644614 6682\r
6683**/\r
6684VOID\r
6685EFIAPI\r
6686AsmReadIdtr (\r
6687 OUT IA32_DESCRIPTOR *Idtr\r
6688 );\r
6689\r
6690\r
6691/**\r
17f695ed 6692 Writes the current Interrupt Descriptor Table Register(IDTR) descriptor.\r
ac644614 6693\r
6694 Writes the current IDTR descriptor and returns it in Idtr. This function is\r
030cd1a2 6695 only available on IA-32 and x64.\r
ac644614 6696\r
6697 If Idtr is NULL, then ASSERT().\r
6698\r
af2dc6a7 6699 @param Idtr The pointer to a IDTR descriptor.\r
ac644614 6700\r
6701**/\r
6702VOID\r
6703EFIAPI\r
6704AsmWriteIdtr (\r
6705 IN CONST IA32_DESCRIPTOR *Idtr\r
6706 );\r
6707\r
6708\r
6709/**\r
6710 Reads the current Local Descriptor Table Register(LDTR) selector.\r
6711\r
6712 Reads and returns the current 16-bit LDTR descriptor value. This function is\r
030cd1a2 6713 only available on IA-32 and x64.\r
ac644614 6714\r
6715 @return The current selector of LDT.\r
6716\r
6717**/\r
6718UINT16\r
6719EFIAPI\r
6720AsmReadLdtr (\r
6721 VOID\r
6722 );\r
6723\r
6724\r
6725/**\r
17f695ed 6726 Writes the current Local Descriptor Table Register (LDTR) selector.\r
ac644614 6727\r
6728 Writes and the current LDTR descriptor specified by Ldtr. This function is\r
030cd1a2 6729 only available on IA-32 and x64.\r
ac644614 6730\r
6731 @param Ldtr 16-bit LDTR selector value.\r
6732\r
6733**/\r
6734VOID\r
6735EFIAPI\r
6736AsmWriteLdtr (\r
6737 IN UINT16 Ldtr\r
6738 );\r
6739\r
6740\r
6741/**\r
6742 Save the current floating point/SSE/SSE2 context to a buffer.\r
6743\r
6744 Saves the current floating point/SSE/SSE2 state to the buffer specified by\r
6745 Buffer. Buffer must be aligned on a 16-byte boundary. This function is only\r
030cd1a2 6746 available on IA-32 and x64.\r
ac644614 6747\r
6748 If Buffer is NULL, then ASSERT().\r
6749 If Buffer is not aligned on a 16-byte boundary, then ASSERT().\r
6750\r
af2dc6a7 6751 @param Buffer The pointer to a buffer to save the floating point/SSE/SSE2 context.\r
ac644614 6752\r
6753**/\r
6754VOID\r
6755EFIAPI\r
6756AsmFxSave (\r
6757 OUT IA32_FX_BUFFER *Buffer\r
6758 );\r
6759\r
6760\r
6761/**\r
6762 Restores the current floating point/SSE/SSE2 context from a buffer.\r
6763\r
6764 Restores the current floating point/SSE/SSE2 state from the buffer specified\r
6765 by Buffer. Buffer must be aligned on a 16-byte boundary. This function is\r
030cd1a2 6766 only available on IA-32 and x64.\r
ac644614 6767\r
6768 If Buffer is NULL, then ASSERT().\r
6769 If Buffer is not aligned on a 16-byte boundary, then ASSERT().\r
6770 If Buffer was not saved with AsmFxSave(), then ASSERT().\r
6771\r
af2dc6a7 6772 @param Buffer The pointer to a buffer to save the floating point/SSE/SSE2 context.\r
ac644614 6773\r
6774**/\r
6775VOID\r
6776EFIAPI\r
6777AsmFxRestore (\r
6778 IN CONST IA32_FX_BUFFER *Buffer\r
6779 );\r
6780\r
6781\r
6782/**\r
6783 Reads the current value of 64-bit MMX Register #0 (MM0).\r
6784\r
6785 Reads and returns the current value of MM0. This function is only available\r
030cd1a2 6786 on IA-32 and x64.\r
ac644614 6787\r
6788 @return The current value of MM0.\r
6789\r
6790**/\r
6791UINT64\r
6792EFIAPI\r
6793AsmReadMm0 (\r
6794 VOID\r
6795 );\r
6796\r
6797\r
6798/**\r
6799 Reads the current value of 64-bit MMX Register #1 (MM1).\r
6800\r
6801 Reads and returns the current value of MM1. This function is only available\r
030cd1a2 6802 on IA-32 and x64.\r
ac644614 6803\r
6804 @return The current value of MM1.\r
6805\r
6806**/\r
6807UINT64\r
6808EFIAPI\r
6809AsmReadMm1 (\r
6810 VOID\r
6811 );\r
6812\r
6813\r
6814/**\r
6815 Reads the current value of 64-bit MMX Register #2 (MM2).\r
6816\r
6817 Reads and returns the current value of MM2. This function is only available\r
030cd1a2 6818 on IA-32 and x64.\r
ac644614 6819\r
6820 @return The current value of MM2.\r
6821\r
6822**/\r
6823UINT64\r
6824EFIAPI\r
6825AsmReadMm2 (\r
6826 VOID\r
6827 );\r
6828\r
6829\r
6830/**\r
6831 Reads the current value of 64-bit MMX Register #3 (MM3).\r
6832\r
6833 Reads and returns the current value of MM3. This function is only available\r
030cd1a2 6834 on IA-32 and x64.\r
ac644614 6835\r
6836 @return The current value of MM3.\r
6837\r
6838**/\r
6839UINT64\r
6840EFIAPI\r
6841AsmReadMm3 (\r
6842 VOID\r
6843 );\r
6844\r
6845\r
6846/**\r
6847 Reads the current value of 64-bit MMX Register #4 (MM4).\r
6848\r
6849 Reads and returns the current value of MM4. This function is only available\r
030cd1a2 6850 on IA-32 and x64.\r
ac644614 6851\r
6852 @return The current value of MM4.\r
6853\r
6854**/\r
6855UINT64\r
6856EFIAPI\r
6857AsmReadMm4 (\r
6858 VOID\r
6859 );\r
6860\r
6861\r
6862/**\r
6863 Reads the current value of 64-bit MMX Register #5 (MM5).\r
6864\r
6865 Reads and returns the current value of MM5. This function is only available\r
030cd1a2 6866 on IA-32 and x64.\r
ac644614 6867\r
6868 @return The current value of MM5.\r
6869\r
6870**/\r
6871UINT64\r
6872EFIAPI\r
6873AsmReadMm5 (\r
6874 VOID\r
6875 );\r
6876\r
6877\r
6878/**\r
6879 Reads the current value of 64-bit MMX Register #6 (MM6).\r
6880\r
6881 Reads and returns the current value of MM6. This function is only available\r
030cd1a2 6882 on IA-32 and x64.\r
ac644614 6883\r
6884 @return The current value of MM6.\r
6885\r
6886**/\r
6887UINT64\r
6888EFIAPI\r
6889AsmReadMm6 (\r
6890 VOID\r
6891 );\r
6892\r
6893\r
6894/**\r
6895 Reads the current value of 64-bit MMX Register #7 (MM7).\r
6896\r
6897 Reads and returns the current value of MM7. This function is only available\r
030cd1a2 6898 on IA-32 and x64.\r
ac644614 6899\r
6900 @return The current value of MM7.\r
6901\r
6902**/\r
6903UINT64\r
6904EFIAPI\r
6905AsmReadMm7 (\r
6906 VOID\r
6907 );\r
6908\r
6909\r
6910/**\r
6911 Writes the current value of 64-bit MMX Register #0 (MM0).\r
6912\r
6913 Writes the current value of MM0. This function is only available on IA32 and\r
030cd1a2 6914 x64.\r
ac644614 6915\r
6916 @param Value The 64-bit value to write to MM0.\r
6917\r
6918**/\r
6919VOID\r
6920EFIAPI\r
6921AsmWriteMm0 (\r
6922 IN UINT64 Value\r
6923 );\r
6924\r
6925\r
6926/**\r
6927 Writes the current value of 64-bit MMX Register #1 (MM1).\r
6928\r
6929 Writes the current value of MM1. This function is only available on IA32 and\r
030cd1a2 6930 x64.\r
ac644614 6931\r
6932 @param Value The 64-bit value to write to MM1.\r
6933\r
6934**/\r
6935VOID\r
6936EFIAPI\r
6937AsmWriteMm1 (\r
6938 IN UINT64 Value\r
6939 );\r
6940\r
6941\r
6942/**\r
6943 Writes the current value of 64-bit MMX Register #2 (MM2).\r
6944\r
6945 Writes the current value of MM2. This function is only available on IA32 and\r
030cd1a2 6946 x64.\r
ac644614 6947\r
6948 @param Value The 64-bit value to write to MM2.\r
6949\r
6950**/\r
6951VOID\r
6952EFIAPI\r
6953AsmWriteMm2 (\r
6954 IN UINT64 Value\r
6955 );\r
6956\r
6957\r
6958/**\r
6959 Writes the current value of 64-bit MMX Register #3 (MM3).\r
6960\r
6961 Writes the current value of MM3. This function is only available on IA32 and\r
030cd1a2 6962 x64.\r
ac644614 6963\r
6964 @param Value The 64-bit value to write to MM3.\r
6965\r
6966**/\r
6967VOID\r
6968EFIAPI\r
6969AsmWriteMm3 (\r
6970 IN UINT64 Value\r
6971 );\r
6972\r
6973\r
6974/**\r
6975 Writes the current value of 64-bit MMX Register #4 (MM4).\r
6976\r
6977 Writes the current value of MM4. This function is only available on IA32 and\r
030cd1a2 6978 x64.\r
ac644614 6979\r
6980 @param Value The 64-bit value to write to MM4.\r
6981\r
6982**/\r
6983VOID\r
6984EFIAPI\r
6985AsmWriteMm4 (\r
6986 IN UINT64 Value\r
6987 );\r
6988\r
6989\r
6990/**\r
6991 Writes the current value of 64-bit MMX Register #5 (MM5).\r
6992\r
6993 Writes the current value of MM5. This function is only available on IA32 and\r
030cd1a2 6994 x64.\r
ac644614 6995\r
6996 @param Value The 64-bit value to write to MM5.\r
6997\r
6998**/\r
6999VOID\r
7000EFIAPI\r
7001AsmWriteMm5 (\r
7002 IN UINT64 Value\r
7003 );\r
7004\r
7005\r
7006/**\r
7007 Writes the current value of 64-bit MMX Register #6 (MM6).\r
7008\r
7009 Writes the current value of MM6. This function is only available on IA32 and\r
030cd1a2 7010 x64.\r
ac644614 7011\r
7012 @param Value The 64-bit value to write to MM6.\r
7013\r
7014**/\r
7015VOID\r
7016EFIAPI\r
7017AsmWriteMm6 (\r
7018 IN UINT64 Value\r
7019 );\r
7020\r
7021\r
7022/**\r
7023 Writes the current value of 64-bit MMX Register #7 (MM7).\r
7024\r
7025 Writes the current value of MM7. This function is only available on IA32 and\r
030cd1a2 7026 x64.\r
ac644614 7027\r
7028 @param Value The 64-bit value to write to MM7.\r
7029\r
7030**/\r
7031VOID\r
7032EFIAPI\r
7033AsmWriteMm7 (\r
7034 IN UINT64 Value\r
7035 );\r
7036\r
7037\r
7038/**\r
7039 Reads the current value of Time Stamp Counter (TSC).\r
7040\r
7041 Reads and returns the current value of TSC. This function is only available\r
030cd1a2 7042 on IA-32 and x64.\r
ac644614 7043\r
7044 @return The current value of TSC\r
7045\r
7046**/\r
7047UINT64\r
7048EFIAPI\r
7049AsmReadTsc (\r
7050 VOID\r
7051 );\r
7052\r
7053\r
7054/**\r
7055 Reads the current value of a Performance Counter (PMC).\r
7056\r
7057 Reads and returns the current value of performance counter specified by\r
030cd1a2 7058 Index. This function is only available on IA-32 and x64.\r
ac644614 7059\r
7060 @param Index The 32-bit Performance Counter index to read.\r
7061\r
7062 @return The value of the PMC specified by Index.\r
7063\r
7064**/\r
7065UINT64\r
7066EFIAPI\r
7067AsmReadPmc (\r
7068 IN UINT32 Index\r
7069 );\r
7070\r
7071\r
7072/**\r
7073 Sets up a monitor buffer that is used by AsmMwait().\r
7074\r
7075 Executes a MONITOR instruction with the register state specified by Eax, Ecx\r
030cd1a2 7076 and Edx. Returns Eax. This function is only available on IA-32 and x64.\r
ac644614 7077\r
7078 @param Eax The value to load into EAX or RAX before executing the MONITOR\r
7079 instruction.\r
7080 @param Ecx The value to load into ECX or RCX before executing the MONITOR\r
7081 instruction.\r
7082 @param Edx The value to load into EDX or RDX before executing the MONITOR\r
7083 instruction.\r
7084\r
7085 @return Eax\r
7086\r
7087**/\r
7088UINTN\r
7089EFIAPI\r
7090AsmMonitor (\r
7091 IN UINTN Eax,\r
7092 IN UINTN Ecx,\r
7093 IN UINTN Edx\r
7094 );\r
7095\r
7096\r
7097/**\r
7098 Executes an MWAIT instruction.\r
7099\r
7100 Executes an MWAIT instruction with the register state specified by Eax and\r
030cd1a2 7101 Ecx. Returns Eax. This function is only available on IA-32 and x64.\r
ac644614 7102\r
7103 @param Eax The value to load into EAX or RAX before executing the MONITOR\r
7104 instruction.\r
7105 @param Ecx The value to load into ECX or RCX before executing the MONITOR\r
7106 instruction.\r
7107\r
7108 @return Eax\r
7109\r
7110**/\r
7111UINTN\r
7112EFIAPI\r
7113AsmMwait (\r
7114 IN UINTN Eax,\r
7115 IN UINTN Ecx\r
7116 );\r
7117\r
7118\r
7119/**\r
7120 Executes a WBINVD instruction.\r
7121\r
7122 Executes a WBINVD instruction. This function is only available on IA-32 and\r
030cd1a2 7123 x64.\r
ac644614 7124\r
7125**/\r
7126VOID\r
7127EFIAPI\r
7128AsmWbinvd (\r
7129 VOID\r
7130 );\r
7131\r
7132\r
7133/**\r
7134 Executes a INVD instruction.\r
7135\r
7136 Executes a INVD instruction. This function is only available on IA-32 and\r
030cd1a2 7137 x64.\r
ac644614 7138\r
7139**/\r
7140VOID\r
7141EFIAPI\r
7142AsmInvd (\r
7143 VOID\r
7144 );\r
7145\r
7146\r
7147/**\r
7148 Flushes a cache line from all the instruction and data caches within the\r
7149 coherency domain of the CPU.\r
7150\r
7151 Flushed the cache line specified by LinearAddress, and returns LinearAddress.\r
030cd1a2 7152 This function is only available on IA-32 and x64.\r
ac644614 7153\r
7154 @param LinearAddress The address of the cache line to flush. If the CPU is\r
7155 in a physical addressing mode, then LinearAddress is a\r
7156 physical address. If the CPU is in a virtual\r
7157 addressing mode, then LinearAddress is a virtual\r
7158 address.\r
7159\r
af2dc6a7 7160 @return LinearAddress.\r
ac644614 7161**/\r
7162VOID *\r
7163EFIAPI\r
7164AsmFlushCacheLine (\r
7165 IN VOID *LinearAddress\r
7166 );\r
7167\r
7168\r
7169/**\r
7170 Enables the 32-bit paging mode on the CPU.\r
7171\r
7172 Enables the 32-bit paging mode on the CPU. CR0, CR3, CR4, and the page tables\r
7173 must be properly initialized prior to calling this service. This function\r
7174 assumes the current execution mode is 32-bit protected mode. This function is\r
7175 only available on IA-32. After the 32-bit paging mode is enabled, control is\r
7176 transferred to the function specified by EntryPoint using the new stack\r
7177 specified by NewStack and passing in the parameters specified by Context1 and\r
7178 Context2. Context1 and Context2 are optional and may be NULL. The function\r
7179 EntryPoint must never return.\r
7180\r
7181 If the current execution mode is not 32-bit protected mode, then ASSERT().\r
7182 If EntryPoint is NULL, then ASSERT().\r
7183 If NewStack is NULL, then ASSERT().\r
7184\r
7185 There are a number of constraints that must be followed before calling this\r
7186 function:\r
7187 1) Interrupts must be disabled.\r
7188 2) The caller must be in 32-bit protected mode with flat descriptors. This\r
7189 means all descriptors must have a base of 0 and a limit of 4GB.\r
7190 3) CR0 and CR4 must be compatible with 32-bit protected mode with flat\r
7191 descriptors.\r
7192 4) CR3 must point to valid page tables that will be used once the transition\r
7193 is complete, and those page tables must guarantee that the pages for this\r
7194 function and the stack are identity mapped.\r
7195\r
7196 @param EntryPoint A pointer to function to call with the new stack after\r
7197 paging is enabled.\r
7198 @param Context1 A pointer to the context to pass into the EntryPoint\r
7199 function as the first parameter after paging is enabled.\r
7200 @param Context2 A pointer to the context to pass into the EntryPoint\r
7201 function as the second parameter after paging is enabled.\r
7202 @param NewStack A pointer to the new stack to use for the EntryPoint\r
7203 function after paging is enabled.\r
7204\r
7205**/\r
7206VOID\r
7207EFIAPI\r
7208AsmEnablePaging32 (\r
7209 IN SWITCH_STACK_ENTRY_POINT EntryPoint,\r
d0e2f823
MK
7210 IN VOID *Context1 OPTIONAL,\r
7211 IN VOID *Context2 OPTIONAL,\r
ac644614 7212 IN VOID *NewStack\r
7213 );\r
7214\r
7215\r
7216/**\r
7217 Disables the 32-bit paging mode on the CPU.\r
7218\r
7219 Disables the 32-bit paging mode on the CPU and returns to 32-bit protected\r
7220 mode. This function assumes the current execution mode is 32-paged protected\r
7221 mode. This function is only available on IA-32. After the 32-bit paging mode\r
7222 is disabled, control is transferred to the function specified by EntryPoint\r
7223 using the new stack specified by NewStack and passing in the parameters\r
7224 specified by Context1 and Context2. Context1 and Context2 are optional and\r
7225 may be NULL. The function EntryPoint must never return.\r
7226\r
7227 If the current execution mode is not 32-bit paged mode, then ASSERT().\r
7228 If EntryPoint is NULL, then ASSERT().\r
7229 If NewStack is NULL, then ASSERT().\r
7230\r
7231 There are a number of constraints that must be followed before calling this\r
7232 function:\r
7233 1) Interrupts must be disabled.\r
7234 2) The caller must be in 32-bit paged mode.\r
7235 3) CR0, CR3, and CR4 must be compatible with 32-bit paged mode.\r
7236 4) CR3 must point to valid page tables that guarantee that the pages for\r
7237 this function and the stack are identity mapped.\r
7238\r
7239 @param EntryPoint A pointer to function to call with the new stack after\r
7240 paging is disabled.\r
7241 @param Context1 A pointer to the context to pass into the EntryPoint\r
7242 function as the first parameter after paging is disabled.\r
7243 @param Context2 A pointer to the context to pass into the EntryPoint\r
7244 function as the second parameter after paging is\r
7245 disabled.\r
7246 @param NewStack A pointer to the new stack to use for the EntryPoint\r
7247 function after paging is disabled.\r
7248\r
7249**/\r
7250VOID\r
7251EFIAPI\r
7252AsmDisablePaging32 (\r
7253 IN SWITCH_STACK_ENTRY_POINT EntryPoint,\r
d0e2f823
MK
7254 IN VOID *Context1 OPTIONAL,\r
7255 IN VOID *Context2 OPTIONAL,\r
ac644614 7256 IN VOID *NewStack\r
7257 );\r
7258\r
7259\r
7260/**\r
7261 Enables the 64-bit paging mode on the CPU.\r
7262\r
7263 Enables the 64-bit paging mode on the CPU. CR0, CR3, CR4, and the page tables\r
7264 must be properly initialized prior to calling this service. This function\r
7265 assumes the current execution mode is 32-bit protected mode with flat\r
7266 descriptors. This function is only available on IA-32. After the 64-bit\r
7267 paging mode is enabled, control is transferred to the function specified by\r
7268 EntryPoint using the new stack specified by NewStack and passing in the\r
7269 parameters specified by Context1 and Context2. Context1 and Context2 are\r
7270 optional and may be 0. The function EntryPoint must never return.\r
7271\r
7272 If the current execution mode is not 32-bit protected mode with flat\r
7273 descriptors, then ASSERT().\r
7274 If EntryPoint is 0, then ASSERT().\r
7275 If NewStack is 0, then ASSERT().\r
7276\r
17f695ed 7277 @param Cs The 16-bit selector to load in the CS before EntryPoint\r
ac644614 7278 is called. The descriptor in the GDT that this selector\r
7279 references must be setup for long mode.\r
7280 @param EntryPoint The 64-bit virtual address of the function to call with\r
7281 the new stack after paging is enabled.\r
7282 @param Context1 The 64-bit virtual address of the context to pass into\r
7283 the EntryPoint function as the first parameter after\r
7284 paging is enabled.\r
7285 @param Context2 The 64-bit virtual address of the context to pass into\r
7286 the EntryPoint function as the second parameter after\r
7287 paging is enabled.\r
7288 @param NewStack The 64-bit virtual address of the new stack to use for\r
7289 the EntryPoint function after paging is enabled.\r
7290\r
7291**/\r
7292VOID\r
7293EFIAPI\r
7294AsmEnablePaging64 (\r
17f695ed 7295 IN UINT16 Cs,\r
ac644614 7296 IN UINT64 EntryPoint,\r
d0e2f823
MK
7297 IN UINT64 Context1 OPTIONAL,\r
7298 IN UINT64 Context2 OPTIONAL,\r
ac644614 7299 IN UINT64 NewStack\r
7300 );\r
7301\r
7302\r
7303/**\r
7304 Disables the 64-bit paging mode on the CPU.\r
7305\r
7306 Disables the 64-bit paging mode on the CPU and returns to 32-bit protected\r
7307 mode. This function assumes the current execution mode is 64-paging mode.\r
030cd1a2 7308 This function is only available on x64. After the 64-bit paging mode is\r
ac644614 7309 disabled, control is transferred to the function specified by EntryPoint\r
7310 using the new stack specified by NewStack and passing in the parameters\r
7311 specified by Context1 and Context2. Context1 and Context2 are optional and\r
7312 may be 0. The function EntryPoint must never return.\r
7313\r
7314 If the current execution mode is not 64-bit paged mode, then ASSERT().\r
7315 If EntryPoint is 0, then ASSERT().\r
7316 If NewStack is 0, then ASSERT().\r
7317\r
17f695ed 7318 @param Cs The 16-bit selector to load in the CS before EntryPoint\r
ac644614 7319 is called. The descriptor in the GDT that this selector\r
7320 references must be setup for 32-bit protected mode.\r
7321 @param EntryPoint The 64-bit virtual address of the function to call with\r
7322 the new stack after paging is disabled.\r
7323 @param Context1 The 64-bit virtual address of the context to pass into\r
7324 the EntryPoint function as the first parameter after\r
7325 paging is disabled.\r
7326 @param Context2 The 64-bit virtual address of the context to pass into\r
7327 the EntryPoint function as the second parameter after\r
7328 paging is disabled.\r
7329 @param NewStack The 64-bit virtual address of the new stack to use for\r
7330 the EntryPoint function after paging is disabled.\r
7331\r
7332**/\r
7333VOID\r
7334EFIAPI\r
7335AsmDisablePaging64 (\r
17f695ed 7336 IN UINT16 Cs,\r
ac644614 7337 IN UINT32 EntryPoint,\r
d0e2f823
MK
7338 IN UINT32 Context1 OPTIONAL,\r
7339 IN UINT32 Context2 OPTIONAL,\r
ac644614 7340 IN UINT32 NewStack\r
7341 );\r
7342\r
7343\r
7344//\r
7345// 16-bit thunking services\r
7346//\r
7347\r
7348/**\r
7349 Retrieves the properties for 16-bit thunk functions.\r
7350\r
7351 Computes the size of the buffer and stack below 1MB required to use the\r
7352 AsmPrepareThunk16(), AsmThunk16() and AsmPrepareAndThunk16() functions. This\r
7353 buffer size is returned in RealModeBufferSize, and the stack size is returned\r
7354 in ExtraStackSize. If parameters are passed to the 16-bit real mode code,\r
7355 then the actual minimum stack size is ExtraStackSize plus the maximum number\r
7356 of bytes that need to be passed to the 16-bit real mode code.\r
9095d37b 7357\r
ac644614 7358 If RealModeBufferSize is NULL, then ASSERT().\r
7359 If ExtraStackSize is NULL, then ASSERT().\r
7360\r
7361 @param RealModeBufferSize A pointer to the size of the buffer below 1MB\r
7362 required to use the 16-bit thunk functions.\r
7363 @param ExtraStackSize A pointer to the extra size of stack below 1MB\r
7364 that the 16-bit thunk functions require for\r
7365 temporary storage in the transition to and from\r
7366 16-bit real mode.\r
7367\r
7368**/\r
7369VOID\r
7370EFIAPI\r
7371AsmGetThunk16Properties (\r
7372 OUT UINT32 *RealModeBufferSize,\r
7373 OUT UINT32 *ExtraStackSize\r
7374 );\r
7375\r
7376\r
7377/**\r
7378 Prepares all structures a code required to use AsmThunk16().\r
7379\r
7380 Prepares all structures and code required to use AsmThunk16().\r
9095d37b 7381\r
8243b089 7382 This interface is limited to be used in either physical mode or virtual modes with paging enabled where the\r
7383 virtual to physical mappings for ThunkContext.RealModeBuffer is mapped 1:1.\r
ac644614 7384\r
7385 If ThunkContext is NULL, then ASSERT().\r
7386\r
7387 @param ThunkContext A pointer to the context structure that describes the\r
7388 16-bit real mode code to call.\r
7389\r
7390**/\r
7391VOID\r
7392EFIAPI\r
7393AsmPrepareThunk16 (\r
1445300f 7394 IN OUT THUNK_CONTEXT *ThunkContext\r
ac644614 7395 );\r
7396\r
7397\r
7398/**\r
7399 Transfers control to a 16-bit real mode entry point and returns the results.\r
7400\r
7401 Transfers control to a 16-bit real mode entry point and returns the results.\r
17f695ed 7402 AsmPrepareThunk16() must be called with ThunkContext before this function is used.\r
7403 This function must be called with interrupts disabled.\r
7404\r
9095d37b
LG
7405 The register state from the RealModeState field of ThunkContext is restored just prior\r
7406 to calling the 16-bit real mode entry point. This includes the EFLAGS field of RealModeState,\r
17f695ed 7407 which is used to set the interrupt state when a 16-bit real mode entry point is called.\r
7408 Control is transferred to the 16-bit real mode entry point specified by the CS and Eip fields of RealModeState.\r
9095d37b
LG
7409 The stack is initialized to the SS and ESP fields of RealModeState. Any parameters passed to\r
7410 the 16-bit real mode code must be populated by the caller at SS:ESP prior to calling this function.\r
17f695ed 7411 The 16-bit real mode entry point is invoked with a 16-bit CALL FAR instruction,\r
9095d37b
LG
7412 so when accessing stack contents, the 16-bit real mode code must account for the 16-bit segment\r
7413 and 16-bit offset of the return address that were pushed onto the stack. The 16-bit real mode entry\r
7414 point must exit with a RETF instruction. The register state is captured into RealModeState immediately\r
17f695ed 7415 after the RETF instruction is executed.\r
9095d37b
LG
7416\r
7417 If EFLAGS specifies interrupts enabled, or any of the 16-bit real mode code enables interrupts,\r
7418 or any of the 16-bit real mode code makes a SW interrupt, then the caller is responsible for making sure\r
7419 the IDT at address 0 is initialized to handle any HW or SW interrupts that may occur while in 16-bit real mode.\r
7420\r
7421 If EFLAGS specifies interrupts enabled, or any of the 16-bit real mode code enables interrupts,\r
7422 then the caller is responsible for making sure the 8259 PIC is in a state compatible with 16-bit real mode.\r
17f695ed 7423 This includes the base vectors, the interrupt masks, and the edge/level trigger mode.\r
9095d37b
LG
7424\r
7425 If THUNK_ATTRIBUTE_BIG_REAL_MODE is set in the ThunkAttributes field of ThunkContext, then the user code\r
17f695ed 7426 is invoked in big real mode. Otherwise, the user code is invoked in 16-bit real mode with 64KB segment limits.\r
9095d37b
LG
7427\r
7428 If neither THUNK_ATTRIBUTE_DISABLE_A20_MASK_INT_15 nor THUNK_ATTRIBUTE_DISABLE_A20_MASK_KBD_CTRL are set in\r
7429 ThunkAttributes, then it is assumed that the user code did not enable the A20 mask, and no attempt is made to\r
17f695ed 7430 disable the A20 mask.\r
9095d37b
LG
7431\r
7432 If THUNK_ATTRIBUTE_DISABLE_A20_MASK_INT_15 is set and THUNK_ATTRIBUTE_DISABLE_A20_MASK_KBD_CTRL is clear in\r
7433 ThunkAttributes, then attempt to use the INT 15 service to disable the A20 mask. If this INT 15 call fails,\r
17f695ed 7434 then attempt to disable the A20 mask by directly accessing the 8042 keyboard controller I/O ports.\r
9095d37b
LG
7435\r
7436 If THUNK_ATTRIBUTE_DISABLE_A20_MASK_INT_15 is clear and THUNK_ATTRIBUTE_DISABLE_A20_MASK_KBD_CTRL is set in\r
17f695ed 7437 ThunkAttributes, then attempt to disable the A20 mask by directly accessing the 8042 keyboard controller I/O ports.\r
9095d37b 7438\r
ac644614 7439 If ThunkContext is NULL, then ASSERT().\r
7440 If AsmPrepareThunk16() was not previously called with ThunkContext, then ASSERT().\r
9095d37b 7441 If both THUNK_ATTRIBUTE_DISABLE_A20_MASK_INT_15 and THUNK_ATTRIBUTE_DISABLE_A20_MASK_KBD_CTRL are set in\r
17f695ed 7442 ThunkAttributes, then ASSERT().\r
ac644614 7443\r
8243b089 7444 This interface is limited to be used in either physical mode or virtual modes with paging enabled where the\r
af2dc6a7 7445 virtual to physical mappings for ThunkContext.RealModeBuffer are mapped 1:1.\r
52fa075c 7446\r
ac644614 7447 @param ThunkContext A pointer to the context structure that describes the\r
7448 16-bit real mode code to call.\r
7449\r
7450**/\r
7451VOID\r
7452EFIAPI\r
7453AsmThunk16 (\r
7454 IN OUT THUNK_CONTEXT *ThunkContext\r
7455 );\r
7456\r
7457\r
7458/**\r
7459 Prepares all structures and code for a 16-bit real mode thunk, transfers\r
7460 control to a 16-bit real mode entry point, and returns the results.\r
7461\r
7462 Prepares all structures and code for a 16-bit real mode thunk, transfers\r
7463 control to a 16-bit real mode entry point, and returns the results. If the\r
7464 caller only need to perform a single 16-bit real mode thunk, then this\r
7465 service should be used. If the caller intends to make more than one 16-bit\r
7466 real mode thunk, then it is more efficient if AsmPrepareThunk16() is called\r
7467 once and AsmThunk16() can be called for each 16-bit real mode thunk.\r
7468\r
8243b089 7469 This interface is limited to be used in either physical mode or virtual modes with paging enabled where the\r
7470 virtual to physical mappings for ThunkContext.RealModeBuffer is mapped 1:1.\r
52fa075c 7471\r
17f695ed 7472 See AsmPrepareThunk16() and AsmThunk16() for the detailed description and ASSERT() conditions.\r
ac644614 7473\r
7474 @param ThunkContext A pointer to the context structure that describes the\r
7475 16-bit real mode code to call.\r
7476\r
7477**/\r
7478VOID\r
7479EFIAPI\r
7480AsmPrepareAndThunk16 (\r
7481 IN OUT THUNK_CONTEXT *ThunkContext\r
7482 );\r
7483\r
3cfc7813
QL
7484/**\r
7485 Generates a 16-bit random number through RDRAND instruction.\r
7486\r
7487 if Rand is NULL, then ASSERT().\r
7488\r
7489 @param[out] Rand Buffer pointer to store the random result.\r
7490\r
7491 @retval TRUE RDRAND call was successful.\r
7492 @retval FALSE Failed attempts to call RDRAND.\r
7493\r
7494 **/\r
7495BOOLEAN\r
7496EFIAPI\r
7497AsmRdRand16 (\r
7498 OUT UINT16 *Rand\r
7499 );\r
7500\r
7501/**\r
7502 Generates a 32-bit random number through RDRAND instruction.\r
7503\r
7504 if Rand is NULL, then ASSERT().\r
7505\r
7506 @param[out] Rand Buffer pointer to store the random result.\r
7507\r
7508 @retval TRUE RDRAND call was successful.\r
7509 @retval FALSE Failed attempts to call RDRAND.\r
7510\r
7511**/\r
7512BOOLEAN\r
7513EFIAPI\r
7514AsmRdRand32 (\r
7515 OUT UINT32 *Rand\r
7516 );\r
7517\r
7518/**\r
7519 Generates a 64-bit random number through RDRAND instruction.\r
7520\r
7521 if Rand is NULL, then ASSERT().\r
7522\r
7523 @param[out] Rand Buffer pointer to store the random result.\r
7524\r
7525 @retval TRUE RDRAND call was successful.\r
7526 @retval FALSE Failed attempts to call RDRAND.\r
7527\r
7528**/\r
7529BOOLEAN\r
7530EFIAPI\r
7531AsmRdRand64 (\r
7532 OUT UINT64 *Rand\r
7533 );\r
7534\r
364a5474 7535/**\r
47595ac0 7536 Load given selector into TR register.\r
364a5474
JW
7537\r
7538 @param[in] Selector Task segment selector\r
7539**/\r
7540VOID\r
7541EFIAPI\r
7542AsmWriteTr (\r
7543 IN UINT16 Selector\r
7544 );\r
7545\r
2ecd8299
HW
7546/**\r
7547 Performs a serializing operation on all load-from-memory instructions that\r
7548 were issued prior the AsmLfence function.\r
7549\r
7550 Executes a LFENCE instruction. This function is only available on IA-32 and x64.\r
7551\r
7552**/\r
7553VOID\r
7554EFIAPI\r
7555AsmLfence (\r
7556 VOID\r
7557 );\r
7558\r
9b3ca509
TL
7559/**\r
7560 Executes a XGETBV instruction\r
7561\r
7562 Executes a XGETBV instruction. This function is only available on IA-32 and\r
7563 x64.\r
7564\r
7565 @param[in] Index Extended control register index\r
7566\r
7567 @return The current value of the extended control register\r
7568**/\r
7569UINT64\r
7570EFIAPI\r
7571AsmXGetBv (\r
7572 IN UINT32 Index\r
7573 );\r
7574\r
4ac02962
JW
7575/**\r
7576 Executes a XSETBV instruction to write a 64-bit value to a Extended Control\r
7577 Register(XCR), and returns the value.\r
7578\r
7579 Writes the 64-bit value specified by Value to the XCR specified by Index. The\r
7580 64-bit value written to the XCR is returned. No parameter checking is\r
7581 performed on Index or Value, and some of these may cause CPU exceptions. The\r
7582 caller must either guarantee that Index and Value are valid, or the caller\r
7583 must establish proper exception handlers. This function is only available on\r
7584 IA-32 and x64.\r
7585\r
7586 @param Index The 32-bit XCR index to write.\r
7587 @param Value The 64-bit value to write to the XCR.\r
7588\r
7589 @return Value\r
7590\r
7591**/\r
7592UINT64\r
7593EFIAPI\r
7594AsmXSetBv (\r
7595 IN UINT32 Index,\r
7596 IN UINT64 Value\r
7597 );\r
9b3ca509 7598\r
f8422f1e
TL
7599/**\r
7600 Executes a VMGEXIT instruction (VMMCALL with a REP prefix)\r
7601\r
7602 Executes a VMGEXIT instruction. This function is only available on IA-32 and\r
7603 x64.\r
7604\r
7605**/\r
7606VOID\r
7607EFIAPI\r
7608AsmVmgExit (\r
7609 VOID\r
7610 );\r
7611\r
7612\r
8596c140
LE
7613/**\r
7614 Patch the immediate operand of an IA32 or X64 instruction such that the byte,\r
7615 word, dword or qword operand is encoded at the end of the instruction's\r
7616 binary representation.\r
7617\r
7618 This function should be used to update object code that was compiled with\r
7619 NASM from assembly source code. Example:\r
7620\r
7621 NASM source code:\r
7622\r
7623 mov eax, strict dword 0 ; the imm32 zero operand will be patched\r
7624 ASM_PFX(gPatchCr3):\r
7625 mov cr3, eax\r
7626\r
7627 C source code:\r
7628\r
7629 X86_ASSEMBLY_PATCH_LABEL gPatchCr3;\r
7630 PatchInstructionX86 (gPatchCr3, AsmReadCr3 (), 4);\r
7631\r
7632 @param[out] InstructionEnd Pointer right past the instruction to patch. The\r
7633 immediate operand to patch is expected to\r
7634 comprise the trailing bytes of the instruction.\r
7635 If InstructionEnd is closer to address 0 than\r
7636 ValueSize permits, then ASSERT().\r
7637\r
7638 @param[in] PatchValue The constant to write to the immediate operand.\r
7639 The caller is responsible for ensuring that\r
7640 PatchValue can be represented in the byte, word,\r
7641 dword or qword operand (as indicated through\r
7642 ValueSize); otherwise ASSERT().\r
7643\r
7644 @param[in] ValueSize The size of the operand in bytes; must be 1, 2,\r
7645 4, or 8. ASSERT() otherwise.\r
7646**/\r
7647VOID\r
7648EFIAPI\r
7649PatchInstructionX86 (\r
7650 OUT X86_ASSEMBLY_PATCH_LABEL *InstructionEnd,\r
7651 IN UINT64 PatchValue,\r
7652 IN UINTN ValueSize\r
7653 );\r
7654\r
de4f7f52
LE
7655#endif // defined (MDE_CPU_IA32) || defined (MDE_CPU_X64)\r
7656#endif // !defined (__BASE_LIB__)\r