2005-04-17 00:20:36 +02:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: utdebug - Debug print routines
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2000 - 2005, R. Byron Moore
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions, and the following disclaimer,
|
|
|
|
* without modification.
|
|
|
|
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
|
|
|
|
* substantially similar to the "NO WARRANTY" disclaimer below
|
|
|
|
* ("Disclaimer") and any redistribution must be conditioned upon
|
|
|
|
* including a substantially similar Disclaimer requirement for further
|
|
|
|
* binary redistribution.
|
|
|
|
* 3. Neither the names of the above-listed copyright holders nor the names
|
|
|
|
* of any contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of the
|
|
|
|
* GNU General Public License ("GPL") version 2 as published by the Free
|
|
|
|
* Software Foundation.
|
|
|
|
*
|
|
|
|
* NO WARRANTY
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGES.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
|
|
|
|
|
|
|
#define _COMPONENT ACPI_UTILITIES
|
2005-08-05 06:44:28 +02:00
|
|
|
ACPI_MODULE_NAME("utdebug")
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#ifdef ACPI_DEBUG_OUTPUT
|
2005-08-05 06:44:28 +02:00
|
|
|
static u32 acpi_gbl_prev_thread_id = 0xFFFFFFFF;
|
|
|
|
static char *acpi_gbl_fn_entry_str = "----Entry";
|
|
|
|
static char *acpi_gbl_fn_exit_str = "----Exit-";
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-07-30 00:15:00 +02:00
|
|
|
/* Local prototypes */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
static const char *acpi_ut_trim_function_name(const char *function_name);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*******************************************************************************
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_init_stack_ptr_trace
|
|
|
|
*
|
|
|
|
* PARAMETERS: None
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
* DESCRIPTION: Save the current CPU stack pointer at subsystem startup
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
******************************************************************************/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_init_stack_ptr_trace(void)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
u32 current_sp;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_gbl_entry_stack_pointer = ACPI_PTR_DIFF(¤t_sp, NULL);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*******************************************************************************
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_track_stack_ptr
|
|
|
|
*
|
|
|
|
* PARAMETERS: None
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
* DESCRIPTION: Save the current CPU stack pointer
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
******************************************************************************/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_track_stack_ptr(void)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_size current_sp;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
current_sp = ACPI_PTR_DIFF(¤t_sp, NULL);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (current_sp < acpi_gbl_lowest_stack_pointer) {
|
|
|
|
acpi_gbl_lowest_stack_pointer = current_sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (acpi_gbl_nesting_level > acpi_gbl_deepest_nesting) {
|
|
|
|
acpi_gbl_deepest_nesting = acpi_gbl_nesting_level;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-30 00:15:00 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_trim_function_name
|
|
|
|
*
|
|
|
|
* PARAMETERS: function_name - Ascii string containing a procedure name
|
|
|
|
*
|
|
|
|
* RETURN: Updated pointer to the function name
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Remove the "Acpi" prefix from the function name, if present.
|
|
|
|
* This allows compiler macros such as __FUNCTION__ to be used
|
|
|
|
* with no change to the debug output.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
static const char *acpi_ut_trim_function_name(const char *function_name)
|
2005-07-30 00:15:00 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
/* All Function names are longer than 4 chars, check is safe */
|
|
|
|
|
2005-08-15 13:42:00 +02:00
|
|
|
if (*(ACPI_CAST_PTR(u32, function_name)) == ACPI_PREFIX_MIXED) {
|
2005-07-30 00:15:00 +02:00
|
|
|
/* This is the case where the original source has not been modified */
|
|
|
|
|
|
|
|
return (function_name + 4);
|
|
|
|
}
|
|
|
|
|
2005-08-15 13:42:00 +02:00
|
|
|
if (*(ACPI_CAST_PTR(u32, function_name)) == ACPI_PREFIX_LOWER) {
|
2005-07-30 00:15:00 +02:00
|
|
|
/* This is the case where the source has been 'linuxized' */
|
|
|
|
|
|
|
|
return (function_name + 5);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (function_name);
|
|
|
|
}
|
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*******************************************************************************
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_debug_print
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
* PARAMETERS: requested_debug_level - Requested debug print level
|
2005-04-17 00:20:36 +02:00
|
|
|
* line_number - Caller's line number (for error output)
|
2005-07-08 06:00:00 +02:00
|
|
|
* function_name - Caller's procedure name
|
|
|
|
* module_name - Caller's module name
|
|
|
|
* component_id - Caller's component ID
|
2005-04-17 00:20:36 +02:00
|
|
|
* Format - Printf format field
|
|
|
|
* ... - Optional printf arguments
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Print error message with prefix consisting of the module name,
|
|
|
|
* line number, and component ID.
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
******************************************************************************/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
|
|
|
acpi_ut_debug_print(u32 requested_debug_level,
|
|
|
|
u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name, u32 component_id, char *format, ...)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
u32 thread_id;
|
|
|
|
va_list args;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Stay silent if the debug level or component ID is disabled
|
|
|
|
*/
|
|
|
|
if (!(requested_debug_level & acpi_dbg_level) ||
|
2005-08-05 06:44:28 +02:00
|
|
|
!(component_id & acpi_dbg_layer)) {
|
2005-04-17 00:20:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Thread tracking and context switch notification
|
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
thread_id = acpi_os_get_thread_id();
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (thread_id != acpi_gbl_prev_thread_id) {
|
|
|
|
if (ACPI_LV_THREADS & acpi_dbg_level) {
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf
|
|
|
|
("\n**** Context Switch from TID %X to TID %X ****\n\n",
|
|
|
|
acpi_gbl_prev_thread_id, thread_id);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
acpi_gbl_prev_thread_id = thread_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Display the module name, current line number, thread ID (if requested),
|
|
|
|
* current procedure nesting level, and the current procedure name
|
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("%8s-%04ld ", module_name, line_number);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (ACPI_LV_THREADS & acpi_dbg_level) {
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("[%04lX] ", thread_id);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("[%02ld] %-22.22s: ",
|
|
|
|
acpi_gbl_nesting_level,
|
|
|
|
acpi_ut_trim_function_name(function_name));
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
va_start(args, format);
|
|
|
|
acpi_os_vprintf(format, args);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
EXPORT_SYMBOL(acpi_ut_debug_print);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*******************************************************************************
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_debug_print_raw
|
|
|
|
*
|
|
|
|
* PARAMETERS: requested_debug_level - Requested debug print level
|
|
|
|
* line_number - Caller's line number
|
2005-07-08 06:00:00 +02:00
|
|
|
* function_name - Caller's procedure name
|
|
|
|
* module_name - Caller's module name
|
|
|
|
* component_id - Caller's component ID
|
2005-04-17 00:20:36 +02:00
|
|
|
* Format - Printf format field
|
|
|
|
* ... - Optional printf arguments
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Print message with no headers. Has same interface as
|
|
|
|
* debug_print so that the same macros can be used.
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
******************************************************************************/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
|
|
|
acpi_ut_debug_print_raw(u32 requested_debug_level,
|
|
|
|
u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name, u32 component_id, char *format, ...)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
va_list args;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (!(requested_debug_level & acpi_dbg_level) ||
|
2005-08-05 06:44:28 +02:00
|
|
|
!(component_id & acpi_dbg_layer)) {
|
2005-04-17 00:20:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
va_start(args, format);
|
|
|
|
acpi_os_vprintf(format, args);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
EXPORT_SYMBOL(acpi_ut_debug_print_raw);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*******************************************************************************
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_trace
|
|
|
|
*
|
|
|
|
* PARAMETERS: line_number - Caller's line number
|
2005-07-08 06:00:00 +02:00
|
|
|
* function_name - Caller's procedure name
|
|
|
|
* module_name - Caller's module name
|
|
|
|
* component_id - Caller's component ID
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
|
|
|
|
* set in debug_level
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
******************************************************************************/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_trace(u32 line_number,
|
|
|
|
const char *function_name, char *module_name, u32 component_id)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
acpi_gbl_nesting_level++;
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_track_stack_ptr();
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
|
|
|
|
line_number, function_name, module_name,
|
|
|
|
component_id, "%s\n", acpi_gbl_fn_entry_str);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
EXPORT_SYMBOL(acpi_ut_trace);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*******************************************************************************
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_trace_ptr
|
|
|
|
*
|
|
|
|
* PARAMETERS: line_number - Caller's line number
|
2005-07-08 06:00:00 +02:00
|
|
|
* function_name - Caller's procedure name
|
|
|
|
* module_name - Caller's module name
|
|
|
|
* component_id - Caller's component ID
|
2005-04-17 00:20:36 +02:00
|
|
|
* Pointer - Pointer to display
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
|
|
|
|
* set in debug_level
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
******************************************************************************/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_trace_ptr(u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name, u32 component_id, void *pointer)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
acpi_gbl_nesting_level++;
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_track_stack_ptr();
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
|
|
|
|
line_number, function_name, module_name,
|
|
|
|
component_id, "%s %p\n", acpi_gbl_fn_entry_str,
|
|
|
|
pointer);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*******************************************************************************
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_trace_str
|
|
|
|
*
|
|
|
|
* PARAMETERS: line_number - Caller's line number
|
2005-07-08 06:00:00 +02:00
|
|
|
* function_name - Caller's procedure name
|
|
|
|
* module_name - Caller's module name
|
|
|
|
* component_id - Caller's component ID
|
2005-04-17 00:20:36 +02:00
|
|
|
* String - Additional string to display
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
|
|
|
|
* set in debug_level
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
******************************************************************************/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_trace_str(u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name, u32 component_id, char *string)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
acpi_gbl_nesting_level++;
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_track_stack_ptr();
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
|
|
|
|
line_number, function_name, module_name,
|
|
|
|
component_id, "%s %s\n", acpi_gbl_fn_entry_str,
|
|
|
|
string);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*******************************************************************************
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_trace_u32
|
|
|
|
*
|
|
|
|
* PARAMETERS: line_number - Caller's line number
|
2005-07-08 06:00:00 +02:00
|
|
|
* function_name - Caller's procedure name
|
|
|
|
* module_name - Caller's module name
|
|
|
|
* component_id - Caller's component ID
|
2005-04-17 00:20:36 +02:00
|
|
|
* Integer - Integer to display
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Function entry trace. Prints only if TRACE_FUNCTIONS bit is
|
|
|
|
* set in debug_level
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
******************************************************************************/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_trace_u32(u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name, u32 component_id, u32 integer)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
acpi_gbl_nesting_level++;
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_track_stack_ptr();
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
|
|
|
|
line_number, function_name, module_name,
|
|
|
|
component_id, "%s %08X\n", acpi_gbl_fn_entry_str,
|
|
|
|
integer);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*******************************************************************************
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_exit
|
|
|
|
*
|
|
|
|
* PARAMETERS: line_number - Caller's line number
|
2005-07-08 06:00:00 +02:00
|
|
|
* function_name - Caller's procedure name
|
|
|
|
* module_name - Caller's module name
|
|
|
|
* component_id - Caller's component ID
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
|
|
|
|
* set in debug_level
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
******************************************************************************/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_exit(u32 line_number,
|
|
|
|
const char *function_name, char *module_name, u32 component_id)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
|
|
|
|
line_number, function_name, module_name,
|
|
|
|
component_id, "%s\n", acpi_gbl_fn_exit_str);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_gbl_nesting_level--;
|
|
|
|
}
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
EXPORT_SYMBOL(acpi_ut_exit);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*******************************************************************************
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_status_exit
|
|
|
|
*
|
|
|
|
* PARAMETERS: line_number - Caller's line number
|
2005-07-08 06:00:00 +02:00
|
|
|
* function_name - Caller's procedure name
|
|
|
|
* module_name - Caller's module name
|
|
|
|
* component_id - Caller's component ID
|
2005-04-17 00:20:36 +02:00
|
|
|
* Status - Exit status code
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
|
|
|
|
* set in debug_level. Prints exit status also.
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
******************************************************************************/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_status_exit(u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name, u32 component_id, acpi_status status)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
if (ACPI_SUCCESS(status)) {
|
|
|
|
acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
|
|
|
|
line_number, function_name, module_name,
|
|
|
|
component_id, "%s %s\n",
|
|
|
|
acpi_gbl_fn_exit_str,
|
|
|
|
acpi_format_exception(status));
|
|
|
|
} else {
|
|
|
|
acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
|
|
|
|
line_number, function_name, module_name,
|
|
|
|
component_id, "%s ****Exception****: %s\n",
|
|
|
|
acpi_gbl_fn_exit_str,
|
|
|
|
acpi_format_exception(status));
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
acpi_gbl_nesting_level--;
|
|
|
|
}
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
EXPORT_SYMBOL(acpi_ut_status_exit);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*******************************************************************************
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_value_exit
|
|
|
|
*
|
|
|
|
* PARAMETERS: line_number - Caller's line number
|
2005-07-08 06:00:00 +02:00
|
|
|
* function_name - Caller's procedure name
|
|
|
|
* module_name - Caller's module name
|
|
|
|
* component_id - Caller's component ID
|
2005-04-17 00:20:36 +02:00
|
|
|
* Value - Value to be printed with exit msg
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
|
|
|
|
* set in debug_level. Prints exit value also.
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
******************************************************************************/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_value_exit(u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name, u32 component_id, acpi_integer value)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
|
|
|
|
line_number, function_name, module_name,
|
|
|
|
component_id, "%s %8.8X%8.8X\n",
|
|
|
|
acpi_gbl_fn_exit_str, ACPI_FORMAT_UINT64(value));
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_gbl_nesting_level--;
|
|
|
|
}
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
EXPORT_SYMBOL(acpi_ut_value_exit);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*******************************************************************************
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_ptr_exit
|
|
|
|
*
|
|
|
|
* PARAMETERS: line_number - Caller's line number
|
2005-07-08 06:00:00 +02:00
|
|
|
* function_name - Caller's procedure name
|
|
|
|
* module_name - Caller's module name
|
|
|
|
* component_id - Caller's component ID
|
2005-04-19 04:49:35 +02:00
|
|
|
* Ptr - Pointer to display
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Function exit trace. Prints only if TRACE_FUNCTIONS bit is
|
|
|
|
* set in debug_level. Prints exit value also.
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
******************************************************************************/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_ptr_exit(u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name, u32 component_id, u8 * ptr)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_debug_print(ACPI_LV_FUNCTIONS,
|
|
|
|
line_number, function_name, module_name,
|
|
|
|
component_id, "%s %p\n", acpi_gbl_fn_exit_str, ptr);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_gbl_nesting_level--;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*******************************************************************************
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ut_dump_buffer
|
|
|
|
*
|
|
|
|
* PARAMETERS: Buffer - Buffer to dump
|
|
|
|
* Count - Amount to dump, in bytes
|
|
|
|
* Display - BYTE, WORD, DWORD, or QWORD display
|
|
|
|
* component_iD - Caller's component ID
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Generic dump buffer in both hex and ascii.
|
|
|
|
*
|
2005-04-19 04:49:35 +02:00
|
|
|
******************************************************************************/
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_dump_buffer(u8 * buffer, u32 count, u32 display, u32 component_id)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_native_uint i = 0;
|
|
|
|
acpi_native_uint j;
|
|
|
|
u32 temp32;
|
|
|
|
u8 buf_char;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* Only dump the buffer if tracing is enabled */
|
|
|
|
|
|
|
|
if (!((ACPI_LV_TABLES & acpi_dbg_level) &&
|
2005-08-05 06:44:28 +02:00
|
|
|
(component_id & acpi_dbg_layer))) {
|
2005-04-17 00:20:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((count < 4) || (count & 0x01)) {
|
|
|
|
display = DB_BYTE_DISPLAY;
|
|
|
|
}
|
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/* Nasty little dump buffer routine! */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
while (i < count) {
|
|
|
|
/* Print current offset */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("%6.4X: ", (u32) i);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* Print 16 hex chars */
|
|
|
|
|
|
|
|
for (j = 0; j < 16;) {
|
|
|
|
if (i + j >= count) {
|
2005-04-19 04:49:35 +02:00
|
|
|
/* Dump fill spaces */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("%*s", ((display * 2) + 1), " ");
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 06:00:00 +02:00
|
|
|
j += (acpi_native_uint) display;
|
2005-04-19 04:49:35 +02:00
|
|
|
continue;
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
switch (display) {
|
2005-08-05 06:44:28 +02:00
|
|
|
default: /* Default is BYTE display */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("%02X ", buffer[i + j]);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DB_WORD_DISPLAY:
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
ACPI_MOVE_16_TO_32(&temp32, &buffer[i + j]);
|
|
|
|
acpi_os_printf("%04X ", temp32);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DB_DWORD_DISPLAY:
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
ACPI_MOVE_32_TO_32(&temp32, &buffer[i + j]);
|
|
|
|
acpi_os_printf("%08X ", temp32);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DB_QWORD_DISPLAY:
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
ACPI_MOVE_32_TO_32(&temp32, &buffer[i + j]);
|
|
|
|
acpi_os_printf("%08X", temp32);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
ACPI_MOVE_32_TO_32(&temp32, &buffer[i + j + 4]);
|
|
|
|
acpi_os_printf("%08X ", temp32);
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
|
|
|
}
|
2005-04-19 04:49:35 +02:00
|
|
|
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 06:00:00 +02:00
|
|
|
j += (acpi_native_uint) display;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2005-07-30 00:15:00 +02:00
|
|
|
* Print the ASCII equivalent characters but watch out for the bad
|
|
|
|
* unprintable ones (printable chars are 0x20 through 0x7E)
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf(" ");
|
2005-04-17 00:20:36 +02:00
|
|
|
for (j = 0; j < 16; j++) {
|
|
|
|
if (i + j >= count) {
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("\n");
|
2005-04-17 00:20:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf_char = buffer[i + j];
|
2005-08-05 06:44:28 +02:00
|
|
|
if (ACPI_IS_PRINT(buf_char)) {
|
|
|
|
acpi_os_printf("%c", buf_char);
|
|
|
|
} else {
|
|
|
|
acpi_os_printf(".");
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Done with that line. */
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_os_printf("\n");
|
2005-04-17 00:20:36 +02:00
|
|
|
i += 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|