blob: 9e9054e155c17837549049dfe4a4dfd186402e4a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: utdebug - Debug print routines
4 *
5 *****************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
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.
25 *
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.
29 *
30 * NO WARRANTY
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.
42 */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
45
46#define _COMPONENT ACPI_UTILITIES
Len Brown4be44fc2005-08-05 00:44:28 -040047ACPI_MODULE_NAME("utdebug")
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#ifdef ACPI_DEBUG_OUTPUT
Len Brownab8aa062006-07-07 20:11:07 -040050static acpi_thread_id acpi_gbl_prev_thread_id;
Len Brown4be44fc2005-08-05 00:44:28 -040051static char *acpi_gbl_fn_entry_str = "----Entry";
52static char *acpi_gbl_fn_exit_str = "----Exit-";
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Robert Moore0c9938c2005-07-29 15:15:00 -070054/* Local prototypes */
55
Len Brown4be44fc2005-08-05 00:44:28 -040056static const char *acpi_ut_trim_function_name(const char *function_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Robert Moore44f6c012005-04-18 22:49:35 -040058/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 *
60 * FUNCTION: acpi_ut_init_stack_ptr_trace
61 *
62 * PARAMETERS: None
63 *
64 * RETURN: None
65 *
Robert Moore44f6c012005-04-18 22:49:35 -040066 * DESCRIPTION: Save the current CPU stack pointer at subsystem startup
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 *
Robert Moore44f6c012005-04-18 22:49:35 -040068 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Len Brown4be44fc2005-08-05 00:44:28 -040070void acpi_ut_init_stack_ptr_trace(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Len Brown4be44fc2005-08-05 00:44:28 -040072 u32 current_sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Len Brown4be44fc2005-08-05 00:44:28 -040074 acpi_gbl_entry_stack_pointer = ACPI_PTR_DIFF(&current_sp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
Robert Moore44f6c012005-04-18 22:49:35 -040077/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
79 * FUNCTION: acpi_ut_track_stack_ptr
80 *
81 * PARAMETERS: None
82 *
83 * RETURN: None
84 *
Robert Moore44f6c012005-04-18 22:49:35 -040085 * DESCRIPTION: Save the current CPU stack pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 *
Robert Moore44f6c012005-04-18 22:49:35 -040087 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Len Brown4be44fc2005-08-05 00:44:28 -040089void acpi_ut_track_stack_ptr(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Len Brown4be44fc2005-08-05 00:44:28 -040091 acpi_size current_sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Len Brown4be44fc2005-08-05 00:44:28 -040093 current_sp = ACPI_PTR_DIFF(&current_sp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 if (current_sp < acpi_gbl_lowest_stack_pointer) {
96 acpi_gbl_lowest_stack_pointer = current_sp;
97 }
98
99 if (acpi_gbl_nesting_level > acpi_gbl_deepest_nesting) {
100 acpi_gbl_deepest_nesting = acpi_gbl_nesting_level;
101 }
102}
103
Robert Moore44f6c012005-04-18 22:49:35 -0400104/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 *
Robert Moore0c9938c2005-07-29 15:15:00 -0700106 * FUNCTION: acpi_ut_trim_function_name
107 *
108 * PARAMETERS: function_name - Ascii string containing a procedure name
109 *
110 * RETURN: Updated pointer to the function name
111 *
112 * DESCRIPTION: Remove the "Acpi" prefix from the function name, if present.
113 * This allows compiler macros such as __FUNCTION__ to be used
114 * with no change to the debug output.
115 *
116 ******************************************************************************/
117
Len Brown4be44fc2005-08-05 00:44:28 -0400118static const char *acpi_ut_trim_function_name(const char *function_name)
Robert Moore0c9938c2005-07-29 15:15:00 -0700119{
120
121 /* All Function names are longer than 4 chars, check is safe */
122
Bob Moorea18ecf42005-08-15 03:42:00 -0800123 if (*(ACPI_CAST_PTR(u32, function_name)) == ACPI_PREFIX_MIXED) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400124
Robert Moore0c9938c2005-07-29 15:15:00 -0700125 /* This is the case where the original source has not been modified */
126
127 return (function_name + 4);
128 }
129
Bob Moorea18ecf42005-08-15 03:42:00 -0800130 if (*(ACPI_CAST_PTR(u32, function_name)) == ACPI_PREFIX_LOWER) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400131
Robert Moore0c9938c2005-07-29 15:15:00 -0700132 /* This is the case where the source has been 'linuxized' */
133
134 return (function_name + 5);
135 }
136
137 return (function_name);
138}
139
Robert Moore0c9938c2005-07-29 15:15:00 -0700140/*******************************************************************************
141 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 * FUNCTION: acpi_ut_debug_print
143 *
Robert Moore44f6c012005-04-18 22:49:35 -0400144 * PARAMETERS: requested_debug_level - Requested debug print level
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 * line_number - Caller's line number (for error output)
Robert Mooref9f46012005-07-08 00:00:00 -0400146 * function_name - Caller's procedure name
147 * module_name - Caller's module name
148 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 * Format - Printf format field
150 * ... - Optional printf arguments
151 *
152 * RETURN: None
153 *
154 * DESCRIPTION: Print error message with prefix consisting of the module name,
155 * line number, and component ID.
156 *
Robert Moore44f6c012005-04-18 22:49:35 -0400157 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Len Brown4be44fc2005-08-05 00:44:28 -0400159void ACPI_INTERNAL_VAR_XFACE
160acpi_ut_debug_print(u32 requested_debug_level,
161 u32 line_number,
162 const char *function_name,
163 char *module_name, u32 component_id, char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Bob Moore83135242006-10-03 00:00:00 -0400165 acpi_thread_id thread_id;
Len Brown4be44fc2005-08-05 00:44:28 -0400166 va_list args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 /*
169 * Stay silent if the debug level or component ID is disabled
170 */
171 if (!(requested_debug_level & acpi_dbg_level) ||
Len Brown4be44fc2005-08-05 00:44:28 -0400172 !(component_id & acpi_dbg_layer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return;
174 }
175
176 /*
177 * Thread tracking and context switch notification
178 */
Len Brown4be44fc2005-08-05 00:44:28 -0400179 thread_id = acpi_os_get_thread_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (thread_id != acpi_gbl_prev_thread_id) {
181 if (ACPI_LV_THREADS & acpi_dbg_level) {
Len Brown4be44fc2005-08-05 00:44:28 -0400182 acpi_os_printf
Martin Bligh965a3d42006-10-20 14:30:26 -0700183 ("\n**** Context Switch from TID %lX to TID %lX ****\n\n",
184 (unsigned long) acpi_gbl_prev_thread_id,
185 (unsigned long) thread_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187
188 acpi_gbl_prev_thread_id = thread_id;
189 }
190
191 /*
192 * Display the module name, current line number, thread ID (if requested),
193 * current procedure nesting level, and the current procedure name
194 */
Len Brown4be44fc2005-08-05 00:44:28 -0400195 acpi_os_printf("%8s-%04ld ", module_name, line_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 if (ACPI_LV_THREADS & acpi_dbg_level) {
Len Brown4be44fc2005-08-05 00:44:28 -0400198 acpi_os_printf("[%04lX] ", thread_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200
Len Brown4be44fc2005-08-05 00:44:28 -0400201 acpi_os_printf("[%02ld] %-22.22s: ",
202 acpi_gbl_nesting_level,
203 acpi_ut_trim_function_name(function_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Len Brown4be44fc2005-08-05 00:44:28 -0400205 va_start(args, format);
206 acpi_os_vprintf(format, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
Robert Moore44f6c012005-04-18 22:49:35 -0400208
Bob Moore83135242006-10-03 00:00:00 -0400209ACPI_EXPORT_SYMBOL(acpi_ut_debug_print)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Robert Moore44f6c012005-04-18 22:49:35 -0400211/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 *
213 * FUNCTION: acpi_ut_debug_print_raw
214 *
215 * PARAMETERS: requested_debug_level - Requested debug print level
216 * line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400217 * function_name - Caller's procedure name
218 * module_name - Caller's module name
219 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 * Format - Printf format field
221 * ... - Optional printf arguments
222 *
223 * RETURN: None
224 *
225 * DESCRIPTION: Print message with no headers. Has same interface as
226 * debug_print so that the same macros can be used.
227 *
Robert Moore44f6c012005-04-18 22:49:35 -0400228 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400229void ACPI_INTERNAL_VAR_XFACE
230acpi_ut_debug_print_raw(u32 requested_debug_level,
231 u32 line_number,
232 const char *function_name,
233 char *module_name, u32 component_id, char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Len Brown4be44fc2005-08-05 00:44:28 -0400235 va_list args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 if (!(requested_debug_level & acpi_dbg_level) ||
Len Brown4be44fc2005-08-05 00:44:28 -0400238 !(component_id & acpi_dbg_layer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return;
240 }
241
Len Brown4be44fc2005-08-05 00:44:28 -0400242 va_start(args, format);
243 acpi_os_vprintf(format, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Bob Moore83135242006-10-03 00:00:00 -0400246ACPI_EXPORT_SYMBOL(acpi_ut_debug_print_raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Robert Moore44f6c012005-04-18 22:49:35 -0400248/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 *
250 * FUNCTION: acpi_ut_trace
251 *
252 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400253 * function_name - Caller's procedure name
254 * module_name - Caller's module name
255 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 *
257 * RETURN: None
258 *
259 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
260 * set in debug_level
261 *
Robert Moore44f6c012005-04-18 22:49:35 -0400262 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263void
Len Brown4be44fc2005-08-05 00:44:28 -0400264acpi_ut_trace(u32 line_number,
265 const char *function_name, char *module_name, u32 component_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267
268 acpi_gbl_nesting_level++;
Len Brown4be44fc2005-08-05 00:44:28 -0400269 acpi_ut_track_stack_ptr();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Len Brown4be44fc2005-08-05 00:44:28 -0400271 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
272 line_number, function_name, module_name,
273 component_id, "%s\n", acpi_gbl_fn_entry_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Bob Moore83135242006-10-03 00:00:00 -0400276ACPI_EXPORT_SYMBOL(acpi_ut_trace)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Robert Moore44f6c012005-04-18 22:49:35 -0400278/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 *
280 * FUNCTION: acpi_ut_trace_ptr
281 *
282 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400283 * function_name - Caller's procedure name
284 * module_name - Caller's module name
285 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 * Pointer - Pointer to display
287 *
288 * RETURN: None
289 *
290 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
291 * set in debug_level
292 *
Robert Moore44f6c012005-04-18 22:49:35 -0400293 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294void
Len Brown4be44fc2005-08-05 00:44:28 -0400295acpi_ut_trace_ptr(u32 line_number,
296 const char *function_name,
297 char *module_name, u32 component_id, void *pointer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 acpi_gbl_nesting_level++;
Len Brown4be44fc2005-08-05 00:44:28 -0400300 acpi_ut_track_stack_ptr();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Len Brown4be44fc2005-08-05 00:44:28 -0400302 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
303 line_number, function_name, module_name,
304 component_id, "%s %p\n", acpi_gbl_fn_entry_str,
305 pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Robert Moore44f6c012005-04-18 22:49:35 -0400308/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 *
310 * FUNCTION: acpi_ut_trace_str
311 *
312 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400313 * function_name - Caller's procedure name
314 * module_name - Caller's module name
315 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 * String - Additional string to display
317 *
318 * RETURN: None
319 *
320 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
321 * set in debug_level
322 *
Robert Moore44f6c012005-04-18 22:49:35 -0400323 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325void
Len Brown4be44fc2005-08-05 00:44:28 -0400326acpi_ut_trace_str(u32 line_number,
327 const char *function_name,
328 char *module_name, u32 component_id, char *string)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330
331 acpi_gbl_nesting_level++;
Len Brown4be44fc2005-08-05 00:44:28 -0400332 acpi_ut_track_stack_ptr();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Len Brown4be44fc2005-08-05 00:44:28 -0400334 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
335 line_number, function_name, module_name,
336 component_id, "%s %s\n", acpi_gbl_fn_entry_str,
337 string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Robert Moore44f6c012005-04-18 22:49:35 -0400340/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 *
342 * FUNCTION: acpi_ut_trace_u32
343 *
344 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400345 * function_name - Caller's procedure name
346 * module_name - Caller's module name
347 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 * Integer - Integer to display
349 *
350 * RETURN: None
351 *
352 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
353 * set in debug_level
354 *
Robert Moore44f6c012005-04-18 22:49:35 -0400355 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357void
Len Brown4be44fc2005-08-05 00:44:28 -0400358acpi_ut_trace_u32(u32 line_number,
359 const char *function_name,
360 char *module_name, u32 component_id, u32 integer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362
363 acpi_gbl_nesting_level++;
Len Brown4be44fc2005-08-05 00:44:28 -0400364 acpi_ut_track_stack_ptr();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Len Brown4be44fc2005-08-05 00:44:28 -0400366 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
367 line_number, function_name, module_name,
368 component_id, "%s %08X\n", acpi_gbl_fn_entry_str,
369 integer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
Robert Moore44f6c012005-04-18 22:49:35 -0400372/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 *
374 * FUNCTION: acpi_ut_exit
375 *
376 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400377 * function_name - Caller's procedure name
378 * module_name - Caller's module name
379 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 *
381 * RETURN: None
382 *
383 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
384 * set in debug_level
385 *
Robert Moore44f6c012005-04-18 22:49:35 -0400386 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388void
Len Brown4be44fc2005-08-05 00:44:28 -0400389acpi_ut_exit(u32 line_number,
390 const char *function_name, char *module_name, u32 component_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
392
Len Brown4be44fc2005-08-05 00:44:28 -0400393 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
394 line_number, function_name, module_name,
395 component_id, "%s\n", acpi_gbl_fn_exit_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 acpi_gbl_nesting_level--;
398}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Bob Moore83135242006-10-03 00:00:00 -0400400ACPI_EXPORT_SYMBOL(acpi_ut_exit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Robert Moore44f6c012005-04-18 22:49:35 -0400402/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 *
404 * FUNCTION: acpi_ut_status_exit
405 *
406 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400407 * function_name - Caller's procedure name
408 * module_name - Caller's module name
409 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 * Status - Exit status code
411 *
412 * RETURN: None
413 *
414 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
415 * set in debug_level. Prints exit status also.
416 *
Robert Moore44f6c012005-04-18 22:49:35 -0400417 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418void
Len Brown4be44fc2005-08-05 00:44:28 -0400419acpi_ut_status_exit(u32 line_number,
420 const char *function_name,
421 char *module_name, u32 component_id, acpi_status status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
423
Len Brown4be44fc2005-08-05 00:44:28 -0400424 if (ACPI_SUCCESS(status)) {
425 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
426 line_number, function_name, module_name,
427 component_id, "%s %s\n",
428 acpi_gbl_fn_exit_str,
429 acpi_format_exception(status));
430 } else {
431 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
432 line_number, function_name, module_name,
433 component_id, "%s ****Exception****: %s\n",
434 acpi_gbl_fn_exit_str,
435 acpi_format_exception(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437
438 acpi_gbl_nesting_level--;
439}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Bob Moore83135242006-10-03 00:00:00 -0400441ACPI_EXPORT_SYMBOL(acpi_ut_status_exit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Robert Moore44f6c012005-04-18 22:49:35 -0400443/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 *
445 * FUNCTION: acpi_ut_value_exit
446 *
447 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400448 * function_name - Caller's procedure name
449 * module_name - Caller's module name
450 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 * Value - Value to be printed with exit msg
452 *
453 * RETURN: None
454 *
455 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
456 * set in debug_level. Prints exit value also.
457 *
Robert Moore44f6c012005-04-18 22:49:35 -0400458 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459void
Len Brown4be44fc2005-08-05 00:44:28 -0400460acpi_ut_value_exit(u32 line_number,
461 const char *function_name,
462 char *module_name, u32 component_id, acpi_integer value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464
Len Brown4be44fc2005-08-05 00:44:28 -0400465 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
466 line_number, function_name, module_name,
467 component_id, "%s %8.8X%8.8X\n",
468 acpi_gbl_fn_exit_str, ACPI_FORMAT_UINT64(value));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 acpi_gbl_nesting_level--;
471}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Bob Moore83135242006-10-03 00:00:00 -0400473ACPI_EXPORT_SYMBOL(acpi_ut_value_exit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Robert Moore44f6c012005-04-18 22:49:35 -0400475/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 *
477 * FUNCTION: acpi_ut_ptr_exit
478 *
479 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400480 * function_name - Caller's procedure name
481 * module_name - Caller's module name
482 * component_id - Caller's component ID
Robert Moore44f6c012005-04-18 22:49:35 -0400483 * Ptr - Pointer to display
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 *
485 * RETURN: None
486 *
487 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
488 * set in debug_level. Prints exit value also.
489 *
Robert Moore44f6c012005-04-18 22:49:35 -0400490 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491void
Len Brown4be44fc2005-08-05 00:44:28 -0400492acpi_ut_ptr_exit(u32 line_number,
493 const char *function_name,
494 char *module_name, u32 component_id, u8 * ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
496
Len Brown4be44fc2005-08-05 00:44:28 -0400497 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
498 line_number, function_name, module_name,
499 component_id, "%s %p\n", acpi_gbl_fn_exit_str, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 acpi_gbl_nesting_level--;
502}
503
504#endif
505
Robert Moore44f6c012005-04-18 22:49:35 -0400506/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 *
508 * FUNCTION: acpi_ut_dump_buffer
509 *
510 * PARAMETERS: Buffer - Buffer to dump
511 * Count - Amount to dump, in bytes
512 * Display - BYTE, WORD, DWORD, or QWORD display
513 * component_iD - Caller's component ID
514 *
515 * RETURN: None
516 *
517 * DESCRIPTION: Generic dump buffer in both hex and ascii.
518 *
Robert Moore44f6c012005-04-18 22:49:35 -0400519 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Bob Moore793c2382006-03-31 00:00:00 -0500521void acpi_ut_dump_buffer2(u8 * buffer, u32 count, u32 display)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
Len Brown4be44fc2005-08-05 00:44:28 -0400523 acpi_native_uint i = 0;
524 acpi_native_uint j;
525 u32 temp32;
526 u8 buf_char;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if ((count < 4) || (count & 0x01)) {
529 display = DB_BYTE_DISPLAY;
530 }
531
Robert Moore44f6c012005-04-18 22:49:35 -0400532 /* Nasty little dump buffer routine! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 while (i < count) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 /* Print current offset */
537
Len Brown4be44fc2005-08-05 00:44:28 -0400538 acpi_os_printf("%6.4X: ", (u32) i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /* Print 16 hex chars */
541
542 for (j = 0; j < 16;) {
543 if (i + j >= count) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400544
Robert Moore44f6c012005-04-18 22:49:35 -0400545 /* Dump fill spaces */
546
Len Brown4be44fc2005-08-05 00:44:28 -0400547 acpi_os_printf("%*s", ((display * 2) + 1), " ");
Robert Moore73459f72005-06-24 00:00:00 -0400548 j += (acpi_native_uint) display;
Robert Moore44f6c012005-04-18 22:49:35 -0400549 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 switch (display) {
Bob Moore793c2382006-03-31 00:00:00 -0500553 case DB_BYTE_DISPLAY:
Len Brown4be44fc2005-08-05 00:44:28 -0400554 default: /* Default is BYTE display */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Len Brown4be44fc2005-08-05 00:44:28 -0400556 acpi_os_printf("%02X ", buffer[i + j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 break;
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 case DB_WORD_DISPLAY:
560
Len Brown4be44fc2005-08-05 00:44:28 -0400561 ACPI_MOVE_16_TO_32(&temp32, &buffer[i + j]);
562 acpi_os_printf("%04X ", temp32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 break;
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 case DB_DWORD_DISPLAY:
566
Len Brown4be44fc2005-08-05 00:44:28 -0400567 ACPI_MOVE_32_TO_32(&temp32, &buffer[i + j]);
568 acpi_os_printf("%08X ", temp32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 break;
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 case DB_QWORD_DISPLAY:
572
Len Brown4be44fc2005-08-05 00:44:28 -0400573 ACPI_MOVE_32_TO_32(&temp32, &buffer[i + j]);
574 acpi_os_printf("%08X", temp32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Len Brown4be44fc2005-08-05 00:44:28 -0400576 ACPI_MOVE_32_TO_32(&temp32, &buffer[i + j + 4]);
577 acpi_os_printf("%08X ", temp32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 break;
579 }
Robert Moore44f6c012005-04-18 22:49:35 -0400580
Robert Moore73459f72005-06-24 00:00:00 -0400581 j += (acpi_native_uint) display;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
583
584 /*
Robert Moore0c9938c2005-07-29 15:15:00 -0700585 * Print the ASCII equivalent characters but watch out for the bad
586 * unprintable ones (printable chars are 0x20 through 0x7E)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 */
Len Brown4be44fc2005-08-05 00:44:28 -0400588 acpi_os_printf(" ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 for (j = 0; j < 16; j++) {
590 if (i + j >= count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400591 acpi_os_printf("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return;
593 }
594
595 buf_char = buffer[i + j];
Len Brown4be44fc2005-08-05 00:44:28 -0400596 if (ACPI_IS_PRINT(buf_char)) {
597 acpi_os_printf("%c", buf_char);
598 } else {
599 acpi_os_printf(".");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
601 }
602
603 /* Done with that line. */
604
Len Brown4be44fc2005-08-05 00:44:28 -0400605 acpi_os_printf("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 i += 16;
607 }
608
609 return;
610}
Bob Moore793c2382006-03-31 00:00:00 -0500611
612/*******************************************************************************
613 *
614 * FUNCTION: acpi_ut_dump_buffer
615 *
616 * PARAMETERS: Buffer - Buffer to dump
617 * Count - Amount to dump, in bytes
618 * Display - BYTE, WORD, DWORD, or QWORD display
619 * component_iD - Caller's component ID
620 *
621 * RETURN: None
622 *
623 * DESCRIPTION: Generic dump buffer in both hex and ascii.
624 *
625 ******************************************************************************/
626
627void acpi_ut_dump_buffer(u8 * buffer, u32 count, u32 display, u32 component_id)
628{
629
630 /* Only dump the buffer if tracing is enabled */
631
632 if (!((ACPI_LV_TABLES & acpi_dbg_level) &&
633 (component_id & acpi_dbg_layer))) {
634 return;
635 }
636
637 acpi_ut_dump_buffer2(buffer, count, display);
638}