]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BasePostCodeLibReportStatusCode/PostCode.c
BaseMemoryLib:
[mirror_edk2.git] / MdePkg / Library / BasePostCodeLibReportStatusCode / PostCode.c
1 /** @file
2 Report Status Code Library Post Code functions for DXE Phase.
3
4 Copyright (c) 2006, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15
16 /**
17 Sends an 32-bit value to a POST card.
18
19 Sends the 32-bit value specified by Value to a POST card, and returns Value.
20 Some implementations of this library function may perform I/O operations
21 directly to a POST card device. Other implementations may send Value to
22 ReportStatusCode(), and the status code reporting mechanism will eventually
23 display the 32-bit value on the status reporting device.
24
25 PostCode() must actively prevent recursion. If PostCode() is called while
26 processing another any other Report Status Code Library function, then
27 PostCode() must return Value immediately.
28
29 @param Value The 32-bit value to write to the POST card.
30
31 @return Value
32
33 **/
34 UINT32
35 EFIAPI
36 PostCode (
37 IN UINT32 Value
38 )
39 {
40 //
41 // Todo: Use approapriate ReportStatusCode
42 //
43 return Value;
44 }
45
46
47 /**
48 Sends an 32-bit value to a POST and associated ASCII string.
49
50 Sends the 32-bit value specified by Value to a POST card, and returns Value.
51 If Description is not NULL, then the ASCII string specified by Description is
52 also passed to the handler that displays the POST card value. Some
53 implementations of this library function may perform I/O operations directly
54 to a POST card device. Other implementations may send Value to ReportStatusCode(),
55 and the status code reporting mechanism will eventually display the 32-bit
56 value on the status reporting device.
57
58 PostCodeWithDescription()must actively prevent recursion. If
59 PostCodeWithDescription() is called while processing another any other Report
60 Status Code Library function, then PostCodeWithDescription() must return Value
61 immediately.
62
63 @param Value The 32-bit value to write to the POST card.
64 @param Description Pointer to an ASCII string that is a description of the
65 POST code value. This is an optional parameter that may
66 be NULL.
67
68 @return Value
69
70 **/
71 UINT32
72 EFIAPI
73 PostCodeWithDescription (
74 IN UINT32 Value,
75 IN CONST CHAR8 *Description OPTIONAL
76 )
77 {
78 //
79 // Todo: Use approapriate ReportStatusCode
80 //
81 return Value;
82 }
83
84
85 /**
86 Returns TRUE if POST Codes are enabled.
87
88 This function returns TRUE if the POST_CODE_PROPERTY_POST_CODE_ENABLED
89 bit of PcdPostCodePropertyMask is set. Otherwise FALSE is returned.
90
91 @retval TRUE The POST_CODE_PROPERTY_POST_CODE_ENABLED bit of
92 PcdPostCodeProperyMask is set.
93 @retval FALSE The POST_CODE_PROPERTY_POST_CODE_ENABLED bit of
94 PcdPostCodeProperyMask is clear.
95
96 **/
97 BOOLEAN
98 EFIAPI
99 PostCodeEnabled (
100 VOID
101 )
102 {
103 return ((PcdGet8(PcdPostCodePropertyMask) & POST_CODE_PROPERTY_POST_CODE_ENABLED) != 0);
104 }
105
106
107 /**
108 Returns TRUE if POST code descriptions are enabled.
109
110 This function returns TRUE if the
111 POST_CODE_PROPERTY_POST_CODE_ENABLED bit of
112 PcdPostCodePropertyMask is set. Otherwise FALSE is returned.
113
114 @retval TRUE The POST_CODE_PROPERTY_POST_CODE_ENABLED
115 bit of PcdPostCodeProperyMask is set.
116 @retval FALSE The POST_CODE_PROPERTY_POST_CODE_ENABLED
117 bit of PcdPostCodeProperyMask is clear.
118
119 **/
120 BOOLEAN
121 EFIAPI
122 PostCodeDescriptionEnabled (
123 VOID
124 )
125 {
126 return ((PcdGet8(PcdPostCodePropertyMask) & POST_CODE_PROPERTY_POST_CODE_ENABLED) != 0);
127 }