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