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