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