]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/PeiDxePostCodeLibReportStatusCode/PostCode.c
Import PeiDxePostCodeLibReportStatusCode.
[mirror_edk2.git] / MdePkg / Library / PeiDxePostCodeLibReportStatusCode / PostCode.c
CommitLineData
cdffda11 1/** @file\r
2 Report Status Code Library Post Code functions for DXE Phase.\r
3\r
4 Copyright (c) 2006, Intel Corporation<BR>\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/**\r
16 Converts POST code value to status code value.\r
17\r
18 This macro converts the post code to status code value. Bits 0..4 of PostCode \r
19 are mapped to bits 16..20 of status code value, and bits 5..7 of PostCode are mapped to bits \r
20 24..26 of status code value. \r
21\r
22 @param PostCode POST code value. \r
23\r
24 @return The converted status code value.\r
25\r
26**/\r
27#define POST_CODE_TO_STATUS_CODE_VALUE(PostCode) \\r
28 ((EFI_STATUS_CODE_VALUE) (((PostCode & 0x1f) << 16) | ((PostCode & 0x3) << 19)))\r
29\r
30/**\r
31 Sends an 32-bit value to a POST card.\r
32\r
33 Sends the 32-bit value specified by Value to a POST card, and returns Value. \r
34 Some implementations of this library function may perform I/O operations \r
35 directly to a POST card device. Other implementations may send Value to \r
36 ReportStatusCode(), and the status code reporting mechanism will eventually \r
37 display the 32-bit value on the status reporting device.\r
38 \r
39 PostCode() must actively prevent recursion. If PostCode() is called while \r
40 processing another any other Report Status Code Library function, then \r
41 PostCode() must return Value immediately.\r
42\r
43 @param Value The 32-bit value to write to the POST card.\r
44\r
45 @return Value\r
46\r
47**/\r
48UINT32\r
49EFIAPI\r
50PostCode (\r
51 IN UINT32 Value\r
52 )\r
53{\r
54 REPORT_STATUS_CODE (EFI_PROGRESS_CODE, POST_CODE_TO_STATUS_CODE_VALUE (Value));\r
55 return Value;\r
56}\r
57\r
58\r
59/**\r
60 Sends an 32-bit value to a POST and associated ASCII string.\r
61\r
62 Sends the 32-bit value specified by Value to a POST card, and returns Value.\r
63 If Description is not NULL, then the ASCII string specified by Description is \r
64 also passed to the handler that displays the POST card value. Some \r
65 implementations of this library function may perform I/O operations directly \r
66 to a POST card device. Other implementations may send Value to ReportStatusCode(), \r
67 and the status code reporting mechanism will eventually display the 32-bit \r
68 value on the status reporting device. \r
69\r
70 PostCodeWithDescription()must actively prevent recursion. If \r
71 PostCodeWithDescription() is called while processing another any other Report \r
72 Status Code Library function, then PostCodeWithDescription() must return Value \r
73 immediately.\r
74\r
75 @param Value The 32-bit value to write to the POST card.\r
76 @param Description Pointer to an ASCII string that is a description of the \r
77 POST code value. This is an optional parameter that may \r
78 be NULL.\r
79\r
80 @return Value\r
81\r
82**/\r
83UINT32\r
84EFIAPI\r
85PostCodeWithDescription (\r
86 IN UINT32 Value,\r
87 IN CONST CHAR8 *Description OPTIONAL\r
88 )\r
89{\r
90 if (Description == NULL) { \r
91 REPORT_STATUS_CODE (\r
92 EFI_PROGRESS_CODE,\r
93 POST_CODE_TO_STATUS_CODE_VALUE (Value)\r
94 );\r
95 } else {\r
96 REPORT_STATUS_CODE_WITH_EXTENDED_DATA (\r
97 EFI_PROGRESS_CODE,\r
98 POST_CODE_TO_STATUS_CODE_VALUE (Value),\r
99 Description,\r
100 AsciiStrSize (Description)\r
101 );\r
102 }\r
103\r
104 return Value;\r
105}\r
106\r
107\r
108/**\r
109 Returns TRUE if POST Codes are enabled.\r
110\r
111 This function returns TRUE if the POST_CODE_PROPERTY_POST_CODE_ENABLED \r
112 bit of PcdPostCodePropertyMask is set. Otherwise FALSE is returned.\r
113\r
114 @retval TRUE The POST_CODE_PROPERTY_POST_CODE_ENABLED bit of \r
115 PcdPostCodeProperyMask is set.\r
116 @retval FALSE The POST_CODE_PROPERTY_POST_CODE_ENABLED bit of \r
117 PcdPostCodeProperyMask is clear.\r
118\r
119**/\r
120BOOLEAN\r
121EFIAPI\r
122PostCodeEnabled (\r
123 VOID\r
124 )\r
125{\r
126 return (BOOLEAN) ((PcdGet8(PcdPostCodePropertyMask) & POST_CODE_PROPERTY_POST_CODE_ENABLED) != 0);\r
127}\r
128\r
129\r
130/**\r
131 Returns TRUE if POST code descriptions are enabled.\r
132\r
133 This function returns TRUE if the \r
134 POST_CODE_PROPERTY_POST_CODE_ENABLED bit of \r
135 PcdPostCodePropertyMask is set. Otherwise FALSE is returned.\r
136\r
137 @retval TRUE The POST_CODE_PROPERTY_POST_CODE_ENABLED \r
138 bit of PcdPostCodeProperyMask is set.\r
139 @retval FALSE The POST_CODE_PROPERTY_POST_CODE_ENABLED \r
140 bit of PcdPostCodeProperyMask is clear.\r
141\r
142**/\r
143BOOLEAN\r
144EFIAPI\r
145PostCodeDescriptionEnabled (\r
146 VOID\r
147 )\r
148{\r
149 return (BOOLEAN) ((PcdGet8(PcdPostCodePropertyMask) & POST_CODE_PROPERTY_POST_CODE_ENABLED) != 0);\r
150}\r