]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - EdkModulePkg/Library/EdkUefiDebugLibStdErr/DebugLib.c
A typo in comments that alignment should be 8 for IPF
[mirror_edk2.git] / EdkModulePkg / Library / EdkUefiDebugLibStdErr / DebugLib.c
... / ...
CommitLineData
1/** @file\r
2 UEFI Debug Library that uses PrintLib to send messages to STDERR.\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// Define the maximum debug and assert message length that this library supports. \r
17//\r
18#define MAX_DEBUG_MESSAGE_LENGTH 0x100\r
19\r
20STATIC BOOLEAN mDebugLevelInstalled = FALSE;\r
21STATIC EFI_DEBUG_LEVEL_PROTOCOL mDebugLevel = { 0 };\r
22\r
23/**\r
24 Installs Debug Level Protocol.\r
25 \r
26 The constructor function installs Debug Level Protocol on the ImageHandle.\r
27 It will ASSERT() if the installation fails and will always return EFI_SUCCESS. \r
28\r
29 @param ImageHandle The firmware allocated handle for the EFI image.\r
30 @param SystemTable A pointer to the EFI System Table.\r
31 \r
32 @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.\r
33\r
34**/\r
35EFI_STATUS\r
36EFIAPI\r
37DebugLibConstructor (\r
38 IN EFI_HANDLE ImageHandle,\r
39 IN EFI_SYSTEM_TABLE *SystemTable\r
40 )\r
41{\r
42 EFI_STATUS Status;\r
43\r
44 //\r
45 // Initialize Debug Level Protocol.\r
46 //\r
47 mDebugLevel.DebugLevel = PcdGet32(PcdDebugPrintErrorLevel);\r
48\r
49 //\r
50 // Install Debug Level Protocol. \r
51 //\r
52 Status = gBS->InstallMultipleProtocolInterfaces (\r
53 &ImageHandle,\r
54 &gEfiDebugLevelProtocolGuid,\r
55 &mDebugLevel,\r
56 NULL\r
57 );\r
58 ASSERT_EFI_ERROR (Status);\r
59\r
60 //\r
61 // Set flag to show that the Debug Level Protocol has been installed.\r
62 //\r
63 mDebugLevelInstalled = TRUE;\r
64\r
65 return Status;\r
66}\r
67\r
68/**\r
69\r
70 Prints a debug message to the debug output device if the specified error level is enabled.\r
71\r
72 If any bit in ErrorLevel is also set in PcdDebugPrintErrorLevel, then print \r
73 the message specified by Format and the associated variable argument list to \r
74 the debug output device.\r
75\r
76 If Format is NULL, then ASSERT().\r
77\r
78 @param ErrorLevel The error level of the debug message.\r
79 @param Format Format string for the debug message to print.\r
80\r
81**/\r
82VOID\r
83EFIAPI\r
84DebugPrint (\r
85 IN UINTN ErrorLevel,\r
86 IN CONST CHAR8 *Format,\r
87 ...\r
88 )\r
89{\r
90 CHAR16 Buffer[MAX_DEBUG_MESSAGE_LENGTH];\r
91 VA_LIST Marker;\r
92\r
93 //\r
94 // If Format is NULL, then ASSERT().\r
95 //\r
96 ASSERT (Format != NULL);\r
97\r
98 //\r
99 // Check driver Debug Level value and global debug level\r
100 //\r
101 if (mDebugLevelInstalled) {\r
102 if ((ErrorLevel & mDebugLevel.DebugLevel) == 0) {\r
103 return;\r
104 }\r
105 } else {\r
106 if ((ErrorLevel & PcdGet32(PcdDebugPrintErrorLevel)) == 0) {\r
107 return;\r
108 }\r
109 }\r
110\r
111 //\r
112 // Convert the DEBUG() message to a Unicode String\r
113 //\r
114 VA_START (Marker, Format);\r
115 UnicodeVSPrintAsciiFormat (Buffer, sizeof (Buffer), Format, Marker);\r
116 VA_END (Marker);\r
117\r
118 //\r
119 // Send the print string to the Standard Error device if STDERR is available.\r
120 //\r
121 if (gST->StdErr != NULL) {\r
122 gST->StdErr->OutputString (gST->StdErr, Buffer);\r
123 }\r
124}\r
125\r
126\r
127/**\r
128\r
129 Prints an assert message containing a filename, line number, and description. \r
130 This may be followed by a breakpoint or a dead loop.\r
131\r
132 Print a message of the form "ASSERT <FileName>(<LineNumber>): <Description>\n" \r
133 to the debug output device. If DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED bit of \r
134 PcdDebugProperyMask is set then CpuBreakpoint() is called. Otherwise, if \r
135 DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED bit of PcdDebugProperyMask is set then \r
136 CpuDeadLoop() is called. If neither of these bits are set, then this function \r
137 returns immediately after the message is printed to the debug output device.\r
138 DebugAssert() must actively prevent recusrsion. If DebugAssert() is called while\r
139 processing another DebugAssert(), then DebugAssert() must return immediately.\r
140\r
141 If FileName is NULL, then a <FileName> string of "(NULL) Filename" is printed.\r
142\r
143 If Description is NULL, then a <Description> string of "(NULL) Description" is printed.\r
144\r
145 @param FileName Pointer to the name of the source file that generated the assert condition.\r
146 @param LineNumber The line number in the source file that generated the assert condition\r
147 @param Description Pointer to the description of the assert condition.\r
148\r
149**/\r
150VOID\r
151EFIAPI\r
152DebugAssert (\r
153 IN CONST CHAR8 *FileName,\r
154 IN UINTN LineNumber,\r
155 IN CONST CHAR8 *Description\r
156 )\r
157{\r
158 CHAR16 Buffer[MAX_DEBUG_MESSAGE_LENGTH];\r
159\r
160 //\r
161 // Generate the ASSERT() message in Unicode format\r
162 //\r
163 UnicodeSPrintAsciiFormat (Buffer, sizeof (Buffer), "ASSERT %s(%d): %s\n", FileName, LineNumber, Description);\r
164\r
165 //\r
166 // Send the print string to the Standard Error device if STDERR is available.\r
167 //\r
168 if (gST->StdErr != NULL) {\r
169 gST->StdErr->OutputString (gST->StdErr, Buffer);\r
170 }\r
171\r
172 //\r
173 // Generate a Breakpoint, DeadLoop, or NOP based on PCD settings\r
174 //\r
175 if ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED) != 0) {\r
176 CpuBreakpoint ();\r
177 } else if ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED) != 0) {\r
178 CpuDeadLoop ();\r
179 }\r
180}\r
181\r
182\r
183/**\r
184\r
185 Fills a target buffer with PcdDebugClearMemoryValue, and returns the target buffer.\r
186\r
187 This function fills Length bytes of Buffer with the value specified by \r
188 PcdDebugClearMemoryValue, and returns Buffer.\r
189\r
190 If Buffer is NULL, then ASSERT().\r
191\r
192 If Length is greater than (MAX_ADDRESS ? Buffer + 1), then ASSERT(). \r
193\r
194 @param Buffer Pointer to the target buffer to fill with PcdDebugClearMemoryValue.\r
195 @param Length Number of bytes in Buffer to fill with zeros PcdDebugClearMemoryValue. \r
196\r
197 @return Buffer\r
198\r
199**/\r
200VOID *\r
201EFIAPI\r
202DebugClearMemory (\r
203 OUT VOID *Buffer,\r
204 IN UINTN Length\r
205 )\r
206{\r
207 //\r
208 // If Buffer is NULL, then ASSERT().\r
209 //\r
210 ASSERT (Buffer != NULL);\r
211\r
212 //\r
213 // SetMem() checks for the the ASSERT() condition on Length and returns Buffer\r
214 //\r
215 return SetMem (Buffer, Length, PcdGet8(PcdDebugClearMemoryValue));\r
216}\r
217\r
218\r
219/**\r
220 \r
221 Returns TRUE if ASSERT() macros are enabled.\r
222\r
223 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of \r
224 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
225\r
226 @retval TRUE The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is set.\r
227 @retval FALSE The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is clear.\r
228\r
229**/\r
230BOOLEAN\r
231EFIAPI\r
232DebugAssertEnabled (\r
233 VOID\r
234 )\r
235{\r
236 return ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED) != 0);\r
237}\r
238\r
239\r
240/**\r
241 \r
242 Returns TRUE if DEBUG()macros are enabled.\r
243\r
244 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of \r
245 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
246\r
247 @retval TRUE The DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of PcdDebugProperyMask is set.\r
248 @retval FALSE The DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of PcdDebugProperyMask is clear.\r
249\r
250**/\r
251BOOLEAN\r
252EFIAPI\r
253DebugPrintEnabled (\r
254 VOID\r
255 )\r
256{\r
257 return ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_PRINT_ENABLED) != 0);\r
258}\r
259\r
260\r
261/**\r
262 \r
263 Returns TRUE if DEBUG_CODE()macros are enabled.\r
264\r
265 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of \r
266 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
267\r
268 @retval TRUE The DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of PcdDebugProperyMask is set.\r
269 @retval FALSE The DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of PcdDebugProperyMask is clear.\r
270\r
271**/\r
272BOOLEAN\r
273EFIAPI\r
274DebugCodeEnabled (\r
275 VOID\r
276 )\r
277{\r
278 return ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_CODE_ENABLED) != 0);\r
279}\r
280\r
281\r
282/**\r
283 \r
284 Returns TRUE if DEBUG_CLEAR_MEMORY()macro is enabled.\r
285\r
286 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_CLEAR_MEMORY_ENABLED bit of \r
287 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
288\r
289 @retval TRUE The DEBUG_PROPERTY_DEBUG_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is set.\r
290 @retval FALSE The DEBUG_PROPERTY_DEBUG_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is clear.\r
291\r
292**/\r
293BOOLEAN\r
294EFIAPI\r
295DebugClearMemoryEnabled (\r
296 VOID\r
297 )\r
298{\r
299 return ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED) != 0);\r
300}\r