]> git.proxmox.com Git - mirror_edk2.git/blob - EmbeddedPkg/Library/SemiHostingDebugLib/DebugLib.c
61e3aac3c27e3b65f0cd4b9878be127b084d4a26
[mirror_edk2.git] / EmbeddedPkg / Library / SemiHostingDebugLib / DebugLib.c
1 /** @file
2
3 Copyright (c) 2008-2009, Apple Inc. All rights reserved.
4
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14 /** @file
15 UEFI Debug Library that uses PrintLib to send messages to STDERR.
16
17 Copyright (c) 2006 - 2007, Intel Corporation<BR>
18 All rights reserved. This program and the accompanying materials
19 are licensed and made available under the terms and conditions of the BSD License
20 which accompanies this distribution. The full text of the license may be found at
21 http://opensource.org/licenses/bsd-license.php
22
23 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
24 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
25
26 **/
27
28
29 #include <Uefi.h>
30 #include <Library/DebugLib.h>
31 #include <Library/PrintLib.h>
32 #include <Library/PcdLib.h>
33 #include <Library/BaseLib.h>
34 #include <Library/BaseMemoryLib.h>
35 #include <Library/SemihostLib.h>
36
37 //
38 // Define the maximum debug and assert message length that this library supports
39 //
40 #define MAX_DEBUG_MESSAGE_LENGTH 0x100
41
42 /**
43
44 Prints a debug message to the debug output device if the specified error level is enabled.
45
46 If any bit in ErrorLevel is also set in PcdDebugPrintErrorLevel, then print
47 the message specified by Format and the associated variable argument list to
48 the debug output device.
49
50 If Format is NULL, then ASSERT().
51
52 @param ErrorLevel The error level of the debug message.
53 @param Format Format string for the debug message to print.
54
55 **/
56 VOID
57 EFIAPI
58 DebugPrint (
59 IN UINTN ErrorLevel,
60 IN CONST CHAR8 *Format,
61 ...
62 )
63 {
64 CHAR8 AsciiBuffer[MAX_DEBUG_MESSAGE_LENGTH];
65 VA_LIST Marker;
66
67 //
68 // If Format is NULL, then ASSERT().
69 //
70 ASSERT (Format != NULL);
71
72 //
73 // Check driver debug mask value and global mask
74 //
75 if ((ErrorLevel & PcdGet32(PcdDebugPrintErrorLevel)) == 0) {
76 return;
77 }
78
79 //
80 // Convert the DEBUG() message to a Unicode String
81 //
82 VA_START (Marker, Format);
83 AsciiVSPrint (AsciiBuffer, sizeof (AsciiBuffer), Format, Marker);
84 VA_END (Marker);
85
86 SemihostWriteString (AsciiBuffer);
87 }
88
89
90 /**
91
92 Prints an assert message containing a filename, line number, and description.
93 This may be followed by a breakpoint or a dead loop.
94
95 Print a message of the form "ASSERT <FileName>(<LineNumber>): <Description>\n"
96 to the debug output device. If DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED bit of
97 PcdDebugProperyMask is set then CpuBreakpoint() is called. Otherwise, if
98 DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED bit of PcdDebugProperyMask is set then
99 CpuDeadLoop() is called. If neither of these bits are set, then this function
100 returns immediately after the message is printed to the debug output device.
101 DebugAssert() must actively prevent recusrsion. If DebugAssert() is called while
102 processing another DebugAssert(), then DebugAssert() must return immediately.
103
104 If FileName is NULL, then a <FileName> string of "(NULL) Filename" is printed.
105
106 If Description is NULL, then a <Description> string of "(NULL) Description" is printed.
107
108 @param FileName Pointer to the name of the source file that generated the assert condition.
109 @param LineNumber The line number in the source file that generated the assert condition
110 @param Description Pointer to the description of the assert condition.
111
112 **/
113 VOID
114 EFIAPI
115 DebugAssert (
116 IN CONST CHAR8 *FileName,
117 IN UINTN LineNumber,
118 IN CONST CHAR8 *Description
119 )
120 {
121 CHAR8 AsciiBuffer[MAX_DEBUG_MESSAGE_LENGTH];
122
123 //
124 // Generate the ASSERT() message in Unicode format
125 //
126 AsciiSPrint (AsciiBuffer, sizeof (AsciiBuffer), "ASSERT %a(%d): %a\n", FileName, LineNumber, Description);
127
128 SemihostWriteString (AsciiBuffer);
129
130 //
131 // Generate a Breakpoint, DeadLoop, or NOP based on PCD settings
132 //
133 if ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED) != 0) {
134 CpuBreakpoint ();
135 } else if ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED) != 0) {
136 CpuDeadLoop ();
137 }
138 }
139
140
141 /**
142
143 Fills a target buffer with PcdDebugClearMemoryValue, and returns the target buffer.
144
145 This function fills Length bytes of Buffer with the value specified by
146 PcdDebugClearMemoryValue, and returns Buffer.
147
148 If Buffer is NULL, then ASSERT().
149
150 If Length is greater than (MAX_ADDRESS ? Buffer + 1), then ASSERT().
151
152 @param Buffer Pointer to the target buffer to fill with PcdDebugClearMemoryValue.
153 @param Length Number of bytes in Buffer to fill with zeros PcdDebugClearMemoryValue.
154
155 @return Buffer
156
157 **/
158 VOID *
159 EFIAPI
160 DebugClearMemory (
161 OUT VOID *Buffer,
162 IN UINTN Length
163 )
164 {
165 //
166 // If Buffer is NULL, then ASSERT().
167 //
168 ASSERT (Buffer != NULL);
169
170 //
171 // SetMem() checks for the the ASSERT() condition on Length and returns Buffer
172 //
173 return SetMem (Buffer, Length, PcdGet8(PcdDebugClearMemoryValue));
174 }
175
176
177 /**
178
179 Returns TRUE if ASSERT() macros are enabled.
180
181 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of
182 PcdDebugProperyMask is set. Otherwise FALSE is returned.
183
184 @retval TRUE The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is set.
185 @retval FALSE The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is clear.
186
187 **/
188 BOOLEAN
189 EFIAPI
190 DebugAssertEnabled (
191 VOID
192 )
193 {
194 return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED) != 0);
195 }
196
197
198 /**
199
200 Returns TRUE if DEBUG()macros are enabled.
201
202 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of
203 PcdDebugProperyMask is set. Otherwise FALSE is returned.
204
205 @retval TRUE The DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of PcdDebugProperyMask is set.
206 @retval FALSE The DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of PcdDebugProperyMask is clear.
207
208 **/
209 BOOLEAN
210 EFIAPI
211 DebugPrintEnabled (
212 VOID
213 )
214 {
215 return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_PRINT_ENABLED) != 0);
216 }
217
218
219 /**
220
221 Returns TRUE if DEBUG_CODE()macros are enabled.
222
223 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of
224 PcdDebugProperyMask is set. Otherwise FALSE is returned.
225
226 @retval TRUE The DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of PcdDebugProperyMask is set.
227 @retval FALSE The DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of PcdDebugProperyMask is clear.
228
229 **/
230 BOOLEAN
231 EFIAPI
232 DebugCodeEnabled (
233 VOID
234 )
235 {
236 return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_CODE_ENABLED) != 0);
237 }
238
239
240 /**
241
242 Returns TRUE if DEBUG_CLEAR_MEMORY()macro is enabled.
243
244 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_CLEAR_MEMORY_ENABLED bit of
245 PcdDebugProperyMask is set. Otherwise FALSE is returned.
246
247 @retval TRUE The DEBUG_PROPERTY_DEBUG_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is set.
248 @retval FALSE The DEBUG_PROPERTY_DEBUG_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is clear.
249
250 **/
251 BOOLEAN
252 EFIAPI
253 DebugClearMemoryEnabled (
254 VOID
255 )
256 {
257 return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED) != 0);
258 }