patch-2.4.6 linux/drivers/acpi/debugger/dbdisasm.c
Next file: linux/drivers/acpi/debugger/dbdisply.c
Previous file: linux/drivers/acpi/debugger/dbcmds.c
Back to the patch index
Back to the overall index
- Lines: 675
- Date:
Wed Jun 20 17:47:39 2001
- Orig file:
v2.4.5/linux/drivers/acpi/debugger/dbdisasm.c
- Orig date:
Wed Dec 31 16:00:00 1969
diff -u --recursive --new-file v2.4.5/linux/drivers/acpi/debugger/dbdisasm.c linux/drivers/acpi/debugger/dbdisasm.c
@@ -0,0 +1,674 @@
+/*******************************************************************************
+ *
+ * Module Name: dbdisasm - parser op tree display routines
+ * $Revision: 40 $
+ *
+ ******************************************************************************/
+
+/*
+ * Copyright (C) 2000, 2001 R. Byron Moore
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+
+#include "acpi.h"
+#include "acparser.h"
+#include "amlcode.h"
+#include "acnamesp.h"
+#include "acdebug.h"
+
+
+#ifdef ENABLE_DEBUGGER
+
+#define _COMPONENT ACPI_DEBUGGER
+ MODULE_NAME ("dbdisasm")
+
+
+#define MAX_SHOW_ENTRY 128
+#define BLOCK_PAREN 1
+#define BLOCK_BRACE 2
+#define DB_NO_OP_INFO " [%2.2d] "
+#define DB_FULL_OP_INFO "%5.5X #%4.4X [%2.2d] "
+
+
+NATIVE_CHAR *INDENT_STRING = "....";
+
+
+/*******************************************************************************
+ *
+ * FUNCTION: Acpi_db_block_type
+ *
+ * PARAMETERS: Op - Object to be examined
+ *
+ * RETURN: Status
+ *
+ * DESCRIPTION: Type of block for this op (parens or braces)
+ *
+ ******************************************************************************/
+
+u32
+acpi_db_block_type (
+ ACPI_PARSE_OBJECT *op)
+{
+
+ switch (op->opcode) {
+ case AML_METHOD_OP:
+ return (BLOCK_BRACE);
+ break;
+
+ default:
+ break;
+ }
+
+ return (BLOCK_PAREN);
+
+}
+
+
+/*******************************************************************************
+ *
+ * FUNCTION: Acpi_ps_display_object_pathname
+ *
+ * PARAMETERS: Op - Object whose pathname is to be obtained
+ *
+ * RETURN: Status
+ *
+ * DESCRIPTION: Diplay the pathname associated with a named object. Two
+ * versions. One searches the parse tree (for parser-only
+ * applications suchas Acpi_dump), and the other searches the
+ * ACPI namespace (the parse tree is probably deleted)
+ *
+ ******************************************************************************/
+
+#ifdef PARSER_ONLY
+
+ACPI_STATUS
+acpi_ps_display_object_pathname (
+ ACPI_PARSE_OBJECT *op)
+{
+ ACPI_PARSE_OBJECT *target_op;
+
+
+ /* Search parent tree up to the root if necessary */
+
+ target_op = acpi_ps_find (op, op->value.name, 0, 0);
+ if (!target_op) {
+ /*
+ * Didn't find the name in the parse tree. This may be
+ * a problem, or it may simply be one of the predefined names
+ * (such as _OS_). Rather than worry about looking up all
+ * the predefined names, just display the name as given
+ */
+
+ acpi_os_printf (" **** Path not found in parse tree");
+ }
+
+ else {
+ /* The target was found, print the name and complete path */
+
+ acpi_os_printf (" (Path ");
+ acpi_db_display_path (target_op);
+ acpi_os_printf (")");
+ }
+
+ return (AE_OK);
+}
+
+#else
+
+ACPI_STATUS
+acpi_ps_display_object_pathname (
+ ACPI_PARSE_OBJECT *op)
+{
+ ACPI_STATUS status;
+ ACPI_NAMESPACE_NODE *node;
+ NATIVE_CHAR buffer[MAX_SHOW_ENTRY];
+ u32 buffer_size = MAX_SHOW_ENTRY;
+
+
+ acpi_os_printf (" (Path ");
+
+ /* Just get the Node out of the Op object */
+
+ node = op->node;
+ if (!node) {
+ /*
+ * No Named obj, so we can't get the pathname since the object
+ * is not in the namespace. This can happen during single
+ * stepping where a dynamic named object is *about* to be created.
+ */
+ return (AE_OK);
+ }
+
+ /* Convert Named_desc/handle to a full pathname */
+
+ status = acpi_ns_handle_to_pathname (node, &buffer_size, buffer);
+ if (ACPI_FAILURE (status)) {
+ acpi_os_printf ("****Could not get pathname****)");
+ return (status);
+ }
+
+ acpi_os_printf ("%s)", buffer);
+ return (AE_OK);
+}
+
+#endif
+
+
+/*******************************************************************************
+ *
+ * FUNCTION: Acpi_db_display_op
+ *
+ * PARAMETERS: Origin - Starting object
+ * Num_opcodes - Max number of opcodes to be displayed
+ *
+ * RETURN: None
+ *
+ * DESCRIPTION: Display parser object and its children
+ *
+ ******************************************************************************/
+
+void
+acpi_db_display_op (
+ ACPI_WALK_STATE *walk_state,
+ ACPI_PARSE_OBJECT *origin,
+ u32 num_opcodes)
+{
+ ACPI_PARSE_OBJECT *op = origin;
+ ACPI_PARSE_OBJECT *arg;
+ ACPI_PARSE_OBJECT *depth;
+ u32 depth_count = 0;
+ u32 last_depth = 0;
+ u32 i;
+ u32 j;
+
+
+ if (op) {
+ while (op) {
+ /* indentation */
+
+ depth_count = 0;
+ if (!opt_verbose) {
+ depth_count++;
+ }
+
+ /* Determine the nesting depth of this argument */
+
+ for (depth = op->parent; depth; depth = depth->parent) {
+ arg = acpi_ps_get_arg (depth, 0);
+ while (arg && arg != origin) {
+ arg = arg->next;
+ }
+
+ if (arg) {
+ break;
+ }
+
+ depth_count++;
+ }
+
+
+ /* Open a new block if we are nested further than last time */
+
+ if (depth_count > last_depth) {
+ VERBOSE_PRINT ((DB_NO_OP_INFO, last_depth));
+ for (i = 0; i < last_depth; i++) {
+ acpi_os_printf (INDENT_STRING);
+ }
+
+ if (acpi_db_block_type (op) == BLOCK_PAREN) {
+ acpi_os_printf ("(\n");
+ }
+ else {
+ acpi_os_printf ("{\n");
+ }
+ }
+
+ /* Close a block if we are nested less than last time */
+
+ else if (depth_count < last_depth) {
+ for (j = 0; j < (last_depth - depth_count); j++) {
+ VERBOSE_PRINT ((DB_NO_OP_INFO, last_depth - j));
+ for (i = 0; i < (last_depth - j - 1); i++) {
+ acpi_os_printf (INDENT_STRING);
+ }
+
+ if (acpi_db_block_type (op) == BLOCK_PAREN) {
+ acpi_os_printf (")\n");
+ }
+ else {
+ acpi_os_printf ("}\n");
+ }
+ }
+ }
+
+ /* In verbose mode, print the AML offset, opcode and depth count */
+
+ VERBOSE_PRINT ((DB_FULL_OP_INFO, (unsigned) op->aml_offset, op->opcode, depth_count));
+
+
+ /* Indent the output according to the depth count */
+
+ for (i = 0; i < depth_count; i++) {
+ acpi_os_printf (INDENT_STRING);
+ }
+
+
+ /* Now print the opcode */
+
+ acpi_db_display_opcode (walk_state, op);
+
+ /* Resolve a name reference */
+
+ if ((op->opcode == AML_INT_NAMEPATH_OP && op->value.name) &&
+ (op->parent) &&
+ (opt_verbose)) {
+ acpi_ps_display_object_pathname (op);
+ }
+
+ acpi_os_printf ("\n");
+
+ /* Get the next node in the tree */
+
+ op = acpi_ps_get_depth_next (origin, op);
+ last_depth = depth_count;
+
+ num_opcodes--;
+ if (!num_opcodes) {
+ op = NULL;
+ }
+ }
+
+ /* Close the last block(s) */
+
+ depth_count = last_depth -1;
+ for (i = 0; i < last_depth; i++) {
+ VERBOSE_PRINT ((DB_NO_OP_INFO, last_depth - i));
+ for (j = 0; j < depth_count; j++) {
+ acpi_os_printf (INDENT_STRING);
+ }
+ acpi_os_printf ("}\n");
+ depth_count--;
+ }
+
+ }
+
+ else {
+ acpi_db_display_opcode (walk_state, op);
+ }
+}
+
+
+/*******************************************************************************
+ *
+ * FUNCTION: Acpi_db_display_namestring
+ *
+ * PARAMETERS: Name - ACPI Name string to store
+ *
+ * RETURN: None
+ *
+ * DESCRIPTION: Display namestring. Handles prefix characters
+ *
+ ******************************************************************************/
+
+void
+acpi_db_display_namestring (
+ NATIVE_CHAR *name)
+{
+ u32 seg_count;
+ u8 do_dot = FALSE;
+
+
+ if (!name) {
+ acpi_os_printf ("<NULL NAME PTR>");
+ return;
+ }
+
+ if (acpi_ps_is_prefix_char (GET8 (name))) {
+ /* append prefix character */
+
+ acpi_os_printf ("%1c", GET8 (name));
+ name++;
+ }
+
+ switch (GET8 (name)) {
+ case AML_DUAL_NAME_PREFIX:
+ seg_count = 2;
+ name++;
+ break;
+
+ case AML_MULTI_NAME_PREFIX_OP:
+ seg_count = (u32) GET8 (name + 1);
+ name += 2;
+ break;
+
+ default:
+ seg_count = 1;
+ break;
+ }
+
+ while (seg_count--) {
+ /* append Name segment */
+
+ if (do_dot) {
+ /* append dot */
+
+ acpi_os_printf (".");
+ }
+
+ acpi_os_printf ("%4.4s", name);
+ do_dot = TRUE;
+
+ name += 4;
+ }
+}
+
+
+/*******************************************************************************
+ *
+ * FUNCTION: Acpi_db_display_path
+ *
+ * PARAMETERS: Op - Named Op whose path is to be constructed
+ *
+ * RETURN: None
+ *
+ * DESCRIPTION: Walk backwards from current scope and display the name
+ * of each previous level of scope up to the root scope
+ * (like "pwd" does with file systems)
+ *
+ ******************************************************************************/
+
+void
+acpi_db_display_path (
+ ACPI_PARSE_OBJECT *op)
+{
+ ACPI_PARSE_OBJECT *prev;
+ ACPI_PARSE_OBJECT *search;
+ u32 name;
+ u8 do_dot = FALSE;
+ ACPI_PARSE_OBJECT *name_path;
+
+
+ /* We are only interested in named objects */
+
+ if (!acpi_ps_is_node_op (op->opcode)) {
+ return;
+ }
+
+
+ if (acpi_ps_is_create_field_op (op->opcode)) {
+ /* Field creation - check for a fully qualified namepath */
+
+ if (op->opcode == AML_CREATE_FIELD_OP) {
+ name_path = acpi_ps_get_arg (op, 3);
+ }
+ else {
+ name_path = acpi_ps_get_arg (op, 2);
+ }
+
+ if ((name_path) &&
+ (name_path->value.string) &&
+ (name_path->value.string[0] == '\\')) {
+ acpi_db_display_namestring (name_path->value.string);
+ return;
+ }
+ }
+
+ prev = NULL; /* Start with Root Node */
+
+ while (prev != op) {
+ /* Search upwards in the tree to find scope with "prev" as its parent */
+
+ search = op;
+ for (; ;) {
+ if (search->parent == prev) {
+ break;
+ }
+
+ /* Go up one level */
+
+ search = search->parent;
+ }
+
+ if (prev && !acpi_ps_is_field_op (search->opcode)) {
+ /* below root scope, append scope name */
+
+ if (do_dot) {
+ /* append dot */
+
+ acpi_os_printf (".");
+ }
+
+ if (acpi_ps_is_create_field_op (search->opcode)) {
+ if (op->opcode == AML_CREATE_FIELD_OP) {
+ name_path = acpi_ps_get_arg (op, 3);
+ }
+ else {
+ name_path = acpi_ps_get_arg (op, 2);
+ }
+
+ if ((name_path) &&
+ (name_path->value.string)) {
+ acpi_os_printf ("%4.4s", name_path->value.string);
+ }
+ }
+
+ else {
+ name = acpi_ps_get_name (search);
+ acpi_os_printf ("%4.4s", &name);
+ }
+
+ do_dot = TRUE;
+ }
+
+ prev = search;
+ }
+}
+
+
+/*******************************************************************************
+ *
+ * FUNCTION: Acpi_db_display_opcode
+ *
+ * PARAMETERS: Op - Op that is to be printed
+ *
+ * RETURN: Status
+ *
+ * DESCRIPTION: Store printed op in a Buffer and return its length
+ * (or -1 if out of space)
+ *
+ * NOTE: Terse mode prints out ASL-like code. Verbose mode adds more info.
+ *
+ ******************************************************************************/
+
+void
+acpi_db_display_opcode (
+ ACPI_WALK_STATE *walk_state,
+ ACPI_PARSE_OBJECT *op)
+{
+ u8 *byte_data;
+ u32 byte_count;
+ u32 i;
+ ACPI_OPCODE_INFO *opc = NULL;
+ u32 name;
+
+
+ if (!op) {
+ acpi_os_printf ("<NULL OP PTR>");
+ }
+
+
+ /* op and arguments */
+
+ switch (op->opcode) {
+
+ case AML_BYTE_OP:
+
+ if (opt_verbose) {
+ acpi_os_printf ("(u8) 0x%2.2X", op->value.integer & ACPI_UINT8_MAX);
+ }
+
+ else {
+ acpi_os_printf ("0x%2.2X", op->value.integer & ACPI_UINT8_MAX);
+ }
+
+ break;
+
+
+ case AML_WORD_OP:
+
+ if (opt_verbose) {
+ acpi_os_printf ("(u16) 0x%4.4X", op->value.integer & ACPI_UINT16_MAX);
+ }
+
+ else {
+ acpi_os_printf ("0x%4.4X", op->value.integer & ACPI_UINT16_MAX);
+ }
+
+ break;
+
+
+ case AML_DWORD_OP:
+
+ if (opt_verbose) {
+ acpi_os_printf ("(u32) 0x%8.8X", op->value.integer);
+ }
+
+ else {
+ acpi_os_printf ("0x%8.8X", op->value.integer);
+ }
+
+ break;
+
+
+ case AML_STRING_OP:
+
+ if (op->value.string) {
+ acpi_os_printf ("\"%s\"", op->value.string);
+ }
+
+ else {
+ acpi_os_printf ("<\"NULL STRING PTR\">");
+ }
+
+ break;
+
+
+ case AML_INT_STATICSTRING_OP:
+
+ if (op->value.string) {
+ acpi_os_printf ("\"%s\"", op->value.string);
+ }
+
+ else {
+ acpi_os_printf ("\"<NULL STATIC STRING PTR>\"");
+ }
+
+ break;
+
+
+ case AML_INT_NAMEPATH_OP:
+
+ acpi_db_display_namestring (op->value.name);
+ break;
+
+
+ case AML_INT_NAMEDFIELD_OP:
+
+ acpi_os_printf ("Named_field (Length 0x%8.8X) ", op->value.integer);
+ break;
+
+
+ case AML_INT_RESERVEDFIELD_OP:
+
+ acpi_os_printf ("Reserved_field (Length 0x%8.8X) ", op->value.integer);
+ break;
+
+
+ case AML_INT_ACCESSFIELD_OP:
+
+ acpi_os_printf ("Access_field (Length 0x%8.8X) ", op->value.integer);
+ break;
+
+
+ case AML_INT_BYTELIST_OP:
+
+ if (opt_verbose) {
+ acpi_os_printf ("Byte_list (Length 0x%8.8X) ", op->value.integer);
+ }
+
+ else {
+ acpi_os_printf ("0x%2.2X", op->value.integer);
+
+ byte_count = op->value.integer;
+ byte_data = ((ACPI_PARSE2_OBJECT *) op)->data;
+
+ for (i = 0; i < byte_count; i++) {
+ acpi_os_printf (", 0x%2.2X", byte_data[i]);
+ }
+ }
+
+ break;
+
+
+ default:
+
+ /* Just get the opcode name and print it */
+
+ opc = acpi_ps_get_opcode_info (op->opcode);
+ acpi_os_printf ("%s", opc->name);
+
+
+#ifndef PARSER_ONLY
+ if ((op->opcode == AML_INT_RETURN_VALUE_OP) &&
+ (walk_state->results) &&
+ (walk_state->results->results.num_results)) {
+ acpi_db_decode_internal_object (walk_state->results->results.obj_desc [walk_state->results->results.num_results-1]);
+ }
+#endif
+
+ break;
+ }
+
+
+ if (!opc) {
+ /* If there is another element in the list, add a comma */
+
+ if (op->next) {
+ acpi_os_printf (",");
+ }
+ }
+
+
+ /*
+ * If this is a named opcode, print the associated name value
+ */
+
+ if (op && acpi_ps_is_named_op (op->opcode)) {
+ name = acpi_ps_get_name (op);
+ acpi_os_printf (" %4.4s", &name);
+
+ if (opt_verbose) {
+ acpi_os_printf (" (Path \\");
+ acpi_db_display_path (op);
+ acpi_os_printf (")");
+ }
+ }
+}
+
+
+#endif /* ENABLE_DEBUGGER */
+
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)