2018-03-14 16:13:07 -07:00
// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2013-06-08 00:57:47 +00:00
/******************************************************************************
*
* Module Name : utbuffer - Buffer dump routines
*
2021-01-15 10:48:25 -08:00
* Copyright ( C ) 2000 - 2021 , Intel Corp .
2013-06-08 00:57:47 +00:00
*
2018-03-14 16:13:07 -07:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2013-06-08 00:57:47 +00:00
# include <acpi/acpi.h>
# include "accommon.h"
# define _COMPONENT ACPI_UTILITIES
ACPI_MODULE_NAME ( " utbuffer " )
/*******************************************************************************
*
* FUNCTION : acpi_ut_dump_buffer
*
* PARAMETERS : buffer - Buffer to dump
* count - Amount to dump , in bytes
* display - BYTE , WORD , DWORD , or QWORD display :
* DB_BYTE_DISPLAY
* DB_WORD_DISPLAY
* DB_DWORD_DISPLAY
* DB_QWORD_DISPLAY
* base_offset - Beginning buffer offset ( display only )
*
* RETURN : None
*
* DESCRIPTION : Generic dump buffer in both hex and ascii .
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void acpi_ut_dump_buffer ( u8 * buffer , u32 count , u32 display , u32 base_offset )
{
u32 i = 0 ;
u32 j ;
u32 temp32 ;
u8 buf_char ;
2019-10-25 14:36:54 -07:00
u32 display_data_only = display & DB_DISPLAY_DATA_ONLY ;
2013-06-08 00:57:47 +00:00
2019-10-25 14:36:54 -07:00
display & = ~ DB_DISPLAY_DATA_ONLY ;
2013-06-08 00:57:47 +00:00
if ( ! buffer ) {
acpi_os_printf ( " Null Buffer Pointer in DumpBuffer! \n " ) ;
return ;
}
if ( ( count < 4 ) | | ( count & 0x01 ) ) {
display = DB_BYTE_DISPLAY ;
}
/* Nasty little dump buffer routine! */
while ( i < count ) {
/* Print current offset */
2019-10-25 14:36:54 -07:00
if ( ! display_data_only ) {
acpi_os_printf ( " %8.4X: " , ( base_offset + i ) ) ;
}
2013-06-08 00:57:47 +00:00
/* Print 16 hex chars */
for ( j = 0 ; j < 16 ; ) {
if ( i + j > = count ) {
/* Dump fill spaces */
acpi_os_printf ( " %*s " , ( ( display * 2 ) + 1 ) , " " ) ;
j + = display ;
continue ;
}
switch ( display ) {
case DB_BYTE_DISPLAY :
default : /* Default is BYTE display */
acpi_os_printf ( " %02X " ,
2016-05-05 12:57:53 +08:00
buffer [ ( acpi_size ) i + j ] ) ;
2013-06-08 00:57:47 +00:00
break ;
case DB_WORD_DISPLAY :
ACPI_MOVE_16_TO_32 ( & temp32 ,
2016-05-05 12:57:53 +08:00
& buffer [ ( acpi_size ) i + j ] ) ;
2013-06-08 00:57:47 +00:00
acpi_os_printf ( " %04X " , temp32 ) ;
break ;
case DB_DWORD_DISPLAY :
ACPI_MOVE_32_TO_32 ( & temp32 ,
2016-05-05 12:57:53 +08:00
& buffer [ ( acpi_size ) i + j ] ) ;
2013-06-08 00:57:47 +00:00
acpi_os_printf ( " %08X " , temp32 ) ;
break ;
case DB_QWORD_DISPLAY :
ACPI_MOVE_32_TO_32 ( & temp32 ,
2016-05-05 12:57:53 +08:00
& buffer [ ( acpi_size ) i + j ] ) ;
2013-06-08 00:57:47 +00:00
acpi_os_printf ( " %08X " , temp32 ) ;
ACPI_MOVE_32_TO_32 ( & temp32 ,
2016-05-05 12:57:53 +08:00
& buffer [ ( acpi_size ) i + j +
2013-06-08 00:57:47 +00:00
4 ] ) ;
acpi_os_printf ( " %08X " , temp32 ) ;
break ;
}
j + = display ;
}
/*
* Print the ASCII equivalent characters but watch out for the bad
* unprintable ones ( printable chars are 0x20 through 0x7E )
*/
2019-10-25 14:36:54 -07:00
if ( ! display_data_only ) {
acpi_os_printf ( " " ) ;
for ( j = 0 ; j < 16 ; j + + ) {
if ( i + j > = count ) {
acpi_os_printf ( " \n " ) ;
return ;
}
/*
* Add comment characters so rest of line is ignored when
* compiled
*/
if ( j = = 0 ) {
acpi_os_printf ( " // " ) ;
}
buf_char = buffer [ ( acpi_size ) i + j ] ;
if ( isprint ( buf_char ) ) {
acpi_os_printf ( " %c " , buf_char ) ;
} else {
acpi_os_printf ( " . " ) ;
}
2013-06-08 00:57:47 +00:00
}
2019-10-25 14:36:54 -07:00
/* Done with that line. */
2015-04-13 11:50:56 +08:00
2019-10-25 14:36:54 -07:00
acpi_os_printf ( " \n " ) ;
2013-06-08 00:57:47 +00:00
}
i + = 16 ;
}
return ;
}
/*******************************************************************************
*
* FUNCTION : acpi_ut_debug_dump_buffer
*
* PARAMETERS : buffer - Buffer to dump
* count - Amount to dump , in bytes
* display - BYTE , WORD , DWORD , or QWORD display :
* DB_BYTE_DISPLAY
* DB_WORD_DISPLAY
* DB_DWORD_DISPLAY
* DB_QWORD_DISPLAY
* component_ID - Caller ' s component ID
*
* RETURN : None
*
* DESCRIPTION : Generic dump buffer in both hex and ascii .
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void
acpi_ut_debug_dump_buffer ( u8 * buffer , u32 count , u32 display , u32 component_id )
{
/* Only dump the buffer if tracing is enabled */
if ( ! ( ( ACPI_LV_TABLES & acpi_dbg_level ) & &
( component_id & acpi_dbg_layer ) ) ) {
return ;
}
acpi_ut_dump_buffer ( buffer , count , display , 0 ) ;
}
2014-07-08 10:07:52 +08:00
# ifdef ACPI_APPLICATION
/*******************************************************************************
*
* FUNCTION : acpi_ut_dump_buffer_to_file
*
* PARAMETERS : file - File descriptor
* buffer - Buffer to dump
* count - Amount to dump , in bytes
* display - BYTE , WORD , DWORD , or QWORD display :
* DB_BYTE_DISPLAY
* DB_WORD_DISPLAY
* DB_DWORD_DISPLAY
* DB_QWORD_DISPLAY
* base_offset - Beginning buffer offset ( display only )
*
* RETURN : None
*
* DESCRIPTION : Generic dump buffer in both hex and ascii to a file .
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void
acpi_ut_dump_buffer_to_file ( ACPI_FILE file ,
u8 * buffer , u32 count , u32 display , u32 base_offset )
{
u32 i = 0 ;
u32 j ;
u32 temp32 ;
u8 buf_char ;
if ( ! buffer ) {
2016-08-04 16:45:06 +08:00
fprintf ( file , " Null Buffer Pointer in DumpBuffer! \n " ) ;
2014-07-08 10:07:52 +08:00
return ;
}
if ( ( count < 4 ) | | ( count & 0x01 ) ) {
display = DB_BYTE_DISPLAY ;
}
/* Nasty little dump buffer routine! */
while ( i < count ) {
/* Print current offset */
2018-05-08 14:06:17 -07:00
fprintf ( file , " %8.4X: " , ( base_offset + i ) ) ;
2014-07-08 10:07:52 +08:00
/* Print 16 hex chars */
for ( j = 0 ; j < 16 ; ) {
if ( i + j > = count ) {
/* Dump fill spaces */
2016-08-04 16:45:06 +08:00
fprintf ( file , " %*s " , ( ( display * 2 ) + 1 ) , " " ) ;
2014-07-08 10:07:52 +08:00
j + = display ;
continue ;
}
switch ( display ) {
case DB_BYTE_DISPLAY :
default : /* Default is BYTE display */
2016-08-04 16:45:06 +08:00
fprintf ( file , " %02X " ,
buffer [ ( acpi_size ) i + j ] ) ;
2014-07-08 10:07:52 +08:00
break ;
case DB_WORD_DISPLAY :
ACPI_MOVE_16_TO_32 ( & temp32 ,
2016-05-05 12:57:53 +08:00
& buffer [ ( acpi_size ) i + j ] ) ;
2016-08-04 16:45:06 +08:00
fprintf ( file , " %04X " , temp32 ) ;
2014-07-08 10:07:52 +08:00
break ;
case DB_DWORD_DISPLAY :
ACPI_MOVE_32_TO_32 ( & temp32 ,
2016-05-05 12:57:53 +08:00
& buffer [ ( acpi_size ) i + j ] ) ;
2016-08-04 16:45:06 +08:00
fprintf ( file , " %08X " , temp32 ) ;
2014-07-08 10:07:52 +08:00
break ;
case DB_QWORD_DISPLAY :
ACPI_MOVE_32_TO_32 ( & temp32 ,
2016-05-05 12:57:53 +08:00
& buffer [ ( acpi_size ) i + j ] ) ;
2016-08-04 16:45:06 +08:00
fprintf ( file , " %08X " , temp32 ) ;
2014-07-08 10:07:52 +08:00
ACPI_MOVE_32_TO_32 ( & temp32 ,
2016-05-05 12:57:53 +08:00
& buffer [ ( acpi_size ) i + j +
2014-07-08 10:07:52 +08:00
4 ] ) ;
2016-08-04 16:45:06 +08:00
fprintf ( file , " %08X " , temp32 ) ;
2014-07-08 10:07:52 +08:00
break ;
}
j + = display ;
}
/*
* Print the ASCII equivalent characters but watch out for the bad
* unprintable ones ( printable chars are 0x20 through 0x7E )
*/
2016-08-04 16:45:06 +08:00
fprintf ( file , " " ) ;
2014-07-08 10:07:52 +08:00
for ( j = 0 ; j < 16 ; j + + ) {
if ( i + j > = count ) {
2016-08-04 16:45:06 +08:00
fprintf ( file , " \n " ) ;
2014-07-08 10:07:52 +08:00
return ;
}
2016-05-05 12:57:53 +08:00
buf_char = buffer [ ( acpi_size ) i + j ] ;
2015-07-01 14:45:11 +08:00
if ( isprint ( buf_char ) ) {
2016-08-04 16:45:06 +08:00
fprintf ( file , " %c " , buf_char ) ;
2014-07-08 10:07:52 +08:00
} else {
2016-08-04 16:45:06 +08:00
fprintf ( file , " . " ) ;
2014-07-08 10:07:52 +08:00
}
}
/* Done with that line. */
2016-08-04 16:45:06 +08:00
fprintf ( file , " \n " ) ;
2014-07-08 10:07:52 +08:00
i + = 16 ;
}
return ;
}
# endif