blob: 6e92b2a3c0fd186bab1331b2388692c2318c30b8 [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
44#include <linux/module.h>
45
46#include <acpi/acpi.h>
47
48#define _COMPONENT ACPI_UTILITIES
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("utdebug")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#ifdef ACPI_DEBUG_OUTPUT
Len Brown4be44fc2005-08-05 00:44:28 -040052static u32 acpi_gbl_prev_thread_id = 0xFFFFFFFF;
53static char *acpi_gbl_fn_entry_str = "----Entry";
54static char *acpi_gbl_fn_exit_str = "----Exit-";
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Robert Moore0c9938c2005-07-29 15:15:00 -070056/* Local prototypes */
57
Len Brown4be44fc2005-08-05 00:44:28 -040058static const char *acpi_ut_trim_function_name(const char *function_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Robert Moore44f6c012005-04-18 22:49:35 -040060/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 *
62 * FUNCTION: acpi_ut_init_stack_ptr_trace
63 *
64 * PARAMETERS: None
65 *
66 * RETURN: None
67 *
Robert Moore44f6c012005-04-18 22:49:35 -040068 * DESCRIPTION: Save the current CPU stack pointer at subsystem startup
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 *
Robert Moore44f6c012005-04-18 22:49:35 -040070 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Len Brown4be44fc2005-08-05 00:44:28 -040072void acpi_ut_init_stack_ptr_trace(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Len Brown4be44fc2005-08-05 00:44:28 -040074 u32 current_sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Len Brown4be44fc2005-08-05 00:44:28 -040076 acpi_gbl_entry_stack_pointer = ACPI_PTR_DIFF(&current_sp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
Robert Moore44f6c012005-04-18 22:49:35 -040079/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 *
81 * FUNCTION: acpi_ut_track_stack_ptr
82 *
83 * PARAMETERS: None
84 *
85 * RETURN: None
86 *
Robert Moore44f6c012005-04-18 22:49:35 -040087 * DESCRIPTION: Save the current CPU stack pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 *
Robert Moore44f6c012005-04-18 22:49:35 -040089 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Len Brown4be44fc2005-08-05 00:44:28 -040091void acpi_ut_track_stack_ptr(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Len Brown4be44fc2005-08-05 00:44:28 -040093 acpi_size current_sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Len Brown4be44fc2005-08-05 00:44:28 -040095 current_sp = ACPI_PTR_DIFF(&current_sp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97 if (current_sp < acpi_gbl_lowest_stack_pointer) {
98 acpi_gbl_lowest_stack_pointer = current_sp;
99 }
100
101 if (acpi_gbl_nesting_level > acpi_gbl_deepest_nesting) {
102 acpi_gbl_deepest_nesting = acpi_gbl_nesting_level;
103 }
104}
105
Robert Moore44f6c012005-04-18 22:49:35 -0400106/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 *
Robert Moore0c9938c2005-07-29 15:15:00 -0700108 * FUNCTION: acpi_ut_trim_function_name
109 *
110 * PARAMETERS: function_name - Ascii string containing a procedure name
111 *
112 * RETURN: Updated pointer to the function name
113 *
114 * DESCRIPTION: Remove the "Acpi" prefix from the function name, if present.
115 * This allows compiler macros such as __FUNCTION__ to be used
116 * with no change to the debug output.
117 *
118 ******************************************************************************/
119
Len Brown4be44fc2005-08-05 00:44:28 -0400120static const char *acpi_ut_trim_function_name(const char *function_name)
Robert Moore0c9938c2005-07-29 15:15:00 -0700121{
122
123 /* All Function names are longer than 4 chars, check is safe */
124
Bob Moorea18ecf42005-08-15 03:42:00 -0800125 if (*(ACPI_CAST_PTR(u32, function_name)) == ACPI_PREFIX_MIXED) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400126
Robert Moore0c9938c2005-07-29 15:15:00 -0700127 /* This is the case where the original source has not been modified */
128
129 return (function_name + 4);
130 }
131
Bob Moorea18ecf42005-08-15 03:42:00 -0800132 if (*(ACPI_CAST_PTR(u32, function_name)) == ACPI_PREFIX_LOWER) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400133
Robert Moore0c9938c2005-07-29 15:15:00 -0700134 /* This is the case where the source has been 'linuxized' */
135
136 return (function_name + 5);
137 }
138
139 return (function_name);
140}
141
Robert Moore0c9938c2005-07-29 15:15:00 -0700142/*******************************************************************************
143 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 * FUNCTION: acpi_ut_debug_print
145 *
Robert Moore44f6c012005-04-18 22:49:35 -0400146 * PARAMETERS: requested_debug_level - Requested debug print level
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 * line_number - Caller's line number (for error output)
Robert Mooref9f46012005-07-08 00:00:00 -0400148 * function_name - Caller's procedure name
149 * module_name - Caller's module name
150 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 * Format - Printf format field
152 * ... - Optional printf arguments
153 *
154 * RETURN: None
155 *
156 * DESCRIPTION: Print error message with prefix consisting of the module name,
157 * line number, and component ID.
158 *
Robert Moore44f6c012005-04-18 22:49:35 -0400159 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Len Brown4be44fc2005-08-05 00:44:28 -0400161void ACPI_INTERNAL_VAR_XFACE
162acpi_ut_debug_print(u32 requested_debug_level,
163 u32 line_number,
164 const char *function_name,
165 char *module_name, u32 component_id, char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Len Brown4be44fc2005-08-05 00:44:28 -0400167 u32 thread_id;
168 va_list args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 /*
171 * Stay silent if the debug level or component ID is disabled
172 */
173 if (!(requested_debug_level & acpi_dbg_level) ||
Len Brown4be44fc2005-08-05 00:44:28 -0400174 !(component_id & acpi_dbg_layer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return;
176 }
177
178 /*
179 * Thread tracking and context switch notification
180 */
Len Brown4be44fc2005-08-05 00:44:28 -0400181 thread_id = acpi_os_get_thread_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 if (thread_id != acpi_gbl_prev_thread_id) {
184 if (ACPI_LV_THREADS & acpi_dbg_level) {
Len Brown4be44fc2005-08-05 00:44:28 -0400185 acpi_os_printf
186 ("\n**** Context Switch from TID %X to TID %X ****\n\n",
187 acpi_gbl_prev_thread_id, thread_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189
190 acpi_gbl_prev_thread_id = thread_id;
191 }
192
193 /*
194 * Display the module name, current line number, thread ID (if requested),
195 * current procedure nesting level, and the current procedure name
196 */
Len Brown4be44fc2005-08-05 00:44:28 -0400197 acpi_os_printf("%8s-%04ld ", module_name, line_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 if (ACPI_LV_THREADS & acpi_dbg_level) {
Len Brown4be44fc2005-08-05 00:44:28 -0400200 acpi_os_printf("[%04lX] ", thread_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202
Len Brown4be44fc2005-08-05 00:44:28 -0400203 acpi_os_printf("[%02ld] %-22.22s: ",
204 acpi_gbl_nesting_level,
205 acpi_ut_trim_function_name(function_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Len Brown4be44fc2005-08-05 00:44:28 -0400207 va_start(args, format);
208 acpi_os_vprintf(format, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
Robert Moore44f6c012005-04-18 22:49:35 -0400210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211EXPORT_SYMBOL(acpi_ut_debug_print);
212
Robert Moore44f6c012005-04-18 22:49:35 -0400213/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 *
215 * FUNCTION: acpi_ut_debug_print_raw
216 *
217 * PARAMETERS: requested_debug_level - Requested debug print level
218 * line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400219 * function_name - Caller's procedure name
220 * module_name - Caller's module name
221 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 * Format - Printf format field
223 * ... - Optional printf arguments
224 *
225 * RETURN: None
226 *
227 * DESCRIPTION: Print message with no headers. Has same interface as
228 * debug_print so that the same macros can be used.
229 *
Robert Moore44f6c012005-04-18 22:49:35 -0400230 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Len Brown4be44fc2005-08-05 00:44:28 -0400232void ACPI_INTERNAL_VAR_XFACE
233acpi_ut_debug_print_raw(u32 requested_debug_level,
234 u32 line_number,
235 const char *function_name,
236 char *module_name, u32 component_id, char *format, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Len Brown4be44fc2005-08-05 00:44:28 -0400238 va_list args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 if (!(requested_debug_level & acpi_dbg_level) ||
Len Brown4be44fc2005-08-05 00:44:28 -0400241 !(component_id & acpi_dbg_layer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return;
243 }
244
Len Brown4be44fc2005-08-05 00:44:28 -0400245 va_start(args, format);
246 acpi_os_vprintf(format, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Len Brown4be44fc2005-08-05 00:44:28 -0400249EXPORT_SYMBOL(acpi_ut_debug_print_raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Robert Moore44f6c012005-04-18 22:49:35 -0400251/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 *
253 * FUNCTION: acpi_ut_trace
254 *
255 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400256 * function_name - Caller's procedure name
257 * module_name - Caller's module name
258 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 *
260 * RETURN: None
261 *
262 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
263 * set in debug_level
264 *
Robert Moore44f6c012005-04-18 22:49:35 -0400265 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267void
Len Brown4be44fc2005-08-05 00:44:28 -0400268acpi_ut_trace(u32 line_number,
269 const char *function_name, char *module_name, u32 component_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271
272 acpi_gbl_nesting_level++;
Len Brown4be44fc2005-08-05 00:44:28 -0400273 acpi_ut_track_stack_ptr();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Len Brown4be44fc2005-08-05 00:44:28 -0400275 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
276 line_number, function_name, module_name,
277 component_id, "%s\n", acpi_gbl_fn_entry_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Len Brown4be44fc2005-08-05 00:44:28 -0400280EXPORT_SYMBOL(acpi_ut_trace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Robert Moore44f6c012005-04-18 22:49:35 -0400282/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 *
284 * FUNCTION: acpi_ut_trace_ptr
285 *
286 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400287 * function_name - Caller's procedure name
288 * module_name - Caller's module name
289 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 * Pointer - Pointer to display
291 *
292 * RETURN: None
293 *
294 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
295 * set in debug_level
296 *
Robert Moore44f6c012005-04-18 22:49:35 -0400297 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299void
Len Brown4be44fc2005-08-05 00:44:28 -0400300acpi_ut_trace_ptr(u32 line_number,
301 const char *function_name,
302 char *module_name, u32 component_id, void *pointer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 acpi_gbl_nesting_level++;
Len Brown4be44fc2005-08-05 00:44:28 -0400305 acpi_ut_track_stack_ptr();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Len Brown4be44fc2005-08-05 00:44:28 -0400307 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
308 line_number, function_name, module_name,
309 component_id, "%s %p\n", acpi_gbl_fn_entry_str,
310 pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Robert Moore44f6c012005-04-18 22:49:35 -0400313/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 *
315 * FUNCTION: acpi_ut_trace_str
316 *
317 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400318 * function_name - Caller's procedure name
319 * module_name - Caller's module name
320 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 * String - Additional string to display
322 *
323 * RETURN: None
324 *
325 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
326 * set in debug_level
327 *
Robert Moore44f6c012005-04-18 22:49:35 -0400328 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330void
Len Brown4be44fc2005-08-05 00:44:28 -0400331acpi_ut_trace_str(u32 line_number,
332 const char *function_name,
333 char *module_name, u32 component_id, char *string)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335
336 acpi_gbl_nesting_level++;
Len Brown4be44fc2005-08-05 00:44:28 -0400337 acpi_ut_track_stack_ptr();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Len Brown4be44fc2005-08-05 00:44:28 -0400339 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
340 line_number, function_name, module_name,
341 component_id, "%s %s\n", acpi_gbl_fn_entry_str,
342 string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Robert Moore44f6c012005-04-18 22:49:35 -0400345/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 *
347 * FUNCTION: acpi_ut_trace_u32
348 *
349 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400350 * function_name - Caller's procedure name
351 * module_name - Caller's module name
352 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 * Integer - Integer to display
354 *
355 * RETURN: None
356 *
357 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
358 * set in debug_level
359 *
Robert Moore44f6c012005-04-18 22:49:35 -0400360 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362void
Len Brown4be44fc2005-08-05 00:44:28 -0400363acpi_ut_trace_u32(u32 line_number,
364 const char *function_name,
365 char *module_name, u32 component_id, u32 integer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367
368 acpi_gbl_nesting_level++;
Len Brown4be44fc2005-08-05 00:44:28 -0400369 acpi_ut_track_stack_ptr();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Len Brown4be44fc2005-08-05 00:44:28 -0400371 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
372 line_number, function_name, module_name,
373 component_id, "%s %08X\n", acpi_gbl_fn_entry_str,
374 integer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
Robert Moore44f6c012005-04-18 22:49:35 -0400377/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 *
379 * FUNCTION: acpi_ut_exit
380 *
381 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400382 * function_name - Caller's procedure name
383 * module_name - Caller's module name
384 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 *
386 * RETURN: None
387 *
388 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
389 * set in debug_level
390 *
Robert Moore44f6c012005-04-18 22:49:35 -0400391 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393void
Len Brown4be44fc2005-08-05 00:44:28 -0400394acpi_ut_exit(u32 line_number,
395 const char *function_name, char *module_name, u32 component_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397
Len Brown4be44fc2005-08-05 00:44:28 -0400398 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
399 line_number, function_name, module_name,
400 component_id, "%s\n", acpi_gbl_fn_exit_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 acpi_gbl_nesting_level--;
403}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Len Brown4be44fc2005-08-05 00:44:28 -0400405EXPORT_SYMBOL(acpi_ut_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Robert Moore44f6c012005-04-18 22:49:35 -0400407/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 *
409 * FUNCTION: acpi_ut_status_exit
410 *
411 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400412 * function_name - Caller's procedure name
413 * module_name - Caller's module name
414 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 * Status - Exit status code
416 *
417 * RETURN: None
418 *
419 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
420 * set in debug_level. Prints exit status also.
421 *
Robert Moore44f6c012005-04-18 22:49:35 -0400422 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424void
Len Brown4be44fc2005-08-05 00:44:28 -0400425acpi_ut_status_exit(u32 line_number,
426 const char *function_name,
427 char *module_name, u32 component_id, acpi_status status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429
Len Brown4be44fc2005-08-05 00:44:28 -0400430 if (ACPI_SUCCESS(status)) {
431 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
432 line_number, function_name, module_name,
433 component_id, "%s %s\n",
434 acpi_gbl_fn_exit_str,
435 acpi_format_exception(status));
436 } else {
437 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
438 line_number, function_name, module_name,
439 component_id, "%s ****Exception****: %s\n",
440 acpi_gbl_fn_exit_str,
441 acpi_format_exception(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443
444 acpi_gbl_nesting_level--;
445}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Len Brown4be44fc2005-08-05 00:44:28 -0400447EXPORT_SYMBOL(acpi_ut_status_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Robert Moore44f6c012005-04-18 22:49:35 -0400449/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 *
451 * FUNCTION: acpi_ut_value_exit
452 *
453 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400454 * function_name - Caller's procedure name
455 * module_name - Caller's module name
456 * component_id - Caller's component ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 * Value - Value to be printed with exit msg
458 *
459 * RETURN: None
460 *
461 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
462 * set in debug_level. Prints exit value also.
463 *
Robert Moore44f6c012005-04-18 22:49:35 -0400464 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466void
Len Brown4be44fc2005-08-05 00:44:28 -0400467acpi_ut_value_exit(u32 line_number,
468 const char *function_name,
469 char *module_name, u32 component_id, acpi_integer value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471
Len Brown4be44fc2005-08-05 00:44:28 -0400472 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
473 line_number, function_name, module_name,
474 component_id, "%s %8.8X%8.8X\n",
475 acpi_gbl_fn_exit_str, ACPI_FORMAT_UINT64(value));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 acpi_gbl_nesting_level--;
478}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Len Brown4be44fc2005-08-05 00:44:28 -0400480EXPORT_SYMBOL(acpi_ut_value_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Robert Moore44f6c012005-04-18 22:49:35 -0400482/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 *
484 * FUNCTION: acpi_ut_ptr_exit
485 *
486 * PARAMETERS: line_number - Caller's line number
Robert Mooref9f46012005-07-08 00:00:00 -0400487 * function_name - Caller's procedure name
488 * module_name - Caller's module name
489 * component_id - Caller's component ID
Robert Moore44f6c012005-04-18 22:49:35 -0400490 * Ptr - Pointer to display
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 *
492 * RETURN: None
493 *
494 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
495 * set in debug_level. Prints exit value also.
496 *
Robert Moore44f6c012005-04-18 22:49:35 -0400497 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499void
Len Brown4be44fc2005-08-05 00:44:28 -0400500acpi_ut_ptr_exit(u32 line_number,
501 const char *function_name,
502 char *module_name, u32 component_id, u8 * ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
504
Len Brown4be44fc2005-08-05 00:44:28 -0400505 acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
506 line_number, function_name, module_name,
507 component_id, "%s %p\n", acpi_gbl_fn_exit_str, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 acpi_gbl_nesting_level--;
510}
511
512#endif
513
Robert Moore44f6c012005-04-18 22:49:35 -0400514/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 *
516 * FUNCTION: acpi_ut_dump_buffer
517 *
518 * PARAMETERS: Buffer - Buffer to dump
519 * Count - Amount to dump, in bytes
520 * Display - BYTE, WORD, DWORD, or QWORD display
521 * component_iD - Caller's component ID
522 *
523 * RETURN: None
524 *
525 * DESCRIPTION: Generic dump buffer in both hex and ascii.
526 *
Robert Moore44f6c012005-04-18 22:49:35 -0400527 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Len Brown4be44fc2005-08-05 00:44:28 -0400529void acpi_ut_dump_buffer(u8 * buffer, u32 count, u32 display, u32 component_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Len Brown4be44fc2005-08-05 00:44:28 -0400531 acpi_native_uint i = 0;
532 acpi_native_uint j;
533 u32 temp32;
534 u8 buf_char;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 /* Only dump the buffer if tracing is enabled */
537
538 if (!((ACPI_LV_TABLES & acpi_dbg_level) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400539 (component_id & acpi_dbg_layer))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return;
541 }
542
543 if ((count < 4) || (count & 0x01)) {
544 display = DB_BYTE_DISPLAY;
545 }
546
Robert Moore44f6c012005-04-18 22:49:35 -0400547 /* Nasty little dump buffer routine! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 while (i < count) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 /* Print current offset */
552
Len Brown4be44fc2005-08-05 00:44:28 -0400553 acpi_os_printf("%6.4X: ", (u32) i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 /* Print 16 hex chars */
556
557 for (j = 0; j < 16;) {
558 if (i + j >= count) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400559
Robert Moore44f6c012005-04-18 22:49:35 -0400560 /* Dump fill spaces */
561
Len Brown4be44fc2005-08-05 00:44:28 -0400562 acpi_os_printf("%*s", ((display * 2) + 1), " ");
Robert Moore73459f72005-06-24 00:00:00 -0400563 j += (acpi_native_uint) display;
Robert Moore44f6c012005-04-18 22:49:35 -0400564 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 switch (display) {
Len Brown4be44fc2005-08-05 00:44:28 -0400568 default: /* Default is BYTE display */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Len Brown4be44fc2005-08-05 00:44:28 -0400570 acpi_os_printf("%02X ", buffer[i + j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 break;
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 case DB_WORD_DISPLAY:
574
Len Brown4be44fc2005-08-05 00:44:28 -0400575 ACPI_MOVE_16_TO_32(&temp32, &buffer[i + j]);
576 acpi_os_printf("%04X ", temp32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 break;
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 case DB_DWORD_DISPLAY:
580
Len Brown4be44fc2005-08-05 00:44:28 -0400581 ACPI_MOVE_32_TO_32(&temp32, &buffer[i + j]);
582 acpi_os_printf("%08X ", temp32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 break;
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 case DB_QWORD_DISPLAY:
586
Len Brown4be44fc2005-08-05 00:44:28 -0400587 ACPI_MOVE_32_TO_32(&temp32, &buffer[i + j]);
588 acpi_os_printf("%08X", temp32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Len Brown4be44fc2005-08-05 00:44:28 -0400590 ACPI_MOVE_32_TO_32(&temp32, &buffer[i + j + 4]);
591 acpi_os_printf("%08X ", temp32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 break;
593 }
Robert Moore44f6c012005-04-18 22:49:35 -0400594
Robert Moore73459f72005-06-24 00:00:00 -0400595 j += (acpi_native_uint) display;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597
598 /*
Robert Moore0c9938c2005-07-29 15:15:00 -0700599 * Print the ASCII equivalent characters but watch out for the bad
600 * unprintable ones (printable chars are 0x20 through 0x7E)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 */
Len Brown4be44fc2005-08-05 00:44:28 -0400602 acpi_os_printf(" ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 for (j = 0; j < 16; j++) {
604 if (i + j >= count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400605 acpi_os_printf("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return;
607 }
608
609 buf_char = buffer[i + j];
Len Brown4be44fc2005-08-05 00:44:28 -0400610 if (ACPI_IS_PRINT(buf_char)) {
611 acpi_os_printf("%c", buf_char);
612 } else {
613 acpi_os_printf(".");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615 }
616
617 /* Done with that line. */
618
Len Brown4be44fc2005-08-05 00:44:28 -0400619 acpi_os_printf("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 i += 16;
621 }
622
623 return;
624}