]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/acpi/acpica/dsmthdat.c
ACPICA: Fix extraneous warning if _DSM returns a package
[mirror_ubuntu-hirsute-kernel.git] / drivers / acpi / acpica / dsmthdat.c
CommitLineData
1da177e4
LT
1/*******************************************************************************
2 *
3 * Module Name: dsmthdat - control method arguments and local variables
4 *
5 ******************************************************************************/
6
7/*
75a44ce0 8 * Copyright (C) 2000 - 2008, Intel Corp.
1da177e4
LT
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
1da177e4 44#include <acpi/acpi.h>
e2f7a777
LB
45#include "accommon.h"
46#include "acdispat.h"
47#include "acnamesp.h"
48#include "acinterp.h"
1da177e4 49
1da177e4 50#define _COMPONENT ACPI_DISPATCHER
4be44fcd 51ACPI_MODULE_NAME("dsmthdat")
1da177e4 52
44f6c012 53/* Local prototypes */
44f6c012 54static void
1044f1f6 55acpi_ds_method_data_delete_value(u8 type,
4be44fcd 56 u32 index, struct acpi_walk_state *walk_state);
44f6c012
RM
57
58static acpi_status
1044f1f6 59acpi_ds_method_data_set_value(u8 type,
4be44fcd
LB
60 u32 index,
61 union acpi_operand_object *object,
62 struct acpi_walk_state *walk_state);
44f6c012
RM
63
64#ifdef ACPI_OBSOLETE_FUNCTIONS
65acpi_object_type
4be44fcd
LB
66acpi_ds_method_data_get_type(u16 opcode,
67 u32 index, struct acpi_walk_state *walk_state);
44f6c012
RM
68#endif
69
1da177e4
LT
70/*******************************************************************************
71 *
72 * FUNCTION: acpi_ds_method_data_init
73 *
74 * PARAMETERS: walk_state - Current walk state object
75 *
76 * RETURN: Status
77 *
78 * DESCRIPTION: Initialize the data structures that hold the method's arguments
44f6c012
RM
79 * and locals. The data struct is an array of namespace nodes for
80 * each - this allows ref_of and de_ref_of to work properly for these
1da177e4
LT
81 * special data types.
82 *
83 * NOTES: walk_state fields are initialized to zero by the
8313524a 84 * ACPI_ALLOCATE_ZEROED().
1da177e4
LT
85 *
86 * A pseudo-Namespace Node is assigned to each argument and local
87 * so that ref_of() can return a pointer to the Node.
88 *
89 ******************************************************************************/
90
4be44fcd 91void acpi_ds_method_data_init(struct acpi_walk_state *walk_state)
1da177e4 92{
4be44fcd 93 u32 i;
1da177e4 94
b229cf92 95 ACPI_FUNCTION_TRACE(ds_method_data_init);
1da177e4
LT
96
97 /* Init the method arguments */
98
99 for (i = 0; i < ACPI_METHOD_NUM_ARGS; i++) {
4be44fcd 100 ACPI_MOVE_32_TO_32(&walk_state->arguments[i].name,
1da177e4
LT
101 NAMEOF_ARG_NTE);
102 walk_state->arguments[i].name.integer |= (i << 24);
61686124 103 walk_state->arguments[i].descriptor_type = ACPI_DESC_TYPE_NAMED;
4be44fcd 104 walk_state->arguments[i].type = ACPI_TYPE_ANY;
61686124
BM
105 walk_state->arguments[i].flags =
106 ANOBJ_END_OF_PEER_LIST | ANOBJ_METHOD_ARG;
1da177e4
LT
107 }
108
109 /* Init the method locals */
110
111 for (i = 0; i < ACPI_METHOD_NUM_LOCALS; i++) {
4be44fcd 112 ACPI_MOVE_32_TO_32(&walk_state->local_variables[i].name,
1da177e4
LT
113 NAMEOF_LOCAL_NTE);
114
115 walk_state->local_variables[i].name.integer |= (i << 24);
61686124 116 walk_state->local_variables[i].descriptor_type =
4be44fcd
LB
117 ACPI_DESC_TYPE_NAMED;
118 walk_state->local_variables[i].type = ACPI_TYPE_ANY;
61686124
BM
119 walk_state->local_variables[i].flags =
120 ANOBJ_END_OF_PEER_LIST | ANOBJ_METHOD_LOCAL;
1da177e4
LT
121 }
122
123 return_VOID;
124}
125
1da177e4
LT
126/*******************************************************************************
127 *
128 * FUNCTION: acpi_ds_method_data_delete_all
129 *
130 * PARAMETERS: walk_state - Current walk state object
131 *
132 * RETURN: None
133 *
134 * DESCRIPTION: Delete method locals and arguments. Arguments are only
135 * deleted if this method was called from another method.
136 *
137 ******************************************************************************/
138
4be44fcd 139void acpi_ds_method_data_delete_all(struct acpi_walk_state *walk_state)
1da177e4 140{
4be44fcd 141 u32 index;
1da177e4 142
b229cf92 143 ACPI_FUNCTION_TRACE(ds_method_data_delete_all);
1da177e4
LT
144
145 /* Detach the locals */
146
147 for (index = 0; index < ACPI_METHOD_NUM_LOCALS; index++) {
148 if (walk_state->local_variables[index].object) {
4be44fcd
LB
149 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Deleting Local%d=%p\n",
150 index,
151 walk_state->local_variables[index].
152 object));
1da177e4
LT
153
154 /* Detach object (if present) and remove a reference */
155
4be44fcd
LB
156 acpi_ns_detach_object(&walk_state->
157 local_variables[index]);
1da177e4
LT
158 }
159 }
160
161 /* Detach the arguments */
162
163 for (index = 0; index < ACPI_METHOD_NUM_ARGS; index++) {
164 if (walk_state->arguments[index].object) {
4be44fcd
LB
165 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Deleting Arg%d=%p\n",
166 index,
167 walk_state->arguments[index].object));
1da177e4
LT
168
169 /* Detach object (if present) and remove a reference */
170
4be44fcd 171 acpi_ns_detach_object(&walk_state->arguments[index]);
1da177e4
LT
172 }
173 }
174
175 return_VOID;
176}
177
1da177e4
LT
178/*******************************************************************************
179 *
180 * FUNCTION: acpi_ds_method_data_init_args
181 *
182 * PARAMETERS: *Params - Pointer to a parameter list for the method
183 * max_param_count - The arg count for this method
184 * walk_state - Current walk state object
185 *
186 * RETURN: Status
187 *
188 * DESCRIPTION: Initialize arguments for a method. The parameter list is a list
189 * of ACPI operand objects, either null terminated or whose length
190 * is defined by max_param_count.
191 *
192 ******************************************************************************/
193
194acpi_status
4be44fcd
LB
195acpi_ds_method_data_init_args(union acpi_operand_object **params,
196 u32 max_param_count,
197 struct acpi_walk_state *walk_state)
1da177e4 198{
4be44fcd
LB
199 acpi_status status;
200 u32 index = 0;
1da177e4 201
b229cf92 202 ACPI_FUNCTION_TRACE_PTR(ds_method_data_init_args, params);
1da177e4
LT
203
204 if (!params) {
4be44fcd
LB
205 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
206 "No param list passed to method\n"));
207 return_ACPI_STATUS(AE_OK);
1da177e4
LT
208 }
209
44f6c012 210 /* Copy passed parameters into the new method stack frame */
1da177e4 211
44f6c012 212 while ((index < ACPI_METHOD_NUM_ARGS) &&
4be44fcd 213 (index < max_param_count) && params[index]) {
1da177e4
LT
214 /*
215 * A valid parameter.
216 * Store the argument in the method/walk descriptor.
217 * Do not copy the arg in order to implement call by reference
218 */
1044f1f6 219 status = acpi_ds_method_data_set_value(ACPI_REFCLASS_ARG, index,
4be44fcd
LB
220 params[index],
221 walk_state);
222 if (ACPI_FAILURE(status)) {
223 return_ACPI_STATUS(status);
1da177e4
LT
224 }
225
226 index++;
227 }
228
4be44fcd
LB
229 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%d args passed to method\n", index));
230 return_ACPI_STATUS(AE_OK);
1da177e4
LT
231}
232
1da177e4
LT
233/*******************************************************************************
234 *
235 * FUNCTION: acpi_ds_method_data_get_node
236 *
1044f1f6
BM
237 * PARAMETERS: Type - Either ACPI_REFCLASS_LOCAL or
238 * ACPI_REFCLASS_ARG
44f6c012 239 * Index - Which Local or Arg whose type to get
1da177e4 240 * walk_state - Current walk state object
44f6c012 241 * Node - Where the node is returned.
1da177e4 242 *
44f6c012
RM
243 * RETURN: Status and node
244 *
245 * DESCRIPTION: Get the Node associated with a local or arg.
1da177e4
LT
246 *
247 ******************************************************************************/
248
249acpi_status
1044f1f6 250acpi_ds_method_data_get_node(u8 type,
4be44fcd
LB
251 u32 index,
252 struct acpi_walk_state *walk_state,
253 struct acpi_namespace_node **node)
1da177e4 254{
b229cf92 255 ACPI_FUNCTION_TRACE(ds_method_data_get_node);
1da177e4
LT
256
257 /*
258 * Method Locals and Arguments are supported
259 */
1044f1f6
BM
260 switch (type) {
261 case ACPI_REFCLASS_LOCAL:
1da177e4
LT
262
263 if (index > ACPI_METHOD_MAX_LOCAL) {
b8e4d893
BM
264 ACPI_ERROR((AE_INFO,
265 "Local index %d is invalid (max %d)",
266 index, ACPI_METHOD_MAX_LOCAL));
4be44fcd 267 return_ACPI_STATUS(AE_AML_INVALID_INDEX);
1da177e4
LT
268 }
269
270 /* Return a pointer to the pseudo-node */
271
272 *node = &walk_state->local_variables[index];
273 break;
274
1044f1f6 275 case ACPI_REFCLASS_ARG:
1da177e4
LT
276
277 if (index > ACPI_METHOD_MAX_ARG) {
b8e4d893
BM
278 ACPI_ERROR((AE_INFO,
279 "Arg index %d is invalid (max %d)",
280 index, ACPI_METHOD_MAX_ARG));
4be44fcd 281 return_ACPI_STATUS(AE_AML_INVALID_INDEX);
1da177e4
LT
282 }
283
284 /* Return a pointer to the pseudo-node */
285
286 *node = &walk_state->arguments[index];
287 break;
288
289 default:
1044f1f6
BM
290 ACPI_ERROR((AE_INFO, "Type %d is invalid", type));
291 return_ACPI_STATUS(AE_TYPE);
1da177e4
LT
292 }
293
4be44fcd 294 return_ACPI_STATUS(AE_OK);
1da177e4
LT
295}
296
1da177e4
LT
297/*******************************************************************************
298 *
299 * FUNCTION: acpi_ds_method_data_set_value
300 *
1044f1f6
BM
301 * PARAMETERS: Type - Either ACPI_REFCLASS_LOCAL or
302 * ACPI_REFCLASS_ARG
44f6c012 303 * Index - Which Local or Arg to get
1da177e4
LT
304 * Object - Object to be inserted into the stack entry
305 * walk_state - Current walk state object
306 *
307 * RETURN: Status
308 *
309 * DESCRIPTION: Insert an object onto the method stack at entry Opcode:Index.
310 * Note: There is no "implicit conversion" for locals.
311 *
312 ******************************************************************************/
313
44f6c012 314static acpi_status
1044f1f6 315acpi_ds_method_data_set_value(u8 type,
4be44fcd
LB
316 u32 index,
317 union acpi_operand_object *object,
318 struct acpi_walk_state *walk_state)
1da177e4 319{
4be44fcd
LB
320 acpi_status status;
321 struct acpi_namespace_node *node;
1da177e4 322
b229cf92 323 ACPI_FUNCTION_TRACE(ds_method_data_set_value);
1da177e4 324
4be44fcd 325 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
1044f1f6
BM
326 "NewObj %p Type %2.2X, Refs=%d [%s]\n", object,
327 type, object->common.reference_count,
4be44fcd 328 acpi_ut_get_type_name(object->common.type)));
1da177e4
LT
329
330 /* Get the namespace node for the arg/local */
331
1044f1f6 332 status = acpi_ds_method_data_get_node(type, index, walk_state, &node);
4be44fcd
LB
333 if (ACPI_FAILURE(status)) {
334 return_ACPI_STATUS(status);
1da177e4
LT
335 }
336
337 /*
338 * Increment ref count so object can't be deleted while installed.
339 * NOTE: We do not copy the object in order to preserve the call by
340 * reference semantics of ACPI Control Method invocation.
958dd242 341 * (See ACPI Specification 2.0_c)
1da177e4 342 */
4be44fcd 343 acpi_ut_add_reference(object);
1da177e4
LT
344
345 /* Install the object */
346
347 node->object = object;
4be44fcd 348 return_ACPI_STATUS(status);
1da177e4
LT
349}
350
1da177e4
LT
351/*******************************************************************************
352 *
353 * FUNCTION: acpi_ds_method_data_get_value
354 *
1044f1f6
BM
355 * PARAMETERS: Type - Either ACPI_REFCLASS_LOCAL or
356 * ACPI_REFCLASS_ARG
958dd242 357 * Index - Which local_var or argument to get
1da177e4 358 * walk_state - Current walk state object
44f6c012 359 * dest_desc - Where Arg or Local value is returned
1da177e4
LT
360 *
361 * RETURN: Status
362 *
44f6c012 363 * DESCRIPTION: Retrieve value of selected Arg or Local for this method
1da177e4
LT
364 * Used only in acpi_ex_resolve_to_value().
365 *
366 ******************************************************************************/
367
368acpi_status
1044f1f6 369acpi_ds_method_data_get_value(u8 type,
4be44fcd
LB
370 u32 index,
371 struct acpi_walk_state *walk_state,
372 union acpi_operand_object **dest_desc)
1da177e4 373{
4be44fcd
LB
374 acpi_status status;
375 struct acpi_namespace_node *node;
376 union acpi_operand_object *object;
1da177e4 377
b229cf92 378 ACPI_FUNCTION_TRACE(ds_method_data_get_value);
1da177e4
LT
379
380 /* Validate the object descriptor */
381
382 if (!dest_desc) {
b8e4d893 383 ACPI_ERROR((AE_INFO, "Null object descriptor pointer"));
4be44fcd 384 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
385 }
386
387 /* Get the namespace node for the arg/local */
388
1044f1f6 389 status = acpi_ds_method_data_get_node(type, index, walk_state, &node);
4be44fcd
LB
390 if (ACPI_FAILURE(status)) {
391 return_ACPI_STATUS(status);
1da177e4
LT
392 }
393
394 /* Get the object from the node */
395
396 object = node->object;
397
398 /* Examine the returned object, it must be valid. */
399
400 if (!object) {
401 /*
402 * Index points to uninitialized object.
403 * This means that either 1) The expected argument was
404 * not passed to the method, or 2) A local variable
405 * was referenced by the method (via the ASL)
406 * before it was initialized. Either case is an error.
407 */
408
409 /* If slack enabled, init the local_x/arg_x to an Integer of value zero */
410
411 if (acpi_gbl_enable_interpreter_slack) {
4be44fcd
LB
412 object =
413 acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
1da177e4 414 if (!object) {
4be44fcd 415 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
416 }
417
418 object->integer.value = 0;
419 node->object = object;
420 }
421
422 /* Otherwise, return the error */
423
4be44fcd 424 else
1044f1f6
BM
425 switch (type) {
426 case ACPI_REFCLASS_ARG:
1da177e4 427
b8e4d893
BM
428 ACPI_ERROR((AE_INFO,
429 "Uninitialized Arg[%d] at node %p",
430 index, node));
1da177e4 431
4be44fcd 432 return_ACPI_STATUS(AE_AML_UNINITIALIZED_ARG);
1da177e4 433
1044f1f6 434 case ACPI_REFCLASS_LOCAL:
1da177e4 435
b8e4d893
BM
436 ACPI_ERROR((AE_INFO,
437 "Uninitialized Local[%d] at node %p",
438 index, node));
1da177e4 439
4be44fcd 440 return_ACPI_STATUS(AE_AML_UNINITIALIZED_LOCAL);
1da177e4 441
4be44fcd 442 default:
1044f1f6 443
b8e4d893
BM
444 ACPI_ERROR((AE_INFO,
445 "Not a Arg/Local opcode: %X",
1044f1f6 446 type));
4be44fcd
LB
447 return_ACPI_STATUS(AE_AML_INTERNAL);
448 }
1da177e4
LT
449 }
450
451 /*
452 * The Index points to an initialized and valid object.
453 * Return an additional reference to the object
454 */
455 *dest_desc = object;
4be44fcd 456 acpi_ut_add_reference(object);
1da177e4 457
4be44fcd 458 return_ACPI_STATUS(AE_OK);
1da177e4
LT
459}
460
1da177e4
LT
461/*******************************************************************************
462 *
463 * FUNCTION: acpi_ds_method_data_delete_value
464 *
1044f1f6
BM
465 * PARAMETERS: Type - Either ACPI_REFCLASS_LOCAL or
466 * ACPI_REFCLASS_ARG
958dd242 467 * Index - Which local_var or argument to delete
1da177e4
LT
468 * walk_state - Current walk state object
469 *
470 * RETURN: None
471 *
44f6c012 472 * DESCRIPTION: Delete the entry at Opcode:Index. Inserts
1da177e4
LT
473 * a null into the stack slot after the object is deleted.
474 *
475 ******************************************************************************/
476
44f6c012 477static void
1044f1f6 478acpi_ds_method_data_delete_value(u8 type,
4be44fcd 479 u32 index, struct acpi_walk_state *walk_state)
1da177e4 480{
4be44fcd
LB
481 acpi_status status;
482 struct acpi_namespace_node *node;
483 union acpi_operand_object *object;
1da177e4 484
b229cf92 485 ACPI_FUNCTION_TRACE(ds_method_data_delete_value);
1da177e4
LT
486
487 /* Get the namespace node for the arg/local */
488
1044f1f6 489 status = acpi_ds_method_data_get_node(type, index, walk_state, &node);
4be44fcd 490 if (ACPI_FAILURE(status)) {
1da177e4
LT
491 return_VOID;
492 }
493
494 /* Get the associated object */
495
4be44fcd 496 object = acpi_ns_get_attached_object(node);
1da177e4
LT
497
498 /*
499 * Undefine the Arg or Local by setting its descriptor
500 * pointer to NULL. Locals/Args can contain both
501 * ACPI_OPERAND_OBJECTS and ACPI_NAMESPACE_NODEs
502 */
503 node->object = NULL;
504
505 if ((object) &&
4be44fcd 506 (ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_OPERAND)) {
1da177e4
LT
507 /*
508 * There is a valid object.
509 * Decrement the reference count by one to balance the
510 * increment when the object was stored.
511 */
4be44fcd 512 acpi_ut_remove_reference(object);
1da177e4
LT
513 }
514
515 return_VOID;
516}
517
1da177e4
LT
518/*******************************************************************************
519 *
520 * FUNCTION: acpi_ds_store_object_to_local
521 *
1044f1f6
BM
522 * PARAMETERS: Type - Either ACPI_REFCLASS_LOCAL or
523 * ACPI_REFCLASS_ARG
44f6c012 524 * Index - Which Local or Arg to set
1da177e4
LT
525 * obj_desc - Value to be stored
526 * walk_state - Current walk state
527 *
528 * RETURN: Status
529 *
530 * DESCRIPTION: Store a value in an Arg or Local. The obj_desc is installed
531 * as the new value for the Arg or Local and the reference count
532 * for obj_desc is incremented.
533 *
534 ******************************************************************************/
535
536acpi_status
1044f1f6 537acpi_ds_store_object_to_local(u8 type,
4be44fcd
LB
538 u32 index,
539 union acpi_operand_object *obj_desc,
540 struct acpi_walk_state *walk_state)
1da177e4 541{
4be44fcd
LB
542 acpi_status status;
543 struct acpi_namespace_node *node;
544 union acpi_operand_object *current_obj_desc;
545 union acpi_operand_object *new_obj_desc;
1da177e4 546
b229cf92 547 ACPI_FUNCTION_TRACE(ds_store_object_to_local);
1044f1f6
BM
548 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Type=%2.2X Index=%d Obj=%p\n",
549 type, index, obj_desc));
1da177e4
LT
550
551 /* Parameter validation */
552
553 if (!obj_desc) {
4be44fcd 554 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
555 }
556
557 /* Get the namespace node for the arg/local */
558
1044f1f6 559 status = acpi_ds_method_data_get_node(type, index, walk_state, &node);
4be44fcd
LB
560 if (ACPI_FAILURE(status)) {
561 return_ACPI_STATUS(status);
1da177e4
LT
562 }
563
4be44fcd 564 current_obj_desc = acpi_ns_get_attached_object(node);
1da177e4 565 if (current_obj_desc == obj_desc) {
4be44fcd
LB
566 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Obj=%p already installed!\n",
567 obj_desc));
568 return_ACPI_STATUS(status);
1da177e4
LT
569 }
570
571 /*
572 * If the reference count on the object is more than one, we must
573 * take a copy of the object before we store. A reference count
574 * of exactly 1 means that the object was just created during the
575 * evaluation of an expression, and we can safely use it since it
576 * is not used anywhere else.
577 */
578 new_obj_desc = obj_desc;
579 if (obj_desc->common.reference_count > 1) {
4be44fcd
LB
580 status =
581 acpi_ut_copy_iobject_to_iobject(obj_desc, &new_obj_desc,
582 walk_state);
583 if (ACPI_FAILURE(status)) {
584 return_ACPI_STATUS(status);
1da177e4
LT
585 }
586 }
587
588 /*
589 * If there is an object already in this slot, we either
590 * have to delete it, or if this is an argument and there
591 * is an object reference stored there, we have to do
592 * an indirect store!
593 */
594 if (current_obj_desc) {
595 /*
596 * Check for an indirect store if an argument
597 * contains an object reference (stored as an Node).
598 * We don't allow this automatic dereferencing for
599 * locals, since a store to a local should overwrite
600 * anything there, including an object reference.
601 *
602 * If both Arg0 and Local0 contain ref_of (Local4):
603 *
604 * Store (1, Arg0) - Causes indirect store to local4
605 * Store (1, Local0) - Stores 1 in local0, overwriting
606 * the reference to local4
607 * Store (1, de_refof (Local0)) - Causes indirect store to local4
608 *
609 * Weird, but true.
610 */
1044f1f6 611 if (type == ACPI_REFCLASS_ARG) {
1da177e4 612 /*
44f6c012
RM
613 * If we have a valid reference object that came from ref_of(),
614 * do the indirect store
1da177e4 615 */
4be44fcd
LB
616 if ((ACPI_GET_DESCRIPTOR_TYPE(current_obj_desc) ==
617 ACPI_DESC_TYPE_OPERAND)
618 && (current_obj_desc->common.type ==
619 ACPI_TYPE_LOCAL_REFERENCE)
1044f1f6
BM
620 && (current_obj_desc->reference.class ==
621 ACPI_REFCLASS_REFOF)) {
4be44fcd 622 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
b229cf92 623 "Arg (%p) is an ObjRef(Node), storing in node %p\n",
4be44fcd
LB
624 new_obj_desc,
625 current_obj_desc));
1da177e4
LT
626
627 /*
628 * Store this object to the Node (perform the indirect store)
629 * NOTE: No implicit conversion is performed, as per the ACPI
630 * specification rules on storing to Locals/Args.
631 */
4be44fcd
LB
632 status =
633 acpi_ex_store_object_to_node(new_obj_desc,
634 current_obj_desc->
635 reference.
636 object,
637 walk_state,
638 ACPI_NO_IMPLICIT_CONVERSION);
1da177e4
LT
639
640 /* Remove local reference if we copied the object above */
641
642 if (new_obj_desc != obj_desc) {
4be44fcd 643 acpi_ut_remove_reference(new_obj_desc);
1da177e4 644 }
4be44fcd 645 return_ACPI_STATUS(status);
1da177e4
LT
646 }
647 }
648
1044f1f6
BM
649 /* Delete the existing object before storing the new one */
650
651 acpi_ds_method_data_delete_value(type, index, walk_state);
1da177e4
LT
652 }
653
654 /*
655 * Install the Obj descriptor (*new_obj_desc) into
656 * the descriptor for the Arg or Local.
657 * (increments the object reference count by one)
658 */
4be44fcd 659 status =
1044f1f6 660 acpi_ds_method_data_set_value(type, index, new_obj_desc,
4be44fcd 661 walk_state);
1da177e4
LT
662
663 /* Remove local reference if we copied the object above */
664
665 if (new_obj_desc != obj_desc) {
4be44fcd 666 acpi_ut_remove_reference(new_obj_desc);
1da177e4
LT
667 }
668
4be44fcd 669 return_ACPI_STATUS(status);
1da177e4
LT
670}
671
44f6c012
RM
672#ifdef ACPI_OBSOLETE_FUNCTIONS
673/*******************************************************************************
674 *
675 * FUNCTION: acpi_ds_method_data_get_type
676 *
677 * PARAMETERS: Opcode - Either AML_LOCAL_OP or AML_ARG_OP
678 * Index - Which Local or Arg whose type to get
679 * walk_state - Current walk state object
680 *
681 * RETURN: Data type of current value of the selected Arg or Local
682 *
683 * DESCRIPTION: Get the type of the object stored in the Local or Arg
684 *
685 ******************************************************************************/
686
687acpi_object_type
4be44fcd
LB
688acpi_ds_method_data_get_type(u16 opcode,
689 u32 index, struct acpi_walk_state *walk_state)
44f6c012 690{
4be44fcd
LB
691 acpi_status status;
692 struct acpi_namespace_node *node;
693 union acpi_operand_object *object;
44f6c012 694
b229cf92 695 ACPI_FUNCTION_TRACE(ds_method_data_get_type);
44f6c012
RM
696
697 /* Get the namespace node for the arg/local */
698
4be44fcd
LB
699 status = acpi_ds_method_data_get_node(opcode, index, walk_state, &node);
700 if (ACPI_FAILURE(status)) {
701 return_VALUE((ACPI_TYPE_NOT_FOUND));
44f6c012
RM
702 }
703
704 /* Get the object */
705
4be44fcd 706 object = acpi_ns_get_attached_object(node);
44f6c012 707 if (!object) {
52fc0b02 708
44f6c012
RM
709 /* Uninitialized local/arg, return TYPE_ANY */
710
4be44fcd 711 return_VALUE(ACPI_TYPE_ANY);
44f6c012
RM
712 }
713
714 /* Get the object type */
715
3371c19c 716 return_VALUE(object->type);
44f6c012
RM
717}
718#endif