exresop.c 18.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8

/******************************************************************************
 *
 * Module Name: exresop - AML Interpreter operand/object resolution
 *
 *****************************************************************************/

/*
B
Bob Moore 已提交
9
 * Copyright (C) 2000 - 2007, R. Byron Moore
L
Linus Torvalds 已提交
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 45 46 47 48
 * 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>
#include <acpi/amlcode.h>
#include <acpi/acparser.h>
#include <acpi/acinterp.h>
B
Bob Moore 已提交
49
#include <acpi/acnamesp.h>
L
Linus Torvalds 已提交
50 51

#define _COMPONENT          ACPI_EXECUTER
L
Len Brown 已提交
52
ACPI_MODULE_NAME("exresop")
L
Linus Torvalds 已提交
53

R
Robert Moore 已提交
54 55
/* Local prototypes */
static acpi_status
L
Len Brown 已提交
56 57
acpi_ex_check_object_type(acpi_object_type type_needed,
			  acpi_object_type this_type, void *object);
L
Linus Torvalds 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_check_object_type
 *
 * PARAMETERS:  type_needed         Object type needed
 *              this_type           Actual object type
 *              Object              Object pointer
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Check required type against actual type
 *
 ******************************************************************************/

R
Robert Moore 已提交
73
static acpi_status
L
Len Brown 已提交
74 75
acpi_ex_check_object_type(acpi_object_type type_needed,
			  acpi_object_type this_type, void *object)
L
Linus Torvalds 已提交
76
{
B
Bob Moore 已提交
77
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
78 79

	if (type_needed == ACPI_TYPE_ANY) {
B
Bob Moore 已提交
80

L
Linus Torvalds 已提交
81 82 83 84 85 86 87 88 89 90 91 92
		/* All types OK, so we don't perform any typechecks */

		return (AE_OK);
	}

	if (type_needed == ACPI_TYPE_LOCAL_REFERENCE) {
		/*
		 * Allow the AML "Constant" opcodes (Zero, One, etc.) to be reference
		 * objects and thus allow them to be targets.  (As per the ACPI
		 * specification, a store to a constant is a noop.)
		 */
		if ((this_type == ACPI_TYPE_INTEGER) &&
L
Len Brown 已提交
93 94
		    (((union acpi_operand_object *)object)->common.
		     flags & AOPOBJ_AML_CONSTANT)) {
L
Linus Torvalds 已提交
95 96 97 98 99
			return (AE_OK);
		}
	}

	if (type_needed != this_type) {
B
Bob Moore 已提交
100 101 102 103
		ACPI_ERROR((AE_INFO,
			    "Needed type [%s], found [%s] %p",
			    acpi_ut_get_type_name(type_needed),
			    acpi_ut_get_type_name(this_type), object));
L
Linus Torvalds 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132

		return (AE_AML_OPERAND_TYPE);
	}

	return (AE_OK);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_resolve_operands
 *
 * PARAMETERS:  Opcode              - Opcode being interpreted
 *              stack_ptr           - Pointer to the operand stack to be
 *                                    resolved
 *              walk_state          - Current state
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert multiple input operands to the types required by the
 *              target operator.
 *
 *      Each 5-bit group in arg_types represents one required
 *      operand and indicates the required Type. The corresponding operand
 *      will be converted to the required type if possible, otherwise we
 *      abort with an exception.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
133 134 135
acpi_ex_resolve_operands(u16 opcode,
			 union acpi_operand_object ** stack_ptr,
			 struct acpi_walk_state * walk_state)
L
Linus Torvalds 已提交
136
{
L
Len Brown 已提交
137 138 139 140 141 142 143 144 145 146
	union acpi_operand_object *obj_desc;
	acpi_status status = AE_OK;
	u8 object_type;
	void *temp_node;
	u32 arg_types;
	const struct acpi_opcode_info *op_info;
	u32 this_arg_type;
	acpi_object_type type_needed;
	u16 target_op = 0;

B
Bob Moore 已提交
147
	ACPI_FUNCTION_TRACE_U32(ex_resolve_operands, opcode);
L
Len Brown 已提交
148 149

	op_info = acpi_ps_get_opcode_info(opcode);
L
Linus Torvalds 已提交
150
	if (op_info->class == AML_CLASS_UNKNOWN) {
L
Len Brown 已提交
151
		return_ACPI_STATUS(AE_AML_BAD_OPCODE);
L
Linus Torvalds 已提交
152 153 154 155
	}

	arg_types = op_info->runtime_args;
	if (arg_types == ARGI_INVALID_OPCODE) {
B
Bob Moore 已提交
156
		ACPI_ERROR((AE_INFO, "Unknown AML opcode %X", opcode));
L
Linus Torvalds 已提交
157

L
Len Brown 已提交
158
		return_ACPI_STATUS(AE_AML_INTERNAL);
L
Linus Torvalds 已提交
159 160
	}

L
Len Brown 已提交
161
	ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
B
Bob Moore 已提交
162
			  "Opcode %X [%s] RequiredOperandTypes=%8.8X\n",
L
Len Brown 已提交
163
			  opcode, op_info->name, arg_types));
L
Linus Torvalds 已提交
164 165 166 167 168 169 170 171

	/*
	 * Normal exit is with (arg_types == 0) at end of argument list.
	 * Function will return an exception from within the loop upon
	 * finding an entry which is not (or cannot be converted
	 * to) the required type; if stack underflows; or upon
	 * finding a NULL stack entry (which should not happen).
	 */
L
Len Brown 已提交
172
	while (GET_CURRENT_ARG_TYPE(arg_types)) {
L
Linus Torvalds 已提交
173
		if (!stack_ptr || !*stack_ptr) {
B
Bob Moore 已提交
174 175
			ACPI_ERROR((AE_INFO, "Null stack entry at %p",
				    stack_ptr));
L
Linus Torvalds 已提交
176

L
Len Brown 已提交
177
			return_ACPI_STATUS(AE_AML_INTERNAL);
L
Linus Torvalds 已提交
178 179 180 181 182 183 184 185
		}

		/* Extract useful items */

		obj_desc = *stack_ptr;

		/* Decode the descriptor type */

L
Len Brown 已提交
186
		switch (ACPI_GET_DESCRIPTOR_TYPE(obj_desc)) {
L
Linus Torvalds 已提交
187 188
		case ACPI_DESC_TYPE_NAMED:

R
Robert Moore 已提交
189
			/* Namespace Node */
L
Linus Torvalds 已提交
190

L
Len Brown 已提交
191 192
			object_type =
			    ((struct acpi_namespace_node *)obj_desc)->type;
B
Bob Moore 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208

			/*
			 * Resolve an alias object. The construction of these objects
			 * guarantees that there is only one level of alias indirection;
			 * thus, the attached object is always the aliased namespace node
			 */
			if (object_type == ACPI_TYPE_LOCAL_ALIAS) {
				obj_desc =
				    acpi_ns_get_attached_object((struct
								 acpi_namespace_node
								 *)obj_desc);
				*stack_ptr = obj_desc;
				object_type =
				    ((struct acpi_namespace_node *)obj_desc)->
				    type;
			}
L
Linus Torvalds 已提交
209 210 211 212 213 214
			break;

		case ACPI_DESC_TYPE_OPERAND:

			/* ACPI internal object */

L
Len Brown 已提交
215
			object_type = ACPI_GET_OBJECT_TYPE(obj_desc);
L
Linus Torvalds 已提交
216 217 218

			/* Check for bad acpi_object_type */

L
Len Brown 已提交
219
			if (!acpi_ut_valid_object_type(object_type)) {
B
Bob Moore 已提交
220 221 222
				ACPI_ERROR((AE_INFO,
					    "Bad operand object type [%X]",
					    object_type));
L
Linus Torvalds 已提交
223

L
Len Brown 已提交
224
				return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
L
Linus Torvalds 已提交
225 226 227
			}

			if (object_type == (u8) ACPI_TYPE_LOCAL_REFERENCE) {
B
Bob Moore 已提交
228

R
Robert Moore 已提交
229 230
				/* Decode the Reference */

L
Len Brown 已提交
231
				op_info = acpi_ps_get_opcode_info(opcode);
L
Linus Torvalds 已提交
232
				if (op_info->class == AML_CLASS_UNKNOWN) {
L
Len Brown 已提交
233
					return_ACPI_STATUS(AE_AML_BAD_OPCODE);
L
Linus Torvalds 已提交
234 235 236 237
				}

				switch (obj_desc->reference.opcode) {
				case AML_DEBUG_OP:
R
Robert Moore 已提交
238 239 240 241
					target_op = AML_DEBUG_OP;

					/*lint -fallthrough */

L
Linus Torvalds 已提交
242 243 244 245 246
				case AML_NAME_OP:
				case AML_INDEX_OP:
				case AML_REF_OF_OP:
				case AML_ARG_OP:
				case AML_LOCAL_OP:
L
Len Brown 已提交
247 248 249 250 251
				case AML_LOAD_OP:	/* ddb_handle from LOAD_OP or LOAD_TABLE_OP */
				case AML_INT_NAMEPATH_OP:	/* Reference to a named object */

					ACPI_DEBUG_ONLY_MEMBERS(ACPI_DEBUG_PRINT
								((ACPI_DB_EXEC,
B
Bob Moore 已提交
252
								  "Operand is a Reference, RefOpcode [%s]\n",
L
Len Brown 已提交
253 254 255 256 257
								  (acpi_ps_get_opcode_info
								   (obj_desc->
								    reference.
								    opcode))->
								  name)));
L
Linus Torvalds 已提交
258 259 260
					break;

				default:
B
Bob Moore 已提交
261 262 263 264
					ACPI_ERROR((AE_INFO,
						    "Operand is a Reference, Unknown Reference Opcode: %X",
						    obj_desc->reference.
						    opcode));
L
Len Brown 已提交
265 266

					return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
L
Linus Torvalds 已提交
267 268 269 270 271 272 273 274
				}
			}
			break;

		default:

			/* Invalid descriptor */

B
Bob Moore 已提交
275 276 277 278
			ACPI_ERROR((AE_INFO,
				    "Invalid descriptor %p [%s]",
				    obj_desc,
				    acpi_ut_get_descriptor_name(obj_desc)));
L
Linus Torvalds 已提交
279

L
Len Brown 已提交
280
			return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
L
Linus Torvalds 已提交
281 282
		}

R
Robert Moore 已提交
283
		/* Get one argument type, point to the next */
L
Linus Torvalds 已提交
284

L
Len Brown 已提交
285 286
		this_arg_type = GET_CURRENT_ARG_TYPE(arg_types);
		INCREMENT_ARG_LIST(arg_types);
L
Linus Torvalds 已提交
287 288 289 290 291 292

		/*
		 * Handle cases where the object does not need to be
		 * resolved to a value
		 */
		switch (this_arg_type) {
L
Len Brown 已提交
293
		case ARGI_REF_OR_STRING:	/* Can be a String or Reference */
L
Linus Torvalds 已提交
294

L
Len Brown 已提交
295 296 297 298
			if ((ACPI_GET_DESCRIPTOR_TYPE(obj_desc) ==
			     ACPI_DESC_TYPE_OPERAND)
			    && (ACPI_GET_OBJECT_TYPE(obj_desc) ==
				ACPI_TYPE_STRING)) {
L
Linus Torvalds 已提交
299
				/*
R
Robert Moore 已提交
300 301
				 * String found - the string references a named object and
				 * must be resolved to a node
L
Linus Torvalds 已提交
302 303 304 305
				 */
				goto next_operand;
			}

R
Robert Moore 已提交
306 307 308 309
			/*
			 * Else not a string - fall through to the normal Reference
			 * case below
			 */
L
Linus Torvalds 已提交
310 311
			/*lint -fallthrough */

L
Len Brown 已提交
312
		case ARGI_REFERENCE:	/* References: */
L
Linus Torvalds 已提交
313 314 315
		case ARGI_INTEGER_REF:
		case ARGI_OBJECT_REF:
		case ARGI_DEVICE_REF:
L
Len Brown 已提交
316 317 318
		case ARGI_TARGETREF:	/* Allows implicit conversion rules before store */
		case ARGI_FIXED_TARGET:	/* No implicit conversion before store to target */
		case ARGI_SIMPLE_TARGET:	/* Name, Local, or Arg - no implicit conversion  */
L
Linus Torvalds 已提交
319

R
Robert Moore 已提交
320 321 322 323
			/*
			 * Need an operand of type ACPI_TYPE_LOCAL_REFERENCE
			 * A Namespace Node is OK as-is
			 */
L
Len Brown 已提交
324 325
			if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) ==
			    ACPI_DESC_TYPE_NAMED) {
L
Linus Torvalds 已提交
326 327 328
				goto next_operand;
			}

L
Len Brown 已提交
329 330 331 332 333
			status =
			    acpi_ex_check_object_type(ACPI_TYPE_LOCAL_REFERENCE,
						      object_type, obj_desc);
			if (ACPI_FAILURE(status)) {
				return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
334 335
			}

R
Robert Moore 已提交
336
			if (obj_desc->reference.opcode == AML_NAME_OP) {
B
Bob Moore 已提交
337

R
Robert Moore 已提交
338 339
				/* Convert a named reference to the actual named object */

L
Linus Torvalds 已提交
340
				temp_node = obj_desc->reference.object;
L
Len Brown 已提交
341
				acpi_ut_remove_reference(obj_desc);
L
Linus Torvalds 已提交
342 343 344 345
				(*stack_ptr) = temp_node;
			}
			goto next_operand;

L
Len Brown 已提交
346
		case ARGI_DATAREFOBJ:	/* Store operator only */
L
Linus Torvalds 已提交
347 348 349 350 351 352 353 354

			/*
			 * We don't want to resolve index_op reference objects during
			 * a store because this would be an implicit de_ref_of operation.
			 * Instead, we just want to store the reference object.
			 * -- All others must be resolved below.
			 */
			if ((opcode == AML_STORE_OP) &&
L
Len Brown 已提交
355 356
			    (ACPI_GET_OBJECT_TYPE(*stack_ptr) ==
			     ACPI_TYPE_LOCAL_REFERENCE)
L
Len Brown 已提交
357
			    && ((*stack_ptr)->reference.opcode == AML_INDEX_OP)) {
L
Linus Torvalds 已提交
358 359 360 361 362 363 364 365 366 367 368 369
				goto next_operand;
			}
			break;

		default:
			/* All cases covered above */
			break;
		}

		/*
		 * Resolve this object to a value
		 */
L
Len Brown 已提交
370 371 372
		status = acpi_ex_resolve_to_value(stack_ptr, walk_state);
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
373 374 375 376 377 378 379 380 381 382
		}

		/* Get the resolved object */

		obj_desc = *stack_ptr;

		/*
		 * Check the resulting object (value) type
		 */
		switch (this_arg_type) {
L
Len Brown 已提交
383 384 385 386
			/*
			 * For the simple cases, only one type of resolved object
			 * is allowed
			 */
L
Linus Torvalds 已提交
387 388 389 390 391 392 393 394 395 396 397 398 399 400
		case ARGI_MUTEX:

			/* Need an operand of type ACPI_TYPE_MUTEX */

			type_needed = ACPI_TYPE_MUTEX;
			break;

		case ARGI_EVENT:

			/* Need an operand of type ACPI_TYPE_EVENT */

			type_needed = ACPI_TYPE_EVENT;
			break;

L
Len Brown 已提交
401
		case ARGI_PACKAGE:	/* Package */
L
Linus Torvalds 已提交
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421

			/* Need an operand of type ACPI_TYPE_PACKAGE */

			type_needed = ACPI_TYPE_PACKAGE;
			break;

		case ARGI_ANYTYPE:

			/* Any operand type will do */

			type_needed = ACPI_TYPE_ANY;
			break;

		case ARGI_DDBHANDLE:

			/* Need an operand of type ACPI_TYPE_DDB_HANDLE */

			type_needed = ACPI_TYPE_LOCAL_REFERENCE;
			break;

L
Len Brown 已提交
422 423 424
			/*
			 * The more complex cases allow multiple resolved object types
			 */
R
Robert Moore 已提交
425
		case ARGI_INTEGER:
L
Linus Torvalds 已提交
426 427 428 429 430 431

			/*
			 * Need an operand of type ACPI_TYPE_INTEGER,
			 * But we can implicitly convert from a STRING or BUFFER
			 * Aka - "Implicit Source Operand Conversion"
			 */
L
Len Brown 已提交
432 433 434
			status =
			    acpi_ex_convert_to_integer(obj_desc, stack_ptr, 16);
			if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
435
				if (status == AE_TYPE) {
B
Bob Moore 已提交
436 437 438 439
					ACPI_ERROR((AE_INFO,
						    "Needed [Integer/String/Buffer], found [%s] %p",
						    acpi_ut_get_object_type_name
						    (obj_desc), obj_desc));
L
Linus Torvalds 已提交
440

L
Len Brown 已提交
441
					return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
L
Linus Torvalds 已提交
442 443
				}

L
Len Brown 已提交
444
				return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
445
			}
446 447

			if (obj_desc != *stack_ptr) {
L
Len Brown 已提交
448
				acpi_ut_remove_reference(obj_desc);
449
			}
L
Linus Torvalds 已提交
450 451 452 453 454 455 456 457 458
			goto next_operand;

		case ARGI_BUFFER:

			/*
			 * Need an operand of type ACPI_TYPE_BUFFER,
			 * But we can implicitly convert from a STRING or INTEGER
			 * Aka - "Implicit Source Operand Conversion"
			 */
L
Len Brown 已提交
459 460
			status = acpi_ex_convert_to_buffer(obj_desc, stack_ptr);
			if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
461
				if (status == AE_TYPE) {
B
Bob Moore 已提交
462 463 464 465
					ACPI_ERROR((AE_INFO,
						    "Needed [Integer/String/Buffer], found [%s] %p",
						    acpi_ut_get_object_type_name
						    (obj_desc), obj_desc));
L
Linus Torvalds 已提交
466

L
Len Brown 已提交
467
					return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
L
Linus Torvalds 已提交
468 469
				}

L
Len Brown 已提交
470
				return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
471
			}
472 473

			if (obj_desc != *stack_ptr) {
L
Len Brown 已提交
474
				acpi_ut_remove_reference(obj_desc);
475
			}
L
Linus Torvalds 已提交
476 477 478 479 480 481 482 483 484
			goto next_operand;

		case ARGI_STRING:

			/*
			 * Need an operand of type ACPI_TYPE_STRING,
			 * But we can implicitly convert from a BUFFER or INTEGER
			 * Aka - "Implicit Source Operand Conversion"
			 */
L
Len Brown 已提交
485 486 487
			status = acpi_ex_convert_to_string(obj_desc, stack_ptr,
							   ACPI_IMPLICIT_CONVERT_HEX);
			if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
488
				if (status == AE_TYPE) {
B
Bob Moore 已提交
489 490 491 492
					ACPI_ERROR((AE_INFO,
						    "Needed [Integer/String/Buffer], found [%s] %p",
						    acpi_ut_get_object_type_name
						    (obj_desc), obj_desc));
L
Linus Torvalds 已提交
493

L
Len Brown 已提交
494
					return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
L
Linus Torvalds 已提交
495 496
				}

L
Len Brown 已提交
497
				return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
498
			}
499 500

			if (obj_desc != *stack_ptr) {
L
Len Brown 已提交
501
				acpi_ut_remove_reference(obj_desc);
502
			}
L
Linus Torvalds 已提交
503 504 505 506 507 508
			goto next_operand;

		case ARGI_COMPUTEDATA:

			/* Need an operand of type INTEGER, STRING or BUFFER */

L
Len Brown 已提交
509
			switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
L
Linus Torvalds 已提交
510 511 512 513 514
			case ACPI_TYPE_INTEGER:
			case ACPI_TYPE_STRING:
			case ACPI_TYPE_BUFFER:

				/* Valid operand */
L
Len Brown 已提交
515
				break;
L
Linus Torvalds 已提交
516 517

			default:
B
Bob Moore 已提交
518 519 520 521
				ACPI_ERROR((AE_INFO,
					    "Needed [Integer/String/Buffer], found [%s] %p",
					    acpi_ut_get_object_type_name
					    (obj_desc), obj_desc));
L
Linus Torvalds 已提交
522

L
Len Brown 已提交
523
				return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
L
Linus Torvalds 已提交
524 525 526 527 528 529 530
			}
			goto next_operand;

		case ARGI_BUFFER_OR_STRING:

			/* Need an operand of type STRING or BUFFER */

L
Len Brown 已提交
531
			switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
L
Linus Torvalds 已提交
532 533 534 535
			case ACPI_TYPE_STRING:
			case ACPI_TYPE_BUFFER:

				/* Valid operand */
L
Len Brown 已提交
536
				break;
L
Linus Torvalds 已提交
537 538 539 540 541

			case ACPI_TYPE_INTEGER:

				/* Highest priority conversion is to type Buffer */

L
Len Brown 已提交
542 543 544 545 546
				status =
				    acpi_ex_convert_to_buffer(obj_desc,
							      stack_ptr);
				if (ACPI_FAILURE(status)) {
					return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
547
				}
548 549

				if (obj_desc != *stack_ptr) {
L
Len Brown 已提交
550
					acpi_ut_remove_reference(obj_desc);
551
				}
L
Linus Torvalds 已提交
552 553 554
				break;

			default:
B
Bob Moore 已提交
555 556 557 558
				ACPI_ERROR((AE_INFO,
					    "Needed [Integer/String/Buffer], found [%s] %p",
					    acpi_ut_get_object_type_name
					    (obj_desc), obj_desc));
L
Linus Torvalds 已提交
559

L
Len Brown 已提交
560
				return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
L
Linus Torvalds 已提交
561 562 563 564 565 566 567 568 569 570 571
			}
			goto next_operand;

		case ARGI_DATAOBJECT:
			/*
			 * ARGI_DATAOBJECT is only used by the size_of operator.
			 * Need a buffer, string, package, or ref_of reference.
			 *
			 * The only reference allowed here is a direct reference to
			 * a namespace node.
			 */
L
Len Brown 已提交
572
			switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
L
Linus Torvalds 已提交
573 574 575 576 577 578 579 580 581
			case ACPI_TYPE_PACKAGE:
			case ACPI_TYPE_STRING:
			case ACPI_TYPE_BUFFER:
			case ACPI_TYPE_LOCAL_REFERENCE:

				/* Valid operand */
				break;

			default:
B
Bob Moore 已提交
582 583 584 585
				ACPI_ERROR((AE_INFO,
					    "Needed [Buffer/String/Package/Reference], found [%s] %p",
					    acpi_ut_get_object_type_name
					    (obj_desc), obj_desc));
L
Linus Torvalds 已提交
586

L
Len Brown 已提交
587
				return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
L
Linus Torvalds 已提交
588 589 590 591 592 593 594
			}
			goto next_operand;

		case ARGI_COMPLEXOBJ:

			/* Need a buffer or package or (ACPI 2.0) String */

L
Len Brown 已提交
595
			switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
L
Linus Torvalds 已提交
596 597 598 599 600 601 602 603
			case ACPI_TYPE_PACKAGE:
			case ACPI_TYPE_STRING:
			case ACPI_TYPE_BUFFER:

				/* Valid operand */
				break;

			default:
B
Bob Moore 已提交
604 605 606 607
				ACPI_ERROR((AE_INFO,
					    "Needed [Buffer/String/Package], found [%s] %p",
					    acpi_ut_get_object_type_name
					    (obj_desc), obj_desc));
L
Linus Torvalds 已提交
608

L
Len Brown 已提交
609
				return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
L
Linus Torvalds 已提交
610 611 612
			}
			goto next_operand;

613
		case ARGI_REGION_OR_BUFFER:	/* Used by Load() only */
L
Linus Torvalds 已提交
614

615
			/* Need an operand of type REGION or a BUFFER (which could be a resolved region field) */
L
Linus Torvalds 已提交
616

L
Len Brown 已提交
617
			switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
618
			case ACPI_TYPE_BUFFER:
L
Linus Torvalds 已提交
619 620 621 622 623 624
			case ACPI_TYPE_REGION:

				/* Valid operand */
				break;

			default:
B
Bob Moore 已提交
625
				ACPI_ERROR((AE_INFO,
626
					    "Needed [Region/Buffer], found [%s] %p",
B
Bob Moore 已提交
627 628
					    acpi_ut_get_object_type_name
					    (obj_desc), obj_desc));
L
Linus Torvalds 已提交
629

L
Len Brown 已提交
630
				return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
L
Linus Torvalds 已提交
631 632 633 634 635 636 637
			}
			goto next_operand;

		case ARGI_DATAREFOBJ:

			/* Used by the Store() operator only */

L
Len Brown 已提交
638
			switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
L
Linus Torvalds 已提交
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663
			case ACPI_TYPE_INTEGER:
			case ACPI_TYPE_PACKAGE:
			case ACPI_TYPE_STRING:
			case ACPI_TYPE_BUFFER:
			case ACPI_TYPE_BUFFER_FIELD:
			case ACPI_TYPE_LOCAL_REFERENCE:
			case ACPI_TYPE_LOCAL_REGION_FIELD:
			case ACPI_TYPE_LOCAL_BANK_FIELD:
			case ACPI_TYPE_LOCAL_INDEX_FIELD:
			case ACPI_TYPE_DDB_HANDLE:

				/* Valid operand */
				break;

			default:

				if (acpi_gbl_enable_interpreter_slack) {
					/*
					 * Enable original behavior of Store(), allowing any and all
					 * objects as the source operand.  The ACPI spec does not
					 * allow this, however.
					 */
					break;
				}

R
Robert Moore 已提交
664
				if (target_op == AML_DEBUG_OP) {
B
Bob Moore 已提交
665

R
Robert Moore 已提交
666 667 668 669 670
					/* Allow store of any object to the Debug object */

					break;
				}

B
Bob Moore 已提交
671 672 673 674
				ACPI_ERROR((AE_INFO,
					    "Needed Integer/Buffer/String/Package/Ref/Ddb], found [%s] %p",
					    acpi_ut_get_object_type_name
					    (obj_desc), obj_desc));
L
Linus Torvalds 已提交
675

L
Len Brown 已提交
676
				return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
L
Linus Torvalds 已提交
677 678 679 680 681 682 683
			}
			goto next_operand;

		default:

			/* Unknown type */

B
Bob Moore 已提交
684 685 686
			ACPI_ERROR((AE_INFO,
				    "Internal - Unknown ARGI (required operand) type %X",
				    this_arg_type));
L
Linus Torvalds 已提交
687

L
Len Brown 已提交
688
			return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
689 690 691 692 693 694
		}

		/*
		 * Make sure that the original object was resolved to the
		 * required object type (Simple cases only).
		 */
L
Len Brown 已提交
695 696 697 698 699
		status = acpi_ex_check_object_type(type_needed,
						   ACPI_GET_OBJECT_TYPE
						   (*stack_ptr), *stack_ptr);
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
700 701
		}

L
Len Brown 已提交
702
	      next_operand:
L
Linus Torvalds 已提交
703 704 705 706
		/*
		 * If more operands needed, decrement stack_ptr to point
		 * to next operand on stack
		 */
L
Len Brown 已提交
707
		if (GET_CURRENT_ARG_TYPE(arg_types)) {
L
Linus Torvalds 已提交
708 709
			stack_ptr--;
		}
R
Robert Moore 已提交
710
	}
L
Linus Torvalds 已提交
711

L
Len Brown 已提交
712
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
713
}