195b482a8SLen Brown /****************************************************************************** 295b482a8SLen Brown * 3*88ec2860SBob Moore * Module Name: utdebug - Debug print/trace routines 495b482a8SLen Brown * 595b482a8SLen Brown *****************************************************************************/ 695b482a8SLen Brown 795b482a8SLen Brown /* 825f044e6SBob Moore * Copyright (C) 2000 - 2013, Intel Corp. 995b482a8SLen Brown * All rights reserved. 1095b482a8SLen Brown * 1195b482a8SLen Brown * Redistribution and use in source and binary forms, with or without 1295b482a8SLen Brown * modification, are permitted provided that the following conditions 1395b482a8SLen Brown * are met: 1495b482a8SLen Brown * 1. Redistributions of source code must retain the above copyright 1595b482a8SLen Brown * notice, this list of conditions, and the following disclaimer, 1695b482a8SLen Brown * without modification. 1795b482a8SLen Brown * 2. Redistributions in binary form must reproduce at minimum a disclaimer 1895b482a8SLen Brown * substantially similar to the "NO WARRANTY" disclaimer below 1995b482a8SLen Brown * ("Disclaimer") and any redistribution must be conditioned upon 2095b482a8SLen Brown * including a substantially similar Disclaimer requirement for further 2195b482a8SLen Brown * binary redistribution. 2295b482a8SLen Brown * 3. Neither the names of the above-listed copyright holders nor the names 2395b482a8SLen Brown * of any contributors may be used to endorse or promote products derived 2495b482a8SLen Brown * from this software without specific prior written permission. 2595b482a8SLen Brown * 2695b482a8SLen Brown * Alternatively, this software may be distributed under the terms of the 2795b482a8SLen Brown * GNU General Public License ("GPL") version 2 as published by the Free 2895b482a8SLen Brown * Software Foundation. 2995b482a8SLen Brown * 3095b482a8SLen Brown * NO WARRANTY 3195b482a8SLen Brown * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 3295b482a8SLen Brown * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 3395b482a8SLen Brown * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR 3495b482a8SLen Brown * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 3595b482a8SLen Brown * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 3695b482a8SLen Brown * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 3795b482a8SLen Brown * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 3895b482a8SLen Brown * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 3995b482a8SLen Brown * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 4095b482a8SLen Brown * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 4195b482a8SLen Brown * POSSIBILITY OF SUCH DAMAGES. 4295b482a8SLen Brown */ 4395b482a8SLen Brown 44214f2c90SPaul Gortmaker #include <linux/export.h> 4595b482a8SLen Brown #include <acpi/acpi.h> 46e2f7a777SLen Brown #include "accommon.h" 4795b482a8SLen Brown 4895b482a8SLen Brown #define _COMPONENT ACPI_UTILITIES 4995b482a8SLen Brown ACPI_MODULE_NAME("utdebug") 506d33b6beSLv Zheng 5195b482a8SLen Brown #ifdef ACPI_DEBUG_OUTPUT 526d33b6beSLv Zheng static acpi_thread_id acpi_gbl_prev_thread_id = (acpi_thread_id) 0xFFFFFFFF; 5395b482a8SLen Brown static char *acpi_gbl_fn_entry_str = "----Entry"; 5495b482a8SLen Brown static char *acpi_gbl_fn_exit_str = "----Exit-"; 5595b482a8SLen Brown 5695b482a8SLen Brown /* Local prototypes */ 5795b482a8SLen Brown 5895b482a8SLen Brown static const char *acpi_ut_trim_function_name(const char *function_name); 5995b482a8SLen Brown 6095b482a8SLen Brown /******************************************************************************* 6195b482a8SLen Brown * 6295b482a8SLen Brown * FUNCTION: acpi_ut_init_stack_ptr_trace 6395b482a8SLen Brown * 6495b482a8SLen Brown * PARAMETERS: None 6595b482a8SLen Brown * 6695b482a8SLen Brown * RETURN: None 6795b482a8SLen Brown * 6895b482a8SLen Brown * DESCRIPTION: Save the current CPU stack pointer at subsystem startup 6995b482a8SLen Brown * 7095b482a8SLen Brown ******************************************************************************/ 7195b482a8SLen Brown 7295b482a8SLen Brown void acpi_ut_init_stack_ptr_trace(void) 7395b482a8SLen Brown { 7495b482a8SLen Brown acpi_size current_sp; 7595b482a8SLen Brown 7695b482a8SLen Brown acpi_gbl_entry_stack_pointer = ¤t_sp; 7795b482a8SLen Brown } 7895b482a8SLen Brown 7995b482a8SLen Brown /******************************************************************************* 8095b482a8SLen Brown * 8195b482a8SLen Brown * FUNCTION: acpi_ut_track_stack_ptr 8295b482a8SLen Brown * 8395b482a8SLen Brown * PARAMETERS: None 8495b482a8SLen Brown * 8595b482a8SLen Brown * RETURN: None 8695b482a8SLen Brown * 8795b482a8SLen Brown * DESCRIPTION: Save the current CPU stack pointer 8895b482a8SLen Brown * 8995b482a8SLen Brown ******************************************************************************/ 9095b482a8SLen Brown 9195b482a8SLen Brown void acpi_ut_track_stack_ptr(void) 9295b482a8SLen Brown { 9395b482a8SLen Brown acpi_size current_sp; 9495b482a8SLen Brown 9595b482a8SLen Brown if (¤t_sp < acpi_gbl_lowest_stack_pointer) { 9695b482a8SLen Brown acpi_gbl_lowest_stack_pointer = ¤t_sp; 9795b482a8SLen Brown } 9895b482a8SLen Brown 9995b482a8SLen Brown if (acpi_gbl_nesting_level > acpi_gbl_deepest_nesting) { 10095b482a8SLen Brown acpi_gbl_deepest_nesting = acpi_gbl_nesting_level; 10195b482a8SLen Brown } 10295b482a8SLen Brown } 10395b482a8SLen Brown 10495b482a8SLen Brown /******************************************************************************* 10595b482a8SLen Brown * 10695b482a8SLen Brown * FUNCTION: acpi_ut_trim_function_name 10795b482a8SLen Brown * 10895b482a8SLen Brown * PARAMETERS: function_name - Ascii string containing a procedure name 10995b482a8SLen Brown * 11095b482a8SLen Brown * RETURN: Updated pointer to the function name 11195b482a8SLen Brown * 11295b482a8SLen Brown * DESCRIPTION: Remove the "Acpi" prefix from the function name, if present. 1136d33b6beSLv Zheng * This allows compiler macros such as __FUNCTION__ to be used 11495b482a8SLen Brown * with no change to the debug output. 11595b482a8SLen Brown * 11695b482a8SLen Brown ******************************************************************************/ 11795b482a8SLen Brown 11895b482a8SLen Brown static const char *acpi_ut_trim_function_name(const char *function_name) 11995b482a8SLen Brown { 12095b482a8SLen Brown 12195b482a8SLen Brown /* All Function names are longer than 4 chars, check is safe */ 12295b482a8SLen Brown 12395b482a8SLen Brown if (*(ACPI_CAST_PTR(u32, function_name)) == ACPI_PREFIX_MIXED) { 12495b482a8SLen Brown 12595b482a8SLen Brown /* This is the case where the original source has not been modified */ 12695b482a8SLen Brown 12795b482a8SLen Brown return (function_name + 4); 12895b482a8SLen Brown } 12995b482a8SLen Brown 13095b482a8SLen Brown if (*(ACPI_CAST_PTR(u32, function_name)) == ACPI_PREFIX_LOWER) { 13195b482a8SLen Brown 13295b482a8SLen Brown /* This is the case where the source has been 'linuxized' */ 13395b482a8SLen Brown 13495b482a8SLen Brown return (function_name + 5); 13595b482a8SLen Brown } 13695b482a8SLen Brown 13795b482a8SLen Brown return (function_name); 13895b482a8SLen Brown } 13995b482a8SLen Brown 14095b482a8SLen Brown /******************************************************************************* 14195b482a8SLen Brown * 14295b482a8SLen Brown * FUNCTION: acpi_debug_print 14395b482a8SLen Brown * 14495b482a8SLen Brown * PARAMETERS: requested_debug_level - Requested debug print level 14595b482a8SLen Brown * line_number - Caller's line number (for error output) 14695b482a8SLen Brown * function_name - Caller's procedure name 14795b482a8SLen Brown * module_name - Caller's module name 14895b482a8SLen Brown * component_id - Caller's component ID 149ba494beeSBob Moore * format - Printf format field 15095b482a8SLen Brown * ... - Optional printf arguments 15195b482a8SLen Brown * 15295b482a8SLen Brown * RETURN: None 15395b482a8SLen Brown * 15495b482a8SLen Brown * DESCRIPTION: Print error message with prefix consisting of the module name, 15595b482a8SLen Brown * line number, and component ID. 15695b482a8SLen Brown * 15795b482a8SLen Brown ******************************************************************************/ 15895b482a8SLen Brown 15995b482a8SLen Brown void ACPI_INTERNAL_VAR_XFACE 16095b482a8SLen Brown acpi_debug_print(u32 requested_debug_level, 16195b482a8SLen Brown u32 line_number, 16295b482a8SLen Brown const char *function_name, 16395b482a8SLen Brown const char *module_name, 16495b482a8SLen Brown u32 component_id, const char *format, ...) 16595b482a8SLen Brown { 16695b482a8SLen Brown acpi_thread_id thread_id; 16795b482a8SLen Brown va_list args; 16895b482a8SLen Brown 169db38bf5aSBob Moore /* Check if debug output enabled */ 170db38bf5aSBob Moore 171db38bf5aSBob Moore if (!ACPI_IS_DEBUG_ENABLED(requested_debug_level, component_id)) { 17295b482a8SLen Brown return; 17395b482a8SLen Brown } 17495b482a8SLen Brown 17595b482a8SLen Brown /* 17695b482a8SLen Brown * Thread tracking and context switch notification 17795b482a8SLen Brown */ 17895b482a8SLen Brown thread_id = acpi_os_get_thread_id(); 17995b482a8SLen Brown if (thread_id != acpi_gbl_prev_thread_id) { 18095b482a8SLen Brown if (ACPI_LV_THREADS & acpi_dbg_level) { 18195b482a8SLen Brown acpi_os_printf 18228eb3fcfSLin Ming ("\n**** Context Switch from TID %u to TID %u ****\n\n", 18328eb3fcfSLin Ming (u32)acpi_gbl_prev_thread_id, (u32)thread_id); 18495b482a8SLen Brown } 18595b482a8SLen Brown 18695b482a8SLen Brown acpi_gbl_prev_thread_id = thread_id; 18795b482a8SLen Brown } 18895b482a8SLen Brown 18995b482a8SLen Brown /* 19095b482a8SLen Brown * Display the module name, current line number, thread ID (if requested), 19195b482a8SLen Brown * current procedure nesting level, and the current procedure name 19295b482a8SLen Brown */ 19395b482a8SLen Brown acpi_os_printf("%8s-%04ld ", module_name, line_number); 19495b482a8SLen Brown 19595b482a8SLen Brown if (ACPI_LV_THREADS & acpi_dbg_level) { 19628eb3fcfSLin Ming acpi_os_printf("[%u] ", (u32)thread_id); 19795b482a8SLen Brown } 19895b482a8SLen Brown 19995b482a8SLen Brown acpi_os_printf("[%02ld] %-22.22s: ", 20095b482a8SLen Brown acpi_gbl_nesting_level, 20195b482a8SLen Brown acpi_ut_trim_function_name(function_name)); 20295b482a8SLen Brown 20395b482a8SLen Brown va_start(args, format); 20495b482a8SLen Brown acpi_os_vprintf(format, args); 20595b482a8SLen Brown va_end(args); 20695b482a8SLen Brown } 20795b482a8SLen Brown 20895b482a8SLen Brown ACPI_EXPORT_SYMBOL(acpi_debug_print) 20995b482a8SLen Brown 21095b482a8SLen Brown /******************************************************************************* 21195b482a8SLen Brown * 21295b482a8SLen Brown * FUNCTION: acpi_debug_print_raw 21395b482a8SLen Brown * 21495b482a8SLen Brown * PARAMETERS: requested_debug_level - Requested debug print level 21595b482a8SLen Brown * line_number - Caller's line number 21695b482a8SLen Brown * function_name - Caller's procedure name 21795b482a8SLen Brown * module_name - Caller's module name 21895b482a8SLen Brown * component_id - Caller's component ID 219ba494beeSBob Moore * format - Printf format field 22095b482a8SLen Brown * ... - Optional printf arguments 22195b482a8SLen Brown * 22295b482a8SLen Brown * RETURN: None 22395b482a8SLen Brown * 22495b482a8SLen Brown * DESCRIPTION: Print message with no headers. Has same interface as 22595b482a8SLen Brown * debug_print so that the same macros can be used. 22695b482a8SLen Brown * 22795b482a8SLen Brown ******************************************************************************/ 22895b482a8SLen Brown void ACPI_INTERNAL_VAR_XFACE 22995b482a8SLen Brown acpi_debug_print_raw(u32 requested_debug_level, 23095b482a8SLen Brown u32 line_number, 23195b482a8SLen Brown const char *function_name, 23295b482a8SLen Brown const char *module_name, 23395b482a8SLen Brown u32 component_id, const char *format, ...) 23495b482a8SLen Brown { 23595b482a8SLen Brown va_list args; 23695b482a8SLen Brown 237db38bf5aSBob Moore /* Check if debug output enabled */ 238db38bf5aSBob Moore 239db38bf5aSBob Moore if (!ACPI_IS_DEBUG_ENABLED(requested_debug_level, component_id)) { 24095b482a8SLen Brown return; 24195b482a8SLen Brown } 24295b482a8SLen Brown 24395b482a8SLen Brown va_start(args, format); 24495b482a8SLen Brown acpi_os_vprintf(format, args); 24595b482a8SLen Brown va_end(args); 24695b482a8SLen Brown } 24795b482a8SLen Brown 24895b482a8SLen Brown ACPI_EXPORT_SYMBOL(acpi_debug_print_raw) 24995b482a8SLen Brown 25095b482a8SLen Brown /******************************************************************************* 25195b482a8SLen Brown * 25295b482a8SLen Brown * FUNCTION: acpi_ut_trace 25395b482a8SLen Brown * 25495b482a8SLen Brown * PARAMETERS: line_number - Caller's line number 25595b482a8SLen Brown * function_name - Caller's procedure name 25695b482a8SLen Brown * module_name - Caller's module name 25795b482a8SLen Brown * component_id - Caller's component ID 25895b482a8SLen Brown * 25995b482a8SLen Brown * RETURN: None 26095b482a8SLen Brown * 26195b482a8SLen Brown * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is 26295b482a8SLen Brown * set in debug_level 26395b482a8SLen Brown * 26495b482a8SLen Brown ******************************************************************************/ 26595b482a8SLen Brown void 26695b482a8SLen Brown acpi_ut_trace(u32 line_number, 26795b482a8SLen Brown const char *function_name, 26895b482a8SLen Brown const char *module_name, u32 component_id) 26995b482a8SLen Brown { 27095b482a8SLen Brown 27195b482a8SLen Brown acpi_gbl_nesting_level++; 27295b482a8SLen Brown acpi_ut_track_stack_ptr(); 27395b482a8SLen Brown 274db38bf5aSBob Moore /* Check if enabled up-front for performance */ 275db38bf5aSBob Moore 276db38bf5aSBob Moore if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS, component_id)) { 27795b482a8SLen Brown acpi_debug_print(ACPI_LV_FUNCTIONS, 278db38bf5aSBob Moore line_number, function_name, module_name, 279db38bf5aSBob Moore component_id, "%s\n", acpi_gbl_fn_entry_str); 280db38bf5aSBob Moore } 28195b482a8SLen Brown } 28295b482a8SLen Brown 28395b482a8SLen Brown ACPI_EXPORT_SYMBOL(acpi_ut_trace) 28495b482a8SLen Brown 28595b482a8SLen Brown /******************************************************************************* 28695b482a8SLen Brown * 28795b482a8SLen Brown * FUNCTION: acpi_ut_trace_ptr 28895b482a8SLen Brown * 28995b482a8SLen Brown * PARAMETERS: line_number - Caller's line number 29095b482a8SLen Brown * function_name - Caller's procedure name 29195b482a8SLen Brown * module_name - Caller's module name 29295b482a8SLen Brown * component_id - Caller's component ID 293ba494beeSBob Moore * pointer - Pointer to display 29495b482a8SLen Brown * 29595b482a8SLen Brown * RETURN: None 29695b482a8SLen Brown * 29795b482a8SLen Brown * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is 29895b482a8SLen Brown * set in debug_level 29995b482a8SLen Brown * 30095b482a8SLen Brown ******************************************************************************/ 30195b482a8SLen Brown void 30295b482a8SLen Brown acpi_ut_trace_ptr(u32 line_number, 30395b482a8SLen Brown const char *function_name, 30495b482a8SLen Brown const char *module_name, u32 component_id, void *pointer) 30595b482a8SLen Brown { 30668aafc35SBob Moore 30795b482a8SLen Brown acpi_gbl_nesting_level++; 30895b482a8SLen Brown acpi_ut_track_stack_ptr(); 30995b482a8SLen Brown 310db38bf5aSBob Moore /* Check if enabled up-front for performance */ 311db38bf5aSBob Moore 312db38bf5aSBob Moore if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS, component_id)) { 31395b482a8SLen Brown acpi_debug_print(ACPI_LV_FUNCTIONS, 314db38bf5aSBob Moore line_number, function_name, module_name, 315db38bf5aSBob Moore component_id, "%s %p\n", acpi_gbl_fn_entry_str, 316db38bf5aSBob Moore pointer); 317db38bf5aSBob Moore } 31895b482a8SLen Brown } 31995b482a8SLen Brown 32095b482a8SLen Brown /******************************************************************************* 32195b482a8SLen Brown * 32295b482a8SLen Brown * FUNCTION: acpi_ut_trace_str 32395b482a8SLen Brown * 32495b482a8SLen Brown * PARAMETERS: line_number - Caller's line number 32595b482a8SLen Brown * function_name - Caller's procedure name 32695b482a8SLen Brown * module_name - Caller's module name 32795b482a8SLen Brown * component_id - Caller's component ID 328ba494beeSBob Moore * string - Additional string to display 32995b482a8SLen Brown * 33095b482a8SLen Brown * RETURN: None 33195b482a8SLen Brown * 33295b482a8SLen Brown * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is 33395b482a8SLen Brown * set in debug_level 33495b482a8SLen Brown * 33595b482a8SLen Brown ******************************************************************************/ 33695b482a8SLen Brown 33795b482a8SLen Brown void 33895b482a8SLen Brown acpi_ut_trace_str(u32 line_number, 33995b482a8SLen Brown const char *function_name, 34095b482a8SLen Brown const char *module_name, u32 component_id, char *string) 34195b482a8SLen Brown { 34295b482a8SLen Brown 34395b482a8SLen Brown acpi_gbl_nesting_level++; 34495b482a8SLen Brown acpi_ut_track_stack_ptr(); 34595b482a8SLen Brown 346db38bf5aSBob Moore /* Check if enabled up-front for performance */ 347db38bf5aSBob Moore 348db38bf5aSBob Moore if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS, component_id)) { 34995b482a8SLen Brown acpi_debug_print(ACPI_LV_FUNCTIONS, 350db38bf5aSBob Moore line_number, function_name, module_name, 351db38bf5aSBob Moore component_id, "%s %s\n", acpi_gbl_fn_entry_str, 352db38bf5aSBob Moore string); 353db38bf5aSBob Moore } 35495b482a8SLen Brown } 35595b482a8SLen Brown 35695b482a8SLen Brown /******************************************************************************* 35795b482a8SLen Brown * 35895b482a8SLen Brown * FUNCTION: acpi_ut_trace_u32 35995b482a8SLen Brown * 36095b482a8SLen Brown * PARAMETERS: line_number - Caller's line number 36195b482a8SLen Brown * function_name - Caller's procedure name 36295b482a8SLen Brown * module_name - Caller's module name 36395b482a8SLen Brown * component_id - Caller's component ID 364ba494beeSBob Moore * integer - Integer to display 36595b482a8SLen Brown * 36695b482a8SLen Brown * RETURN: None 36795b482a8SLen Brown * 36895b482a8SLen Brown * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is 36995b482a8SLen Brown * set in debug_level 37095b482a8SLen Brown * 37195b482a8SLen Brown ******************************************************************************/ 37295b482a8SLen Brown 37395b482a8SLen Brown void 37495b482a8SLen Brown acpi_ut_trace_u32(u32 line_number, 37595b482a8SLen Brown const char *function_name, 37695b482a8SLen Brown const char *module_name, u32 component_id, u32 integer) 37795b482a8SLen Brown { 37895b482a8SLen Brown 37995b482a8SLen Brown acpi_gbl_nesting_level++; 38095b482a8SLen Brown acpi_ut_track_stack_ptr(); 38195b482a8SLen Brown 382db38bf5aSBob Moore /* Check if enabled up-front for performance */ 383db38bf5aSBob Moore 384db38bf5aSBob Moore if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS, component_id)) { 38595b482a8SLen Brown acpi_debug_print(ACPI_LV_FUNCTIONS, 386db38bf5aSBob Moore line_number, function_name, module_name, 387db38bf5aSBob Moore component_id, "%s %08X\n", 388db38bf5aSBob Moore acpi_gbl_fn_entry_str, integer); 389db38bf5aSBob Moore } 39095b482a8SLen Brown } 39195b482a8SLen Brown 39295b482a8SLen Brown /******************************************************************************* 39395b482a8SLen Brown * 39495b482a8SLen Brown * FUNCTION: acpi_ut_exit 39595b482a8SLen Brown * 39695b482a8SLen Brown * PARAMETERS: line_number - Caller's line number 39795b482a8SLen Brown * function_name - Caller's procedure name 39895b482a8SLen Brown * module_name - Caller's module name 39995b482a8SLen Brown * component_id - Caller's component ID 40095b482a8SLen Brown * 40195b482a8SLen Brown * RETURN: None 40295b482a8SLen Brown * 40395b482a8SLen Brown * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is 40495b482a8SLen Brown * set in debug_level 40595b482a8SLen Brown * 40695b482a8SLen Brown ******************************************************************************/ 40795b482a8SLen Brown 40895b482a8SLen Brown void 40995b482a8SLen Brown acpi_ut_exit(u32 line_number, 41095b482a8SLen Brown const char *function_name, 41195b482a8SLen Brown const char *module_name, u32 component_id) 41295b482a8SLen Brown { 41395b482a8SLen Brown 414db38bf5aSBob Moore /* Check if enabled up-front for performance */ 415db38bf5aSBob Moore 416db38bf5aSBob Moore if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS, component_id)) { 41795b482a8SLen Brown acpi_debug_print(ACPI_LV_FUNCTIONS, 418db38bf5aSBob Moore line_number, function_name, module_name, 419db38bf5aSBob Moore component_id, "%s\n", acpi_gbl_fn_exit_str); 420db38bf5aSBob Moore } 42195b482a8SLen Brown 42295b482a8SLen Brown acpi_gbl_nesting_level--; 42395b482a8SLen Brown } 42495b482a8SLen Brown 42595b482a8SLen Brown ACPI_EXPORT_SYMBOL(acpi_ut_exit) 42695b482a8SLen Brown 42795b482a8SLen Brown /******************************************************************************* 42895b482a8SLen Brown * 42995b482a8SLen Brown * FUNCTION: acpi_ut_status_exit 43095b482a8SLen Brown * 43195b482a8SLen Brown * PARAMETERS: line_number - Caller's line number 43295b482a8SLen Brown * function_name - Caller's procedure name 43395b482a8SLen Brown * module_name - Caller's module name 43495b482a8SLen Brown * component_id - Caller's component ID 435ba494beeSBob Moore * status - Exit status code 43695b482a8SLen Brown * 43795b482a8SLen Brown * RETURN: None 43895b482a8SLen Brown * 43995b482a8SLen Brown * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is 44095b482a8SLen Brown * set in debug_level. Prints exit status also. 44195b482a8SLen Brown * 44295b482a8SLen Brown ******************************************************************************/ 44395b482a8SLen Brown void 44495b482a8SLen Brown acpi_ut_status_exit(u32 line_number, 44595b482a8SLen Brown const char *function_name, 44695b482a8SLen Brown const char *module_name, 44795b482a8SLen Brown u32 component_id, acpi_status status) 44895b482a8SLen Brown { 44995b482a8SLen Brown 450db38bf5aSBob Moore /* Check if enabled up-front for performance */ 451db38bf5aSBob Moore 452db38bf5aSBob Moore if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS, component_id)) { 45395b482a8SLen Brown if (ACPI_SUCCESS(status)) { 45495b482a8SLen Brown acpi_debug_print(ACPI_LV_FUNCTIONS, 455db38bf5aSBob Moore line_number, function_name, 456db38bf5aSBob Moore module_name, component_id, "%s %s\n", 457db38bf5aSBob Moore acpi_gbl_fn_exit_str, 45895b482a8SLen Brown acpi_format_exception(status)); 45995b482a8SLen Brown } else { 46095b482a8SLen Brown acpi_debug_print(ACPI_LV_FUNCTIONS, 461db38bf5aSBob Moore line_number, function_name, 462db38bf5aSBob Moore module_name, component_id, 463db38bf5aSBob Moore "%s ****Exception****: %s\n", 46495b482a8SLen Brown acpi_gbl_fn_exit_str, 46595b482a8SLen Brown acpi_format_exception(status)); 46695b482a8SLen Brown } 467db38bf5aSBob Moore } 46895b482a8SLen Brown 46995b482a8SLen Brown acpi_gbl_nesting_level--; 47095b482a8SLen Brown } 47195b482a8SLen Brown 47295b482a8SLen Brown ACPI_EXPORT_SYMBOL(acpi_ut_status_exit) 47395b482a8SLen Brown 47495b482a8SLen Brown /******************************************************************************* 47595b482a8SLen Brown * 47695b482a8SLen Brown * FUNCTION: acpi_ut_value_exit 47795b482a8SLen Brown * 47895b482a8SLen Brown * PARAMETERS: line_number - Caller's line number 47995b482a8SLen Brown * function_name - Caller's procedure name 48095b482a8SLen Brown * module_name - Caller's module name 48195b482a8SLen Brown * component_id - Caller's component ID 482ba494beeSBob Moore * value - Value to be printed with exit msg 48395b482a8SLen Brown * 48495b482a8SLen Brown * RETURN: None 48595b482a8SLen Brown * 48695b482a8SLen Brown * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is 48795b482a8SLen Brown * set in debug_level. Prints exit value also. 48895b482a8SLen Brown * 48995b482a8SLen Brown ******************************************************************************/ 49095b482a8SLen Brown void 49195b482a8SLen Brown acpi_ut_value_exit(u32 line_number, 49295b482a8SLen Brown const char *function_name, 4935df7e6cbSBob Moore const char *module_name, u32 component_id, u64 value) 49495b482a8SLen Brown { 49595b482a8SLen Brown 496db38bf5aSBob Moore /* Check if enabled up-front for performance */ 497db38bf5aSBob Moore 498db38bf5aSBob Moore if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS, component_id)) { 49995b482a8SLen Brown acpi_debug_print(ACPI_LV_FUNCTIONS, 500db38bf5aSBob Moore line_number, function_name, module_name, 501db38bf5aSBob Moore component_id, "%s %8.8X%8.8X\n", 502db38bf5aSBob Moore acpi_gbl_fn_exit_str, 50395b482a8SLen Brown ACPI_FORMAT_UINT64(value)); 504db38bf5aSBob Moore } 50595b482a8SLen Brown 50695b482a8SLen Brown acpi_gbl_nesting_level--; 50795b482a8SLen Brown } 50895b482a8SLen Brown 50995b482a8SLen Brown ACPI_EXPORT_SYMBOL(acpi_ut_value_exit) 51095b482a8SLen Brown 51195b482a8SLen Brown /******************************************************************************* 51295b482a8SLen Brown * 51395b482a8SLen Brown * FUNCTION: acpi_ut_ptr_exit 51495b482a8SLen Brown * 51595b482a8SLen Brown * PARAMETERS: line_number - Caller's line number 51695b482a8SLen Brown * function_name - Caller's procedure name 51795b482a8SLen Brown * module_name - Caller's module name 51895b482a8SLen Brown * component_id - Caller's component ID 519ba494beeSBob Moore * ptr - Pointer to display 52095b482a8SLen Brown * 52195b482a8SLen Brown * RETURN: None 52295b482a8SLen Brown * 52395b482a8SLen Brown * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is 52495b482a8SLen Brown * set in debug_level. Prints exit value also. 52595b482a8SLen Brown * 52695b482a8SLen Brown ******************************************************************************/ 52795b482a8SLen Brown void 52895b482a8SLen Brown acpi_ut_ptr_exit(u32 line_number, 52995b482a8SLen Brown const char *function_name, 53095b482a8SLen Brown const char *module_name, u32 component_id, u8 *ptr) 53195b482a8SLen Brown { 53295b482a8SLen Brown 533db38bf5aSBob Moore /* Check if enabled up-front for performance */ 534db38bf5aSBob Moore 535db38bf5aSBob Moore if (ACPI_IS_DEBUG_ENABLED(ACPI_LV_FUNCTIONS, component_id)) { 53695b482a8SLen Brown acpi_debug_print(ACPI_LV_FUNCTIONS, 537db38bf5aSBob Moore line_number, function_name, module_name, 538db38bf5aSBob Moore component_id, "%s %p\n", acpi_gbl_fn_exit_str, 539db38bf5aSBob Moore ptr); 540db38bf5aSBob Moore } 54195b482a8SLen Brown 54295b482a8SLen Brown acpi_gbl_nesting_level--; 54395b482a8SLen Brown } 54495b482a8SLen Brown 54595b482a8SLen Brown #endif 546