aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/acpi/utilities/utglobal.c36
-rw-r--r--include/acpi/acutils.h2
2 files changed, 38 insertions, 0 deletions
diff --git a/drivers/acpi/utilities/utglobal.c b/drivers/acpi/utilities/utglobal.c
index 248eefc369f8..bcace577183b 100644
--- a/drivers/acpi/utilities/utglobal.c
+++ b/drivers/acpi/utilities/utglobal.c
@@ -45,6 +45,7 @@
45 45
46#include <acpi/acpi.h> 46#include <acpi/acpi.h>
47#include <acpi/acnamesp.h> 47#include <acpi/acnamesp.h>
48#include <acpi/amlcode.h>
48 49
49ACPI_EXPORT_SYMBOL(acpi_gbl_FADT) 50ACPI_EXPORT_SYMBOL(acpi_gbl_FADT)
50#define _COMPONENT ACPI_UTILITIES 51#define _COMPONENT ACPI_UTILITIES
@@ -575,6 +576,41 @@ char *acpi_ut_get_descriptor_name(void *object)
575 576
576} 577}
577 578
579/*******************************************************************************
580 *
581 * FUNCTION: acpi_ut_get_reference_name
582 *
583 * PARAMETERS: Object - An ACPI reference object
584 *
585 * RETURN: Pointer to a string
586 *
587 * DESCRIPTION: Decode a reference object sub-type to a string.
588 *
589 ******************************************************************************/
590
591/* Printable names of reference object sub-types */
592
593const char *acpi_ut_get_reference_name(union acpi_operand_object *object)
594{
595
596 switch (object->reference.opcode) {
597 case AML_INT_NAMEPATH_OP:
598 return "Name";
599
600 case AML_LOAD_OP:
601 return "DDB-Handle";
602
603 case AML_REF_OF_OP:
604 return "RefOf";
605
606 case AML_INDEX_OP:
607 return "Index";
608
609 default:
610 return "Unknown";
611 }
612}
613
578#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER) 614#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
579/* 615/*
580 * Strings and procedures used for debug only 616 * Strings and procedures used for debug only
diff --git a/include/acpi/acutils.h b/include/acpi/acutils.h
index 10ce81406f9c..d8307b2987e3 100644
--- a/include/acpi/acutils.h
+++ b/include/acpi/acutils.h
@@ -126,6 +126,8 @@ char *acpi_ut_get_node_name(void *object);
126 126
127char *acpi_ut_get_descriptor_name(void *object); 127char *acpi_ut_get_descriptor_name(void *object);
128 128
129const char *acpi_ut_get_reference_name(union acpi_operand_object *object);
130
129char *acpi_ut_get_object_type_name(union acpi_operand_object *obj_desc); 131char *acpi_ut_get_object_type_name(union acpi_operand_object *obj_desc);
130 132
131char *acpi_ut_get_region_name(u8 space_id); 133char *acpi_ut_get_region_name(u8 space_id);