blob: b04e4a3707a1974790ec5e82cec65e1bb954a54f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/******************************************************************************
3 *
4 * Module Name: exresop - AML Interpreter operand/object resolution
5 *
6 *****************************************************************************/
7
8/*
9 * Copyright (C) 2000 - 2005, R. Byron Moore
10 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
30 *
31 * NO WARRANTY
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <acpi/acpi.h>
46#include <acpi/amlcode.h>
47#include <acpi/acparser.h>
48#include <acpi/acinterp.h>
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("exresop")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Robert Moore44f6c012005-04-18 22:49:35 -040053/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040054static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040055acpi_ex_check_object_type(acpi_object_type type_needed,
56 acpi_object_type this_type, void *object);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/*******************************************************************************
59 *
60 * FUNCTION: acpi_ex_check_object_type
61 *
62 * PARAMETERS: type_needed Object type needed
63 * this_type Actual object type
64 * Object Object pointer
65 *
66 * RETURN: Status
67 *
68 * DESCRIPTION: Check required type against actual type
69 *
70 ******************************************************************************/
71
Robert Moore44f6c012005-04-18 22:49:35 -040072static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040073acpi_ex_check_object_type(acpi_object_type type_needed,
74 acpi_object_type this_type, void *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Len Brown4be44fc2005-08-05 00:44:28 -040076 ACPI_FUNCTION_NAME("ex_check_object_type");
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 if (type_needed == ACPI_TYPE_ANY) {
79 /* All types OK, so we don't perform any typechecks */
80
81 return (AE_OK);
82 }
83
84 if (type_needed == ACPI_TYPE_LOCAL_REFERENCE) {
85 /*
86 * Allow the AML "Constant" opcodes (Zero, One, etc.) to be reference
87 * objects and thus allow them to be targets. (As per the ACPI
88 * specification, a store to a constant is a noop.)
89 */
90 if ((this_type == ACPI_TYPE_INTEGER) &&
Len Brown4be44fc2005-08-05 00:44:28 -040091 (((union acpi_operand_object *)object)->common.
92 flags & AOPOBJ_AML_CONSTANT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 return (AE_OK);
94 }
95 }
96
97 if (type_needed != this_type) {
Len Brown4be44fc2005-08-05 00:44:28 -040098 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
99 "Needed [%s], found [%s] %p\n",
100 acpi_ut_get_type_name(type_needed),
101 acpi_ut_get_type_name(this_type), object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 return (AE_AML_OPERAND_TYPE);
104 }
105
106 return (AE_OK);
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*******************************************************************************
110 *
111 * FUNCTION: acpi_ex_resolve_operands
112 *
113 * PARAMETERS: Opcode - Opcode being interpreted
114 * stack_ptr - Pointer to the operand stack to be
115 * resolved
116 * walk_state - Current state
117 *
118 * RETURN: Status
119 *
120 * DESCRIPTION: Convert multiple input operands to the types required by the
121 * target operator.
122 *
123 * Each 5-bit group in arg_types represents one required
124 * operand and indicates the required Type. The corresponding operand
125 * will be converted to the required type if possible, otherwise we
126 * abort with an exception.
127 *
128 ******************************************************************************/
129
130acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400131acpi_ex_resolve_operands(u16 opcode,
132 union acpi_operand_object ** stack_ptr,
133 struct acpi_walk_state * walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Len Brown4be44fc2005-08-05 00:44:28 -0400135 union acpi_operand_object *obj_desc;
136 acpi_status status = AE_OK;
137 u8 object_type;
138 void *temp_node;
139 u32 arg_types;
140 const struct acpi_opcode_info *op_info;
141 u32 this_arg_type;
142 acpi_object_type type_needed;
143 u16 target_op = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Len Brown4be44fc2005-08-05 00:44:28 -0400145 ACPI_FUNCTION_TRACE_U32("ex_resolve_operands", opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Len Brown4be44fc2005-08-05 00:44:28 -0400147 op_info = acpi_ps_get_opcode_info(opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (op_info->class == AML_CLASS_UNKNOWN) {
Len Brown4be44fc2005-08-05 00:44:28 -0400149 return_ACPI_STATUS(AE_AML_BAD_OPCODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151
152 arg_types = op_info->runtime_args;
153 if (arg_types == ARGI_INVALID_OPCODE) {
Len Brown4be44fc2005-08-05 00:44:28 -0400154 ACPI_REPORT_ERROR(("resolve_operands: %X is not a valid AML opcode\n", opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Len Brown4be44fc2005-08-05 00:44:28 -0400156 return_ACPI_STATUS(AE_AML_INTERNAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
158
Len Brown4be44fc2005-08-05 00:44:28 -0400159 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
Bob Moore50eca3e2005-09-30 19:03:00 -0400160 "Opcode %X [%s] required_operand_types=%8.8X\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400161 opcode, op_info->name, arg_types));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 /*
164 * Normal exit is with (arg_types == 0) at end of argument list.
165 * Function will return an exception from within the loop upon
166 * finding an entry which is not (or cannot be converted
167 * to) the required type; if stack underflows; or upon
168 * finding a NULL stack entry (which should not happen).
169 */
Len Brown4be44fc2005-08-05 00:44:28 -0400170 while (GET_CURRENT_ARG_TYPE(arg_types)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (!stack_ptr || !*stack_ptr) {
Len Brown4be44fc2005-08-05 00:44:28 -0400172 ACPI_REPORT_ERROR(("resolve_operands: Null stack entry at %p\n", stack_ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Len Brown4be44fc2005-08-05 00:44:28 -0400174 return_ACPI_STATUS(AE_AML_INTERNAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176
177 /* Extract useful items */
178
179 obj_desc = *stack_ptr;
180
181 /* Decode the descriptor type */
182
Len Brown4be44fc2005-08-05 00:44:28 -0400183 switch (ACPI_GET_DESCRIPTOR_TYPE(obj_desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 case ACPI_DESC_TYPE_NAMED:
185
Robert Moore44f6c012005-04-18 22:49:35 -0400186 /* Namespace Node */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Len Brown4be44fc2005-08-05 00:44:28 -0400188 object_type =
189 ((struct acpi_namespace_node *)obj_desc)->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 break;
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 case ACPI_DESC_TYPE_OPERAND:
193
194 /* ACPI internal object */
195
Len Brown4be44fc2005-08-05 00:44:28 -0400196 object_type = ACPI_GET_OBJECT_TYPE(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 /* Check for bad acpi_object_type */
199
Len Brown4be44fc2005-08-05 00:44:28 -0400200 if (!acpi_ut_valid_object_type(object_type)) {
201 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
202 "Bad operand object type [%X]\n",
203 object_type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Len Brown4be44fc2005-08-05 00:44:28 -0400205 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207
208 if (object_type == (u8) ACPI_TYPE_LOCAL_REFERENCE) {
Robert Moore44f6c012005-04-18 22:49:35 -0400209 /* Decode the Reference */
210
Len Brown4be44fc2005-08-05 00:44:28 -0400211 op_info = acpi_ps_get_opcode_info(opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (op_info->class == AML_CLASS_UNKNOWN) {
Len Brown4be44fc2005-08-05 00:44:28 -0400213 return_ACPI_STATUS(AE_AML_BAD_OPCODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
215
216 switch (obj_desc->reference.opcode) {
217 case AML_DEBUG_OP:
Robert Moore44f6c012005-04-18 22:49:35 -0400218 target_op = AML_DEBUG_OP;
219
220 /*lint -fallthrough */
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 case AML_NAME_OP:
223 case AML_INDEX_OP:
224 case AML_REF_OF_OP:
225 case AML_ARG_OP:
226 case AML_LOCAL_OP:
Len Brown4be44fc2005-08-05 00:44:28 -0400227 case AML_LOAD_OP: /* ddb_handle from LOAD_OP or LOAD_TABLE_OP */
228 case AML_INT_NAMEPATH_OP: /* Reference to a named object */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Len Brown4be44fc2005-08-05 00:44:28 -0400230 ACPI_DEBUG_ONLY_MEMBERS(ACPI_DEBUG_PRINT
231 ((ACPI_DB_EXEC,
232 "Operand is a Reference, ref_opcode [%s]\n",
233 (acpi_ps_get_opcode_info
234 (obj_desc->
235 reference.
236 opcode))->
237 name)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 break;
239
240 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400241 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
242 "Operand is a Reference, Unknown Reference Opcode %X [%s]\n",
243 obj_desc->reference.
244 opcode,
245 (acpi_ps_get_opcode_info
246 (obj_desc->reference.
247 opcode))->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Len Brown4be44fc2005-08-05 00:44:28 -0400249 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251 }
252 break;
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 default:
255
256 /* Invalid descriptor */
257
Len Brown4be44fc2005-08-05 00:44:28 -0400258 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
259 "Invalid descriptor %p [%s]\n",
260 obj_desc,
261 acpi_ut_get_descriptor_name
262 (obj_desc)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Len Brown4be44fc2005-08-05 00:44:28 -0400264 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266
Robert Moore44f6c012005-04-18 22:49:35 -0400267 /* Get one argument type, point to the next */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Len Brown4be44fc2005-08-05 00:44:28 -0400269 this_arg_type = GET_CURRENT_ARG_TYPE(arg_types);
270 INCREMENT_ARG_LIST(arg_types);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 /*
273 * Handle cases where the object does not need to be
274 * resolved to a value
275 */
276 switch (this_arg_type) {
Len Brown4be44fc2005-08-05 00:44:28 -0400277 case ARGI_REF_OR_STRING: /* Can be a String or Reference */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Len Brown4be44fc2005-08-05 00:44:28 -0400279 if ((ACPI_GET_DESCRIPTOR_TYPE(obj_desc) ==
280 ACPI_DESC_TYPE_OPERAND)
281 && (ACPI_GET_OBJECT_TYPE(obj_desc) ==
282 ACPI_TYPE_STRING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 /*
Robert Moore44f6c012005-04-18 22:49:35 -0400284 * String found - the string references a named object and
285 * must be resolved to a node
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 */
287 goto next_operand;
288 }
289
Robert Moore44f6c012005-04-18 22:49:35 -0400290 /*
291 * Else not a string - fall through to the normal Reference
292 * case below
293 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 /*lint -fallthrough */
295
Len Brown4be44fc2005-08-05 00:44:28 -0400296 case ARGI_REFERENCE: /* References: */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 case ARGI_INTEGER_REF:
298 case ARGI_OBJECT_REF:
299 case ARGI_DEVICE_REF:
Len Brown4be44fc2005-08-05 00:44:28 -0400300 case ARGI_TARGETREF: /* Allows implicit conversion rules before store */
301 case ARGI_FIXED_TARGET: /* No implicit conversion before store to target */
302 case ARGI_SIMPLE_TARGET: /* Name, Local, or Arg - no implicit conversion */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Robert Moore44f6c012005-04-18 22:49:35 -0400304 /*
305 * Need an operand of type ACPI_TYPE_LOCAL_REFERENCE
306 * A Namespace Node is OK as-is
307 */
Len Brown4be44fc2005-08-05 00:44:28 -0400308 if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) ==
309 ACPI_DESC_TYPE_NAMED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 goto next_operand;
311 }
312
Len Brown4be44fc2005-08-05 00:44:28 -0400313 status =
314 acpi_ex_check_object_type(ACPI_TYPE_LOCAL_REFERENCE,
315 object_type, obj_desc);
316 if (ACPI_FAILURE(status)) {
317 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319
Robert Moore44f6c012005-04-18 22:49:35 -0400320 if (obj_desc->reference.opcode == AML_NAME_OP) {
321 /* Convert a named reference to the actual named object */
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 temp_node = obj_desc->reference.object;
Len Brown4be44fc2005-08-05 00:44:28 -0400324 acpi_ut_remove_reference(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 (*stack_ptr) = temp_node;
326 }
327 goto next_operand;
328
Len Brown4be44fc2005-08-05 00:44:28 -0400329 case ARGI_DATAREFOBJ: /* Store operator only */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 /*
332 * We don't want to resolve index_op reference objects during
333 * a store because this would be an implicit de_ref_of operation.
334 * Instead, we just want to store the reference object.
335 * -- All others must be resolved below.
336 */
337 if ((opcode == AML_STORE_OP) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400338 (ACPI_GET_OBJECT_TYPE(*stack_ptr) ==
339 ACPI_TYPE_LOCAL_REFERENCE)
340 && ((*stack_ptr)->reference.opcode ==
341 AML_INDEX_OP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 goto next_operand;
343 }
344 break;
345
346 default:
347 /* All cases covered above */
348 break;
349 }
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /*
352 * Resolve this object to a value
353 */
Len Brown4be44fc2005-08-05 00:44:28 -0400354 status = acpi_ex_resolve_to_value(stack_ptr, walk_state);
355 if (ACPI_FAILURE(status)) {
356 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 }
358
359 /* Get the resolved object */
360
361 obj_desc = *stack_ptr;
362
363 /*
364 * Check the resulting object (value) type
365 */
366 switch (this_arg_type) {
Len Brown4be44fc2005-08-05 00:44:28 -0400367 /*
368 * For the simple cases, only one type of resolved object
369 * is allowed
370 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 case ARGI_MUTEX:
372
373 /* Need an operand of type ACPI_TYPE_MUTEX */
374
375 type_needed = ACPI_TYPE_MUTEX;
376 break;
377
378 case ARGI_EVENT:
379
380 /* Need an operand of type ACPI_TYPE_EVENT */
381
382 type_needed = ACPI_TYPE_EVENT;
383 break;
384
Len Brown4be44fc2005-08-05 00:44:28 -0400385 case ARGI_PACKAGE: /* Package */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 /* Need an operand of type ACPI_TYPE_PACKAGE */
388
389 type_needed = ACPI_TYPE_PACKAGE;
390 break;
391
392 case ARGI_ANYTYPE:
393
394 /* Any operand type will do */
395
396 type_needed = ACPI_TYPE_ANY;
397 break;
398
399 case ARGI_DDBHANDLE:
400
401 /* Need an operand of type ACPI_TYPE_DDB_HANDLE */
402
403 type_needed = ACPI_TYPE_LOCAL_REFERENCE;
404 break;
405
Len Brown4be44fc2005-08-05 00:44:28 -0400406 /*
407 * The more complex cases allow multiple resolved object types
408 */
Robert Moore44f6c012005-04-18 22:49:35 -0400409 case ARGI_INTEGER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 /*
412 * Need an operand of type ACPI_TYPE_INTEGER,
413 * But we can implicitly convert from a STRING or BUFFER
414 * Aka - "Implicit Source Operand Conversion"
415 */
Len Brown4be44fc2005-08-05 00:44:28 -0400416 status =
417 acpi_ex_convert_to_integer(obj_desc, stack_ptr, 16);
418 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (status == AE_TYPE) {
Len Brown4be44fc2005-08-05 00:44:28 -0400420 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
421 "Needed [Integer/String/Buffer], found [%s] %p\n",
422 acpi_ut_get_object_type_name
423 (obj_desc),
424 obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Len Brown4be44fc2005-08-05 00:44:28 -0400426 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
428
Len Brown4be44fc2005-08-05 00:44:28 -0400429 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
Robert Mooref9f46012005-07-08 00:00:00 -0400431
432 if (obj_desc != *stack_ptr) {
Len Brown4be44fc2005-08-05 00:44:28 -0400433 acpi_ut_remove_reference(obj_desc);
Robert Mooref9f46012005-07-08 00:00:00 -0400434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 goto next_operand;
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 case ARGI_BUFFER:
438
439 /*
440 * Need an operand of type ACPI_TYPE_BUFFER,
441 * But we can implicitly convert from a STRING or INTEGER
442 * Aka - "Implicit Source Operand Conversion"
443 */
Len Brown4be44fc2005-08-05 00:44:28 -0400444 status = acpi_ex_convert_to_buffer(obj_desc, stack_ptr);
445 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (status == AE_TYPE) {
Len Brown4be44fc2005-08-05 00:44:28 -0400447 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
448 "Needed [Integer/String/Buffer], found [%s] %p\n",
449 acpi_ut_get_object_type_name
450 (obj_desc),
451 obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Len Brown4be44fc2005-08-05 00:44:28 -0400453 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455
Len Brown4be44fc2005-08-05 00:44:28 -0400456 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
Robert Mooref9f46012005-07-08 00:00:00 -0400458
459 if (obj_desc != *stack_ptr) {
Len Brown4be44fc2005-08-05 00:44:28 -0400460 acpi_ut_remove_reference(obj_desc);
Robert Mooref9f46012005-07-08 00:00:00 -0400461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 goto next_operand;
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 case ARGI_STRING:
465
466 /*
467 * Need an operand of type ACPI_TYPE_STRING,
468 * But we can implicitly convert from a BUFFER or INTEGER
469 * Aka - "Implicit Source Operand Conversion"
470 */
Len Brown4be44fc2005-08-05 00:44:28 -0400471 status = acpi_ex_convert_to_string(obj_desc, stack_ptr,
472 ACPI_IMPLICIT_CONVERT_HEX);
473 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (status == AE_TYPE) {
Len Brown4be44fc2005-08-05 00:44:28 -0400475 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
476 "Needed [Integer/String/Buffer], found [%s] %p\n",
477 acpi_ut_get_object_type_name
478 (obj_desc),
479 obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Len Brown4be44fc2005-08-05 00:44:28 -0400481 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483
Len Brown4be44fc2005-08-05 00:44:28 -0400484 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
Robert Mooref9f46012005-07-08 00:00:00 -0400486
487 if (obj_desc != *stack_ptr) {
Len Brown4be44fc2005-08-05 00:44:28 -0400488 acpi_ut_remove_reference(obj_desc);
Robert Mooref9f46012005-07-08 00:00:00 -0400489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 goto next_operand;
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 case ARGI_COMPUTEDATA:
493
494 /* Need an operand of type INTEGER, STRING or BUFFER */
495
Len Brown4be44fc2005-08-05 00:44:28 -0400496 switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 case ACPI_TYPE_INTEGER:
498 case ACPI_TYPE_STRING:
499 case ACPI_TYPE_BUFFER:
500
501 /* Valid operand */
Len Brown4be44fc2005-08-05 00:44:28 -0400502 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400505 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
506 "Needed [Integer/String/Buffer], found [%s] %p\n",
507 acpi_ut_get_object_type_name
508 (obj_desc), obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Len Brown4be44fc2005-08-05 00:44:28 -0400510 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512 goto next_operand;
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 case ARGI_BUFFER_OR_STRING:
515
516 /* Need an operand of type STRING or BUFFER */
517
Len Brown4be44fc2005-08-05 00:44:28 -0400518 switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 case ACPI_TYPE_STRING:
520 case ACPI_TYPE_BUFFER:
521
522 /* Valid operand */
Len Brown4be44fc2005-08-05 00:44:28 -0400523 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 case ACPI_TYPE_INTEGER:
526
527 /* Highest priority conversion is to type Buffer */
528
Len Brown4be44fc2005-08-05 00:44:28 -0400529 status =
530 acpi_ex_convert_to_buffer(obj_desc,
531 stack_ptr);
532 if (ACPI_FAILURE(status)) {
533 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
Robert Mooref9f46012005-07-08 00:00:00 -0400535
536 if (obj_desc != *stack_ptr) {
Len Brown4be44fc2005-08-05 00:44:28 -0400537 acpi_ut_remove_reference(obj_desc);
Robert Mooref9f46012005-07-08 00:00:00 -0400538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 break;
540
541 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400542 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
543 "Needed [Integer/String/Buffer], found [%s] %p\n",
544 acpi_ut_get_object_type_name
545 (obj_desc), obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Len Brown4be44fc2005-08-05 00:44:28 -0400547 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549 goto next_operand;
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 case ARGI_DATAOBJECT:
552 /*
553 * ARGI_DATAOBJECT is only used by the size_of operator.
554 * Need a buffer, string, package, or ref_of reference.
555 *
556 * The only reference allowed here is a direct reference to
557 * a namespace node.
558 */
Len Brown4be44fc2005-08-05 00:44:28 -0400559 switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 case ACPI_TYPE_PACKAGE:
561 case ACPI_TYPE_STRING:
562 case ACPI_TYPE_BUFFER:
563 case ACPI_TYPE_LOCAL_REFERENCE:
564
565 /* Valid operand */
566 break;
567
568 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400569 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
570 "Needed [Buffer/String/Package/Reference], found [%s] %p\n",
571 acpi_ut_get_object_type_name
572 (obj_desc), obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Len Brown4be44fc2005-08-05 00:44:28 -0400574 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576 goto next_operand;
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 case ARGI_COMPLEXOBJ:
579
580 /* Need a buffer or package or (ACPI 2.0) String */
581
Len Brown4be44fc2005-08-05 00:44:28 -0400582 switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 case ACPI_TYPE_PACKAGE:
584 case ACPI_TYPE_STRING:
585 case ACPI_TYPE_BUFFER:
586
587 /* Valid operand */
588 break;
589
590 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400591 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
592 "Needed [Buffer/String/Package], found [%s] %p\n",
593 acpi_ut_get_object_type_name
594 (obj_desc), obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Len Brown4be44fc2005-08-05 00:44:28 -0400596 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598 goto next_operand;
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 case ARGI_REGION_OR_FIELD:
601
Robert Moore44f6c012005-04-18 22:49:35 -0400602 /* Need an operand of type REGION or a FIELD in a region */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Len Brown4be44fc2005-08-05 00:44:28 -0400604 switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 case ACPI_TYPE_REGION:
606 case ACPI_TYPE_LOCAL_REGION_FIELD:
607 case ACPI_TYPE_LOCAL_BANK_FIELD:
608 case ACPI_TYPE_LOCAL_INDEX_FIELD:
609
610 /* Valid operand */
611 break;
612
613 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400614 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
615 "Needed [Region/region_field], found [%s] %p\n",
616 acpi_ut_get_object_type_name
617 (obj_desc), obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Len Brown4be44fc2005-08-05 00:44:28 -0400619 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
621 goto next_operand;
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 case ARGI_DATAREFOBJ:
624
625 /* Used by the Store() operator only */
626
Len Brown4be44fc2005-08-05 00:44:28 -0400627 switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 case ACPI_TYPE_INTEGER:
629 case ACPI_TYPE_PACKAGE:
630 case ACPI_TYPE_STRING:
631 case ACPI_TYPE_BUFFER:
632 case ACPI_TYPE_BUFFER_FIELD:
633 case ACPI_TYPE_LOCAL_REFERENCE:
634 case ACPI_TYPE_LOCAL_REGION_FIELD:
635 case ACPI_TYPE_LOCAL_BANK_FIELD:
636 case ACPI_TYPE_LOCAL_INDEX_FIELD:
637 case ACPI_TYPE_DDB_HANDLE:
638
639 /* Valid operand */
640 break;
641
642 default:
643
644 if (acpi_gbl_enable_interpreter_slack) {
645 /*
646 * Enable original behavior of Store(), allowing any and all
647 * objects as the source operand. The ACPI spec does not
648 * allow this, however.
649 */
650 break;
651 }
652
Robert Moore44f6c012005-04-18 22:49:35 -0400653 if (target_op == AML_DEBUG_OP) {
654 /* Allow store of any object to the Debug object */
655
656 break;
657 }
658
Len Brown4be44fc2005-08-05 00:44:28 -0400659 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
660 "Needed Integer/Buffer/String/Package/Ref/Ddb], found [%s] %p\n",
661 acpi_ut_get_object_type_name
662 (obj_desc), obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Len Brown4be44fc2005-08-05 00:44:28 -0400664 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666 goto next_operand;
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 default:
669
670 /* Unknown type */
671
Len Brown4be44fc2005-08-05 00:44:28 -0400672 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
673 "Internal - Unknown ARGI (required operand) type %X\n",
674 this_arg_type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Len Brown4be44fc2005-08-05 00:44:28 -0400676 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678
679 /*
680 * Make sure that the original object was resolved to the
681 * required object type (Simple cases only).
682 */
Len Brown4be44fc2005-08-05 00:44:28 -0400683 status = acpi_ex_check_object_type(type_needed,
684 ACPI_GET_OBJECT_TYPE
685 (*stack_ptr), *stack_ptr);
686 if (ACPI_FAILURE(status)) {
687 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
689
Len Brown4be44fc2005-08-05 00:44:28 -0400690 next_operand:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 /*
692 * If more operands needed, decrement stack_ptr to point
693 * to next operand on stack
694 */
Len Brown4be44fc2005-08-05 00:44:28 -0400695 if (GET_CURRENT_ARG_TYPE(arg_types)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 stack_ptr--;
697 }
Robert Moore44f6c012005-04-18 22:49:35 -0400698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Len Brown4be44fc2005-08-05 00:44:28 -0400700 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}