]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BasePostCodeLibPort80/PostCode.c
Update the copyright notice format
[mirror_edk2.git] / MdePkg / Library / BasePostCodeLibPort80 / PostCode.c
CommitLineData
e1f414b6 1/** @file\r
eceb3a4c 2 Post Code Library instance that writes post code values to I/O port 0x80.\r
e1f414b6 3\r
19388d29
HT
4 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r
5 This program and the accompanying materials \r
e1f414b6 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
c7d265a9 15#include <Base.h>\r
c892d846 16\r
c7d265a9 17#include <Library/PostCodeLib.h>\r
18#include <Library/PcdLib.h>\r
19#include <Library/IoLib.h>\r
e1f414b6 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
eceb3a4c 31 processing another any other Post Code Library function, then \r
e1f414b6 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
afa22326 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 IoWrite8 (0x80, (UINT8)(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
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
eceb3a4c
LG
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
67 @param Description Pointer to an ASCII string that is a description of the \r
68 POST code value. This is an optional parameter that may \r
efb23117 69 be NULL.\r
e1f414b6 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 IoWrite8 (0x80, (UINT8)(Value));\r
82 return Value;\r
83}\r
84\r
85\r
86/**\r
87 Returns TRUE if POST Codes are enabled.\r
88\r
89 This function returns TRUE if the POST_CODE_PROPERTY_POST_CODE_ENABLED \r
90 bit of PcdPostCodePropertyMask is set. Otherwise FALSE is returned.\r
91\r
92 @retval TRUE The POST_CODE_PROPERTY_POST_CODE_ENABLED bit of \r
93 PcdPostCodeProperyMask is set.\r
94 @retval FALSE The POST_CODE_PROPERTY_POST_CODE_ENABLED bit of \r
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
LG
111 This function returns TRUE if the POST_CODE_PROPERTY_POST_CODE_DESCRIPTION_ENABLED\r
112 bit of PcdPostCodePropertyMask is set. Otherwise FALSE is returned.\r
e1f414b6 113\r
eceb3a4c
LG
114 @retval TRUE The POST_CODE_PROPERTY_POST_CODE_DESCRIPTION_ENABLED bit of\r
115 PcdPostCodeProperyMask is set.\r
116 @retval FALSE The POST_CODE_PROPERTY_POST_CODE_DESCRIPTION_ENABLED bit of\r
117 PcdPostCodeProperyMask is clear.\r
e1f414b6 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