dsutils.c 24.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*******************************************************************************
 *
 * Module Name: dsutils - Dispatcher utilities
 *
 ******************************************************************************/

/*
8
 * Copyright (C) 2000 - 2012, 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 47 48 49 50 51
#include "accommon.h"
#include "acparser.h"
#include "amlcode.h"
#include "acdispat.h"
#include "acinterp.h"
#include "acnamesp.h"
#include "acdebug.h"
L
Linus Torvalds 已提交
52 53

#define _COMPONENT          ACPI_DISPATCHER
L
Len Brown 已提交
54
ACPI_MODULE_NAME("dsutils")
L
Linus Torvalds 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69

/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_clear_implicit_return
 *
 * PARAMETERS:  walk_state          - Current State
 *
 * RETURN:      None.
 *
 * DESCRIPTION: Clear and remove a reference on an implicit return value.  Used
 *              to delete "stale" return values (if enabled, the return value
 *              from every operator is saved at least momentarily, in case the
 *              parent method exits.)
 *
 ******************************************************************************/
L
Len Brown 已提交
70
void acpi_ds_clear_implicit_return(struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
71
{
B
Bob Moore 已提交
72
	ACPI_FUNCTION_NAME(ds_clear_implicit_return);
L
Linus Torvalds 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86

	/*
	 * Slack must be enabled for this feature
	 */
	if (!acpi_gbl_enable_interpreter_slack) {
		return;
	}

	if (walk_state->implicit_return_obj) {
		/*
		 * Delete any "stale" implicit return. However, in
		 * complex statements, the implicit return value can be
		 * bubbled up several levels.
		 */
L
Len Brown 已提交
87 88 89
		ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
				  "Removing reference on stale implicit return obj %p\n",
				  walk_state->implicit_return_obj));
L
Linus Torvalds 已提交
90

L
Len Brown 已提交
91
		acpi_ut_remove_reference(walk_state->implicit_return_obj);
L
Linus Torvalds 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
		walk_state->implicit_return_obj = NULL;
	}
}

#ifndef ACPI_NO_METHOD_EXECUTION
/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_do_implicit_return
 *
 * PARAMETERS:  return_desc         - The return value
 *              walk_state          - Current State
 *              add_reference       - True if a reference should be added to the
 *                                    return object
 *
 * RETURN:      TRUE if implicit return enabled, FALSE otherwise
 *
 * DESCRIPTION: Implements the optional "implicit return".  We save the result
 *              of every ASL operator and control method invocation in case the
 *              parent method exit.  Before storing a new return value, we
 *              delete the previous return value.
 *
 ******************************************************************************/

u8
L
Len Brown 已提交
116 117
acpi_ds_do_implicit_return(union acpi_operand_object *return_desc,
			   struct acpi_walk_state *walk_state, u8 add_reference)
L
Linus Torvalds 已提交
118
{
B
Bob Moore 已提交
119
	ACPI_FUNCTION_NAME(ds_do_implicit_return);
L
Linus Torvalds 已提交
120 121 122 123 124

	/*
	 * Slack must be enabled for this feature, and we must
	 * have a valid return object
	 */
L
Len Brown 已提交
125
	if ((!acpi_gbl_enable_interpreter_slack) || (!return_desc)) {
L
Linus Torvalds 已提交
126 127 128
		return (FALSE);
	}

L
Len Brown 已提交
129 130 131
	ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
			  "Result %p will be implicitly returned; Prev=%p\n",
			  return_desc, walk_state->implicit_return_obj));
L
Linus Torvalds 已提交
132 133 134 135 136 137 138 139 140 141 142

	/*
	 * Delete any "stale" implicit return value first. However, in
	 * complex statements, the implicit return value can be
	 * bubbled up several levels, so we don't clear the value if it
	 * is the same as the return_desc.
	 */
	if (walk_state->implicit_return_obj) {
		if (walk_state->implicit_return_obj == return_desc) {
			return (TRUE);
		}
L
Len Brown 已提交
143
		acpi_ds_clear_implicit_return(walk_state);
L
Linus Torvalds 已提交
144 145 146 147 148 149
	}

	/* Save the implicit return value, add a reference if requested */

	walk_state->implicit_return_obj = return_desc;
	if (add_reference) {
L
Len Brown 已提交
150
		acpi_ut_add_reference(return_desc);
L
Linus Torvalds 已提交
151 152 153 154 155 156 157 158 159
	}

	return (TRUE);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_is_result_used
 *
160
 * PARAMETERS:  op                  - Current Op
L
Linus Torvalds 已提交
161 162 163 164 165 166 167 168 169
 *              walk_state          - Current State
 *
 * RETURN:      TRUE if result is used, FALSE otherwise
 *
 * DESCRIPTION: Check if a result object will be used by the parent
 *
 ******************************************************************************/

u8
L
Len Brown 已提交
170 171
acpi_ds_is_result_used(union acpi_parse_object * op,
		       struct acpi_walk_state * walk_state)
L
Linus Torvalds 已提交
172
{
L
Len Brown 已提交
173
	const struct acpi_opcode_info *parent_info;
L
Linus Torvalds 已提交
174

B
Bob Moore 已提交
175
	ACPI_FUNCTION_TRACE_PTR(ds_is_result_used, op);
L
Linus Torvalds 已提交
176 177 178 179

	/* Must have both an Op and a Result Object */

	if (!op) {
B
Bob Moore 已提交
180
		ACPI_ERROR((AE_INFO, "Null Op"));
B
Bob Moore 已提交
181
		return_UINT8(TRUE);
L
Linus Torvalds 已提交
182 183 184 185 186 187 188 189 190 191 192
	}

	/*
	 * We know that this operator is not a
	 * Return() operator (would not come here.) The following code is the
	 * optional support for a so-called "implicit return". Some AML code
	 * assumes that the last value of the method is "implicitly" returned
	 * to the caller. Just save the last result as the return value.
	 * NOTE: this is optional because the ASL language does not actually
	 * support this behavior.
	 */
L
Len Brown 已提交
193 194
	(void)acpi_ds_do_implicit_return(walk_state->result_obj, walk_state,
					 TRUE);
L
Linus Torvalds 已提交
195 196 197 198 199 200 201 202 203 204

	/*
	 * Now determine if the parent will use the result
	 *
	 * If there is no parent, or the parent is a scope_op, we are executing
	 * at the method level. An executing method typically has no parent,
	 * since each method is parsed separately.  A method invoked externally
	 * via execute_control_method has a scope_op as the parent.
	 */
	if ((!op->common.parent) ||
L
Len Brown 已提交
205
	    (op->common.parent->common.aml_opcode == AML_SCOPE_OP)) {
B
Bob Moore 已提交
206

L
Linus Torvalds 已提交
207 208
		/* No parent, the return value cannot possibly be used */

L
Len Brown 已提交
209 210 211 212
		ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
				  "At Method level, result of [%s] not used\n",
				  acpi_ps_get_opcode_name(op->common.
							  aml_opcode)));
B
Bob Moore 已提交
213
		return_UINT8(FALSE);
L
Linus Torvalds 已提交
214 215 216 217
	}

	/* Get info on the parent. The root_op is AML_SCOPE */

L
Len Brown 已提交
218 219
	parent_info =
	    acpi_ps_get_opcode_info(op->common.parent->common.aml_opcode);
L
Linus Torvalds 已提交
220
	if (parent_info->class == AML_CLASS_UNKNOWN) {
B
Bob Moore 已提交
221
		ACPI_ERROR((AE_INFO, "Unknown parent opcode Op=%p", op));
B
Bob Moore 已提交
222
		return_UINT8(FALSE);
L
Linus Torvalds 已提交
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
	}

	/*
	 * Decide what to do with the result based on the parent.  If
	 * the parent opcode will not use the result, delete the object.
	 * Otherwise leave it as is, it will be deleted when it is used
	 * as an operand later.
	 */
	switch (parent_info->class) {
	case AML_CLASS_CONTROL:

		switch (op->common.parent->common.aml_opcode) {
		case AML_RETURN_OP:

			/* Never delete the return value associated with a return opcode */

			goto result_used;

		case AML_IF_OP:
		case AML_WHILE_OP:

			/*
			 * If we are executing the predicate AND this is the predicate op,
			 * we will use the return value
			 */
L
Len Brown 已提交
248 249 250 251
			if ((walk_state->control_state->common.state ==
			     ACPI_CONTROL_PREDICATE_EXECUTING)
			    && (walk_state->control_state->control.
				predicate_op == op)) {
L
Linus Torvalds 已提交
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
				goto result_used;
			}
			break;

		default:
			/* Ignore other control opcodes */
			break;
		}

		/* The general control opcode returns no result */

		goto result_not_used;

	case AML_CLASS_CREATE:

		/*
		 * These opcodes allow term_arg(s) as operands and therefore
		 * the operands can be method calls.  The result is used.
		 */
		goto result_used;

	case AML_CLASS_NAMED_OBJECT:

L
Len Brown 已提交
275 276 277 278 279 280 281
		if ((op->common.parent->common.aml_opcode == AML_REGION_OP) ||
		    (op->common.parent->common.aml_opcode == AML_DATA_REGION_OP)
		    || (op->common.parent->common.aml_opcode == AML_PACKAGE_OP)
		    || (op->common.parent->common.aml_opcode ==
			AML_VAR_PACKAGE_OP)
		    || (op->common.parent->common.aml_opcode == AML_BUFFER_OP)
		    || (op->common.parent->common.aml_opcode ==
282 283 284
			AML_INT_EVAL_SUBTREE_OP)
		    || (op->common.parent->common.aml_opcode ==
			AML_BANK_FIELD_OP)) {
L
Linus Torvalds 已提交
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
			/*
			 * These opcodes allow term_arg(s) as operands and therefore
			 * the operands can be method calls.  The result is used.
			 */
			goto result_used;
		}

		goto result_not_used;

	default:

		/*
		 * In all other cases. the parent will actually use the return
		 * object, so keep it.
		 */
		goto result_used;
	}

L
Len Brown 已提交
303 304 305 306 307 308
      result_used:
	ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
			  "Result of [%s] used by Parent [%s] Op=%p\n",
			  acpi_ps_get_opcode_name(op->common.aml_opcode),
			  acpi_ps_get_opcode_name(op->common.parent->common.
						  aml_opcode), op));
L
Linus Torvalds 已提交
309

B
Bob Moore 已提交
310
	return_UINT8(TRUE);
L
Linus Torvalds 已提交
311

L
Len Brown 已提交
312 313 314 315 316 317
      result_not_used:
	ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
			  "Result of [%s] not used by Parent [%s] Op=%p\n",
			  acpi_ps_get_opcode_name(op->common.aml_opcode),
			  acpi_ps_get_opcode_name(op->common.parent->common.
						  aml_opcode), op));
L
Linus Torvalds 已提交
318

B
Bob Moore 已提交
319
	return_UINT8(FALSE);
L
Linus Torvalds 已提交
320 321 322 323 324 325
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_delete_result_if_not_used
 *
326
 * PARAMETERS:  op              - Current parse Op
L
Linus Torvalds 已提交
327 328 329 330 331 332 333 334 335 336 337 338 339
 *              result_obj      - Result of the operation
 *              walk_state      - Current state
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Used after interpretation of an opcode.  If there is an internal
 *              result descriptor, check if the parent opcode will actually use
 *              this result.  If not, delete the result now so that it will
 *              not become orphaned.
 *
 ******************************************************************************/

void
L
Len Brown 已提交
340 341 342
acpi_ds_delete_result_if_not_used(union acpi_parse_object *op,
				  union acpi_operand_object *result_obj,
				  struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
343
{
L
Len Brown 已提交
344 345
	union acpi_operand_object *obj_desc;
	acpi_status status;
L
Linus Torvalds 已提交
346

B
Bob Moore 已提交
347
	ACPI_FUNCTION_TRACE_PTR(ds_delete_result_if_not_used, result_obj);
L
Linus Torvalds 已提交
348 349

	if (!op) {
B
Bob Moore 已提交
350
		ACPI_ERROR((AE_INFO, "Null Op"));
L
Linus Torvalds 已提交
351 352 353 354 355 356 357
		return_VOID;
	}

	if (!result_obj) {
		return_VOID;
	}

L
Len Brown 已提交
358
	if (!acpi_ds_is_result_used(op, walk_state)) {
B
Bob Moore 已提交
359

L
Linus Torvalds 已提交
360 361
		/* Must pop the result stack (obj_desc should be equal to result_obj) */

L
Len Brown 已提交
362 363 364
		status = acpi_ds_result_pop(&obj_desc, walk_state);
		if (ACPI_SUCCESS(status)) {
			acpi_ut_remove_reference(result_obj);
L
Linus Torvalds 已提交
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
		}
	}

	return_VOID;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_resolve_operands
 *
 * PARAMETERS:  walk_state          - Current walk state with operands on stack
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Resolve all operands to their values.  Used to prepare
 *              arguments to a control method invocation (a call from one
 *              method to another.)
 *
 ******************************************************************************/

L
Len Brown 已提交
385
acpi_status acpi_ds_resolve_operands(struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
386
{
L
Len Brown 已提交
387 388
	u32 i;
	acpi_status status = AE_OK;
L
Linus Torvalds 已提交
389

B
Bob Moore 已提交
390
	ACPI_FUNCTION_TRACE_PTR(ds_resolve_operands, walk_state);
L
Linus Torvalds 已提交
391 392 393 394 395 396 397

	/*
	 * Attempt to resolve each of the valid operands
	 * Method arguments are passed by reference, not by value.  This means
	 * that the actual objects are passed, not copies of the objects.
	 */
	for (i = 0; i < walk_state->num_operands; i++) {
L
Len Brown 已提交
398 399 400 401
		status =
		    acpi_ex_resolve_to_value(&walk_state->operands[i],
					     walk_state);
		if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
402 403 404 405
			break;
		}
	}

L
Len Brown 已提交
406
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
407 408 409 410 411 412 413 414 415 416 417 418 419 420
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_clear_operands
 *
 * PARAMETERS:  walk_state          - Current walk state with operands on stack
 *
 * RETURN:      None
 *
 * DESCRIPTION: Clear all operands on the current walk state operand stack.
 *
 ******************************************************************************/

L
Len Brown 已提交
421
void acpi_ds_clear_operands(struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
422
{
L
Len Brown 已提交
423
	u32 i;
L
Linus Torvalds 已提交
424

B
Bob Moore 已提交
425
	ACPI_FUNCTION_TRACE_PTR(ds_clear_operands, walk_state);
L
Linus Torvalds 已提交
426 427 428 429 430 431 432 433

	/* Remove a reference on each operand on the stack */

	for (i = 0; i < walk_state->num_operands; i++) {
		/*
		 * Remove a reference to all operands, including both
		 * "Arguments" and "Targets".
		 */
L
Len Brown 已提交
434
		acpi_ut_remove_reference(walk_state->operands[i]);
L
Linus Torvalds 已提交
435 436 437 438 439 440 441 442 443 444 445 446 447
		walk_state->operands[i] = NULL;
	}

	walk_state->num_operands = 0;
	return_VOID;
}
#endif

/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_create_operand
 *
 * PARAMETERS:  walk_state      - Current walk state
448
 *              arg             - Parse object for the argument
L
Linus Torvalds 已提交
449 450 451 452 453 454 455 456 457 458 459 460
 *              arg_index       - Which argument (zero based)
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Translate a parse tree object that is an argument to an AML
 *              opcode to the equivalent interpreter object.  This may include
 *              looking up a name or entering a new name into the internal
 *              namespace.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
461 462
acpi_ds_create_operand(struct acpi_walk_state *walk_state,
		       union acpi_parse_object *arg, u32 arg_index)
L
Linus Torvalds 已提交
463
{
L
Len Brown 已提交
464 465 466 467 468 469 470 471
	acpi_status status = AE_OK;
	char *name_string;
	u32 name_length;
	union acpi_operand_object *obj_desc;
	union acpi_parse_object *parent_op;
	u16 opcode;
	acpi_interpreter_mode interpreter_mode;
	const struct acpi_opcode_info *op_info;
L
Linus Torvalds 已提交
472

B
Bob Moore 已提交
473
	ACPI_FUNCTION_TRACE_PTR(ds_create_operand, arg);
L
Linus Torvalds 已提交
474 475 476 477

	/* A valid name must be looked up in the namespace */

	if ((arg->common.aml_opcode == AML_INT_NAMEPATH_OP) &&
478 479
	    (arg->common.value.string) &&
	    !(arg->common.flags & ACPI_PARSEOP_IN_STACK)) {
L
Len Brown 已提交
480 481
		ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Getting a name: Arg=%p\n",
				  arg));
L
Linus Torvalds 已提交
482 483 484

		/* Get the entire name string from the AML stream */

L
Len Brown 已提交
485 486 487 488
		status =
		    acpi_ex_get_name_string(ACPI_TYPE_ANY,
					    arg->common.value.buffer,
					    &name_string, &name_length);
L
Linus Torvalds 已提交
489

L
Len Brown 已提交
490 491
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
492 493 494 495 496 497 498 499 500 501 502 503 504 505
		}

		/* All prefixes have been handled, and the name is in name_string */

		/*
		 * Special handling for buffer_field declarations. This is a deferred
		 * opcode that unfortunately defines the field name as the last
		 * parameter instead of the first.  We get here when we are performing
		 * the deferred execution, so the actual name of the field is already
		 * in the namespace.  We don't want to attempt to look it up again
		 * because we may be executing in a different scope than where the
		 * actual opcode exists.
		 */
		if ((walk_state->deferred_node) &&
L
Len Brown 已提交
506
		    (walk_state->deferred_node->type == ACPI_TYPE_BUFFER_FIELD)
B
Bob Moore 已提交
507 508 509
		    && (arg_index ==
			(u32) ((walk_state->opcode ==
				AML_CREATE_FIELD_OP) ? 3 : 2))) {
L
Len Brown 已提交
510 511 512
			obj_desc =
			    ACPI_CAST_PTR(union acpi_operand_object,
					  walk_state->deferred_node);
L
Linus Torvalds 已提交
513
			status = AE_OK;
L
Len Brown 已提交
514 515
		} else {	/* All other opcodes */

L
Linus Torvalds 已提交
516 517 518 519 520 521 522
			/*
			 * Differentiate between a namespace "create" operation
			 * versus a "lookup" operation (IMODE_LOAD_PASS2 vs.
			 * IMODE_EXECUTE) in order to support the creation of
			 * namespace objects during the execution of control methods.
			 */
			parent_op = arg->common.parent;
L
Len Brown 已提交
523 524 525 526 527 528 529 530 531
			op_info =
			    acpi_ps_get_opcode_info(parent_op->common.
						    aml_opcode);
			if ((op_info->flags & AML_NSNODE)
			    && (parent_op->common.aml_opcode !=
				AML_INT_METHODCALL_OP)
			    && (parent_op->common.aml_opcode != AML_REGION_OP)
			    && (parent_op->common.aml_opcode !=
				AML_INT_NAMEPATH_OP)) {
B
Bob Moore 已提交
532

L
Linus Torvalds 已提交
533 534 535
				/* Enter name into namespace if not found */

				interpreter_mode = ACPI_IMODE_LOAD_PASS2;
L
Len Brown 已提交
536
			} else {
L
Linus Torvalds 已提交
537 538 539 540 541
				/* Return a failure if name not found */

				interpreter_mode = ACPI_IMODE_EXECUTE;
			}

L
Len Brown 已提交
542 543 544 545 546 547 548 549
			status =
			    acpi_ns_lookup(walk_state->scope_info, name_string,
					   ACPI_TYPE_ANY, interpreter_mode,
					   ACPI_NS_SEARCH_PARENT |
					   ACPI_NS_DONT_OPEN_SCOPE, walk_state,
					   ACPI_CAST_INDIRECT_PTR(struct
								  acpi_namespace_node,
								  &obj_desc));
L
Linus Torvalds 已提交
550 551 552 553 554
			/*
			 * The only case where we pass through (ignore) a NOT_FOUND
			 * error is for the cond_ref_of opcode.
			 */
			if (status == AE_NOT_FOUND) {
L
Len Brown 已提交
555 556
				if (parent_op->common.aml_opcode ==
				    AML_COND_REF_OF_OP) {
L
Linus Torvalds 已提交
557 558 559 560 561 562
					/*
					 * For the Conditional Reference op, it's OK if
					 * the name is not found;  We just need a way to
					 * indicate this to the interpreter, set the
					 * object to the root
					 */
L
Lv Zheng 已提交
563 564
					obj_desc =
					    ACPI_CAST_PTR(union
L
Len Brown 已提交
565 566
								 acpi_operand_object,
								 acpi_gbl_root_node);
L
Linus Torvalds 已提交
567
					status = AE_OK;
L
Len Brown 已提交
568
				} else {
L
Linus Torvalds 已提交
569 570 571 572 573 574 575 576
					/*
					 * We just plain didn't find it -- which is a
					 * very serious error at this point
					 */
					status = AE_AML_NAME_NOT_FOUND;
				}
			}

L
Len Brown 已提交
577
			if (ACPI_FAILURE(status)) {
B
Bob Moore 已提交
578
				ACPI_ERROR_NAMESPACE(name_string, status);
L
Linus Torvalds 已提交
579 580 581 582 583
			}
		}

		/* Free the namestring created above */

B
Bob Moore 已提交
584
		ACPI_FREE(name_string);
L
Linus Torvalds 已提交
585 586 587

		/* Check status from the lookup */

L
Len Brown 已提交
588 589
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
590 591 592 593
		}

		/* Put the resulting object onto the current object stack */

L
Len Brown 已提交
594 595 596
		status = acpi_ds_obj_stack_push(obj_desc, walk_state);
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
597
		}
L
Len Brown 已提交
598 599 600
		ACPI_DEBUGGER_EXEC(acpi_db_display_argument_object
				   (obj_desc, walk_state));
	} else {
L
Linus Torvalds 已提交
601 602
		/* Check for null name case */

603 604
		if ((arg->common.aml_opcode == AML_INT_NAMEPATH_OP) &&
		    !(arg->common.flags & ACPI_PARSEOP_IN_STACK)) {
L
Linus Torvalds 已提交
605 606 607 608 609 610
			/*
			 * If the name is null, this means that this is an
			 * optional result parameter that was not specified
			 * in the original ASL.  Create a Zero Constant for a
			 * placeholder.  (Store to a constant is a Noop.)
			 */
L
Len Brown 已提交
611
			opcode = AML_ZERO_OP;	/* Has no arguments! */
L
Linus Torvalds 已提交
612

L
Len Brown 已提交
613 614 615
			ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
					  "Null namepath: Arg=%p\n", arg));
		} else {
L
Linus Torvalds 已提交
616 617 618 619 620
			opcode = arg->common.aml_opcode;
		}

		/* Get the object type of the argument */

L
Len Brown 已提交
621
		op_info = acpi_ps_get_opcode_info(opcode);
L
Linus Torvalds 已提交
622
		if (op_info->object_type == ACPI_TYPE_INVALID) {
L
Len Brown 已提交
623
			return_ACPI_STATUS(AE_NOT_IMPLEMENTED);
L
Linus Torvalds 已提交
624 625
		}

626 627
		if ((op_info->flags & AML_HAS_RETVAL)
		    || (arg->common.flags & ACPI_PARSEOP_IN_STACK)) {
L
Len Brown 已提交
628
			ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
B
Bob Moore 已提交
629
					  "Argument previously created, already stacked\n"));
L
Linus Torvalds 已提交
630

L
Len Brown 已提交
631 632 633 634
			ACPI_DEBUGGER_EXEC(acpi_db_display_argument_object
					   (walk_state->
					    operands[walk_state->num_operands -
						     1], walk_state));
L
Linus Torvalds 已提交
635 636 637 638 639

			/*
			 * Use value that was already previously returned
			 * by the evaluation of this argument
			 */
640
			status = acpi_ds_result_pop(&obj_desc, walk_state);
L
Len Brown 已提交
641
			if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
642 643 644 645
				/*
				 * Only error is underflow, and this indicates
				 * a missing or null operand!
				 */
B
Bob Moore 已提交
646 647
				ACPI_EXCEPTION((AE_INFO, status,
						"Missing or null operand"));
L
Len Brown 已提交
648
				return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
649
			}
L
Len Brown 已提交
650
		} else {
L
Linus Torvalds 已提交
651 652
			/* Create an ACPI_INTERNAL_OBJECT for the argument */

L
Len Brown 已提交
653 654 655
			obj_desc =
			    acpi_ut_create_internal_object(op_info->
							   object_type);
L
Linus Torvalds 已提交
656
			if (!obj_desc) {
L
Len Brown 已提交
657
				return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
658 659 660 661
			}

			/* Initialize the new object */

L
Len Brown 已提交
662 663 664 665 666 667
			status =
			    acpi_ds_init_object_from_op(walk_state, arg, opcode,
							&obj_desc);
			if (ACPI_FAILURE(status)) {
				acpi_ut_delete_object_desc(obj_desc);
				return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
668 669 670 671 672
			}
		}

		/* Put the operand object on the object stack */

L
Len Brown 已提交
673 674 675
		status = acpi_ds_obj_stack_push(obj_desc, walk_state);
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
676 677
		}

L
Len Brown 已提交
678 679
		ACPI_DEBUGGER_EXEC(acpi_db_display_argument_object
				   (obj_desc, walk_state));
L
Linus Torvalds 已提交
680 681
	}

L
Len Brown 已提交
682
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_create_operands
 *
 * PARAMETERS:  walk_state          - Current state
 *              first_arg           - First argument of a parser argument tree
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert an operator's arguments from a parse tree format to
 *              namespace objects and place those argument object on the object
 *              stack in preparation for evaluation by the interpreter.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
701 702
acpi_ds_create_operands(struct acpi_walk_state *walk_state,
			union acpi_parse_object *first_arg)
L
Linus Torvalds 已提交
703
{
L
Len Brown 已提交
704 705
	acpi_status status = AE_OK;
	union acpi_parse_object *arg;
706
	union acpi_parse_object *arguments[ACPI_OBJ_NUM_OPERANDS];
707 708 709
	u32 arg_count = 0;
	u32 index = walk_state->num_operands;
	u32 i;
L
Linus Torvalds 已提交
710

B
Bob Moore 已提交
711
	ACPI_FUNCTION_TRACE_PTR(ds_create_operands, first_arg);
L
Linus Torvalds 已提交
712

713
	/* Get all arguments in the list */
L
Linus Torvalds 已提交
714 715 716

	arg = first_arg;
	while (arg) {
717 718
		if (index >= ACPI_OBJ_NUM_OPERANDS) {
			return_ACPI_STATUS(AE_BAD_DATA);
L
Linus Torvalds 已提交
719 720
		}

721 722
		arguments[index] = arg;
		walk_state->operands[index] = NULL;
L
Linus Torvalds 已提交
723 724 725 726 727

		/* Move on to next argument, if any */

		arg = arg->common.next;
		arg_count++;
728 729 730 731 732 733 734 735 736 737 738 739
		index++;
	}

	index--;

	/* It is the appropriate order to get objects from the Result stack */

	for (i = 0; i < arg_count; i++) {
		arg = arguments[index];

		/* Force the filling of the operand stack in inverse order */

740
		walk_state->operand_index = (u8) index;
741 742 743 744 745 746 747 748 749

		status = acpi_ds_create_operand(walk_state, arg, index);
		if (ACPI_FAILURE(status)) {
			goto cleanup;
		}

		index--;

		ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
750
				  "Arg #%u (%p) done, Arg1=%p\n", index, arg,
751
				  first_arg));
L
Linus Torvalds 已提交
752 753
	}

L
Len Brown 已提交
754
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
755

L
Len Brown 已提交
756
      cleanup:
L
Linus Torvalds 已提交
757 758 759 760 761
	/*
	 * We must undo everything done above; meaning that we must
	 * pop everything off of the operand stack and delete those
	 * objects
	 */
762
	acpi_ds_obj_stack_pop_and_delete(arg_count, walk_state);
L
Linus Torvalds 已提交
763

764
	ACPI_EXCEPTION((AE_INFO, status, "While creating Arg %u", index));
L
Len Brown 已提交
765
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
766
}
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819

/*****************************************************************************
 *
 * FUNCTION:    acpi_ds_evaluate_name_path
 *
 * PARAMETERS:  walk_state      - Current state of the parse tree walk,
 *                                the opcode of current operation should be
 *                                AML_INT_NAMEPATH_OP
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Translate the -name_path- parse tree object to the equivalent
 *              interpreter object, convert it to value, if needed, duplicate
 *              it, if needed, and push it onto the current result stack.
 *
 ****************************************************************************/

acpi_status acpi_ds_evaluate_name_path(struct acpi_walk_state *walk_state)
{
	acpi_status status = AE_OK;
	union acpi_parse_object *op = walk_state->op;
	union acpi_operand_object **operand = &walk_state->operands[0];
	union acpi_operand_object *new_obj_desc;
	u8 type;

	ACPI_FUNCTION_TRACE_PTR(ds_evaluate_name_path, walk_state);

	if (!op->common.parent) {

		/* This happens after certain exception processing */

		goto exit;
	}

	if ((op->common.parent->common.aml_opcode == AML_PACKAGE_OP) ||
	    (op->common.parent->common.aml_opcode == AML_VAR_PACKAGE_OP) ||
	    (op->common.parent->common.aml_opcode == AML_REF_OF_OP)) {

		/* TBD: Should we specify this feature as a bit of op_info->Flags of these opcodes? */

		goto exit;
	}

	status = acpi_ds_create_operand(walk_state, op, 0);
	if (ACPI_FAILURE(status)) {
		goto exit;
	}

	if (op->common.flags & ACPI_PARSEOP_TARGET) {
		new_obj_desc = *operand;
		goto push_result;
	}

820
	type = (*operand)->common.type;
821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870

	status = acpi_ex_resolve_to_value(operand, walk_state);
	if (ACPI_FAILURE(status)) {
		goto exit;
	}

	if (type == ACPI_TYPE_INTEGER) {

		/* It was incremented by acpi_ex_resolve_to_value */

		acpi_ut_remove_reference(*operand);

		status =
		    acpi_ut_copy_iobject_to_iobject(*operand, &new_obj_desc,
						    walk_state);
		if (ACPI_FAILURE(status)) {
			goto exit;
		}
	} else {
		/*
		 * The object either was anew created or is
		 * a Namespace node - don't decrement it.
		 */
		new_obj_desc = *operand;
	}

	/* Cleanup for name-path operand */

	status = acpi_ds_obj_stack_pop(1, walk_state);
	if (ACPI_FAILURE(status)) {
		walk_state->result_obj = new_obj_desc;
		goto exit;
	}

      push_result:

	walk_state->result_obj = new_obj_desc;

	status = acpi_ds_result_push(walk_state->result_obj, walk_state);
	if (ACPI_SUCCESS(status)) {

		/* Force to take it from stack */

		op->common.flags |= ACPI_PARSEOP_IN_STACK;
	}

      exit:

	return_ACPI_STATUS(status);
}