1 /******************************************************************************
3 * Module Name: utdebug - Debug print/trace routines
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2016, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
44 #define EXPORT_ACPI_INTERFACES
46 #include <acpi/acpi.h>
50 #define _COMPONENT ACPI_UTILITIES
51 ACPI_MODULE_NAME("utdebug")
53 #ifdef ACPI_DEBUG_OUTPUT
54 static acpi_thread_id acpi_gbl_previous_thread_id
= (acpi_thread_id
) 0xFFFFFFFF;
55 static const char *acpi_gbl_function_entry_prefix
= "----Entry";
56 static const char *acpi_gbl_function_exit_prefix
= "----Exit-";
58 /*******************************************************************************
60 * FUNCTION: acpi_ut_init_stack_ptr_trace
66 * DESCRIPTION: Save the current CPU stack pointer at subsystem startup
68 ******************************************************************************/
70 void acpi_ut_init_stack_ptr_trace(void)
74 acpi_gbl_entry_stack_pointer
= ¤t_sp
;
77 /*******************************************************************************
79 * FUNCTION: acpi_ut_track_stack_ptr
85 * DESCRIPTION: Save the current CPU stack pointer
87 ******************************************************************************/
89 void acpi_ut_track_stack_ptr(void)
93 if (¤t_sp
< acpi_gbl_lowest_stack_pointer
) {
94 acpi_gbl_lowest_stack_pointer
= ¤t_sp
;
97 if (acpi_gbl_nesting_level
> acpi_gbl_deepest_nesting
) {
98 acpi_gbl_deepest_nesting
= acpi_gbl_nesting_level
;
102 /*******************************************************************************
104 * FUNCTION: acpi_ut_trim_function_name
106 * PARAMETERS: function_name - Ascii string containing a procedure name
108 * RETURN: Updated pointer to the function name
110 * DESCRIPTION: Remove the "Acpi" prefix from the function name, if present.
111 * This allows compiler macros such as __func__ to be used
112 * with no change to the debug output.
114 ******************************************************************************/
116 static const char *acpi_ut_trim_function_name(const char *function_name
)
119 /* All Function names are longer than 4 chars, check is safe */
121 if (*(ACPI_CAST_PTR(u32
, function_name
)) == ACPI_PREFIX_MIXED
) {
123 /* This is the case where the original source has not been modified */
125 return (function_name
+ 4);
128 if (*(ACPI_CAST_PTR(u32
, function_name
)) == ACPI_PREFIX_LOWER
) {
130 /* This is the case where the source has been 'linuxized' */
132 return (function_name
+ 5);
135 return (function_name
);
138 /*******************************************************************************
140 * FUNCTION: acpi_debug_print
142 * PARAMETERS: requested_debug_level - Requested debug print level
143 * line_number - Caller's line number (for error output)
144 * function_name - Caller's procedure name
145 * module_name - Caller's module name
146 * component_id - Caller's component ID
147 * format - Printf format field
148 * ... - Optional printf arguments
152 * DESCRIPTION: Print error message with prefix consisting of the module name,
153 * line number, and component ID.
155 ******************************************************************************/
157 void ACPI_INTERNAL_VAR_XFACE
158 acpi_debug_print(u32 requested_debug_level
,
160 const char *function_name
,
161 const char *module_name
,
162 u32 component_id
, const char *format
, ...)
164 acpi_thread_id thread_id
;
167 /* Check if debug output enabled */
169 if (!ACPI_IS_DEBUG_ENABLED(requested_debug_level
, component_id
)) {
174 * Thread tracking and context switch notification
176 thread_id
= acpi_os_get_thread_id();
177 if (thread_id
!= acpi_gbl_previous_thread_id
) {
178 if (ACPI_LV_THREADS
& acpi_dbg_level
) {
180 ("\n**** Context Switch from TID %u to TID %u ****\n\n",
181 (u32
)acpi_gbl_previous_thread_id
, (u32
)thread_id
);
184 acpi_gbl_previous_thread_id
= thread_id
;
185 acpi_gbl_nesting_level
= 0;
189 * Display the module name, current line number, thread ID (if requested),
190 * current procedure nesting level, and the current procedure name
192 acpi_os_printf("%9s-%04ld ", module_name
, line_number
);
194 #ifdef ACPI_APPLICATION
196 * For acpi_exec/iASL only, emit the thread ID and nesting level.
197 * Note: nesting level is really only useful during a single-thread
198 * execution. Otherwise, multiple threads will keep resetting the
201 if (ACPI_LV_THREADS
& acpi_dbg_level
) {
202 acpi_os_printf("[%u] ", (u32
)thread_id
);
205 acpi_os_printf("[%02ld] ", acpi_gbl_nesting_level
);
208 acpi_os_printf("%-22.22s: ", acpi_ut_trim_function_name(function_name
));
210 va_start(args
, format
);
211 acpi_os_vprintf(format
, args
);
215 ACPI_EXPORT_SYMBOL(acpi_debug_print
)
217 /*******************************************************************************
219 * FUNCTION: acpi_debug_print_raw
221 * PARAMETERS: requested_debug_level - Requested debug print level
222 * line_number - Caller's line number
223 * function_name - Caller's procedure name
224 * module_name - Caller's module name
225 * component_id - Caller's component ID
226 * format - Printf format field
227 * ... - Optional printf arguments
231 * DESCRIPTION: Print message with no headers. Has same interface as
232 * debug_print so that the same macros can be used.
234 ******************************************************************************/
235 void ACPI_INTERNAL_VAR_XFACE
236 acpi_debug_print_raw(u32 requested_debug_level
,
238 const char *function_name
,
239 const char *module_name
,
240 u32 component_id
, const char *format
, ...)
244 /* Check if debug output enabled */
246 if (!ACPI_IS_DEBUG_ENABLED(requested_debug_level
, component_id
)) {
250 va_start(args
, format
);
251 acpi_os_vprintf(format
, args
);
255 ACPI_EXPORT_SYMBOL(acpi_debug_print_raw
)
257 /*******************************************************************************
259 * FUNCTION: acpi_ut_trace
261 * PARAMETERS: line_number - Caller's line number
262 * function_name - Caller's procedure name
263 * module_name - Caller's module name
264 * component_id - Caller's component ID
268 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
271 ******************************************************************************/
273 acpi_ut_trace(u32 line_number
,
274 const char *function_name
,
275 const char *module_name
, u32 component_id
)
278 acpi_gbl_nesting_level
++;
279 acpi_ut_track_stack_ptr();
281 /* Check if enabled up-front for performance */
283 if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS
, component_id
)) {
284 acpi_debug_print(ACPI_LV_FUNCTIONS
,
285 line_number
, function_name
, module_name
,
286 component_id
, "%s\n",
287 acpi_gbl_function_entry_prefix
);
291 ACPI_EXPORT_SYMBOL(acpi_ut_trace
)
293 /*******************************************************************************
295 * FUNCTION: acpi_ut_trace_ptr
297 * PARAMETERS: line_number - Caller's line number
298 * function_name - Caller's procedure name
299 * module_name - Caller's module name
300 * component_id - Caller's component ID
301 * pointer - Pointer to display
305 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
308 ******************************************************************************/
310 acpi_ut_trace_ptr(u32 line_number
,
311 const char *function_name
,
312 const char *module_name
,
313 u32 component_id
, const void *pointer
)
316 acpi_gbl_nesting_level
++;
317 acpi_ut_track_stack_ptr();
319 /* Check if enabled up-front for performance */
321 if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS
, component_id
)) {
322 acpi_debug_print(ACPI_LV_FUNCTIONS
,
323 line_number
, function_name
, module_name
,
324 component_id
, "%s %p\n",
325 acpi_gbl_function_entry_prefix
, pointer
);
329 /*******************************************************************************
331 * FUNCTION: acpi_ut_trace_str
333 * PARAMETERS: line_number - Caller's line number
334 * function_name - Caller's procedure name
335 * module_name - Caller's module name
336 * component_id - Caller's component ID
337 * string - Additional string to display
341 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
344 ******************************************************************************/
347 acpi_ut_trace_str(u32 line_number
,
348 const char *function_name
,
349 const char *module_name
, u32 component_id
, const char *string
)
352 acpi_gbl_nesting_level
++;
353 acpi_ut_track_stack_ptr();
355 /* Check if enabled up-front for performance */
357 if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS
, component_id
)) {
358 acpi_debug_print(ACPI_LV_FUNCTIONS
,
359 line_number
, function_name
, module_name
,
360 component_id
, "%s %s\n",
361 acpi_gbl_function_entry_prefix
, string
);
365 /*******************************************************************************
367 * FUNCTION: acpi_ut_trace_u32
369 * PARAMETERS: line_number - Caller's line number
370 * function_name - Caller's procedure name
371 * module_name - Caller's module name
372 * component_id - Caller's component ID
373 * integer - Integer to display
377 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
380 ******************************************************************************/
383 acpi_ut_trace_u32(u32 line_number
,
384 const char *function_name
,
385 const char *module_name
, u32 component_id
, u32 integer
)
388 acpi_gbl_nesting_level
++;
389 acpi_ut_track_stack_ptr();
391 /* Check if enabled up-front for performance */
393 if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS
, component_id
)) {
394 acpi_debug_print(ACPI_LV_FUNCTIONS
,
395 line_number
, function_name
, module_name
,
396 component_id
, "%s %08X\n",
397 acpi_gbl_function_entry_prefix
, integer
);
401 /*******************************************************************************
403 * FUNCTION: acpi_ut_exit
405 * PARAMETERS: line_number - Caller's line number
406 * function_name - Caller's procedure name
407 * module_name - Caller's module name
408 * component_id - Caller's component ID
412 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
415 ******************************************************************************/
418 acpi_ut_exit(u32 line_number
,
419 const char *function_name
,
420 const char *module_name
, u32 component_id
)
423 /* Check if enabled up-front for performance */
425 if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS
, component_id
)) {
426 acpi_debug_print(ACPI_LV_FUNCTIONS
,
427 line_number
, function_name
, module_name
,
428 component_id
, "%s\n",
429 acpi_gbl_function_exit_prefix
);
432 if (acpi_gbl_nesting_level
) {
433 acpi_gbl_nesting_level
--;
437 ACPI_EXPORT_SYMBOL(acpi_ut_exit
)
439 /*******************************************************************************
441 * FUNCTION: acpi_ut_status_exit
443 * PARAMETERS: line_number - Caller's line number
444 * function_name - Caller's procedure name
445 * module_name - Caller's module name
446 * component_id - Caller's component ID
447 * status - Exit status code
451 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
452 * set in debug_level. Prints exit status also.
454 ******************************************************************************/
456 acpi_ut_status_exit(u32 line_number
,
457 const char *function_name
,
458 const char *module_name
,
459 u32 component_id
, acpi_status status
)
462 /* Check if enabled up-front for performance */
464 if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS
, component_id
)) {
465 if (ACPI_SUCCESS(status
)) {
466 acpi_debug_print(ACPI_LV_FUNCTIONS
,
467 line_number
, function_name
,
468 module_name
, component_id
, "%s %s\n",
469 acpi_gbl_function_exit_prefix
,
470 acpi_format_exception(status
));
472 acpi_debug_print(ACPI_LV_FUNCTIONS
,
473 line_number
, function_name
,
474 module_name
, component_id
,
475 "%s ****Exception****: %s\n",
476 acpi_gbl_function_exit_prefix
,
477 acpi_format_exception(status
));
481 if (acpi_gbl_nesting_level
) {
482 acpi_gbl_nesting_level
--;
486 ACPI_EXPORT_SYMBOL(acpi_ut_status_exit
)
488 /*******************************************************************************
490 * FUNCTION: acpi_ut_value_exit
492 * PARAMETERS: line_number - Caller's line number
493 * function_name - Caller's procedure name
494 * module_name - Caller's module name
495 * component_id - Caller's component ID
496 * value - Value to be printed with exit msg
500 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
501 * set in debug_level. Prints exit value also.
503 ******************************************************************************/
505 acpi_ut_value_exit(u32 line_number
,
506 const char *function_name
,
507 const char *module_name
, u32 component_id
, u64 value
)
510 /* Check if enabled up-front for performance */
512 if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS
, component_id
)) {
513 acpi_debug_print(ACPI_LV_FUNCTIONS
,
514 line_number
, function_name
, module_name
,
515 component_id
, "%s %8.8X%8.8X\n",
516 acpi_gbl_function_exit_prefix
,
517 ACPI_FORMAT_UINT64(value
));
520 if (acpi_gbl_nesting_level
) {
521 acpi_gbl_nesting_level
--;
525 ACPI_EXPORT_SYMBOL(acpi_ut_value_exit
)
527 /*******************************************************************************
529 * FUNCTION: acpi_ut_ptr_exit
531 * PARAMETERS: line_number - Caller's line number
532 * function_name - Caller's procedure name
533 * module_name - Caller's module name
534 * component_id - Caller's component ID
535 * ptr - Pointer to display
539 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
540 * set in debug_level. Prints exit value also.
542 ******************************************************************************/
544 acpi_ut_ptr_exit(u32 line_number
,
545 const char *function_name
,
546 const char *module_name
, u32 component_id
, u8
*ptr
)
549 /* Check if enabled up-front for performance */
551 if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS
, component_id
)) {
552 acpi_debug_print(ACPI_LV_FUNCTIONS
,
553 line_number
, function_name
, module_name
,
554 component_id
, "%s %p\n",
555 acpi_gbl_function_exit_prefix
, ptr
);
558 if (acpi_gbl_nesting_level
) {
559 acpi_gbl_nesting_level
--;
563 /*******************************************************************************
565 * FUNCTION: acpi_ut_str_exit
567 * PARAMETERS: line_number - Caller's line number
568 * function_name - Caller's procedure name
569 * module_name - Caller's module name
570 * component_id - Caller's component ID
571 * string - String to display
575 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
576 * set in debug_level. Prints exit value also.
578 ******************************************************************************/
581 acpi_ut_str_exit(u32 line_number
,
582 const char *function_name
,
583 const char *module_name
, u32 component_id
, const char *string
)
586 /* Check if enabled up-front for performance */
588 if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS
, component_id
)) {
589 acpi_debug_print(ACPI_LV_FUNCTIONS
,
590 line_number
, function_name
, module_name
,
591 component_id
, "%s %s\n",
592 acpi_gbl_function_exit_prefix
, string
);
595 if (acpi_gbl_nesting_level
) {
596 acpi_gbl_nesting_level
--;
600 /*******************************************************************************
602 * FUNCTION: acpi_trace_point
604 * PARAMETERS: type - Trace event type
605 * begin - TRUE if before execution
606 * aml - Executed AML address
607 * pathname - Object path
608 * pointer - Pointer to the related object
612 * DESCRIPTION: Interpreter execution trace.
614 ******************************************************************************/
617 acpi_trace_point(acpi_trace_event_type type
, u8 begin
, u8
*aml
, char *pathname
)
620 ACPI_FUNCTION_ENTRY();
622 acpi_ex_trace_point(type
, begin
, aml
, pathname
);
624 #ifdef ACPI_USE_SYSTEM_TRACER
625 acpi_os_trace_point(type
, begin
, aml
, pathname
);
629 ACPI_EXPORT_SYMBOL(acpi_trace_point
)