nsdump.c 18.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/******************************************************************************
 *
 * Module Name: nsdump - table dumping routines for debug
 *
 *****************************************************************************/

/*
L
Len Brown 已提交
8
 * Copyright (C) 2000 - 2008, Intel Corp.
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
 * 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 <acpi/acpi.h>
L
Len Brown 已提交
45 46
#include "accommon.h"
#include "acnamesp.h"
L
Linus Torvalds 已提交
47 48

#define _COMPONENT          ACPI_NAMESPACE
L
Len Brown 已提交
49
ACPI_MODULE_NAME("nsdump")
L
Linus Torvalds 已提交
50

R
Robert Moore 已提交
51 52
/* Local prototypes */
#ifdef ACPI_OBSOLETE_FUNCTIONS
L
Len Brown 已提交
53
void acpi_ns_dump_root_devices(void);
L
Linus Torvalds 已提交
54

R
Robert Moore 已提交
55
static acpi_status
L
Len Brown 已提交
56 57
acpi_ns_dump_one_device(acpi_handle obj_handle,
			u32 level, void *context, void **return_value);
R
Robert Moore 已提交
58 59 60
#endif

#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
L
Linus Torvalds 已提交
61 62 63 64
/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_print_pathname
 *
R
Robert Moore 已提交
65
 * PARAMETERS:  num_segments        - Number of ACPI name segments
L
Linus Torvalds 已提交
66 67
 *              Pathname            - The compressed (internal) path
 *
R
Robert Moore 已提交
68 69
 * RETURN:      None
 *
L
Linus Torvalds 已提交
70 71 72 73
 * DESCRIPTION: Print an object's full namespace pathname
 *
 ******************************************************************************/

L
Len Brown 已提交
74
void acpi_ns_print_pathname(u32 num_segments, char *pathname)
L
Linus Torvalds 已提交
75
{
76
	u32 i;
77

B
Bob Moore 已提交
78
	ACPI_FUNCTION_NAME(ns_print_pathname);
79

L
Len Brown 已提交
80 81
	if (!(acpi_dbg_level & ACPI_LV_NAMES)
	    || !(acpi_dbg_layer & ACPI_NAMESPACE)) {
L
Linus Torvalds 已提交
82 83 84 85 86
		return;
	}

	/* Print the entire name */

L
Len Brown 已提交
87
	ACPI_DEBUG_PRINT((ACPI_DB_NAMES, "["));
L
Linus Torvalds 已提交
88 89

	while (num_segments) {
90
		for (i = 0; i < 4; i++) {
L
Len Brown 已提交
91 92 93
			ACPI_IS_PRINT(pathname[i]) ?
			    acpi_os_printf("%c", pathname[i]) :
			    acpi_os_printf("?");
94
		}
L
Linus Torvalds 已提交
95

96
		pathname += ACPI_NAME_SIZE;
L
Linus Torvalds 已提交
97 98
		num_segments--;
		if (num_segments) {
L
Len Brown 已提交
99
			acpi_os_printf(".");
L
Linus Torvalds 已提交
100 101 102
		}
	}

L
Len Brown 已提交
103
	acpi_os_printf("]\n");
L
Linus Torvalds 已提交
104 105 106 107 108 109 110 111 112 113 114
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_dump_pathname
 *
 * PARAMETERS:  Handle              - Object
 *              Msg                 - Prefix message
 *              Level               - Desired debug level
 *              Component           - Caller's component ID
 *
R
Robert Moore 已提交
115 116
 * RETURN:      None
 *
L
Linus Torvalds 已提交
117 118 119 120 121 122
 * DESCRIPTION: Print an object's full namespace pathname
 *              Manages allocation/freeing of a pathname buffer
 *
 ******************************************************************************/

void
L
Len Brown 已提交
123
acpi_ns_dump_pathname(acpi_handle handle, char *msg, u32 level, u32 component)
L
Linus Torvalds 已提交
124 125
{

B
Bob Moore 已提交
126
	ACPI_FUNCTION_TRACE(ns_dump_pathname);
L
Linus Torvalds 已提交
127 128 129 130 131 132 133 134 135

	/* Do this only if the requested debug level and component are enabled */

	if (!(acpi_dbg_level & level) || !(acpi_dbg_layer & component)) {
		return_VOID;
	}

	/* Convert handle to a full pathname and print it (with supplied message) */

L
Len Brown 已提交
136 137
	acpi_ns_print_node_pathname(handle, msg);
	acpi_os_printf("\n");
L
Linus Torvalds 已提交
138 139 140 141 142 143 144
	return_VOID;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_dump_one_object
 *
R
Robert Moore 已提交
145
 * PARAMETERS:  obj_handle          - Node to be dumped
L
Linus Torvalds 已提交
146 147
 *              Level               - Nesting level of the handle
 *              Context             - Passed into walk_namespace
R
Robert Moore 已提交
148 149 150
 *              return_value        - Not used
 *
 * RETURN:      Status
L
Linus Torvalds 已提交
151 152 153 154 155 156 157
 *
 * DESCRIPTION: Dump a single Node
 *              This procedure is a user_function called by acpi_ns_walk_namespace.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
158 159
acpi_ns_dump_one_object(acpi_handle obj_handle,
			u32 level, void *context, void **return_value)
L
Linus Torvalds 已提交
160
{
L
Len Brown 已提交
161 162 163 164 165 166 167 168
	struct acpi_walk_info *info = (struct acpi_walk_info *)context;
	struct acpi_namespace_node *this_node;
	union acpi_operand_object *obj_desc = NULL;
	acpi_object_type obj_type;
	acpi_object_type type;
	u32 bytes_to_dump;
	u32 dbg_level;
	u32 i;
L
Linus Torvalds 已提交
169

B
Bob Moore 已提交
170
	ACPI_FUNCTION_NAME(ns_dump_one_object);
L
Linus Torvalds 已提交
171 172 173 174 175 176 177 178

	/* Is output enabled? */

	if (!(acpi_dbg_level & info->debug_level)) {
		return (AE_OK);
	}

	if (!obj_handle) {
L
Len Brown 已提交
179
		ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Null object handle\n"));
L
Linus Torvalds 已提交
180 181 182
		return (AE_OK);
	}

L
Len Brown 已提交
183
	this_node = acpi_ns_map_handle_to_node(obj_handle);
184 185 186 187 188 189
	if (!this_node) {
		ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Invalid object handle %p\n",
				  obj_handle));
		return (AE_OK);
	}

L
Linus Torvalds 已提交
190 191 192 193
	type = this_node->type;

	/* Check if the owner matches */

194
	if ((info->owner_id != ACPI_OWNER_ID_MAX) &&
L
Len Brown 已提交
195
	    (info->owner_id != this_node->owner_id)) {
L
Linus Torvalds 已提交
196 197 198
		return (AE_OK);
	}

199
	if (!(info->display_type & ACPI_DISPLAY_SHORT)) {
B
Bob Moore 已提交
200

201
		/* Indent the object according to the level */
L
Linus Torvalds 已提交
202

L
Len Brown 已提交
203
		acpi_os_printf("%2d%*s", (u32) level - 1, (int)level * 2, " ");
L
Linus Torvalds 已提交
204

205
		/* Check the node type and name */
L
Linus Torvalds 已提交
206

207
		if (type > ACPI_TYPE_LOCAL_MAX) {
B
Bob Moore 已提交
208 209
			ACPI_WARNING((AE_INFO, "Invalid ACPI Object Type %08X",
				      type));
210 211
		}

L
Len Brown 已提交
212
		if (!acpi_ut_valid_acpi_name(this_node->name.integer)) {
B
Bob Moore 已提交
213
			this_node->name.integer =
214
			    acpi_ut_repair_name(this_node->name.ascii);
B
Bob Moore 已提交
215

B
Bob Moore 已提交
216 217
			ACPI_WARNING((AE_INFO, "Invalid ACPI Name %08X",
				      this_node->name.integer));
218
		}
L
Linus Torvalds 已提交
219

L
Len Brown 已提交
220
		acpi_os_printf("%4.4s", acpi_ut_get_node_name(this_node));
L
Linus Torvalds 已提交
221 222
	}

223 224
	/* Now we can print out the pertinent information */

B
Bob Moore 已提交
225 226 227
	acpi_os_printf(" %-12s %p %2.2X ",
		       acpi_ut_get_type_name(type), this_node,
		       this_node->owner_id);
L
Linus Torvalds 已提交
228 229 230

	dbg_level = acpi_dbg_level;
	acpi_dbg_level = 0;
L
Len Brown 已提交
231
	obj_desc = acpi_ns_get_attached_object(this_node);
L
Linus Torvalds 已提交
232 233
	acpi_dbg_level = dbg_level;

234 235 236 237 238 239
	/* Temp nodes are those nodes created by a control method */

	if (this_node->flags & ANOBJ_TEMPORARY) {
		acpi_os_printf("(T) ");
	}

240
	switch (info->display_type & ACPI_DISPLAY_MASK) {
L
Linus Torvalds 已提交
241 242 243
	case ACPI_DISPLAY_SUMMARY:

		if (!obj_desc) {
B
Bob Moore 已提交
244

L
Linus Torvalds 已提交
245 246
			/* No attached object, we are done */

L
Len Brown 已提交
247
			acpi_os_printf("\n");
L
Linus Torvalds 已提交
248 249 250 251 252 253
			return (AE_OK);
		}

		switch (type) {
		case ACPI_TYPE_PROCESSOR:

L
Len Brown 已提交
254 255 256
			acpi_os_printf("ID %X Len %.4X Addr %p\n",
				       obj_desc->processor.proc_id,
				       obj_desc->processor.length,
257 258 259
				       ACPI_CAST_PTR(void,
						     obj_desc->processor.
						     address));
L
Linus Torvalds 已提交
260 261 262 263
			break;

		case ACPI_TYPE_DEVICE:

L
Len Brown 已提交
264
			acpi_os_printf("Notify Object: %p\n", obj_desc);
L
Linus Torvalds 已提交
265 266 267 268
			break;

		case ACPI_TYPE_METHOD:

L
Len Brown 已提交
269 270 271 272
			acpi_os_printf("Args %X Len %.4X Aml %p\n",
				       (u32) obj_desc->method.param_count,
				       obj_desc->method.aml_length,
				       obj_desc->method.aml_start);
L
Linus Torvalds 已提交
273 274 275 276
			break;

		case ACPI_TYPE_INTEGER:

L
Len Brown 已提交
277 278 279
			acpi_os_printf("= %8.8X%8.8X\n",
				       ACPI_FORMAT_UINT64(obj_desc->integer.
							  value));
L
Linus Torvalds 已提交
280 281 282 283 284
			break;

		case ACPI_TYPE_PACKAGE:

			if (obj_desc->common.flags & AOPOBJ_DATA_VALID) {
L
Len Brown 已提交
285 286 287 288
				acpi_os_printf("Elements %.2X\n",
					       obj_desc->package.count);
			} else {
				acpi_os_printf("[Length not yet evaluated]\n");
L
Linus Torvalds 已提交
289 290 291 292 293 294
			}
			break;

		case ACPI_TYPE_BUFFER:

			if (obj_desc->common.flags & AOPOBJ_DATA_VALID) {
L
Len Brown 已提交
295 296
				acpi_os_printf("Len %.2X",
					       obj_desc->buffer.length);
L
Linus Torvalds 已提交
297 298 299 300

				/* Dump some of the buffer */

				if (obj_desc->buffer.length > 0) {
L
Len Brown 已提交
301 302 303 304 305 306 307
					acpi_os_printf(" =");
					for (i = 0;
					     (i < obj_desc->buffer.length
					      && i < 12); i++) {
						acpi_os_printf(" %.2hX",
							       obj_desc->buffer.
							       pointer[i]);
L
Linus Torvalds 已提交
308 309
					}
				}
L
Len Brown 已提交
310 311 312
				acpi_os_printf("\n");
			} else {
				acpi_os_printf("[Length not yet evaluated]\n");
L
Linus Torvalds 已提交
313 314 315 316 317
			}
			break;

		case ACPI_TYPE_STRING:

L
Len Brown 已提交
318 319 320
			acpi_os_printf("Len %.2X ", obj_desc->string.length);
			acpi_ut_print_string(obj_desc->string.pointer, 32);
			acpi_os_printf("\n");
L
Linus Torvalds 已提交
321 322 323 324
			break;

		case ACPI_TYPE_REGION:

L
Len Brown 已提交
325 326 327
			acpi_os_printf("[%s]",
				       acpi_ut_get_region_name(obj_desc->region.
							       space_id));
L
Linus Torvalds 已提交
328
			if (obj_desc->region.flags & AOPOBJ_DATA_VALID) {
L
Len Brown 已提交
329
				acpi_os_printf(" Addr %8.8X%8.8X Len %.4X\n",
330 331
					       ACPI_FORMAT_NATIVE_UINT
					       (obj_desc->region.address),
L
Len Brown 已提交
332 333 334 335
					       obj_desc->region.length);
			} else {
				acpi_os_printf
				    (" [Address/Length not yet evaluated]\n");
L
Linus Torvalds 已提交
336 337 338 339 340
			}
			break;

		case ACPI_TYPE_LOCAL_REFERENCE:

L
Len Brown 已提交
341
			acpi_os_printf("[%s]\n",
342
				       acpi_ut_get_reference_name(obj_desc));
L
Linus Torvalds 已提交
343 344 345 346 347
			break;

		case ACPI_TYPE_BUFFER_FIELD:

			if (obj_desc->buffer_field.buffer_obj &&
L
Len Brown 已提交
348 349 350 351 352 353 354
			    obj_desc->buffer_field.buffer_obj->buffer.node) {
				acpi_os_printf("Buf [%4.4s]",
					       acpi_ut_get_node_name(obj_desc->
								     buffer_field.
								     buffer_obj->
								     buffer.
								     node));
L
Linus Torvalds 已提交
355 356 357 358 359
			}
			break;

		case ACPI_TYPE_LOCAL_REGION_FIELD:

L
Len Brown 已提交
360 361 362 363 364
			acpi_os_printf("Rgn [%4.4s]",
				       acpi_ut_get_node_name(obj_desc->
							     common_field.
							     region_obj->region.
							     node));
L
Linus Torvalds 已提交
365 366 367 368
			break;

		case ACPI_TYPE_LOCAL_BANK_FIELD:

L
Len Brown 已提交
369 370 371 372 373 374 375 376 377 378
			acpi_os_printf("Rgn [%4.4s] Bnk [%4.4s]",
				       acpi_ut_get_node_name(obj_desc->
							     common_field.
							     region_obj->region.
							     node),
				       acpi_ut_get_node_name(obj_desc->
							     bank_field.
							     bank_obj->
							     common_field.
							     node));
L
Linus Torvalds 已提交
379 380 381 382
			break;

		case ACPI_TYPE_LOCAL_INDEX_FIELD:

L
Len Brown 已提交
383 384 385 386 387 388 389 390 391 392
			acpi_os_printf("Idx [%4.4s] Dat [%4.4s]",
				       acpi_ut_get_node_name(obj_desc->
							     index_field.
							     index_obj->
							     common_field.node),
				       acpi_ut_get_node_name(obj_desc->
							     index_field.
							     data_obj->
							     common_field.
							     node));
L
Linus Torvalds 已提交
393 394 395 396 397
			break;

		case ACPI_TYPE_LOCAL_ALIAS:
		case ACPI_TYPE_LOCAL_METHOD_ALIAS:

L
Len Brown 已提交
398 399 400
			acpi_os_printf("Target %4.4s (%p)\n",
				       acpi_ut_get_node_name(obj_desc),
				       obj_desc);
L
Linus Torvalds 已提交
401 402 403 404
			break;

		default:

L
Len Brown 已提交
405
			acpi_os_printf("Object %p\n", obj_desc);
L
Linus Torvalds 已提交
406 407 408 409 410 411 412 413 414 415 416
			break;
		}

		/* Common field handling */

		switch (type) {
		case ACPI_TYPE_BUFFER_FIELD:
		case ACPI_TYPE_LOCAL_REGION_FIELD:
		case ACPI_TYPE_LOCAL_BANK_FIELD:
		case ACPI_TYPE_LOCAL_INDEX_FIELD:

L
Len Brown 已提交
417 418 419 420 421 422 423 424 425
			acpi_os_printf(" Off %.3X Len %.2X Acc %.2hd\n",
				       (obj_desc->common_field.
					base_byte_offset * 8)
				       +
				       obj_desc->common_field.
				       start_field_bit_offset,
				       obj_desc->common_field.bit_length,
				       obj_desc->common_field.
				       access_byte_width);
L
Linus Torvalds 已提交
426 427 428 429 430 431 432 433 434
			break;

		default:
			break;
		}
		break;

	case ACPI_DISPLAY_OBJECTS:

L
Len Brown 已提交
435
		acpi_os_printf("O:%p", obj_desc);
L
Linus Torvalds 已提交
436
		if (!obj_desc) {
B
Bob Moore 已提交
437

L
Linus Torvalds 已提交
438 439
			/* No attached object, we are done */

L
Len Brown 已提交
440
			acpi_os_printf("\n");
L
Linus Torvalds 已提交
441 442 443
			return (AE_OK);
		}

L
Len Brown 已提交
444
		acpi_os_printf("(R%d)", obj_desc->common.reference_count);
L
Linus Torvalds 已提交
445 446 447 448 449 450

		switch (type) {
		case ACPI_TYPE_METHOD:

			/* Name is a Method and its AML offset/length are set */

L
Len Brown 已提交
451 452
			acpi_os_printf(" M:%p-%X\n", obj_desc->method.aml_start,
				       obj_desc->method.aml_length);
L
Linus Torvalds 已提交
453 454 455 456
			break;

		case ACPI_TYPE_INTEGER:

L
Len Brown 已提交
457 458 459
			acpi_os_printf(" I:%8.8X8.8%X\n",
				       ACPI_FORMAT_UINT64(obj_desc->integer.
							  value));
L
Linus Torvalds 已提交
460 461 462 463
			break;

		case ACPI_TYPE_STRING:

L
Len Brown 已提交
464 465
			acpi_os_printf(" S:%p-%X\n", obj_desc->string.pointer,
				       obj_desc->string.length);
L
Linus Torvalds 已提交
466 467 468 469
			break;

		case ACPI_TYPE_BUFFER:

L
Len Brown 已提交
470 471
			acpi_os_printf(" B:%p-%X\n", obj_desc->buffer.pointer,
				       obj_desc->buffer.length);
L
Linus Torvalds 已提交
472 473 474 475
			break;

		default:

L
Len Brown 已提交
476
			acpi_os_printf("\n");
L
Linus Torvalds 已提交
477 478 479 480 481
			break;
		}
		break;

	default:
L
Len Brown 已提交
482
		acpi_os_printf("\n");
L
Linus Torvalds 已提交
483 484 485 486 487 488 489 490 491 492 493
		break;
	}

	/* If debug turned off, done */

	if (!(acpi_dbg_level & ACPI_LV_VALUES)) {
		return (AE_OK);
	}

	/* If there is an attached object, display it */

L
Len Brown 已提交
494
	dbg_level = acpi_dbg_level;
L
Linus Torvalds 已提交
495
	acpi_dbg_level = 0;
L
Len Brown 已提交
496
	obj_desc = acpi_ns_get_attached_object(this_node);
L
Linus Torvalds 已提交
497 498 499 500 501 502
	acpi_dbg_level = dbg_level;

	/* Dump attached objects */

	while (obj_desc) {
		obj_type = ACPI_TYPE_INVALID;
L
Len Brown 已提交
503
		acpi_os_printf("Attached Object %p: ", obj_desc);
L
Linus Torvalds 已提交
504 505 506

		/* Decode the type of attached object and dump the contents */

L
Len Brown 已提交
507
		switch (ACPI_GET_DESCRIPTOR_TYPE(obj_desc)) {
L
Linus Torvalds 已提交
508 509
		case ACPI_DESC_TYPE_NAMED:

L
Len Brown 已提交
510 511 512
			acpi_os_printf("(Ptr to Node)\n");
			bytes_to_dump = sizeof(struct acpi_namespace_node);
			ACPI_DUMP_BUFFER(obj_desc, bytes_to_dump);
L
Linus Torvalds 已提交
513 514 515 516
			break;

		case ACPI_DESC_TYPE_OPERAND:

517
			obj_type = obj_desc->common.type;
L
Linus Torvalds 已提交
518 519

			if (obj_type > ACPI_TYPE_LOCAL_MAX) {
L
Len Brown 已提交
520
				acpi_os_printf
521
				    ("(Pointer to ACPI Object type %.2X [UNKNOWN])\n",
L
Len Brown 已提交
522
				     obj_type);
L
Linus Torvalds 已提交
523
				bytes_to_dump = 32;
L
Len Brown 已提交
524 525
			} else {
				acpi_os_printf
526
				    ("(Pointer to ACPI Object type %.2X [%s])\n",
L
Len Brown 已提交
527 528 529
				     obj_type, acpi_ut_get_type_name(obj_type));
				bytes_to_dump =
				    sizeof(union acpi_operand_object);
L
Linus Torvalds 已提交
530 531
			}

L
Len Brown 已提交
532
			ACPI_DUMP_BUFFER(obj_desc, bytes_to_dump);
533
			break;
L
Linus Torvalds 已提交
534 535 536 537 538 539 540 541

		default:

			break;
		}

		/* If value is NOT an internal object, we are done */

L
Len Brown 已提交
542 543
		if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) !=
		    ACPI_DESC_TYPE_OPERAND) {
L
Linus Torvalds 已提交
544 545 546
			goto cleanup;
		}

547 548
		/* Valid object, get the pointer to next level, if any */

L
Linus Torvalds 已提交
549
		switch (obj_type) {
550
		case ACPI_TYPE_BUFFER:
L
Linus Torvalds 已提交
551
		case ACPI_TYPE_STRING:
552 553 554 555
			/*
			 * NOTE: takes advantage of common fields between string/buffer
			 */
			bytes_to_dump = obj_desc->string.length;
L
Len Brown 已提交
556 557 558 559
			obj_desc = (void *)obj_desc->string.pointer;
			acpi_os_printf("(Buffer/String pointer %p length %X)\n",
				       obj_desc, bytes_to_dump);
			ACPI_DUMP_BUFFER(obj_desc, bytes_to_dump);
560
			goto cleanup;
L
Linus Torvalds 已提交
561 562

		case ACPI_TYPE_BUFFER_FIELD:
L
Len Brown 已提交
563 564 565
			obj_desc =
			    (union acpi_operand_object *)obj_desc->buffer_field.
			    buffer_obj;
L
Linus Torvalds 已提交
566 567 568
			break;

		case ACPI_TYPE_PACKAGE:
L
Len Brown 已提交
569
			obj_desc = (void *)obj_desc->package.elements;
L
Linus Torvalds 已提交
570 571 572
			break;

		case ACPI_TYPE_METHOD:
L
Len Brown 已提交
573
			obj_desc = (void *)obj_desc->method.aml_start;
L
Linus Torvalds 已提交
574 575 576
			break;

		case ACPI_TYPE_LOCAL_REGION_FIELD:
L
Len Brown 已提交
577
			obj_desc = (void *)obj_desc->field.region_obj;
L
Linus Torvalds 已提交
578 579 580
			break;

		case ACPI_TYPE_LOCAL_BANK_FIELD:
L
Len Brown 已提交
581
			obj_desc = (void *)obj_desc->bank_field.region_obj;
L
Linus Torvalds 已提交
582 583 584
			break;

		case ACPI_TYPE_LOCAL_INDEX_FIELD:
L
Len Brown 已提交
585
			obj_desc = (void *)obj_desc->index_field.index_obj;
L
Linus Torvalds 已提交
586 587 588 589 590 591
			break;

		default:
			goto cleanup;
		}

L
Len Brown 已提交
592
		obj_type = ACPI_TYPE_INVALID;	/* Terminate loop after next pass */
L
Linus Torvalds 已提交
593 594
	}

L
Len Brown 已提交
595 596
      cleanup:
	acpi_os_printf("\n");
L
Linus Torvalds 已提交
597 598 599 600 601 602 603 604 605
	return (AE_OK);
}

#ifdef ACPI_FUTURE_USAGE
/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_dump_objects
 *
 * PARAMETERS:  Type                - Object type to be dumped
R
Robert Moore 已提交
606
 *              display_type        - 0 or ACPI_DISPLAY_SUMMARY
L
Linus Torvalds 已提交
607 608
 *              max_depth           - Maximum depth of dump. Use ACPI_UINT32_MAX
 *                                    for an effectively unlimited depth.
609
 *              owner_id            - Dump only objects owned by this ID. Use
L
Linus Torvalds 已提交
610 611 612
 *                                    ACPI_UINT32_MAX to match all owners.
 *              start_handle        - Where in namespace to start/end search
 *
R
Robert Moore 已提交
613 614
 * RETURN:      None
 *
615 616
 * DESCRIPTION: Dump typed objects within the loaded namespace. Uses
 *              acpi_ns_walk_namespace in conjunction with acpi_ns_dump_one_object.
L
Linus Torvalds 已提交
617 618 619 620
 *
 ******************************************************************************/

void
L
Len Brown 已提交
621 622 623 624
acpi_ns_dump_objects(acpi_object_type type,
		     u8 display_type,
		     u32 max_depth,
		     acpi_owner_id owner_id, acpi_handle start_handle)
L
Linus Torvalds 已提交
625
{
L
Len Brown 已提交
626
	struct acpi_walk_info info;
L
Linus Torvalds 已提交
627

L
Len Brown 已提交
628
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
629 630 631 632 633

	info.debug_level = ACPI_LV_TABLES;
	info.owner_id = owner_id;
	info.display_type = display_type;

L
Len Brown 已提交
634
	(void)acpi_ns_walk_namespace(type, start_handle, max_depth,
635 636
				     ACPI_NS_WALK_NO_UNLOCK |
				     ACPI_NS_WALK_TEMP_NODES,
637 638
				     acpi_ns_dump_one_object, NULL,
				     (void *)&info, NULL);
L
Linus Torvalds 已提交
639
}
L
Len Brown 已提交
640
#endif				/* ACPI_FUTURE_USAGE */
L
Linus Torvalds 已提交
641

R
Robert Moore 已提交
642 643 644 645 646 647 648 649 650 651 652 653 654
/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_dump_entry
 *
 * PARAMETERS:  Handle              - Node to be dumped
 *              debug_level         - Output level
 *
 * RETURN:      None
 *
 * DESCRIPTION: Dump a single Node
 *
 ******************************************************************************/

L
Len Brown 已提交
655
void acpi_ns_dump_entry(acpi_handle handle, u32 debug_level)
R
Robert Moore 已提交
656
{
L
Len Brown 已提交
657
	struct acpi_walk_info info;
R
Robert Moore 已提交
658

L
Len Brown 已提交
659
	ACPI_FUNCTION_ENTRY();
R
Robert Moore 已提交
660 661

	info.debug_level = debug_level;
662
	info.owner_id = ACPI_OWNER_ID_MAX;
R
Robert Moore 已提交
663 664
	info.display_type = ACPI_DISPLAY_SUMMARY;

L
Len Brown 已提交
665
	(void)acpi_ns_dump_one_object(handle, 1, &info, NULL);
R
Robert Moore 已提交
666 667
}

668
#ifdef ACPI_ASL_COMPILER
L
Linus Torvalds 已提交
669 670 671 672 673 674 675 676 677
/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_dump_tables
 *
 * PARAMETERS:  search_base         - Root of subtree to be dumped, or
 *                                    NS_ALL to dump the entire namespace
 *              max_depth           - Maximum depth of dump.  Use INT_MAX
 *                                    for an effectively unlimited depth.
 *
R
Robert Moore 已提交
678 679
 * RETURN:      None
 *
L
Linus Torvalds 已提交
680 681 682 683
 * DESCRIPTION: Dump the name space, or a portion of it.
 *
 ******************************************************************************/

L
Len Brown 已提交
684
void acpi_ns_dump_tables(acpi_handle search_base, u32 max_depth)
L
Linus Torvalds 已提交
685
{
L
Len Brown 已提交
686
	acpi_handle search_handle = search_base;
L
Linus Torvalds 已提交
687

B
Bob Moore 已提交
688
	ACPI_FUNCTION_TRACE(ns_dump_tables);
L
Linus Torvalds 已提交
689 690 691 692 693 694

	if (!acpi_gbl_root_node) {
		/*
		 * If the name space has not been initialized,
		 * there is nothing to dump.
		 */
L
Len Brown 已提交
695 696
		ACPI_DEBUG_PRINT((ACPI_DB_TABLES,
				  "namespace not initialized!\n"));
L
Linus Torvalds 已提交
697 698 699 700
		return_VOID;
	}

	if (ACPI_NS_ALL == search_base) {
B
Bob Moore 已提交
701

R
Robert Moore 已提交
702
		/* Entire namespace */
L
Linus Torvalds 已提交
703 704

		search_handle = acpi_gbl_root_node;
L
Len Brown 已提交
705
		ACPI_DEBUG_PRINT((ACPI_DB_TABLES, "\\\n"));
L
Linus Torvalds 已提交
706 707
	}

L
Len Brown 已提交
708 709
	acpi_ns_dump_objects(ACPI_TYPE_ANY, ACPI_DISPLAY_OBJECTS, max_depth,
			     ACPI_OWNER_ID_MAX, search_handle);
L
Linus Torvalds 已提交
710 711
	return_VOID;
}
L
Len Brown 已提交
712 713
#endif				/* _ACPI_ASL_COMPILER */
#endif				/* defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER) */