HomeSort by relevance Sort by last modified time
    Searched refs:PostCode (Results 1 - 25 of 29) sorted by null

1 2

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
PostCode.c 14 PostCode.c
18 Worker functions for PostCode
29 OUT UINT8 *PostCode
41 PostCode - Post code as output
56 *PostCode = (UINT8) (((Value & EFI_STATUS_CODE_CLASS_MASK) >> 24) << 5);
57 *PostCode = (UINT8)(*PostCode | (((Value & EFI_STATUS_CODE_SUBCLASS_MASK) >> 16) & 0x1f));
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
PostCodeLib.h 30 PostCode() must actively prevent recursion. If PostCode() is called while
32 PostCode() must return Value immediately.
41 PostCode (
119 If POST codes are enabled in PcdPostCodeProperyMask, then call PostCode()
127 #define POST_CODE(Value) PostCodeEnabled() ? PostCode(Value) : Value
134 Value and Description. If only POST codes are enabled, then call PostCode()
147 PostCode(Value)) : \
ReportStatusCodeLib.h 33 and returns the 8-bit POST code in PostCode. If CodeType is an
34 EFI_PROGRESS_CODE or CodeType is an EFI_ERROR_CODE, then bits 0..4 of PostCode
35 are set to bits 16..20 of Value, and bits 5..7 of PostCode are set to bits
38 If PostCode is NULL, then ASSERT().
42 @param PostCode A pointer to the 8-bit POST code value to return.
45 to an 8-bit POST code and returned in PostCode.
55 OUT UINT8 *PostCode
  /device/linaro/bootloader/edk2/MdePkg/Library/PeiDxePostCodeLibReportStatusCode/
PostCode.c 3 PostCode Library for PEIMs and DXE drivers that send PostCode to ReportStatusCode
27 This macro converts the post code to status code value. Bits 0..4 of PostCode
28 are mapped to bits 16..20 of status code value, and bits 5..7 of PostCode are mapped to bits
31 @param PostCode POST code value.
36 #define POST_CODE_TO_STATUS_CODE_VALUE(PostCode) \
37 ((EFI_STATUS_CODE_VALUE) (((PostCode & 0x1f) << 16) | ((PostCode & 0x3) << 19)))
48 PostCode() must actively prevent recursion. If PostCode() is called while
    [all...]
PeiDxePostCodeLibReportStatusCode.inf 33 PostCode.c
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGluePostCodeLib.h 27 #define PostCode(_VALUE) GluePostCode(_VALUE)
45 PostCode() must actively prevent recursion. If PostCode() is called while
47 PostCode() must return Value immediately.
135 If POST codes are enabled in PcdPostCodeProperyMask, then call PostCode()
143 #define POST_CODE(Value) PostCodeEnabled() ? PostCode(Value) : Value
150 Value and Description. If only POST codes are enabled, then call PostCode()
162 PostCode(Value)) : \
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiDxePostCodeLibReportStatusCode/
PostCode.c 15 PostCode.c
28 This macro converts the post code to status code value. Bits 0..4 of PostCode
29 are mapped to bits 16..20 of status code value, and bits 5..7 of PostCode are mapped to bits
32 @param PostCode POST code value.
37 #define POST_CODE_TO_STATUS_CODE_VALUE(PostCode) \
38 ((EFI_STATUS_CODE_VALUE) (((PostCode & 0x1f) << 16) | ((PostCode & 0x3) << 19)))
49 PostCode() must actively prevent recursion. If PostCode() is called while
51 PostCode() must return Value immediately.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BasePostCodeLibDebug/
BasePostCodeLibDebug.inf 4 # Post Code Library that uses DebugLib service to send PostCode.
35 PostCode.c
PostCode.c 30 PostCode() must actively prevent recursion. If PostCode() is called while
32 PostCode() must return Value immediately.
41 PostCode (
  /device/linaro/bootloader/edk2/MdePkg/Library/BasePostCodeLibPort80/
BasePostCodeLibPort80.inf 33 PostCode.c
PostCode.c 31 PostCode() must actively prevent recursion. If PostCode() is called while
33 PostCode() must return Value immediately.
42 PostCode (
99 PostCode (Value);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/DebugAssert/
DebugAssert.h 58 IN UINT16 PostCode,
80 EFI_POST_CODE PostCode;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/RtLedStatusCode/
RtLedStatusCode.c 198 OUT UINT8 *PostCode
205 *PostCode = (UINT8) (((Value & EFI_STATUS_CODE_CLASS_MASK) >> 24) << 5);
206 *PostCode = (UINT8) (*PostCode | (UINT8) (((Value & EFI_STATUS_CODE_SUBCLASS_MASK) >> 16) & 0x1f));
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/MonoStatusCode/
PeiPostCode.c 30 Worker functions for PostCode
44 // see Edk\Foundation\Library\EfiCommonLib\PostCode.c for DXE/BDS POST codes.
111 OUT UINT8 *PostCode
129 *PostCode = mPeiPort80Table[Index].Port80Value;
  /device/linaro/bootloader/edk2/DuetPkg/Library/DxeCoreReportStatusCodeLibFromHob/
ReportStatusCodeLib.c 91 and returns the 8-bit POST code in PostCode. If CodeType is an
92 EFI_PROGRESS_CODE or CodeType is an EFI_ERROR_CODE, then bits 0..4 of PostCode
93 are set to bits 16..20 of Value, and bits 5..7 of PostCode are set to bits
96 If PostCode is NULL, then ASSERT().
100 @param PostCode A pointer to the 8-bit POST code value to return.
103 to an 8-bit POST code and returned in PostCode.
113 OUT UINT8 *PostCode
117 // If PostCode is NULL, then ASSERT()
119 ASSERT (PostCode != NULL);
126 *PostCode = (UINT8) ((((Value & EFI_STATUS_CODE_CLASS_MASK) >> 24) << 5) |
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/
ReportStatusCodeLib.c 21 and returns the 8-bit POST code in PostCode. If CodeType is an
22 EFI_PROGRESS_CODE or CodeType is an EFI_ERROR_CODE, then bits 0..4 of PostCode
23 are set to bits 16..20 of Value, and bits 5..7 of PostCode are set to bits
26 If PostCode is NULL, then ASSERT().
30 @param PostCode A pointer to the 8-bit POST code value to return.
33 to an 8-bit POST code and returned in PostCode.
43 OUT UINT8 *PostCode
47 // If PostCode is NULL, then ASSERT()
49 ASSERT (PostCode != NULL);
56 *PostCode = (UINT8) ((((Value & EFI_STATUS_CODE_CLASS_MASK) >> 24) << 5) |
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/
BaseReportStatusCodeLib.c 23 and returns the 8-bit POST code in PostCode. If CodeType is an
24 EFI_PROGRESS_CODE or CodeType is an EFI_ERROR_CODE, then bits 0..4 of PostCode
25 are set to bits 16..20 of Value, and bits 5..7 of PostCode are set to bits
28 If PostCode is NULL, then ASSERT().
32 @param PostCode A pointer to the 8-bit POST code value to return.
35 to an 8-bit POST code and returned in PostCode.
45 OUT UINT8 *PostCode
48 ASSERT (PostCode != NULL);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeReportStatusCodeLib/
ReportStatusCodeLib.c 133 and returns the 8-bit POST code in PostCode. If CodeType is an
134 EFI_PROGRESS_CODE or CodeType is an EFI_ERROR_CODE, then bits 0..4 of PostCode
135 are set to bits 16..20 of Value, and bits 5..7 of PostCode are set to bits
138 If PostCode is NULL, then ASSERT().
142 @param PostCode A pointer to the 8-bit POST code value to return.
145 to an 8-bit POST code and returned in PostCode.
155 OUT UINT8 *PostCode
159 // If PostCode is NULL, then ASSERT()
161 ASSERT (PostCode != NULL);
168 *PostCode = (UINT8) ((((Value & EFI_STATUS_CODE_CLASS_MASK) >> 24) << 5) |
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiReportStatusCodeLib/
ReportStatusCodeLib.c 81 and returns the 8-bit POST code in PostCode. If CodeType is an
82 EFI_PROGRESS_CODE or CodeType is an EFI_ERROR_CODE, then bits 0..4 of PostCode
83 are set to bits 16..20 of Value, and bits 5..7 of PostCode are set to bits
86 If PostCode is NULL, then ASSERT().
90 @param PostCode A pointer to the 8-bit POST code value to return.
93 to an 8-bit POST code and returned in PostCode.
103 OUT UINT8 *PostCode
107 // If PostCode is NULL, then ASSERT()
109 ASSERT (PostCode != NULL);
116 *PostCode = (UINT8) ((((Value & EFI_STATUS_CODE_CLASS_MASK) >> 24) << 5) |
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/SmmRuntimeDxeReportStatusCodeLib/
ReportStatusCodeLib.c 113 and returns the 8-bit POST code in PostCode. If CodeType is an
114 EFI_PROGRESS_CODE or CodeType is an EFI_ERROR_CODE, then bits 0..4 of PostCode
115 are set to bits 16..20 of Value, and bits 5..7 of PostCode are set to bits
118 If PostCode is NULL, then ASSERT().
122 @param PostCode A pointer to the 8-bit POST code value to return.
125 to an 8-bit POST code and returned in PostCode.
135 OUT UINT8 *PostCode
139 // If PostCode is NULL, then ASSERT()
141 ASSERT (PostCode != NULL);
148 *PostCode = (UINT8) ((((Value & EFI_STATUS_CODE_CLASS_MASK) >> 24) << 5) |
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/
ReportStatusCodeLib.c 124 and returns the 8-bit POST code in PostCode. If CodeType is an
125 EFI_PROGRESS_CODE or CodeType is an EFI_ERROR_CODE, then bits 0..4 of PostCode
126 are set to bits 16..20 of Value, and bits 5..7 of PostCode are set to bits
129 If PostCode is NULL, then ASSERT().
133 @param PostCode A pointer to the 8-bit POST code value to return.
136 to an 8-bit POST code and returned in PostCode.
146 OUT UINT8 *PostCode
150 // If PostCode is NULL, then ASSERT()
152 ASSERT (PostCode != NULL);
159 *PostCode = (UINT8) ((((Value & EFI_STATUS_CODE_CLASS_MASK) >> 24) << 5) |
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeReportStatusCodeLib/
ReportStatusCodeLib.c 121 and returns the 8-bit POST code in PostCode. If CodeType is an
122 EFI_PROGRESS_CODE or CodeType is an EFI_ERROR_CODE, then bits 0..4 of PostCode
123 are set to bits 16..20 of Value, and bits 5..7 of PostCode are set to bits
126 If PostCode is NULL, then ASSERT().
130 @param PostCode A pointer to the 8-bit POST code value to return.
133 to an 8-bit POST code and returned in PostCode.
143 OUT UINT8 *PostCode
147 // If PostCode is NULL, then ASSERT()
149 ASSERT (PostCode != NULL);
156 *PostCode = (UINT8) ((((Value & EFI_STATUS_CODE_CLASS_MASK) >> 24) << 5) |
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PeiReportStatusCodeLib/
ReportStatusCodeLib.c 93 and returns the 8-bit POST code in PostCode. If CodeType is an
94 EFI_PROGRESS_CODE or CodeType is an EFI_ERROR_CODE, then bits 0..4 of PostCode
95 are set to bits 16..20 of Value, and bits 5..7 of PostCode are set to bits
98 If PostCode is NULL, then ASSERT().
102 @param PostCode A pointer to the 8-bit POST code value to return.
105 to an 8-bit POST code and returned in PostCode.
115 OUT UINT8 *PostCode
119 // If PostCode is NULL, then ASSERT()
121 ASSERT (PostCode != NULL);
128 *PostCode = (UINT8) ((((Value & EFI_STATUS_CODE_CLASS_MASK) >> 24) << 5) |
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/SmmReportStatusCodeLib/
ReportStatusCodeLib.c 110 and returns the 8-bit POST code in PostCode. If CodeType is an
111 EFI_PROGRESS_CODE or CodeType is an EFI_ERROR_CODE, then bits 0..4 of PostCode
112 are set to bits 16..20 of Value, and bits 5..7 of PostCode are set to bits
115 If PostCode is NULL, then ASSERT().
119 @param PostCode A pointer to the 8-bit POST code value to return.
122 to an 8-bit POST code and returned in PostCode.
132 OUT UINT8 *PostCode
136 // If PostCode is NULL, then ASSERT()
138 ASSERT (PostCode != NULL);
145 *PostCode = (UINT8) ((((Value & EFI_STATUS_CODE_CLASS_MASK) >> 24) << 5) |
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/
ReportStatusCodeLib.c 258 and returns the 8-bit POST code in PostCode. If CodeType is an
259 EFI_PROGRESS_CODE or CodeType is an EFI_ERROR_CODE, then bits 0..4 of PostCode
260 are set to bits 16..20 of Value, and bits 5..7 of PostCode are set to bits
263 If PostCode is NULL, then ASSERT().
267 @param PostCode A pointer to the 8-bit POST code value to return.
270 to an 8-bit POST code and returned in PostCode.
280 OUT UINT8 *PostCode
284 // If PostCode is NULL, then ASSERT()
286 ASSERT (PostCode != NULL);
293 *PostCode = (UINT8) ((((Value & EFI_STATUS_CODE_CLASS_MASK) >> 24) << 5) |
    [all...]

Completed in 499 milliseconds

1 2