blob: 655c290aca7b6bb95c69b7147ff4fda7b0d0ca13 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: utcopy - Internal to external object translation utilities
4 *
5 *****************************************************************************/
6
7/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
45#include <acpi/amlcode.h>
Bob Moorecd0b2242008-04-10 19:06:43 +040046#include <acpi/acnamesp.h>
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define _COMPONENT ACPI_UTILITIES
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("utcopy")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Robert Moore44f6c012005-04-18 22:49:35 -040052/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040053static acpi_status
54acpi_ut_copy_isimple_to_esimple(union acpi_operand_object *internal_object,
55 union acpi_object *external_object,
56 u8 * data_space, acpi_size * buffer_space_used);
Robert Moore44f6c012005-04-18 22:49:35 -040057
58static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040059acpi_ut_copy_ielement_to_ielement(u8 object_type,
60 union acpi_operand_object *source_object,
61 union acpi_generic_state *state,
62 void *context);
Robert Moore44f6c012005-04-18 22:49:35 -040063
64static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040065acpi_ut_copy_ipackage_to_epackage(union acpi_operand_object *internal_object,
66 u8 * buffer, acpi_size * space_used);
Robert Moore44f6c012005-04-18 22:49:35 -040067
68static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040069acpi_ut_copy_esimple_to_isimple(union acpi_object *user_obj,
70 union acpi_operand_object **return_obj);
Robert Moore44f6c012005-04-18 22:49:35 -040071
72static acpi_status
Bob Moore6287ee32007-04-03 19:59:37 -040073acpi_ut_copy_epackage_to_ipackage(union acpi_object *external_object,
74 union acpi_operand_object **internal_object);
75
76static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040077acpi_ut_copy_simple_object(union acpi_operand_object *source_desc,
78 union acpi_operand_object *dest_desc);
Robert Moore44f6c012005-04-18 22:49:35 -040079
80static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040081acpi_ut_copy_ielement_to_eelement(u8 object_type,
82 union acpi_operand_object *source_object,
83 union acpi_generic_state *state,
84 void *context);
Robert Moore44f6c012005-04-18 22:49:35 -040085
86static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040087acpi_ut_copy_ipackage_to_ipackage(union acpi_operand_object *source_obj,
88 union acpi_operand_object *dest_obj,
89 struct acpi_walk_state *walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91/*******************************************************************************
92 *
93 * FUNCTION: acpi_ut_copy_isimple_to_esimple
94 *
Robert Moore44f6c012005-04-18 22:49:35 -040095 * PARAMETERS: internal_object - Source object to be copied
96 * external_object - Where to return the copied object
97 * data_space - Where object data is returned (such as
98 * buffer and string data)
99 * buffer_space_used - Length of data_space that was used
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 *
101 * RETURN: Status
102 *
Robert Moore44f6c012005-04-18 22:49:35 -0400103 * DESCRIPTION: This function is called to copy a simple internal object to
104 * an external object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 *
Robert Moore44f6c012005-04-18 22:49:35 -0400106 * The data_space buffer is assumed to have sufficient space for
107 * the object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 *
109 ******************************************************************************/
110
111static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400112acpi_ut_copy_isimple_to_esimple(union acpi_operand_object *internal_object,
113 union acpi_object *external_object,
114 u8 * data_space, acpi_size * buffer_space_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Len Brown4be44fc2005-08-05 00:44:28 -0400116 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Bob Mooreb229cf92006-04-21 17:15:00 -0400118 ACPI_FUNCTION_TRACE(ut_copy_isimple_to_esimple);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 *buffer_space_used = 0;
121
122 /*
123 * Check for NULL object case (could be an uninitialized
124 * package element)
125 */
126 if (!internal_object) {
Len Brown4be44fc2005-08-05 00:44:28 -0400127 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
129
130 /* Always clear the external object */
131
Len Brown4be44fc2005-08-05 00:44:28 -0400132 ACPI_MEMSET(external_object, 0, sizeof(union acpi_object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 /*
135 * In general, the external object will be the same type as
136 * the internal object
137 */
Len Brown4be44fc2005-08-05 00:44:28 -0400138 external_object->type = ACPI_GET_OBJECT_TYPE(internal_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 /* However, only a limited number of external types are supported */
141
Len Brown4be44fc2005-08-05 00:44:28 -0400142 switch (ACPI_GET_OBJECT_TYPE(internal_object)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 case ACPI_TYPE_STRING:
144
Len Brown4be44fc2005-08-05 00:44:28 -0400145 external_object->string.pointer = (char *)data_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 external_object->string.length = internal_object->string.length;
Len Brown4be44fc2005-08-05 00:44:28 -0400147 *buffer_space_used = ACPI_ROUND_UP_TO_NATIVE_WORD((acpi_size)
148 internal_object->
149 string.
150 length + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Len Brown4be44fc2005-08-05 00:44:28 -0400152 ACPI_MEMCPY((void *)data_space,
153 (void *)internal_object->string.pointer,
154 (acpi_size) internal_object->string.length + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 break;
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 case ACPI_TYPE_BUFFER:
158
159 external_object->buffer.pointer = data_space;
160 external_object->buffer.length = internal_object->buffer.length;
Len Brown4be44fc2005-08-05 00:44:28 -0400161 *buffer_space_used =
162 ACPI_ROUND_UP_TO_NATIVE_WORD(internal_object->string.
163 length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Len Brown4be44fc2005-08-05 00:44:28 -0400165 ACPI_MEMCPY((void *)data_space,
166 (void *)internal_object->buffer.pointer,
167 internal_object->buffer.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 break;
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 case ACPI_TYPE_INTEGER:
171
172 external_object->integer.value = internal_object->integer.value;
173 break;
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 case ACPI_TYPE_LOCAL_REFERENCE:
176
Bob Moorecd0b2242008-04-10 19:06:43 +0400177 /* This is an object reference. */
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 switch (internal_object->reference.opcode) {
180 case AML_INT_NAMEPATH_OP:
181
182 /* For namepath, return the object handle ("reference") */
183
184 default:
Bob Moorecd0b2242008-04-10 19:06:43 +0400185
186 /* We are referring to the namespace node */
187
Len Brown4be44fc2005-08-05 00:44:28 -0400188 external_object->reference.handle =
189 internal_object->reference.node;
Bob Moorecd0b2242008-04-10 19:06:43 +0400190 external_object->reference.actual_type =
191 acpi_ns_get_type(internal_object->reference.node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 break;
193 }
194 break;
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 case ACPI_TYPE_PROCESSOR:
197
Len Brown4be44fc2005-08-05 00:44:28 -0400198 external_object->processor.proc_id =
199 internal_object->processor.proc_id;
200 external_object->processor.pblk_address =
201 internal_object->processor.address;
202 external_object->processor.pblk_length =
203 internal_object->processor.length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 break;
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 case ACPI_TYPE_POWER:
207
208 external_object->power_resource.system_level =
Len Brown4be44fc2005-08-05 00:44:28 -0400209 internal_object->power_resource.system_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 external_object->power_resource.resource_order =
Len Brown4be44fc2005-08-05 00:44:28 -0400212 internal_object->power_resource.resource_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 break;
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 default:
216 /*
217 * There is no corresponding external object type
218 */
Bob Mooreb1dd9092008-04-10 19:06:42 +0400219 ACPI_ERROR((AE_INFO,
220 "Unsupported object type, cannot convert to external object: %s",
221 acpi_ut_get_type_name(ACPI_GET_OBJECT_TYPE
222 (internal_object))));
223
Len Brown4be44fc2005-08-05 00:44:28 -0400224 return_ACPI_STATUS(AE_SUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
226
Len Brown4be44fc2005-08-05 00:44:28 -0400227 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/*******************************************************************************
231 *
232 * FUNCTION: acpi_ut_copy_ielement_to_eelement
233 *
234 * PARAMETERS: acpi_pkg_callback
235 *
236 * RETURN: Status
237 *
238 * DESCRIPTION: Copy one package element to another package element
239 *
240 ******************************************************************************/
241
Robert Moore44f6c012005-04-18 22:49:35 -0400242static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400243acpi_ut_copy_ielement_to_eelement(u8 object_type,
244 union acpi_operand_object *source_object,
245 union acpi_generic_state *state,
246 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Len Brown4be44fc2005-08-05 00:44:28 -0400248 acpi_status status = AE_OK;
249 struct acpi_pkg_info *info = (struct acpi_pkg_info *)context;
250 acpi_size object_space;
251 u32 this_index;
252 union acpi_object *target_object;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Len Brown4be44fc2005-08-05 00:44:28 -0400254 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown4be44fc2005-08-05 00:44:28 -0400256 this_index = state->pkg.index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 target_object = (union acpi_object *)
Len Brown4be44fc2005-08-05 00:44:28 -0400258 &((union acpi_object *)(state->pkg.dest_object))->package.
259 elements[this_index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 switch (object_type) {
262 case ACPI_COPY_TYPE_SIMPLE:
263
264 /*
265 * This is a simple or null object
266 */
Len Brown4be44fc2005-08-05 00:44:28 -0400267 status = acpi_ut_copy_isimple_to_esimple(source_object,
268 target_object,
269 info->free_space,
270 &object_space);
271 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return (status);
273 }
274 break;
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 case ACPI_COPY_TYPE_PACKAGE:
277
278 /*
279 * Build the package object
280 */
Len Brown4be44fc2005-08-05 00:44:28 -0400281 target_object->type = ACPI_TYPE_PACKAGE;
282 target_object->package.count = source_object->package.count;
Robert Moore44f6c012005-04-18 22:49:35 -0400283 target_object->package.elements =
Len Brown4be44fc2005-08-05 00:44:28 -0400284 ACPI_CAST_PTR(union acpi_object, info->free_space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 /*
287 * Pass the new package object back to the package walk routine
288 */
289 state->pkg.this_target_obj = target_object;
290
291 /*
292 * Save space for the array of objects (Package elements)
293 * update the buffer length counter
294 */
Len Brown4be44fc2005-08-05 00:44:28 -0400295 object_space = ACPI_ROUND_UP_TO_NATIVE_WORD((acpi_size)
296 target_object->
297 package.count *
298 sizeof(union
299 acpi_object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 break;
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 default:
303 return (AE_BAD_PARAMETER);
304 }
305
Len Brown4be44fc2005-08-05 00:44:28 -0400306 info->free_space += object_space;
307 info->length += object_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return (status);
309}
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311/*******************************************************************************
312 *
313 * FUNCTION: acpi_ut_copy_ipackage_to_epackage
314 *
Robert Moore44f6c012005-04-18 22:49:35 -0400315 * PARAMETERS: internal_object - Pointer to the object we are returning
316 * Buffer - Where the object is returned
317 * space_used - Where the object length is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 *
319 * RETURN: Status
320 *
321 * DESCRIPTION: This function is called to place a package object in a user
322 * buffer. A package object by definition contains other objects.
323 *
324 * The buffer is assumed to have sufficient space for the object.
325 * The caller must have verified the buffer length needed using the
326 * acpi_ut_get_object_size function before calling this function.
327 *
328 ******************************************************************************/
329
330static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400331acpi_ut_copy_ipackage_to_epackage(union acpi_operand_object *internal_object,
332 u8 * buffer, acpi_size * space_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Len Brown4be44fc2005-08-05 00:44:28 -0400334 union acpi_object *external_object;
335 acpi_status status;
336 struct acpi_pkg_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Bob Mooreb229cf92006-04-21 17:15:00 -0400338 ACPI_FUNCTION_TRACE(ut_copy_ipackage_to_epackage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 /*
341 * First package at head of the buffer
342 */
Len Brown4be44fc2005-08-05 00:44:28 -0400343 external_object = ACPI_CAST_PTR(union acpi_object, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 /*
346 * Free space begins right after the first package
347 */
Len Brown4be44fc2005-08-05 00:44:28 -0400348 info.length = ACPI_ROUND_UP_TO_NATIVE_WORD(sizeof(union acpi_object));
349 info.free_space =
350 buffer + ACPI_ROUND_UP_TO_NATIVE_WORD(sizeof(union acpi_object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 info.object_space = 0;
352 info.num_packages = 1;
353
Len Brown4be44fc2005-08-05 00:44:28 -0400354 external_object->type = ACPI_GET_OBJECT_TYPE(internal_object);
355 external_object->package.count = internal_object->package.count;
356 external_object->package.elements = ACPI_CAST_PTR(union acpi_object,
357 info.free_space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 /*
360 * Leave room for an array of ACPI_OBJECTS in the buffer
361 * and move the free space past it
362 */
Len Brown4be44fc2005-08-05 00:44:28 -0400363 info.length += (acpi_size) external_object->package.count *
364 ACPI_ROUND_UP_TO_NATIVE_WORD(sizeof(union acpi_object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 info.free_space += external_object->package.count *
Len Brown4be44fc2005-08-05 00:44:28 -0400366 ACPI_ROUND_UP_TO_NATIVE_WORD(sizeof(union acpi_object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Len Brown4be44fc2005-08-05 00:44:28 -0400368 status = acpi_ut_walk_package_tree(internal_object, external_object,
369 acpi_ut_copy_ielement_to_eelement,
370 &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 *space_used = info.length;
Len Brown4be44fc2005-08-05 00:44:28 -0400373 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*******************************************************************************
377 *
378 * FUNCTION: acpi_ut_copy_iobject_to_eobject
379 *
Robert Moore44f6c012005-04-18 22:49:35 -0400380 * PARAMETERS: internal_object - The internal object to be converted
381 * buffer_ptr - Where the object is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 *
383 * RETURN: Status
384 *
385 * DESCRIPTION: This function is called to build an API object to be returned to
386 * the caller.
387 *
388 ******************************************************************************/
389
390acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400391acpi_ut_copy_iobject_to_eobject(union acpi_operand_object *internal_object,
392 struct acpi_buffer *ret_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
Len Brown4be44fc2005-08-05 00:44:28 -0400394 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Bob Mooreb229cf92006-04-21 17:15:00 -0400396 ACPI_FUNCTION_TRACE(ut_copy_iobject_to_eobject);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Len Brown4be44fc2005-08-05 00:44:28 -0400398 if (ACPI_GET_OBJECT_TYPE(internal_object) == ACPI_TYPE_PACKAGE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 /*
400 * Package object: Copy all subobjects (including
401 * nested packages)
402 */
Len Brown4be44fc2005-08-05 00:44:28 -0400403 status = acpi_ut_copy_ipackage_to_epackage(internal_object,
404 ret_buffer->pointer,
405 &ret_buffer->length);
406 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /*
408 * Build a simple object (no nested objects)
409 */
Len Brown4be44fc2005-08-05 00:44:28 -0400410 status = acpi_ut_copy_isimple_to_esimple(internal_object,
Bob Moorec51a4de2005-11-17 13:07:00 -0500411 ACPI_CAST_PTR(union
412 acpi_object,
413 ret_buffer->
414 pointer),
415 ACPI_ADD_PTR(u8,
416 ret_buffer->
417 pointer,
418 ACPI_ROUND_UP_TO_NATIVE_WORD
419 (sizeof
420 (union
421 acpi_object))),
Len Brown4be44fc2005-08-05 00:44:28 -0400422 &ret_buffer->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 /*
424 * build simple does not include the object size in the length
425 * so we add it in here
426 */
Len Brown4be44fc2005-08-05 00:44:28 -0400427 ret_buffer->length += sizeof(union acpi_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429
Len Brown4be44fc2005-08-05 00:44:28 -0400430 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433/*******************************************************************************
434 *
435 * FUNCTION: acpi_ut_copy_esimple_to_isimple
436 *
Robert Moore44f6c012005-04-18 22:49:35 -0400437 * PARAMETERS: external_object - The external object to be converted
438 * ret_internal_object - Where the internal object is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 *
440 * RETURN: Status
441 *
442 * DESCRIPTION: This function copies an external object to an internal one.
443 * NOTE: Pointers can be copied, we don't need to copy data.
444 * (The pointers have to be valid in our address space no matter
445 * what we do with them!)
446 *
447 ******************************************************************************/
448
Robert Moore44f6c012005-04-18 22:49:35 -0400449static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400450acpi_ut_copy_esimple_to_isimple(union acpi_object *external_object,
451 union acpi_operand_object **ret_internal_object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Len Brown4be44fc2005-08-05 00:44:28 -0400453 union acpi_operand_object *internal_object;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Bob Mooreb229cf92006-04-21 17:15:00 -0400455 ACPI_FUNCTION_TRACE(ut_copy_esimple_to_isimple);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 /*
458 * Simple types supported are: String, Buffer, Integer
459 */
460 switch (external_object->type) {
461 case ACPI_TYPE_STRING:
462 case ACPI_TYPE_BUFFER:
463 case ACPI_TYPE_INTEGER:
Bob Moorecd0b2242008-04-10 19:06:43 +0400464 case ACPI_TYPE_LOCAL_REFERENCE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Len Brown4be44fc2005-08-05 00:44:28 -0400466 internal_object = acpi_ut_create_internal_object((u8)
467 external_object->
468 type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (!internal_object) {
Len Brown4be44fc2005-08-05 00:44:28 -0400470 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
472 break;
473
Bob Moorecd0b2242008-04-10 19:06:43 +0400474 case ACPI_TYPE_ANY: /* This is the case for a NULL object */
475
476 *ret_internal_object = NULL;
477 return_ACPI_STATUS(AE_OK);
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 default:
480 /* All other types are not supported */
481
Bob Mooreb1dd9092008-04-10 19:06:42 +0400482 ACPI_ERROR((AE_INFO,
483 "Unsupported object type, cannot convert to internal object: %s",
484 acpi_ut_get_type_name(external_object->type)));
485
Len Brown4be44fc2005-08-05 00:44:28 -0400486 return_ACPI_STATUS(AE_SUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 /* Must COPY string and buffer contents */
490
491 switch (external_object->type) {
492 case ACPI_TYPE_STRING:
493
494 internal_object->string.pointer =
Bob Moore83135242006-10-03 00:00:00 -0400495 ACPI_ALLOCATE_ZEROED((acpi_size) external_object->string.
496 length + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (!internal_object->string.pointer) {
498 goto error_exit;
499 }
500
Len Brown4be44fc2005-08-05 00:44:28 -0400501 ACPI_MEMCPY(internal_object->string.pointer,
502 external_object->string.pointer,
503 external_object->string.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 internal_object->string.length = external_object->string.length;
506 break;
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 case ACPI_TYPE_BUFFER:
509
510 internal_object->buffer.pointer =
Bob Moore83135242006-10-03 00:00:00 -0400511 ACPI_ALLOCATE_ZEROED(external_object->buffer.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (!internal_object->buffer.pointer) {
513 goto error_exit;
514 }
515
Len Brown4be44fc2005-08-05 00:44:28 -0400516 ACPI_MEMCPY(internal_object->buffer.pointer,
517 external_object->buffer.pointer,
518 external_object->buffer.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 internal_object->buffer.length = external_object->buffer.length;
Bob Moore24a31572008-04-10 19:06:43 +0400521
522 /* Mark buffer data valid */
523
524 internal_object->buffer.flags |= AOPOBJ_DATA_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 break;
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 case ACPI_TYPE_INTEGER:
528
Len Brown4be44fc2005-08-05 00:44:28 -0400529 internal_object->integer.value = external_object->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 break;
531
Bob Moorecd0b2242008-04-10 19:06:43 +0400532 case ACPI_TYPE_LOCAL_REFERENCE:
533
534 /* TBD: should validate incoming handle */
535
536 internal_object->reference.opcode = AML_INT_NAMEPATH_OP;
537 internal_object->reference.node =
538 external_object->reference.handle;
539 break;
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 default:
542 /* Other types can't get here */
543 break;
544 }
545
546 *ret_internal_object = internal_object;
Len Brown4be44fc2005-08-05 00:44:28 -0400547 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Len Brown4be44fc2005-08-05 00:44:28 -0400549 error_exit:
550 acpi_ut_remove_reference(internal_object);
551 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554/*******************************************************************************
555 *
556 * FUNCTION: acpi_ut_copy_epackage_to_ipackage
557 *
Bob Moore6287ee32007-04-03 19:59:37 -0400558 * PARAMETERS: external_object - The external object to be converted
559 * internal_object - Where the internal object is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 *
561 * RETURN: Status
562 *
Bob Moore6287ee32007-04-03 19:59:37 -0400563 * DESCRIPTION: Copy an external package object to an internal package.
564 * Handles nested packages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 *
566 ******************************************************************************/
567
568static acpi_status
Bob Moore6287ee32007-04-03 19:59:37 -0400569acpi_ut_copy_epackage_to_ipackage(union acpi_object *external_object,
570 union acpi_operand_object **internal_object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Bob Moore6287ee32007-04-03 19:59:37 -0400572 acpi_status status = AE_OK;
573 union acpi_operand_object *package_object;
574 union acpi_operand_object **package_elements;
575 acpi_native_uint i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Bob Mooreb229cf92006-04-21 17:15:00 -0400577 ACPI_FUNCTION_TRACE(ut_copy_epackage_to_ipackage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Bob Moore6287ee32007-04-03 19:59:37 -0400579 /* Create the package object */
580
581 package_object =
582 acpi_ut_create_package_object(external_object->package.count);
583 if (!package_object) {
584 return_ACPI_STATUS(AE_NO_MEMORY);
585 }
586
587 package_elements = package_object->package.elements;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 /*
Bob Moore6287ee32007-04-03 19:59:37 -0400590 * Recursive implementation. Probably ok, since nested external packages
591 * as parameters should be very rare.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 */
Bob Moore6287ee32007-04-03 19:59:37 -0400593 for (i = 0; i < external_object->package.count; i++) {
594 status =
595 acpi_ut_copy_eobject_to_iobject(&external_object->package.
596 elements[i],
597 &package_elements[i]);
598 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Bob Moore6287ee32007-04-03 19:59:37 -0400600 /* Truncate package and delete it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Bob Moore1d18c052008-04-10 19:06:40 +0400602 package_object->package.count = (u32) i;
Bob Moore6287ee32007-04-03 19:59:37 -0400603 package_elements[i] = NULL;
604 acpi_ut_remove_reference(package_object);
605 return_ACPI_STATUS(status);
606 }
607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Bob Moore24a31572008-04-10 19:06:43 +0400609 /* Mark package data valid */
610
611 package_object->package.flags |= AOPOBJ_DATA_VALID;
612
Bob Moore6287ee32007-04-03 19:59:37 -0400613 *internal_object = package_object;
614 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617/*******************************************************************************
618 *
619 * FUNCTION: acpi_ut_copy_eobject_to_iobject
620 *
Bob Moore6287ee32007-04-03 19:59:37 -0400621 * PARAMETERS: external_object - The external object to be converted
622 * internal_object - Where the internal object is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 *
Bob Moore6287ee32007-04-03 19:59:37 -0400624 * RETURN: Status - the status of the call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 *
626 * DESCRIPTION: Converts an external object to an internal object.
627 *
628 ******************************************************************************/
629
630acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400631acpi_ut_copy_eobject_to_iobject(union acpi_object *external_object,
632 union acpi_operand_object **internal_object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Len Brown4be44fc2005-08-05 00:44:28 -0400634 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Bob Mooreb229cf92006-04-21 17:15:00 -0400636 ACPI_FUNCTION_TRACE(ut_copy_eobject_to_iobject);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 if (external_object->type == ACPI_TYPE_PACKAGE) {
Bob Moore6287ee32007-04-03 19:59:37 -0400639 status =
640 acpi_ut_copy_epackage_to_ipackage(external_object,
641 internal_object);
642 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 /*
644 * Build a simple object (no nested objects)
645 */
Len Brown4be44fc2005-08-05 00:44:28 -0400646 status =
647 acpi_ut_copy_esimple_to_isimple(external_object,
648 internal_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650
Len Brown4be44fc2005-08-05 00:44:28 -0400651 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654/*******************************************************************************
655 *
656 * FUNCTION: acpi_ut_copy_simple_object
657 *
658 * PARAMETERS: source_desc - The internal object to be copied
659 * dest_desc - New target object
660 *
661 * RETURN: Status
662 *
663 * DESCRIPTION: Simple copy of one internal object to another. Reference count
664 * of the destination object is preserved.
665 *
666 ******************************************************************************/
667
Robert Moore44f6c012005-04-18 22:49:35 -0400668static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400669acpi_ut_copy_simple_object(union acpi_operand_object *source_desc,
670 union acpi_operand_object *dest_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Len Brown4be44fc2005-08-05 00:44:28 -0400672 u16 reference_count;
673 union acpi_operand_object *next_object;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 /* Save fields from destination that we don't want to overwrite */
676
677 reference_count = dest_desc->common.reference_count;
678 next_object = dest_desc->common.next_object;
679
Len Brown4be44fc2005-08-05 00:44:28 -0400680 /* Copy the entire source object over the destination object */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Len Brown4be44fc2005-08-05 00:44:28 -0400682 ACPI_MEMCPY((char *)dest_desc, (char *)source_desc,
683 sizeof(union acpi_operand_object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 /* Restore the saved fields */
686
687 dest_desc->common.reference_count = reference_count;
688 dest_desc->common.next_object = next_object;
689
Robert Moore6f42ccf2005-05-13 00:00:00 -0400690 /* New object is not static, regardless of source */
691
692 dest_desc->common.flags &= ~AOPOBJ_STATIC_POINTER;
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /* Handle the objects with extra data */
695
Len Brown4be44fc2005-08-05 00:44:28 -0400696 switch (ACPI_GET_OBJECT_TYPE(dest_desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 case ACPI_TYPE_BUFFER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /*
699 * Allocate and copy the actual buffer if and only if:
700 * 1) There is a valid buffer pointer
Robert Moore6f42ccf2005-05-13 00:00:00 -0400701 * 2) The buffer has a length > 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 */
703 if ((source_desc->buffer.pointer) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400704 (source_desc->buffer.length)) {
Robert Moore6f42ccf2005-05-13 00:00:00 -0400705 dest_desc->buffer.pointer =
Bob Moore83135242006-10-03 00:00:00 -0400706 ACPI_ALLOCATE(source_desc->buffer.length);
Robert Moore6f42ccf2005-05-13 00:00:00 -0400707 if (!dest_desc->buffer.pointer) {
708 return (AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
Robert Moore6f42ccf2005-05-13 00:00:00 -0400710
711 /* Copy the actual buffer data */
712
Len Brown4be44fc2005-08-05 00:44:28 -0400713 ACPI_MEMCPY(dest_desc->buffer.pointer,
714 source_desc->buffer.pointer,
715 source_desc->buffer.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
717 break;
718
719 case ACPI_TYPE_STRING:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 /*
721 * Allocate and copy the actual string if and only if:
722 * 1) There is a valid string pointer
Robert Moore6f42ccf2005-05-13 00:00:00 -0400723 * (Pointer to a NULL string is allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 */
Robert Moore6f42ccf2005-05-13 00:00:00 -0400725 if (source_desc->string.pointer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 dest_desc->string.pointer =
Bob Moore83135242006-10-03 00:00:00 -0400727 ACPI_ALLOCATE((acpi_size) source_desc->string.
728 length + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (!dest_desc->string.pointer) {
730 return (AE_NO_MEMORY);
731 }
732
Robert Moore6f42ccf2005-05-13 00:00:00 -0400733 /* Copy the actual string data */
734
Len Brown4be44fc2005-08-05 00:44:28 -0400735 ACPI_MEMCPY(dest_desc->string.pointer,
736 source_desc->string.pointer,
737 (acpi_size) source_desc->string.length + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
739 break;
740
741 case ACPI_TYPE_LOCAL_REFERENCE:
742 /*
743 * We copied the reference object, so we now must add a reference
744 * to the object pointed to by the reference
Lin Mingbc7a36a2008-04-10 19:06:42 +0400745 *
746 * DDBHandle reference (from Load/load_table is a special reference,
747 * it's Reference.Object is the table index, so does not need to
748 * increase the reference count
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 */
Lin Mingbc7a36a2008-04-10 19:06:42 +0400750 if (source_desc->reference.opcode == AML_LOAD_OP) {
751 break;
752 }
753
Len Brown4be44fc2005-08-05 00:44:28 -0400754 acpi_ut_add_reference(source_desc->reference.object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 break;
756
Fiodor Suietov6b366e22007-02-02 19:48:18 +0300757 case ACPI_TYPE_REGION:
758 /*
759 * We copied the Region Handler, so we now must add a reference
760 */
761 if (dest_desc->region.handler) {
762 acpi_ut_add_reference(dest_desc->region.handler);
763 }
764 break;
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 default:
767 /* Nothing to do for other simple objects */
768 break;
769 }
770
771 return (AE_OK);
772}
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774/*******************************************************************************
775 *
776 * FUNCTION: acpi_ut_copy_ielement_to_ielement
777 *
778 * PARAMETERS: acpi_pkg_callback
779 *
780 * RETURN: Status
781 *
782 * DESCRIPTION: Copy one package element to another package element
783 *
784 ******************************************************************************/
785
Robert Moore44f6c012005-04-18 22:49:35 -0400786static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400787acpi_ut_copy_ielement_to_ielement(u8 object_type,
788 union acpi_operand_object *source_object,
789 union acpi_generic_state *state,
790 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Len Brown4be44fc2005-08-05 00:44:28 -0400792 acpi_status status = AE_OK;
793 u32 this_index;
794 union acpi_operand_object **this_target_ptr;
795 union acpi_operand_object *target_object;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Len Brown4be44fc2005-08-05 00:44:28 -0400797 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Len Brown4be44fc2005-08-05 00:44:28 -0400799 this_index = state->pkg.index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 this_target_ptr = (union acpi_operand_object **)
Len Brown4be44fc2005-08-05 00:44:28 -0400801 &state->pkg.dest_object->package.elements[this_index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 switch (object_type) {
804 case ACPI_COPY_TYPE_SIMPLE:
805
806 /* A null source object indicates a (legal) null package element */
807
808 if (source_object) {
809 /*
810 * This is a simple object, just copy it
811 */
Len Brown4be44fc2005-08-05 00:44:28 -0400812 target_object =
813 acpi_ut_create_internal_object(ACPI_GET_OBJECT_TYPE
814 (source_object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (!target_object) {
816 return (AE_NO_MEMORY);
817 }
818
Len Brown4be44fc2005-08-05 00:44:28 -0400819 status =
820 acpi_ut_copy_simple_object(source_object,
821 target_object);
822 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 goto error_exit;
824 }
825
826 *this_target_ptr = target_object;
Len Brown4be44fc2005-08-05 00:44:28 -0400827 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 /* Pass through a null element */
829
830 *this_target_ptr = NULL;
831 }
832 break;
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 case ACPI_COPY_TYPE_PACKAGE:
835
836 /*
837 * This object is a package - go down another nesting level
838 * Create and build the package object
839 */
Len Brown4be44fc2005-08-05 00:44:28 -0400840 target_object =
Bob Moore6287ee32007-04-03 19:59:37 -0400841 acpi_ut_create_package_object(source_object->package.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 if (!target_object) {
843 return (AE_NO_MEMORY);
844 }
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 target_object->common.flags = source_object->common.flags;
847
Bob Moore6287ee32007-04-03 19:59:37 -0400848 /* Pass the new package object back to the package walk routine */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 state->pkg.this_target_obj = target_object;
851
Bob Moore6287ee32007-04-03 19:59:37 -0400852 /* Store the object pointer in the parent package object */
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 *this_target_ptr = target_object;
855 break;
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 default:
858 return (AE_BAD_PARAMETER);
859 }
860
861 return (status);
862
Len Brown4be44fc2005-08-05 00:44:28 -0400863 error_exit:
864 acpi_ut_remove_reference(target_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return (status);
866}
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868/*******************************************************************************
869 *
870 * FUNCTION: acpi_ut_copy_ipackage_to_ipackage
871 *
872 * PARAMETERS: *source_obj - Pointer to the source package object
873 * *dest_obj - Where the internal object is returned
874 *
875 * RETURN: Status - the status of the call
876 *
877 * DESCRIPTION: This function is called to copy an internal package object
878 * into another internal package object.
879 *
880 ******************************************************************************/
881
Robert Moore44f6c012005-04-18 22:49:35 -0400882static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400883acpi_ut_copy_ipackage_to_ipackage(union acpi_operand_object *source_obj,
884 union acpi_operand_object *dest_obj,
885 struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Len Brown4be44fc2005-08-05 00:44:28 -0400887 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Bob Mooreb229cf92006-04-21 17:15:00 -0400889 ACPI_FUNCTION_TRACE(ut_copy_ipackage_to_ipackage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Len Brown4be44fc2005-08-05 00:44:28 -0400891 dest_obj->common.type = ACPI_GET_OBJECT_TYPE(source_obj);
892 dest_obj->common.flags = source_obj->common.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 dest_obj->package.count = source_obj->package.count;
894
895 /*
896 * Create the object array and walk the source package tree
897 */
Bob Moore83135242006-10-03 00:00:00 -0400898 dest_obj->package.elements = ACPI_ALLOCATE_ZEROED(((acpi_size)
899 source_obj->package.
900 count +
901 1) * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (!dest_obj->package.elements) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500903 ACPI_ERROR((AE_INFO, "Package allocation failure"));
Len Brown4be44fc2005-08-05 00:44:28 -0400904 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
906
907 /*
908 * Copy the package element-by-element by walking the package "tree".
909 * This handles nested packages of arbitrary depth.
910 */
Len Brown4be44fc2005-08-05 00:44:28 -0400911 status = acpi_ut_walk_package_tree(source_obj, dest_obj,
912 acpi_ut_copy_ielement_to_ielement,
913 walk_state);
914 if (ACPI_FAILURE(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 /* On failure, delete the destination package object */
917
Len Brown4be44fc2005-08-05 00:44:28 -0400918 acpi_ut_remove_reference(dest_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 }
920
Len Brown4be44fc2005-08-05 00:44:28 -0400921 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924/*******************************************************************************
925 *
926 * FUNCTION: acpi_ut_copy_iobject_to_iobject
927 *
928 * PARAMETERS: walk_state - Current walk state
929 * source_desc - The internal object to be copied
930 * dest_desc - Where the copied object is returned
931 *
932 * RETURN: Status
933 *
934 * DESCRIPTION: Copy an internal object to a new internal object
935 *
936 ******************************************************************************/
937
938acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400939acpi_ut_copy_iobject_to_iobject(union acpi_operand_object *source_desc,
940 union acpi_operand_object **dest_desc,
941 struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Len Brown4be44fc2005-08-05 00:44:28 -0400943 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Bob Mooreb229cf92006-04-21 17:15:00 -0400945 ACPI_FUNCTION_TRACE(ut_copy_iobject_to_iobject);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 /* Create the top level object */
948
Len Brown4be44fc2005-08-05 00:44:28 -0400949 *dest_desc =
950 acpi_ut_create_internal_object(ACPI_GET_OBJECT_TYPE(source_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if (!*dest_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400952 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 }
954
955 /* Copy the object and possible subobjects */
956
Len Brown4be44fc2005-08-05 00:44:28 -0400957 if (ACPI_GET_OBJECT_TYPE(source_desc) == ACPI_TYPE_PACKAGE) {
958 status =
959 acpi_ut_copy_ipackage_to_ipackage(source_desc, *dest_desc,
960 walk_state);
961 } else {
962 status = acpi_ut_copy_simple_object(source_desc, *dest_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 }
964
Len Brown4be44fc2005-08-05 00:44:28 -0400965 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}