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