]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BasePostCodeLibDebug/PostCode.c
MdePkg: Clean up source files
[mirror_edk2.git] / MdePkg / Library / BasePostCodeLibDebug / PostCode.c
CommitLineData
e1f414b6 1/** @file\r
afa22326 2 The instance of Post Code Library that layers on top of a Debug Library instance.\r
e1f414b6 3\r
9095d37b
LG
4 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
5 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
e1f414b6 9\r
9095d37b
LG
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
e1f414b6 12\r
13**/\r
14\r
c7d265a9 15#include <Base.h>\r
c892d846 16\r
c7d265a9 17#include <Library/PostCodeLib.h>\r
18#include <Library/DebugLib.h>\r
19#include <Library/PcdLib.h>\r
e1f414b6 20\r
21/**\r
22 Sends an 32-bit value to a POST card.\r
23\r
9095d37b
LG
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
e1f414b6 28 display the 32-bit value on the status reporting device.\r
9095d37b
LG
29\r
30 PostCode() must actively prevent recursion. If PostCode() is called while\r
31 processing another any other Post Code Library function, then\r
e1f414b6 32 PostCode() must return Value immediately.\r
33\r
122e2191 34 @param Value The 32-bit value to write to the POST card.\r
e1f414b6 35\r
122e2191 36 @return The 32-bit value to write to the POST card.\r
e1f414b6 37\r
38**/\r
39UINT32\r
40EFIAPI\r
41PostCode (\r
42 IN UINT32 Value\r
43 )\r
44{\r
45 DEBUG((EFI_D_INFO, "POST %08x\n", Value));\r
46 return Value;\r
47}\r
48\r
49\r
50/**\r
51 Sends an 32-bit value to a POST and associated ASCII string.\r
52\r
53 Sends the 32-bit value specified by Value to a POST card, and returns Value.\r
9095d37b
LG
54 If Description is not NULL, then the ASCII string specified by Description is\r
55 also passed to the handler that displays the POST card value. Some\r
56 implementations of this library function may perform I/O operations directly\r
57 to a POST card device. Other implementations may send Value to ReportStatusCode(),\r
58 and the status code reporting mechanism will eventually display the 32-bit\r
59 value on the status reporting device.\r
60\r
61 PostCodeWithDescription()must actively prevent recursion. If\r
62 PostCodeWithDescription() is called while processing another any other Post\r
63 Code Library function, then PostCodeWithDescription() must return Value\r
e1f414b6 64 immediately.\r
65\r
66 @param Value The 32-bit value to write to the POST card.\r
9095d37b
LG
67 @param Description The pointer to an ASCII string that is a description of the\r
68 POST code value. This is an optional parameter that may\r
e1f414b6 69 be NULL.\r
70\r
afa22326 71 @return The 32-bit value to write to the POST card.\r
e1f414b6 72\r
73**/\r
74UINT32\r
75EFIAPI\r
76PostCodeWithDescription (\r
77 IN UINT32 Value,\r
78 IN CONST CHAR8 *Description OPTIONAL\r
79 )\r
80{\r
81 DEBUG((EFI_D_INFO, "POST %08x - %s\n", Value, Description));\r
82 return Value;\r
83}\r
84\r
85\r
86/**\r
87 Returns TRUE if POST Codes are enabled.\r
88\r
9095d37b 89 This function returns TRUE if the POST_CODE_PROPERTY_POST_CODE_ENABLED\r
e1f414b6 90 bit of PcdPostCodePropertyMask is set. Otherwise FALSE is returned.\r
91\r
9095d37b 92 @retval TRUE The POST_CODE_PROPERTY_POST_CODE_ENABLED bit of\r
e1f414b6 93 PcdPostCodeProperyMask is set.\r
9095d37b 94 @retval FALSE The POST_CODE_PROPERTY_POST_CODE_ENABLED bit of\r
e1f414b6 95 PcdPostCodeProperyMask is clear.\r
96\r
97**/\r
98BOOLEAN\r
99EFIAPI\r
100PostCodeEnabled (\r
101 VOID\r
102 )\r
103{\r
104 return (BOOLEAN) ((PcdGet8(PcdPostCodePropertyMask) & POST_CODE_PROPERTY_POST_CODE_ENABLED) != 0);\r
105}\r
106\r
107\r
108/**\r
109 Returns TRUE if POST code descriptions are enabled.\r
110\r
eceb3a4c 111 This function returns TRUE if the POST_CODE_PROPERTY_POST_CODE_DESCRIPTION_ENABLED\r
e1f414b6 112 bit of PcdPostCodePropertyMask is set. Otherwise FALSE is returned.\r
113\r
eceb3a4c 114 @retval TRUE The POST_CODE_PROPERTY_POST_CODE_DESCRIPTION_ENABLED bit of\r
e1f414b6 115 PcdPostCodeProperyMask is set.\r
eceb3a4c 116 @retval FALSE The POST_CODE_PROPERTY_POST_CODE_DESCRIPTION_ENABLED bit of\r
e1f414b6 117 PcdPostCodeProperyMask is clear.\r
118\r
119**/\r
120BOOLEAN\r
121EFIAPI\r
122PostCodeDescriptionEnabled (\r
123 VOID\r
124 )\r
125{\r
eceb3a4c 126 return (BOOLEAN) ((PcdGet8(PcdPostCodePropertyMask) & POST_CODE_PROPERTY_POST_CODE_DESCRIPTION_ENABLED) != 0);\r
e1f414b6 127}\r