blob: 202ebe1eb9572384b971cedf37cb56de83eacc8d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/******************************************************************************
3 *
4 * Module Name: exstore - AML Interpreter object store support
5 *
6 *****************************************************************************/
7
8/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05009 * Copyright (C) 2000 - 2006, R. Byron Moore
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * 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/acdispat.h>
47#include <acpi/acinterp.h>
48#include <acpi/amlcode.h>
49#include <acpi/acnamesp.h>
Robert Moore44f6c012005-04-18 22:49:35 -040050#include <acpi/acparser.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040053ACPI_MODULE_NAME("exstore")
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Robert Moore44f6c012005-04-18 22:49:35 -040055/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040056static void
Len Brown4be44fc2005-08-05 00:44:28 -040057acpi_ex_do_debug_object(union acpi_operand_object *source_desc,
58 u32 level, u32 index);
Robert Moore44f6c012005-04-18 22:49:35 -040059
60static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040061acpi_ex_store_object_to_index(union acpi_operand_object *val_desc,
62 union acpi_operand_object *dest_desc,
63 struct acpi_walk_state *walk_state);
Robert Moore44f6c012005-04-18 22:49:35 -040064
65/*******************************************************************************
66 *
67 * FUNCTION: acpi_ex_do_debug_object
68 *
69 * PARAMETERS: source_desc - Value to be stored
70 * Level - Indentation level (used for packages)
71 * Index - Current package element, zero if not pkg
72 *
73 * RETURN: None
74 *
75 * DESCRIPTION: Handles stores to the Debug Object.
76 *
77 ******************************************************************************/
78
79static void
Len Brown4be44fc2005-08-05 00:44:28 -040080acpi_ex_do_debug_object(union acpi_operand_object *source_desc,
81 u32 level, u32 index)
Robert Moore44f6c012005-04-18 22:49:35 -040082{
Len Brown4be44fc2005-08-05 00:44:28 -040083 u32 i;
Robert Moore44f6c012005-04-18 22:49:35 -040084
Len Brown4be44fc2005-08-05 00:44:28 -040085 ACPI_FUNCTION_TRACE_PTR("ex_do_debug_object", source_desc);
Robert Moore44f6c012005-04-18 22:49:35 -040086
Len Brown4be44fc2005-08-05 00:44:28 -040087 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT, "[ACPI Debug] %*s",
88 level, " "));
Robert Moore44f6c012005-04-18 22:49:35 -040089
90 /* Display index for package output only */
91
92 if (index > 0) {
Len Brown4be44fc2005-08-05 00:44:28 -040093 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT,
94 "(%.2u) ", index - 1));
Robert Moore44f6c012005-04-18 22:49:35 -040095 }
96
97 if (!source_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -040098 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT, "<Null Object>\n"));
Robert Moore44f6c012005-04-18 22:49:35 -040099 return_VOID;
100 }
101
Len Brown4be44fc2005-08-05 00:44:28 -0400102 if (ACPI_GET_DESCRIPTOR_TYPE(source_desc) == ACPI_DESC_TYPE_OPERAND) {
103 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT, "%s: ",
104 acpi_ut_get_object_type_name
105 (source_desc)));
Robert Moore44f6c012005-04-18 22:49:35 -0400106
Len Brown4be44fc2005-08-05 00:44:28 -0400107 if (!acpi_ut_valid_internal_object(source_desc)) {
108 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT,
109 "%p, Invalid Internal Object!\n",
110 source_desc));
111 return_VOID;
Robert Moore44f6c012005-04-18 22:49:35 -0400112 }
Len Brown4be44fc2005-08-05 00:44:28 -0400113 } else if (ACPI_GET_DESCRIPTOR_TYPE(source_desc) ==
114 ACPI_DESC_TYPE_NAMED) {
115 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT, "%s: %p\n",
116 acpi_ut_get_type_name(((struct
117 acpi_namespace_node
118 *)source_desc)->
119 type),
120 source_desc));
Robert Moore44f6c012005-04-18 22:49:35 -0400121 return_VOID;
Len Brown4be44fc2005-08-05 00:44:28 -0400122 } else {
Robert Moore44f6c012005-04-18 22:49:35 -0400123 return_VOID;
124 }
125
Len Brown4be44fc2005-08-05 00:44:28 -0400126 switch (ACPI_GET_OBJECT_TYPE(source_desc)) {
Robert Moore44f6c012005-04-18 22:49:35 -0400127 case ACPI_TYPE_INTEGER:
128
129 /* Output correct integer width */
130
131 if (acpi_gbl_integer_byte_width == 4) {
Len Brown4be44fc2005-08-05 00:44:28 -0400132 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT, "0x%8.8X\n",
133 (u32) source_desc->integer.
134 value));
135 } else {
136 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT,
137 "0x%8.8X%8.8X\n",
138 ACPI_FORMAT_UINT64(source_desc->
139 integer.
140 value)));
Robert Moore44f6c012005-04-18 22:49:35 -0400141 }
142 break;
143
144 case ACPI_TYPE_BUFFER:
145
Len Brown4be44fc2005-08-05 00:44:28 -0400146 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT, "[0x%.2X]\n",
147 (u32) source_desc->buffer.length));
148 ACPI_DUMP_BUFFER(source_desc->buffer.pointer,
149 (source_desc->buffer.length <
150 32) ? source_desc->buffer.length : 32);
Robert Moore44f6c012005-04-18 22:49:35 -0400151 break;
152
153 case ACPI_TYPE_STRING:
154
Len Brown4be44fc2005-08-05 00:44:28 -0400155 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT, "[0x%.2X] \"%s\"\n",
156 source_desc->string.length,
157 source_desc->string.pointer));
Robert Moore44f6c012005-04-18 22:49:35 -0400158 break;
159
160 case ACPI_TYPE_PACKAGE:
161
Len Brown4be44fc2005-08-05 00:44:28 -0400162 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT,
163 "[0x%.2X Elements]\n",
164 source_desc->package.count));
Robert Moore44f6c012005-04-18 22:49:35 -0400165
166 /* Output the entire contents of the package */
167
168 for (i = 0; i < source_desc->package.count; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400169 acpi_ex_do_debug_object(source_desc->package.
170 elements[i], level + 4, i + 1);
Robert Moore44f6c012005-04-18 22:49:35 -0400171 }
172 break;
173
174 case ACPI_TYPE_LOCAL_REFERENCE:
175
176 if (source_desc->reference.opcode == AML_INDEX_OP) {
Len Brown4be44fc2005-08-05 00:44:28 -0400177 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT,
178 "[%s, 0x%X]\n",
179 acpi_ps_get_opcode_name
180 (source_desc->reference.opcode),
181 source_desc->reference.offset));
182 } else {
183 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT, "[%s]\n",
184 acpi_ps_get_opcode_name
185 (source_desc->reference.opcode)));
Robert Moore44f6c012005-04-18 22:49:35 -0400186 }
Robert Moore44f6c012005-04-18 22:49:35 -0400187
188 if (source_desc->reference.object) {
Len Brown4be44fc2005-08-05 00:44:28 -0400189 if (ACPI_GET_DESCRIPTOR_TYPE
190 (source_desc->reference.object) ==
191 ACPI_DESC_TYPE_NAMED) {
192 acpi_ex_do_debug_object(((struct
193 acpi_namespace_node *)
194 source_desc->reference.
195 object)->object,
196 level + 4, 0);
197 } else {
198 acpi_ex_do_debug_object(source_desc->reference.
199 object, level + 4, 0);
Robert Moore44f6c012005-04-18 22:49:35 -0400200 }
Len Brown4be44fc2005-08-05 00:44:28 -0400201 } else if (source_desc->reference.node) {
202 acpi_ex_do_debug_object((source_desc->reference.node)->
203 object, level + 4, 0);
Robert Moore44f6c012005-04-18 22:49:35 -0400204 }
205 break;
206
207 default:
208
Len Brown4be44fc2005-08-05 00:44:28 -0400209 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DEBUG_OBJECT, "%p %s\n",
210 source_desc,
211 acpi_ut_get_object_type_name
212 (source_desc)));
Robert Moore44f6c012005-04-18 22:49:35 -0400213 break;
214 }
215
Len Brown4be44fc2005-08-05 00:44:28 -0400216 ACPI_DEBUG_PRINT_RAW((ACPI_DB_EXEC, "\n"));
Robert Moore44f6c012005-04-18 22:49:35 -0400217 return_VOID;
218}
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220/*******************************************************************************
221 *
222 * FUNCTION: acpi_ex_store
223 *
224 * PARAMETERS: *source_desc - Value to be stored
225 * *dest_desc - Where to store it. Must be an NS node
226 * or an union acpi_operand_object of type
227 * Reference;
228 * walk_state - Current walk state
229 *
230 * RETURN: Status
231 *
232 * DESCRIPTION: Store the value described by source_desc into the location
233 * described by dest_desc. Called by various interpreter
234 * functions to store the result of an operation into
235 * the destination operand -- not just simply the actual "Store"
236 * ASL operator.
237 *
238 ******************************************************************************/
239
240acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400241acpi_ex_store(union acpi_operand_object *source_desc,
242 union acpi_operand_object *dest_desc,
243 struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Len Brown4be44fc2005-08-05 00:44:28 -0400245 acpi_status status = AE_OK;
246 union acpi_operand_object *ref_desc = dest_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Len Brown4be44fc2005-08-05 00:44:28 -0400248 ACPI_FUNCTION_TRACE_PTR("ex_store", dest_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 /* Validate parameters */
251
252 if (!source_desc || !dest_desc) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500253 ACPI_REPORT_ERROR(("Null parameter\n"));
Len Brown4be44fc2005-08-05 00:44:28 -0400254 return_ACPI_STATUS(AE_AML_NO_OPERAND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256
257 /* dest_desc can be either a namespace node or an ACPI object */
258
Len Brown4be44fc2005-08-05 00:44:28 -0400259 if (ACPI_GET_DESCRIPTOR_TYPE(dest_desc) == ACPI_DESC_TYPE_NAMED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 /*
261 * Dest is a namespace node,
262 * Storing an object into a Named node.
263 */
Len Brown4be44fc2005-08-05 00:44:28 -0400264 status = acpi_ex_store_object_to_node(source_desc,
265 (struct
266 acpi_namespace_node *)
267 dest_desc, walk_state,
268 ACPI_IMPLICIT_CONVERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Len Brown4be44fc2005-08-05 00:44:28 -0400270 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272
273 /* Destination object must be a Reference or a Constant object */
274
Len Brown4be44fc2005-08-05 00:44:28 -0400275 switch (ACPI_GET_OBJECT_TYPE(dest_desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 case ACPI_TYPE_LOCAL_REFERENCE:
277 break;
278
279 case ACPI_TYPE_INTEGER:
280
281 /* Allow stores to Constants -- a Noop as per ACPI spec */
282
283 if (dest_desc->common.flags & AOPOBJ_AML_CONSTANT) {
Len Brown4be44fc2005-08-05 00:44:28 -0400284 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286
287 /*lint -fallthrough */
288
289 default:
290
291 /* Destination is not a Reference object */
292
Bob Moore4a90c7e2006-01-13 16:22:00 -0500293 ACPI_REPORT_ERROR(("Target is not a Reference or Constant object - %s [%p]\n", acpi_ut_get_object_type_name(dest_desc), dest_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Len Brown4be44fc2005-08-05 00:44:28 -0400295 ACPI_DUMP_STACK_ENTRY(source_desc);
296 ACPI_DUMP_STACK_ENTRY(dest_desc);
297 ACPI_DUMP_OPERANDS(&dest_desc, ACPI_IMODE_EXECUTE, "ex_store",
298 2,
299 "Target is not a Reference or Constant object");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Len Brown4be44fc2005-08-05 00:44:28 -0400301 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
303
304 /*
305 * Examine the Reference opcode. These cases are handled:
306 *
307 * 1) Store to Name (Change the object associated with a name)
308 * 2) Store to an indexed area of a Buffer or Package
309 * 3) Store to a Method Local or Arg
310 * 4) Store to the debug object
311 */
312 switch (ref_desc->reference.opcode) {
313 case AML_NAME_OP:
314 case AML_REF_OF_OP:
315
316 /* Storing an object into a Name "container" */
317
Len Brown4be44fc2005-08-05 00:44:28 -0400318 status = acpi_ex_store_object_to_node(source_desc,
319 ref_desc->reference.
320 object, walk_state,
321 ACPI_IMPLICIT_CONVERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 break;
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 case AML_INDEX_OP:
325
326 /* Storing to an Index (pointer into a packager or buffer) */
327
Len Brown4be44fc2005-08-05 00:44:28 -0400328 status =
329 acpi_ex_store_object_to_index(source_desc, ref_desc,
330 walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 break;
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 case AML_LOCAL_OP:
334 case AML_ARG_OP:
335
336 /* Store to a method local/arg */
337
Len Brown4be44fc2005-08-05 00:44:28 -0400338 status =
339 acpi_ds_store_object_to_local(ref_desc->reference.opcode,
340 ref_desc->reference.offset,
341 source_desc, walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 break;
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 case AML_DEBUG_OP:
345
346 /*
347 * Storing to the Debug object causes the value stored to be
348 * displayed and otherwise has no effect -- see ACPI Specification
349 */
Len Brown4be44fc2005-08-05 00:44:28 -0400350 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
351 "**** Write to Debug Object: Object %p %s ****:\n\n",
352 source_desc,
353 acpi_ut_get_object_type_name(source_desc)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Len Brown4be44fc2005-08-05 00:44:28 -0400355 acpi_ex_do_debug_object(source_desc, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 break;
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 default:
359
Bob Moore4a90c7e2006-01-13 16:22:00 -0500360 ACPI_REPORT_ERROR(("Unknown Reference opcode %X\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400361 ref_desc->reference.opcode));
362 ACPI_DUMP_ENTRY(ref_desc, ACPI_LV_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 status = AE_AML_INTERNAL;
365 break;
366 }
367
Len Brown4be44fc2005-08-05 00:44:28 -0400368 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371/*******************************************************************************
372 *
373 * FUNCTION: acpi_ex_store_object_to_index
374 *
375 * PARAMETERS: *source_desc - Value to be stored
376 * *dest_desc - Named object to receive the value
377 * walk_state - Current walk state
378 *
379 * RETURN: Status
380 *
381 * DESCRIPTION: Store the object to indexed Buffer or Package element
382 *
383 ******************************************************************************/
384
Robert Moore44f6c012005-04-18 22:49:35 -0400385static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400386acpi_ex_store_object_to_index(union acpi_operand_object *source_desc,
387 union acpi_operand_object *index_desc,
388 struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Len Brown4be44fc2005-08-05 00:44:28 -0400390 acpi_status status = AE_OK;
391 union acpi_operand_object *obj_desc;
392 union acpi_operand_object *new_desc;
393 u8 value = 0;
394 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Len Brown4be44fc2005-08-05 00:44:28 -0400396 ACPI_FUNCTION_TRACE("ex_store_object_to_index");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 /*
399 * Destination must be a reference pointer, and
400 * must point to either a buffer or a package
401 */
402 switch (index_desc->reference.target_type) {
403 case ACPI_TYPE_PACKAGE:
404 /*
405 * Storing to a package element. Copy the object and replace
406 * any existing object with the new object. No implicit
407 * conversion is performed.
408 *
409 * The object at *(index_desc->Reference.Where) is the
410 * element within the package that is to be modified.
411 * The parent package object is at index_desc->Reference.Object
412 */
413 obj_desc = *(index_desc->reference.where);
414
Len Brown4be44fc2005-08-05 00:44:28 -0400415 status =
416 acpi_ut_copy_iobject_to_iobject(source_desc, &new_desc,
417 walk_state);
418 if (ACPI_FAILURE(status)) {
419 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421
422 if (obj_desc) {
423 /* Decrement reference count by the ref count of the parent package */
424
Len Brown4be44fc2005-08-05 00:44:28 -0400425 for (i = 0; i < ((union acpi_operand_object *)
426 index_desc->reference.object)->common.
427 reference_count; i++) {
428 acpi_ut_remove_reference(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430 }
431
432 *(index_desc->reference.where) = new_desc;
433
Robert Moore44f6c012005-04-18 22:49:35 -0400434 /* Increment ref count by the ref count of the parent package-1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Len Brown4be44fc2005-08-05 00:44:28 -0400436 for (i = 1; i < ((union acpi_operand_object *)
437 index_desc->reference.object)->common.
438 reference_count; i++) {
439 acpi_ut_add_reference(new_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441
442 break;
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 case ACPI_TYPE_BUFFER_FIELD:
445
446 /*
447 * Store into a Buffer or String (not actually a real buffer_field)
448 * at a location defined by an Index.
449 *
450 * The first 8-bit element of the source object is written to the
451 * 8-bit Buffer location defined by the Index destination object,
452 * according to the ACPI 2.0 specification.
453 */
454
455 /*
456 * Make sure the target is a Buffer or String. An error should
457 * not happen here, since the reference_object was constructed
458 * by the INDEX_OP code.
459 */
460 obj_desc = index_desc->reference.object;
Len Brown4be44fc2005-08-05 00:44:28 -0400461 if ((ACPI_GET_OBJECT_TYPE(obj_desc) != ACPI_TYPE_BUFFER) &&
462 (ACPI_GET_OBJECT_TYPE(obj_desc) != ACPI_TYPE_STRING)) {
463 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465
466 /*
467 * The assignment of the individual elements will be slightly
468 * different for each source type.
469 */
Len Brown4be44fc2005-08-05 00:44:28 -0400470 switch (ACPI_GET_OBJECT_TYPE(source_desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 case ACPI_TYPE_INTEGER:
472
473 /* Use the least-significant byte of the integer */
474
475 value = (u8) (source_desc->integer.value);
476 break;
477
478 case ACPI_TYPE_BUFFER:
479 case ACPI_TYPE_STRING:
480
481 /* Note: Takes advantage of common string/buffer fields */
482
483 value = source_desc->buffer.pointer[0];
484 break;
485
486 default:
487
488 /* All other types are invalid */
489
Bob Moore4a90c7e2006-01-13 16:22:00 -0500490 ACPI_REPORT_ERROR(("Source must be Integer/Buffer/String type, not %s\n", acpi_ut_get_object_type_name(source_desc)));
Len Brown4be44fc2005-08-05 00:44:28 -0400491 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493
494 /* Store the source value into the target buffer byte */
495
496 obj_desc->buffer.pointer[index_desc->reference.offset] = value;
497 break;
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 default:
Bob Moore4a90c7e2006-01-13 16:22:00 -0500500 ACPI_REPORT_ERROR(("Target is not a Package or buffer_field\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 status = AE_AML_OPERAND_TYPE;
502 break;
503 }
504
Len Brown4be44fc2005-08-05 00:44:28 -0400505 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508/*******************************************************************************
509 *
510 * FUNCTION: acpi_ex_store_object_to_node
511 *
512 * PARAMETERS: source_desc - Value to be stored
513 * Node - Named object to receive the value
514 * walk_state - Current walk state
515 * implicit_conversion - Perform implicit conversion (yes/no)
516 *
517 * RETURN: Status
518 *
519 * DESCRIPTION: Store the object to the named object.
520 *
521 * The Assignment of an object to a named object is handled here
522 * The value passed in will replace the current value (if any)
523 * with the input value.
524 *
525 * When storing into an object the data is converted to the
526 * target object type then stored in the object. This means
527 * that the target object type (for an initialized target) will
528 * not be changed by a store operation.
529 *
530 * Assumes parameters are already validated.
531 *
532 ******************************************************************************/
533
534acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400535acpi_ex_store_object_to_node(union acpi_operand_object *source_desc,
536 struct acpi_namespace_node *node,
537 struct acpi_walk_state *walk_state,
538 u8 implicit_conversion)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Len Brown4be44fc2005-08-05 00:44:28 -0400540 acpi_status status = AE_OK;
541 union acpi_operand_object *target_desc;
542 union acpi_operand_object *new_desc;
543 acpi_object_type target_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Len Brown4be44fc2005-08-05 00:44:28 -0400545 ACPI_FUNCTION_TRACE_PTR("ex_store_object_to_node", source_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Robert Moore44f6c012005-04-18 22:49:35 -0400547 /* Get current type of the node, and object attached to Node */
548
Len Brown4be44fc2005-08-05 00:44:28 -0400549 target_type = acpi_ns_get_type(node);
550 target_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Len Brown4be44fc2005-08-05 00:44:28 -0400552 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Storing %p(%s) into node %p(%s)\n",
553 source_desc,
554 acpi_ut_get_object_type_name(source_desc), node,
555 acpi_ut_get_type_name(target_type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 /*
558 * Resolve the source object to an actual value
559 * (If it is a reference object)
560 */
Len Brown4be44fc2005-08-05 00:44:28 -0400561 status = acpi_ex_resolve_object(&source_desc, target_type, walk_state);
562 if (ACPI_FAILURE(status)) {
563 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565
566 /* If no implicit conversion, drop into the default case below */
567
Robert Moore6f42ccf2005-05-13 00:00:00 -0400568 if ((!implicit_conversion) || (walk_state->opcode == AML_COPY_OP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 /* Force execution of default (no implicit conversion) */
570
571 target_type = ACPI_TYPE_ANY;
572 }
573
Robert Moore44f6c012005-04-18 22:49:35 -0400574 /* Do the actual store operation */
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 switch (target_type) {
577 case ACPI_TYPE_BUFFER_FIELD:
578 case ACPI_TYPE_LOCAL_REGION_FIELD:
579 case ACPI_TYPE_LOCAL_BANK_FIELD:
580 case ACPI_TYPE_LOCAL_INDEX_FIELD:
581
Robert Moore44f6c012005-04-18 22:49:35 -0400582 /* For fields, copy the source data to the target field. */
583
Len Brown4be44fc2005-08-05 00:44:28 -0400584 status = acpi_ex_write_data_to_field(source_desc, target_desc,
585 &walk_state->result_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 break;
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 case ACPI_TYPE_INTEGER:
589 case ACPI_TYPE_STRING:
590 case ACPI_TYPE_BUFFER:
591
592 /*
593 * These target types are all of type Integer/String/Buffer, and
594 * therefore support implicit conversion before the store.
595 *
596 * Copy and/or convert the source object to a new target object
597 */
Len Brown4be44fc2005-08-05 00:44:28 -0400598 status =
599 acpi_ex_store_object_to_object(source_desc, target_desc,
600 &new_desc, walk_state);
601 if (ACPI_FAILURE(status)) {
602 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604
605 if (new_desc != target_desc) {
606 /*
607 * Store the new new_desc as the new value of the Name, and set
608 * the Name's type to that of the value being stored in it.
609 * source_desc reference count is incremented by attach_object.
610 *
611 * Note: This may change the type of the node if an explicit store
612 * has been performed such that the node/object type has been
613 * changed.
614 */
Len Brown4be44fc2005-08-05 00:44:28 -0400615 status =
616 acpi_ns_attach_object(node, new_desc,
617 new_desc->common.type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Len Brown4be44fc2005-08-05 00:44:28 -0400619 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
620 "Store %s into %s via Convert/Attach\n",
621 acpi_ut_get_object_type_name
622 (source_desc),
623 acpi_ut_get_object_type_name
624 (new_desc)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626 break;
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 default:
629
Len Brown4be44fc2005-08-05 00:44:28 -0400630 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
631 "Storing %s (%p) directly into node (%p) with no implicit conversion\n",
632 acpi_ut_get_object_type_name(source_desc),
633 source_desc, node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635 /* No conversions for all other types. Just attach the source object */
636
Len Brown4be44fc2005-08-05 00:44:28 -0400637 status = acpi_ns_attach_object(node, source_desc,
638 ACPI_GET_OBJECT_TYPE
639 (source_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 break;
641 }
642
Len Brown4be44fc2005-08-05 00:44:28 -0400643 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}