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