|
@@ -514,8 +514,14 @@ void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth)
|
|
|
|
|
|
case AML_REF_OF_OP:
|
|
|
|
|
|
- acpi_os_printf("Reference: (RefOf) %p\n",
|
|
|
- obj_desc->reference.object);
|
|
|
+ acpi_os_printf("Reference: (RefOf) %p [%s]\n",
|
|
|
+ obj_desc->reference.object,
|
|
|
+ acpi_ut_get_type_name(((union
|
|
|
+ acpi_operand_object
|
|
|
+ *)obj_desc->
|
|
|
+ reference.
|
|
|
+ object)->common.
|
|
|
+ type));
|
|
|
break;
|
|
|
|
|
|
case AML_ARG_OP:
|
|
@@ -556,8 +562,9 @@ void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth)
|
|
|
|
|
|
case AML_INT_NAMEPATH_OP:
|
|
|
|
|
|
- acpi_os_printf("Reference.Node->Name %X\n",
|
|
|
- obj_desc->reference.node->name.integer);
|
|
|
+ acpi_os_printf("Reference: Namepath %X [%4.4s]\n",
|
|
|
+ obj_desc->reference.node->name.integer,
|
|
|
+ obj_desc->reference.node->name.ascii);
|
|
|
break;
|
|
|
|
|
|
default:
|
|
@@ -874,20 +881,32 @@ static void acpi_ex_dump_reference_obj(union acpi_operand_object *obj_desc)
|
|
|
ret_buf.length = ACPI_ALLOCATE_LOCAL_BUFFER;
|
|
|
|
|
|
if (obj_desc->reference.opcode == AML_INT_NAMEPATH_OP) {
|
|
|
- acpi_os_printf("Named Object %p ", obj_desc->reference.node);
|
|
|
+ acpi_os_printf(" Named Object %p ", obj_desc->reference.node);
|
|
|
|
|
|
status =
|
|
|
acpi_ns_handle_to_pathname(obj_desc->reference.node,
|
|
|
&ret_buf);
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
- acpi_os_printf("Could not convert name to pathname\n");
|
|
|
+ acpi_os_printf(" Could not convert name to pathname\n");
|
|
|
} else {
|
|
|
acpi_os_printf("%s\n", (char *)ret_buf.pointer);
|
|
|
ACPI_FREE(ret_buf.pointer);
|
|
|
}
|
|
|
} else if (obj_desc->reference.object) {
|
|
|
- acpi_os_printf("\nReferenced Object: %p\n",
|
|
|
- obj_desc->reference.object);
|
|
|
+ if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) ==
|
|
|
+ ACPI_DESC_TYPE_OPERAND) {
|
|
|
+ acpi_os_printf(" Target: %p [%s]\n",
|
|
|
+ obj_desc->reference.object,
|
|
|
+ acpi_ut_get_type_name(((union
|
|
|
+ acpi_operand_object
|
|
|
+ *)obj_desc->
|
|
|
+ reference.
|
|
|
+ object)->common.
|
|
|
+ type));
|
|
|
+ } else {
|
|
|
+ acpi_os_printf(" Target: %p\n",
|
|
|
+ obj_desc->reference.object);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -973,7 +992,9 @@ acpi_ex_dump_package_obj(union acpi_operand_object *obj_desc,
|
|
|
|
|
|
case ACPI_TYPE_LOCAL_REFERENCE:
|
|
|
|
|
|
- acpi_os_printf("[Object Reference] ");
|
|
|
+ acpi_os_printf("[Object Reference] %s",
|
|
|
+ (acpi_ps_get_opcode_info
|
|
|
+ (obj_desc->reference.opcode))->name);
|
|
|
acpi_ex_dump_reference_obj(obj_desc);
|
|
|
break;
|
|
|
|