]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BasePostCodeLibReportStatusCode/PostCode.c
• BaseMemoryLib:
[mirror_edk2.git] / MdePkg / Library / BasePostCodeLibReportStatusCode / PostCode.c
CommitLineData
533f039e 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/**\r
17 Sends an 32-bit value to a POST card.\r
18\r
19 Sends the 32-bit value specified by Value to a POST card, and returns Value. \r
20 Some implementations of this library function may perform I/O operations \r
21 directly to a POST card device. Other implementations may send Value to \r
22 ReportStatusCode(), and the status code reporting mechanism will eventually \r
23 display the 32-bit value on the status reporting device.\r
24 \r
25 PostCode() must actively prevent recursion. If PostCode() is called while \r
26 processing another any other Report Status Code Library function, then \r
27 PostCode() must return Value immediately.\r
28\r
29 @param Value The 32-bit value to write to the POST card.\r
30\r
31 @return Value\r
32\r
33**/\r
34UINT32\r
35EFIAPI\r
36PostCode (\r
37 IN UINT32 Value\r
38 )\r
39{\r
40 //\r
41 // Todo: Use approapriate ReportStatusCode\r
42 //\r
43 return Value;\r
44}\r
45\r
46\r
47/**\r
48 Sends an 32-bit value to a POST and associated ASCII string.\r
49\r
50 Sends the 32-bit value specified by Value to a POST card, and returns Value.\r
51 If Description is not NULL, then the ASCII string specified by Description is \r
52 also passed to the handler that displays the POST card value. Some \r
53 implementations of this library function may perform I/O operations directly \r
54 to a POST card device. Other implementations may send Value to ReportStatusCode(), \r
55 and the status code reporting mechanism will eventually display the 32-bit \r
56 value on the status reporting device. \r
57\r
58 PostCodeWithDescription()must actively prevent recursion. If \r
59 PostCodeWithDescription() is called while processing another any other Report \r
60 Status Code Library function, then PostCodeWithDescription() must return Value \r
61 immediately.\r
62\r
63 @param Value The 32-bit value to write to the POST card.\r
64 @param Description Pointer to an ASCII string that is a description of the \r
65 POST code value. This is an optional parameter that may \r
66 be NULL.\r
67\r
68 @return Value\r
69\r
70**/\r
71UINT32\r
72EFIAPI\r
73PostCodeWithDescription (\r
74 IN UINT32 Value,\r
75 IN CONST CHAR8 *Description OPTIONAL\r
76 )\r
77{\r
78 //\r
79 // Todo: Use approapriate ReportStatusCode\r
80 //\r
81 return Value;\r
82}\r
83\r
84\r
85/**\r
86 Returns TRUE if POST Codes are enabled.\r
87\r
88 This function returns TRUE if the POST_CODE_PROPERTY_POST_CODE_ENABLED \r
89 bit of PcdPostCodePropertyMask is set. Otherwise FALSE is returned.\r
90\r
91 @retval TRUE The POST_CODE_PROPERTY_POST_CODE_ENABLED bit of \r
92 PcdPostCodeProperyMask is set.\r
93 @retval FALSE The POST_CODE_PROPERTY_POST_CODE_ENABLED bit of \r
94 PcdPostCodeProperyMask is clear.\r
95\r
96**/\r
97BOOLEAN\r
98EFIAPI\r
99PostCodeEnabled (\r
100 VOID\r
101 )\r
102{\r
103 return ((PcdGet8(PcdPostCodePropertyMask) & POST_CODE_PROPERTY_POST_CODE_ENABLED) != 0);\r
104}\r
105\r
106\r
107/**\r
108 Returns TRUE if POST code descriptions are enabled.\r
109\r
110 This function returns TRUE if the \r
111 POST_CODE_PROPERTY_POST_CODE_ENABLED bit of \r
112 PcdPostCodePropertyMask is set. Otherwise FALSE is returned.\r
113\r
114 @retval TRUE The POST_CODE_PROPERTY_POST_CODE_ENABLED \r
115 bit of PcdPostCodeProperyMask is set.\r
116 @retval FALSE The POST_CODE_PROPERTY_POST_CODE_ENABLED \r
117 bit of PcdPostCodeProperyMask is clear.\r
118\r
119**/\r
120BOOLEAN\r
121EFIAPI\r
122PostCodeDescriptionEnabled (\r
123 VOID\r
124 )\r
125{\r
126 return ((PcdGet8(PcdPostCodePropertyMask) & POST_CODE_PROPERTY_POST_CODE_ENABLED) != 0);\r
127}\r