Merge branch 'acpidump' into acpica
[deliverable/linux.git] / drivers / acpi / acpica / utdebug.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: utdebug - Debug print routines
4 *
5 *****************************************************************************/
6
7/*
77848130 8 * Copyright (C) 2000 - 2012, Intel Corp.
1da177e4
LT
9 * 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
214f2c90 44#include <linux/export.h>
1da177e4 45#include <acpi/acpi.h>
e2f7a777 46#include "accommon.h"
1da177e4
LT
47
48#define _COMPONENT ACPI_UTILITIES
4be44fcd 49ACPI_MODULE_NAME("utdebug")
1da177e4 50#ifdef ACPI_DEBUG_OUTPUT
ab8aa06a 51static acpi_thread_id acpi_gbl_prev_thread_id;
4be44fcd
LB
52static char *acpi_gbl_fn_entry_str = "----Entry";
53static char *acpi_gbl_fn_exit_str = "----Exit-";
1da177e4 54
0c9938cc
RM
55/* Local prototypes */
56
4be44fcd 57static const char *acpi_ut_trim_function_name(const char *function_name);
1da177e4 58
44f6c012 59/*******************************************************************************
1da177e4
LT
60 *
61 * FUNCTION: acpi_ut_init_stack_ptr_trace
62 *
63 * PARAMETERS: None
64 *
65 * RETURN: None
66 *
44f6c012 67 * DESCRIPTION: Save the current CPU stack pointer at subsystem startup
1da177e4 68 *
44f6c012 69 ******************************************************************************/
1da177e4 70
4be44fcd 71void acpi_ut_init_stack_ptr_trace(void)
1da177e4 72{
1d18c058 73 acpi_size current_sp;
1da177e4 74
1d18c058 75 acpi_gbl_entry_stack_pointer = &current_sp;
1da177e4
LT
76}
77
44f6c012 78/*******************************************************************************
1da177e4
LT
79 *
80 * FUNCTION: acpi_ut_track_stack_ptr
81 *
82 * PARAMETERS: None
83 *
84 * RETURN: None
85 *
44f6c012 86 * DESCRIPTION: Save the current CPU stack pointer
1da177e4 87 *
44f6c012 88 ******************************************************************************/
1da177e4 89
4be44fcd 90void acpi_ut_track_stack_ptr(void)
1da177e4 91{
4be44fcd 92 acpi_size current_sp;
1da177e4 93
1d18c058
BM
94 if (&current_sp < acpi_gbl_lowest_stack_pointer) {
95 acpi_gbl_lowest_stack_pointer = &current_sp;
1da177e4
LT
96 }
97
98 if (acpi_gbl_nesting_level > acpi_gbl_deepest_nesting) {
99 acpi_gbl_deepest_nesting = acpi_gbl_nesting_level;
100 }
101}
102
0c9938cc
RM
103/*******************************************************************************
104 *
105 * FUNCTION: acpi_ut_trim_function_name
106 *
107 * PARAMETERS: function_name - Ascii string containing a procedure name
108 *
109 * RETURN: Updated pointer to the function name
110 *
111 * DESCRIPTION: Remove the "Acpi" prefix from the function name, if present.
96b2dd1f 112 * This allows compiler macros such as __func__ to be used
0c9938cc
RM
113 * with no change to the debug output.
114 *
115 ******************************************************************************/
116
4be44fcd 117static const char *acpi_ut_trim_function_name(const char *function_name)
0c9938cc
RM
118{
119
120 /* All Function names are longer than 4 chars, check is safe */
121
a18ecf41 122 if (*(ACPI_CAST_PTR(u32, function_name)) == ACPI_PREFIX_MIXED) {
52fc0b02 123
0c9938cc
RM
124 /* This is the case where the original source has not been modified */
125
126 return (function_name + 4);
127 }
128
a18ecf41 129 if (*(ACPI_CAST_PTR(u32, function_name)) == ACPI_PREFIX_LOWER) {
52fc0b02 130
0c9938cc
RM
131 /* This is the case where the source has been 'linuxized' */
132
133 return (function_name + 5);
134 }
135
136 return (function_name);
137}
138
44f6c012 139/*******************************************************************************
1da177e4 140 *
50df4d8b 141 * FUNCTION: acpi_debug_print
1da177e4 142 *
44f6c012 143 * PARAMETERS: requested_debug_level - Requested debug print level
1da177e4 144 * line_number - Caller's line number (for error output)
f9f4601f
RM
145 * function_name - Caller's procedure name
146 * module_name - Caller's module name
147 * component_id - Caller's component ID
ba494bee 148 * format - Printf format field
1da177e4
LT
149 * ... - Optional printf arguments
150 *
151 * RETURN: None
152 *
153 * DESCRIPTION: Print error message with prefix consisting of the module name,
154 * line number, and component ID.
155 *
44f6c012 156 ******************************************************************************/
1da177e4 157
4be44fcd 158void ACPI_INTERNAL_VAR_XFACE
50df4d8b
BM
159acpi_debug_print(u32 requested_debug_level,
160 u32 line_number,
161 const char *function_name,
162 const char *module_name,
163 u32 component_id, const char *format, ...)
1da177e4 164{
8313524a 165 acpi_thread_id thread_id;
4be44fcd 166 va_list args;
1da177e4
LT
167
168 /*
169 * Stay silent if the debug level or component ID is disabled
170 */
171 if (!(requested_debug_level & acpi_dbg_level) ||
4be44fcd 172 !(component_id & acpi_dbg_layer)) {
1da177e4
LT
173 return;
174 }
175
176 /*
177 * Thread tracking and context switch notification
178 */
4be44fcd 179 thread_id = acpi_os_get_thread_id();
1da177e4
LT
180 if (thread_id != acpi_gbl_prev_thread_id) {
181 if (ACPI_LV_THREADS & acpi_dbg_level) {
4be44fcd 182 acpi_os_printf
28eb3fcf
LM
183 ("\n**** Context Switch from TID %u to TID %u ****\n\n",
184 (u32)acpi_gbl_prev_thread_id, (u32)thread_id);
1da177e4
LT
185 }
186
187 acpi_gbl_prev_thread_id = thread_id;
188 }
189
190 /*
191 * Display the module name, current line number, thread ID (if requested),
192 * current procedure nesting level, and the current procedure name
193 */
4be44fcd 194 acpi_os_printf("%8s-%04ld ", module_name, line_number);
1da177e4
LT
195
196 if (ACPI_LV_THREADS & acpi_dbg_level) {
28eb3fcf 197 acpi_os_printf("[%u] ", (u32)thread_id);
1da177e4
LT
198 }
199
4be44fcd
LB
200 acpi_os_printf("[%02ld] %-22.22s: ",
201 acpi_gbl_nesting_level,
202 acpi_ut_trim_function_name(function_name));
1da177e4 203
4be44fcd
LB
204 va_start(args, format);
205 acpi_os_vprintf(format, args);
507f046c 206 va_end(args);
1da177e4 207}
1da177e4 208
50df4d8b 209ACPI_EXPORT_SYMBOL(acpi_debug_print)
1da177e4 210
44f6c012 211/*******************************************************************************
1da177e4 212 *
50df4d8b 213 * FUNCTION: acpi_debug_print_raw
1da177e4
LT
214 *
215 * PARAMETERS: requested_debug_level - Requested debug print level
216 * line_number - Caller's line number
f9f4601f
RM
217 * function_name - Caller's procedure name
218 * module_name - Caller's module name
219 * component_id - Caller's component ID
ba494bee 220 * format - Printf format field
1da177e4
LT
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 *
44f6c012 228 ******************************************************************************/
4be44fcd 229void ACPI_INTERNAL_VAR_XFACE
50df4d8b
BM
230acpi_debug_print_raw(u32 requested_debug_level,
231 u32 line_number,
232 const char *function_name,
233 const char *module_name,
234 u32 component_id, const char *format, ...)
1da177e4 235{
4be44fcd 236 va_list args;
1da177e4
LT
237
238 if (!(requested_debug_level & acpi_dbg_level) ||
4be44fcd 239 !(component_id & acpi_dbg_layer)) {
1da177e4
LT
240 return;
241 }
242
4be44fcd
LB
243 va_start(args, format);
244 acpi_os_vprintf(format, args);
507f046c 245 va_end(args);
1da177e4 246}
1da177e4 247
50df4d8b 248ACPI_EXPORT_SYMBOL(acpi_debug_print_raw)
1da177e4 249
44f6c012 250/*******************************************************************************
1da177e4
LT
251 *
252 * FUNCTION: acpi_ut_trace
253 *
254 * PARAMETERS: line_number - Caller's line number
f9f4601f
RM
255 * function_name - Caller's procedure name
256 * module_name - Caller's module name
257 * component_id - Caller's component ID
1da177e4
LT
258 *
259 * RETURN: None
260 *
261 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
262 * set in debug_level
263 *
44f6c012 264 ******************************************************************************/
1da177e4 265void
4be44fcd 266acpi_ut_trace(u32 line_number,
4b8ed631
BM
267 const char *function_name,
268 const char *module_name, u32 component_id)
1da177e4
LT
269{
270
271 acpi_gbl_nesting_level++;
4be44fcd 272 acpi_ut_track_stack_ptr();
1da177e4 273
50df4d8b
BM
274 acpi_debug_print(ACPI_LV_FUNCTIONS,
275 line_number, function_name, module_name, component_id,
276 "%s\n", acpi_gbl_fn_entry_str);
1da177e4 277}
1da177e4 278
8313524a 279ACPI_EXPORT_SYMBOL(acpi_ut_trace)
1da177e4 280
44f6c012 281/*******************************************************************************
1da177e4
LT
282 *
283 * FUNCTION: acpi_ut_trace_ptr
284 *
285 * PARAMETERS: line_number - Caller's line number
f9f4601f
RM
286 * function_name - Caller's procedure name
287 * module_name - Caller's module name
288 * component_id - Caller's component ID
ba494bee 289 * pointer - Pointer to display
1da177e4
LT
290 *
291 * RETURN: None
292 *
293 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
294 * set in debug_level
295 *
44f6c012 296 ******************************************************************************/
1da177e4 297void
4be44fcd
LB
298acpi_ut_trace_ptr(u32 line_number,
299 const char *function_name,
4b8ed631 300 const char *module_name, u32 component_id, void *pointer)
1da177e4
LT
301{
302 acpi_gbl_nesting_level++;
4be44fcd 303 acpi_ut_track_stack_ptr();
1da177e4 304
50df4d8b
BM
305 acpi_debug_print(ACPI_LV_FUNCTIONS,
306 line_number, function_name, module_name, component_id,
307 "%s %p\n", acpi_gbl_fn_entry_str, pointer);
1da177e4
LT
308}
309
44f6c012 310/*******************************************************************************
1da177e4
LT
311 *
312 * FUNCTION: acpi_ut_trace_str
313 *
314 * PARAMETERS: line_number - Caller's line number
f9f4601f
RM
315 * function_name - Caller's procedure name
316 * module_name - Caller's module name
317 * component_id - Caller's component ID
ba494bee 318 * string - Additional string to display
1da177e4
LT
319 *
320 * RETURN: None
321 *
322 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
323 * set in debug_level
324 *
44f6c012 325 ******************************************************************************/
1da177e4
LT
326
327void
4be44fcd
LB
328acpi_ut_trace_str(u32 line_number,
329 const char *function_name,
4b8ed631 330 const char *module_name, u32 component_id, char *string)
1da177e4
LT
331{
332
333 acpi_gbl_nesting_level++;
4be44fcd 334 acpi_ut_track_stack_ptr();
1da177e4 335
50df4d8b
BM
336 acpi_debug_print(ACPI_LV_FUNCTIONS,
337 line_number, function_name, module_name, component_id,
338 "%s %s\n", acpi_gbl_fn_entry_str, string);
1da177e4
LT
339}
340
44f6c012 341/*******************************************************************************
1da177e4
LT
342 *
343 * FUNCTION: acpi_ut_trace_u32
344 *
345 * PARAMETERS: line_number - Caller's line number
f9f4601f
RM
346 * function_name - Caller's procedure name
347 * module_name - Caller's module name
348 * component_id - Caller's component ID
ba494bee 349 * integer - Integer to display
1da177e4
LT
350 *
351 * RETURN: None
352 *
353 * DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
354 * set in debug_level
355 *
44f6c012 356 ******************************************************************************/
1da177e4
LT
357
358void
4be44fcd
LB
359acpi_ut_trace_u32(u32 line_number,
360 const char *function_name,
4b8ed631 361 const char *module_name, u32 component_id, u32 integer)
1da177e4
LT
362{
363
364 acpi_gbl_nesting_level++;
4be44fcd 365 acpi_ut_track_stack_ptr();
1da177e4 366
50df4d8b
BM
367 acpi_debug_print(ACPI_LV_FUNCTIONS,
368 line_number, function_name, module_name, component_id,
369 "%s %08X\n", acpi_gbl_fn_entry_str, integer);
1da177e4
LT
370}
371
44f6c012 372/*******************************************************************************
1da177e4
LT
373 *
374 * FUNCTION: acpi_ut_exit
375 *
376 * PARAMETERS: line_number - Caller's line number
f9f4601f
RM
377 * function_name - Caller's procedure name
378 * module_name - Caller's module name
379 * component_id - Caller's component ID
1da177e4
LT
380 *
381 * RETURN: None
382 *
383 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
384 * set in debug_level
385 *
44f6c012 386 ******************************************************************************/
1da177e4
LT
387
388void
4be44fcd 389acpi_ut_exit(u32 line_number,
4b8ed631
BM
390 const char *function_name,
391 const char *module_name, u32 component_id)
1da177e4
LT
392{
393
50df4d8b
BM
394 acpi_debug_print(ACPI_LV_FUNCTIONS,
395 line_number, function_name, module_name, component_id,
396 "%s\n", acpi_gbl_fn_exit_str);
1da177e4
LT
397
398 acpi_gbl_nesting_level--;
399}
1da177e4 400
8313524a 401ACPI_EXPORT_SYMBOL(acpi_ut_exit)
1da177e4 402
44f6c012 403/*******************************************************************************
1da177e4
LT
404 *
405 * FUNCTION: acpi_ut_status_exit
406 *
407 * PARAMETERS: line_number - Caller's line number
f9f4601f
RM
408 * function_name - Caller's procedure name
409 * module_name - Caller's module name
410 * component_id - Caller's component ID
ba494bee 411 * status - Exit status code
1da177e4
LT
412 *
413 * RETURN: None
414 *
415 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
416 * set in debug_level. Prints exit status also.
417 *
44f6c012 418 ******************************************************************************/
1da177e4 419void
4be44fcd
LB
420acpi_ut_status_exit(u32 line_number,
421 const char *function_name,
4b8ed631
BM
422 const char *module_name,
423 u32 component_id, acpi_status status)
1da177e4
LT
424{
425
4be44fcd 426 if (ACPI_SUCCESS(status)) {
50df4d8b
BM
427 acpi_debug_print(ACPI_LV_FUNCTIONS,
428 line_number, function_name, module_name,
429 component_id, "%s %s\n", acpi_gbl_fn_exit_str,
430 acpi_format_exception(status));
4be44fcd 431 } else {
50df4d8b
BM
432 acpi_debug_print(ACPI_LV_FUNCTIONS,
433 line_number, function_name, module_name,
434 component_id, "%s ****Exception****: %s\n",
435 acpi_gbl_fn_exit_str,
436 acpi_format_exception(status));
1da177e4
LT
437 }
438
439 acpi_gbl_nesting_level--;
440}
1da177e4 441
8313524a 442ACPI_EXPORT_SYMBOL(acpi_ut_status_exit)
1da177e4 443
44f6c012 444/*******************************************************************************
1da177e4
LT
445 *
446 * FUNCTION: acpi_ut_value_exit
447 *
448 * PARAMETERS: line_number - Caller's line number
f9f4601f
RM
449 * function_name - Caller's procedure name
450 * module_name - Caller's module name
451 * component_id - Caller's component ID
ba494bee 452 * value - Value to be printed with exit msg
1da177e4
LT
453 *
454 * RETURN: None
455 *
456 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
457 * set in debug_level. Prints exit value also.
458 *
44f6c012 459 ******************************************************************************/
1da177e4 460void
4be44fcd
LB
461acpi_ut_value_exit(u32 line_number,
462 const char *function_name,
5df7e6cb 463 const char *module_name, u32 component_id, u64 value)
1da177e4
LT
464{
465
50df4d8b
BM
466 acpi_debug_print(ACPI_LV_FUNCTIONS,
467 line_number, function_name, module_name, component_id,
468 "%s %8.8X%8.8X\n", acpi_gbl_fn_exit_str,
469 ACPI_FORMAT_UINT64(value));
1da177e4
LT
470
471 acpi_gbl_nesting_level--;
472}
1da177e4 473
8313524a 474ACPI_EXPORT_SYMBOL(acpi_ut_value_exit)
1da177e4 475
44f6c012 476/*******************************************************************************
1da177e4
LT
477 *
478 * FUNCTION: acpi_ut_ptr_exit
479 *
480 * PARAMETERS: line_number - Caller's line number
f9f4601f
RM
481 * function_name - Caller's procedure name
482 * module_name - Caller's module name
483 * component_id - Caller's component ID
ba494bee 484 * ptr - Pointer to display
1da177e4
LT
485 *
486 * RETURN: None
487 *
488 * DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
489 * set in debug_level. Prints exit value also.
490 *
44f6c012 491 ******************************************************************************/
1da177e4 492void
4be44fcd
LB
493acpi_ut_ptr_exit(u32 line_number,
494 const char *function_name,
4b8ed631 495 const char *module_name, u32 component_id, u8 *ptr)
1da177e4
LT
496{
497
50df4d8b
BM
498 acpi_debug_print(ACPI_LV_FUNCTIONS,
499 line_number, function_name, module_name, component_id,
500 "%s %p\n", acpi_gbl_fn_exit_str, ptr);
1da177e4
LT
501
502 acpi_gbl_nesting_level--;
503}
504
505#endif
506
44f6c012 507/*******************************************************************************
1da177e4
LT
508 *
509 * FUNCTION: acpi_ut_dump_buffer
510 *
ba494bee
BM
511 * PARAMETERS: buffer - Buffer to dump
512 * count - Amount to dump, in bytes
513 * display - BYTE, WORD, DWORD, or QWORD display
514 * component_ID - Caller's component ID
1da177e4
LT
515 *
516 * RETURN: None
517 *
518 * DESCRIPTION: Generic dump buffer in both hex and ascii.
519 *
44f6c012 520 ******************************************************************************/
1da177e4 521
793c2388 522void acpi_ut_dump_buffer2(u8 * buffer, u32 count, u32 display)
1da177e4 523{
67a119f9
BM
524 u32 i = 0;
525 u32 j;
4be44fcd
LB
526 u32 temp32;
527 u8 buf_char;
1da177e4 528
5eb69180
BM
529 if (!buffer) {
530 acpi_os_printf("Null Buffer Pointer in DumpBuffer!\n");
531 return;
532 }
533
1da177e4
LT
534 if ((count < 4) || (count & 0x01)) {
535 display = DB_BYTE_DISPLAY;
536 }
537
44f6c012 538 /* Nasty little dump buffer routine! */
1da177e4 539
1da177e4 540 while (i < count) {
52fc0b02 541
1da177e4
LT
542 /* Print current offset */
543
67a119f9 544 acpi_os_printf("%6.4X: ", i);
1da177e4
LT
545
546 /* Print 16 hex chars */
547
548 for (j = 0; j < 16;) {
549 if (i + j >= count) {
52fc0b02 550
44f6c012 551 /* Dump fill spaces */
1da177e4 552
4be44fcd 553 acpi_os_printf("%*s", ((display * 2) + 1), " ");
67a119f9 554 j += display;
44f6c012
RM
555 continue;
556 }
1da177e4
LT
557
558 switch (display) {
793c2388 559 case DB_BYTE_DISPLAY:
4be44fcd 560 default: /* Default is BYTE display */
1da177e4 561
67a119f9
BM
562 acpi_os_printf("%02X ",
563 buffer[(acpi_size) i + j]);
1da177e4
LT
564 break;
565
1da177e4
LT
566 case DB_WORD_DISPLAY:
567
67a119f9
BM
568 ACPI_MOVE_16_TO_32(&temp32,
569 &buffer[(acpi_size) i + j]);
4be44fcd 570 acpi_os_printf("%04X ", temp32);
1da177e4
LT
571 break;
572
1da177e4
LT
573 case DB_DWORD_DISPLAY:
574
67a119f9
BM
575 ACPI_MOVE_32_TO_32(&temp32,
576 &buffer[(acpi_size) i + j]);
4be44fcd 577 acpi_os_printf("%08X ", temp32);
1da177e4
LT
578 break;
579
1da177e4
LT
580 case DB_QWORD_DISPLAY:
581
67a119f9
BM
582 ACPI_MOVE_32_TO_32(&temp32,
583 &buffer[(acpi_size) i + j]);
4be44fcd 584 acpi_os_printf("%08X", temp32);
1da177e4 585
67a119f9
BM
586 ACPI_MOVE_32_TO_32(&temp32,
587 &buffer[(acpi_size) i + j +
588 4]);
4be44fcd 589 acpi_os_printf("%08X ", temp32);
1da177e4
LT
590 break;
591 }
44f6c012 592
67a119f9 593 j += display;
1da177e4
LT
594 }
595
596 /*
0c9938cc
RM
597 * Print the ASCII equivalent characters but watch out for the bad
598 * unprintable ones (printable chars are 0x20 through 0x7E)
1da177e4 599 */
4be44fcd 600 acpi_os_printf(" ");
1da177e4
LT
601 for (j = 0; j < 16; j++) {
602 if (i + j >= count) {
4be44fcd 603 acpi_os_printf("\n");
1da177e4
LT
604 return;
605 }
606
67a119f9 607 buf_char = buffer[(acpi_size) i + j];
4be44fcd
LB
608 if (ACPI_IS_PRINT(buf_char)) {
609 acpi_os_printf("%c", buf_char);
610 } else {
611 acpi_os_printf(".");
1da177e4
LT
612 }
613 }
614
615 /* Done with that line. */
616
4be44fcd 617 acpi_os_printf("\n");
1da177e4
LT
618 i += 16;
619 }
620
621 return;
622}
793c2388
BM
623
624/*******************************************************************************
625 *
626 * FUNCTION: acpi_ut_dump_buffer
627 *
ba494bee
BM
628 * PARAMETERS: buffer - Buffer to dump
629 * count - Amount to dump, in bytes
630 * display - BYTE, WORD, DWORD, or QWORD display
631 * component_ID - Caller's component ID
793c2388
BM
632 *
633 * RETURN: None
634 *
635 * DESCRIPTION: Generic dump buffer in both hex and ascii.
636 *
637 ******************************************************************************/
638
639void acpi_ut_dump_buffer(u8 * buffer, u32 count, u32 display, u32 component_id)
640{
641
642 /* Only dump the buffer if tracing is enabled */
643
644 if (!((ACPI_LV_TABLES & acpi_dbg_level) &&
645 (component_id & acpi_dbg_layer))) {
646 return;
647 }
648
649 acpi_ut_dump_buffer2(buffer, count, display);
650}
This page took 0.720758 seconds and 5 git commands to generate.