mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 19:53:59 +08:00
ACPICA: Improvements for debug output only
ACPICA commit c3f798b7b0e4f2403d3ce0cc1107ab0932efe1e3 Changes to debug print and debug function tracing. Link: https://github.com/acpica/acpica/commit/c3f798b7 Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
a9d8ea79d7
commit
b9ef2ab058
@ -82,7 +82,7 @@ acpi_ds_execute_arguments(struct acpi_namespace_node *node,
|
|||||||
union acpi_parse_object *op;
|
union acpi_parse_object *op;
|
||||||
struct acpi_walk_state *walk_state;
|
struct acpi_walk_state *walk_state;
|
||||||
|
|
||||||
ACPI_FUNCTION_TRACE(ds_execute_arguments);
|
ACPI_FUNCTION_TRACE_PTR(ds_execute_arguments, aml_start);
|
||||||
|
|
||||||
/* Allocate a new parser op to be the root of the parsed tree */
|
/* Allocate a new parser op to be the root of the parsed tree */
|
||||||
|
|
||||||
@ -338,7 +338,8 @@ acpi_status acpi_ds_get_package_arguments(union acpi_operand_object *obj_desc)
|
|||||||
return_ACPI_STATUS(AE_AML_INTERNAL);
|
return_ACPI_STATUS(AE_AML_INTERNAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Package Arg Init\n"));
|
ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Package Argument Init, AML Ptr: %p\n",
|
||||||
|
obj_desc->package.aml_start));
|
||||||
|
|
||||||
/* Execute the AML code for the term_arg arguments */
|
/* Execute the AML code for the term_arg arguments */
|
||||||
|
|
||||||
|
@ -576,8 +576,8 @@ acpi_status acpi_ds_exec_end_op(struct acpi_walk_state *walk_state)
|
|||||||
case AML_TYPE_CREATE_OBJECT:
|
case AML_TYPE_CREATE_OBJECT:
|
||||||
|
|
||||||
ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
|
ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
|
||||||
"Executing CreateObject (Buffer/Package) Op=%p\n",
|
"Executing CreateObject (Buffer/Package) Op=%p AMLPtr=%p\n",
|
||||||
op));
|
op, op->named.data));
|
||||||
|
|
||||||
switch (op->common.parent->common.aml_opcode) {
|
switch (op->common.parent->common.aml_opcode) {
|
||||||
case AML_NAME_OP:
|
case AML_NAME_OP:
|
||||||
|
@ -645,10 +645,12 @@ void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth)
|
|||||||
/* obj_desc is a valid object */
|
/* obj_desc is a valid object */
|
||||||
|
|
||||||
if (depth > 0) {
|
if (depth > 0) {
|
||||||
ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%*s[%u] %p ",
|
ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%*s[%u] %p Refs=%u ",
|
||||||
depth, " ", depth, obj_desc));
|
depth, " ", depth, obj_desc,
|
||||||
|
obj_desc->common.reference_count));
|
||||||
} else {
|
} else {
|
||||||
ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%p ", obj_desc));
|
ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%p Refs=%u ",
|
||||||
|
obj_desc, obj_desc->common.reference_count));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Decode object type */
|
/* Decode object type */
|
||||||
@ -690,8 +692,11 @@ void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth)
|
|||||||
|
|
||||||
case ACPI_REFCLASS_NAME:
|
case ACPI_REFCLASS_NAME:
|
||||||
|
|
||||||
acpi_os_printf("- [%4.4s]\n",
|
acpi_ut_repair_name(obj_desc->reference.node->name.
|
||||||
obj_desc->reference.node->name.ascii);
|
ascii);
|
||||||
|
acpi_os_printf("- [%4.4s] (Node %p)\n",
|
||||||
|
obj_desc->reference.node->name.ascii,
|
||||||
|
obj_desc->reference.node);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ACPI_REFCLASS_ARG:
|
case ACPI_REFCLASS_ARG:
|
||||||
@ -999,9 +1004,15 @@ static void acpi_ex_dump_reference_obj(union acpi_operand_object *obj_desc)
|
|||||||
status = acpi_ns_handle_to_pathname(obj_desc->reference.node,
|
status = acpi_ns_handle_to_pathname(obj_desc->reference.node,
|
||||||
&ret_buf, TRUE);
|
&ret_buf, TRUE);
|
||||||
if (ACPI_FAILURE(status)) {
|
if (ACPI_FAILURE(status)) {
|
||||||
acpi_os_printf(" Could not convert name to pathname\n");
|
acpi_os_printf
|
||||||
|
(" Could not convert name to pathname: %s\n",
|
||||||
|
acpi_format_exception(status));
|
||||||
} else {
|
} else {
|
||||||
acpi_os_printf("%s\n", (char *)ret_buf.pointer);
|
acpi_os_printf("%s: %s\n",
|
||||||
|
acpi_ut_get_type_name(obj_desc->
|
||||||
|
reference.node->
|
||||||
|
type),
|
||||||
|
(char *)ret_buf.pointer);
|
||||||
ACPI_FREE(ret_buf.pointer);
|
ACPI_FREE(ret_buf.pointer);
|
||||||
}
|
}
|
||||||
} else if (obj_desc->reference.object) {
|
} else if (obj_desc->reference.object) {
|
||||||
@ -1111,9 +1122,8 @@ acpi_ex_dump_package_obj(union acpi_operand_object *obj_desc,
|
|||||||
|
|
||||||
case ACPI_TYPE_LOCAL_REFERENCE:
|
case ACPI_TYPE_LOCAL_REFERENCE:
|
||||||
|
|
||||||
acpi_os_printf("[Object Reference] Type [%s] %2.2X",
|
acpi_os_printf("[Object Reference] Class [%s]",
|
||||||
acpi_ut_get_reference_name(obj_desc),
|
acpi_ut_get_reference_name(obj_desc));
|
||||||
obj_desc->reference.class);
|
|
||||||
acpi_ex_dump_reference_obj(obj_desc);
|
acpi_ex_dump_reference_obj(obj_desc);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user