blob: a474ca2334d536e3cd411adf8799b8897c647f28 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: dsobject - Dispatcher object management routines
4 *
5 *****************************************************************************/
6
7/*
Bob Moore6c9deb72007-02-02 19:48:24 +03008 * Copyright (C) 2000 - 2007, R. Byron Moore
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/acparser.h>
46#include <acpi/amlcode.h>
47#include <acpi/acdispat.h>
48#include <acpi/acnamesp.h>
49#include <acpi/acinterp.h>
50
51#define _COMPONENT ACPI_DISPATCHER
Len Brown4be44fc2005-08-05 00:44:28 -040052ACPI_MODULE_NAME("dsobject")
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Bob Mooredefba1d2005-12-16 17:05:00 -050054/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040055static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040056acpi_ds_build_internal_object(struct acpi_walk_state *walk_state,
57 union acpi_parse_object *op,
58 union acpi_operand_object **obj_desc_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#ifndef ACPI_NO_METHOD_EXECUTION
Robert Moore44f6c012005-04-18 22:49:35 -040061/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 *
63 * FUNCTION: acpi_ds_build_internal_object
64 *
65 * PARAMETERS: walk_state - Current walk state
66 * Op - Parser object to be translated
67 * obj_desc_ptr - Where the ACPI internal object is returned
68 *
69 * RETURN: Status
70 *
71 * DESCRIPTION: Translate a parser Op object to the equivalent namespace object
72 * Simple objects are any objects other than a package object!
73 *
Robert Moore44f6c012005-04-18 22:49:35 -040074 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Robert Moore44f6c012005-04-18 22:49:35 -040076static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040077acpi_ds_build_internal_object(struct acpi_walk_state *walk_state,
78 union acpi_parse_object *op,
79 union acpi_operand_object **obj_desc_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Len Brown4be44fc2005-08-05 00:44:28 -040081 union acpi_operand_object *obj_desc;
82 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Bob Mooreb229cf92006-04-21 17:15:00 -040084 ACPI_FUNCTION_TRACE(ds_build_internal_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 *obj_desc_ptr = NULL;
87 if (op->common.aml_opcode == AML_INT_NAMEPATH_OP) {
88 /*
Bob Mooredefba1d2005-12-16 17:05:00 -050089 * This is a named object reference. If this name was
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 * previously looked up in the namespace, it was stored in this op.
91 * Otherwise, go ahead and look it up now
92 */
93 if (!op->common.node) {
Len Brown4be44fc2005-08-05 00:44:28 -040094 status = acpi_ns_lookup(walk_state->scope_info,
95 op->common.value.string,
96 ACPI_TYPE_ANY,
97 ACPI_IMODE_EXECUTE,
98 ACPI_NS_SEARCH_PARENT |
99 ACPI_NS_DONT_OPEN_SCOPE, NULL,
Bob Mooredefba1d2005-12-16 17:05:00 -0500100 ACPI_CAST_INDIRECT_PTR(struct
101 acpi_namespace_node,
102 &(op->
103 common.
104 node)));
Len Brown4be44fc2005-08-05 00:44:28 -0400105 if (ACPI_FAILURE(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400106
Bob Mooredefba1d2005-12-16 17:05:00 -0500107 /* Check if we are resolving a named reference within a package */
108
109 if ((status == AE_NOT_FOUND)
110 && (acpi_gbl_enable_interpreter_slack)
111 &&
112 ((op->common.parent->common.aml_opcode ==
113 AML_PACKAGE_OP)
114 || (op->common.parent->common.aml_opcode ==
115 AML_VAR_PACKAGE_OP))) {
116 /*
117 * We didn't find the target and we are populating elements
118 * of a package - ignore if slack enabled. Some ASL code
119 * contains dangling invalid references in packages and
120 * expects that no exception will be issued. Leave the
121 * element as a null element. It cannot be used, but it
122 * can be overwritten by subsequent ASL code - this is
123 * typically the case.
124 */
125 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
126 "Ignoring unresolved reference in package [%4.4s]\n",
127 walk_state->
128 scope_info->scope.
129 node->name.ascii));
130
131 return_ACPI_STATUS(AE_OK);
132 } else {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500133 ACPI_ERROR_NAMESPACE(op->common.value.
134 string, status);
Bob Mooredefba1d2005-12-16 17:05:00 -0500135 }
136
Len Brown4be44fc2005-08-05 00:44:28 -0400137 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139 }
140 }
141
Bob Mooredefba1d2005-12-16 17:05:00 -0500142 /* Create and init a new internal ACPI object */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Len Brown4be44fc2005-08-05 00:44:28 -0400144 obj_desc = acpi_ut_create_internal_object((acpi_ps_get_opcode_info
145 (op->common.aml_opcode))->
146 object_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (!obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400148 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
150
Len Brown4be44fc2005-08-05 00:44:28 -0400151 status =
152 acpi_ds_init_object_from_op(walk_state, op, op->common.aml_opcode,
153 &obj_desc);
154 if (ACPI_FAILURE(status)) {
155 acpi_ut_remove_reference(obj_desc);
156 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
158
159 *obj_desc_ptr = obj_desc;
Len Brown4be44fc2005-08-05 00:44:28 -0400160 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
Robert Moore44f6c012005-04-18 22:49:35 -0400163/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 *
165 * FUNCTION: acpi_ds_build_internal_buffer_obj
166 *
167 * PARAMETERS: walk_state - Current walk state
168 * Op - Parser object to be translated
169 * buffer_length - Length of the buffer
170 * obj_desc_ptr - Where the ACPI internal object is returned
171 *
172 * RETURN: Status
173 *
174 * DESCRIPTION: Translate a parser Op package object to the equivalent
175 * namespace object
176 *
Robert Moore44f6c012005-04-18 22:49:35 -0400177 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400180acpi_ds_build_internal_buffer_obj(struct acpi_walk_state *walk_state,
181 union acpi_parse_object *op,
182 u32 buffer_length,
183 union acpi_operand_object **obj_desc_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Len Brown4be44fc2005-08-05 00:44:28 -0400185 union acpi_parse_object *arg;
186 union acpi_operand_object *obj_desc;
187 union acpi_parse_object *byte_list;
188 u32 byte_list_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Bob Mooreb229cf92006-04-21 17:15:00 -0400190 ACPI_FUNCTION_TRACE(ds_build_internal_buffer_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Bob Mooredefba1d2005-12-16 17:05:00 -0500192 /*
193 * If we are evaluating a Named buffer object "Name (xxxx, Buffer)".
194 * The buffer object already exists (from the NS node), otherwise it must
195 * be created.
196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 obj_desc = *obj_desc_ptr;
Bob Mooredefba1d2005-12-16 17:05:00 -0500198 if (!obj_desc) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 /* Create a new buffer object */
201
Len Brown4be44fc2005-08-05 00:44:28 -0400202 obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_BUFFER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 *obj_desc_ptr = obj_desc;
204 if (!obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400205 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207 }
208
209 /*
210 * Second arg is the buffer data (optional) byte_list can be either
211 * individual bytes or a string initializer. In either case, a
212 * byte_list appears in the AML.
213 */
Len Brown4be44fc2005-08-05 00:44:28 -0400214 arg = op->common.value.arg; /* skip first arg */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 byte_list = arg->named.next;
217 if (byte_list) {
218 if (byte_list->common.aml_opcode != AML_INT_BYTELIST_OP) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500219 ACPI_ERROR((AE_INFO,
220 "Expecting bytelist, got AML opcode %X in op %p",
221 byte_list->common.aml_opcode, byte_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Len Brown4be44fc2005-08-05 00:44:28 -0400223 acpi_ut_remove_reference(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return (AE_TYPE);
225 }
226
227 byte_list_length = (u32) byte_list->common.value.integer;
228 }
229
230 /*
231 * The buffer length (number of bytes) will be the larger of:
232 * 1) The specified buffer length and
233 * 2) The length of the initializer byte list
234 */
235 obj_desc->buffer.length = buffer_length;
236 if (byte_list_length > buffer_length) {
237 obj_desc->buffer.length = byte_list_length;
238 }
239
240 /* Allocate the buffer */
241
242 if (obj_desc->buffer.length == 0) {
243 obj_desc->buffer.pointer = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400244 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
245 "Buffer defined with zero length in AML, creating\n"));
246 } else {
247 obj_desc->buffer.pointer =
Bob Moore83135242006-10-03 00:00:00 -0400248 ACPI_ALLOCATE_ZEROED(obj_desc->buffer.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (!obj_desc->buffer.pointer) {
Len Brown4be44fc2005-08-05 00:44:28 -0400250 acpi_ut_delete_object_desc(obj_desc);
251 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253
254 /* Initialize buffer from the byte_list (if present) */
255
256 if (byte_list) {
Len Brown4be44fc2005-08-05 00:44:28 -0400257 ACPI_MEMCPY(obj_desc->buffer.pointer,
258 byte_list->named.data, byte_list_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
260 }
261
262 obj_desc->buffer.flags |= AOPOBJ_DATA_VALID;
Bob Moore8f9337c2007-02-02 19:48:18 +0300263 op->common.node = ACPI_CAST_PTR(struct acpi_namespace_node, obj_desc);
Len Brown4be44fc2005-08-05 00:44:28 -0400264 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
Robert Moore44f6c012005-04-18 22:49:35 -0400267/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 *
269 * FUNCTION: acpi_ds_build_internal_package_obj
270 *
271 * PARAMETERS: walk_state - Current walk state
272 * Op - Parser object to be translated
Bob Moore8f9337c2007-02-02 19:48:18 +0300273 * element_count - Number of elements in the package - this is
274 * the num_elements argument to Package()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 * obj_desc_ptr - Where the ACPI internal object is returned
276 *
277 * RETURN: Status
278 *
279 * DESCRIPTION: Translate a parser Op package object to the equivalent
280 * namespace object
281 *
Bob Moore8f9337c2007-02-02 19:48:18 +0300282 * NOTE: The number of elements in the package will be always be the num_elements
283 * count, regardless of the number of elements in the package list. If
284 * num_elements is smaller, only that many package list elements are used.
285 * if num_elements is larger, the Package object is padded out with
286 * objects of type Uninitialized (as per ACPI spec.)
287 *
288 * Even though the ASL compilers do not allow num_elements to be smaller
289 * than the Package list length (for the fixed length package opcode), some
290 * BIOS code modifies the AML on the fly to adjust the num_elements, and
291 * this code compensates for that. This also provides compatibility with
292 * other AML interpreters.
293 *
Robert Moore44f6c012005-04-18 22:49:35 -0400294 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400297acpi_ds_build_internal_package_obj(struct acpi_walk_state *walk_state,
298 union acpi_parse_object *op,
Bob Moore8f9337c2007-02-02 19:48:18 +0300299 u32 element_count,
Len Brown4be44fc2005-08-05 00:44:28 -0400300 union acpi_operand_object **obj_desc_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Len Brown4be44fc2005-08-05 00:44:28 -0400302 union acpi_parse_object *arg;
303 union acpi_parse_object *parent;
304 union acpi_operand_object *obj_desc = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400305 acpi_status status = AE_OK;
Bob Mooredefba1d2005-12-16 17:05:00 -0500306 acpi_native_uint i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Bob Mooreb229cf92006-04-21 17:15:00 -0400308 ACPI_FUNCTION_TRACE(ds_build_internal_package_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 /* Find the parent of a possibly nested package */
311
312 parent = op->common.parent;
Len Brown4be44fc2005-08-05 00:44:28 -0400313 while ((parent->common.aml_opcode == AML_PACKAGE_OP) ||
314 (parent->common.aml_opcode == AML_VAR_PACKAGE_OP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 parent = parent->common.parent;
316 }
317
Bob Mooredefba1d2005-12-16 17:05:00 -0500318 /*
319 * If we are evaluating a Named package object "Name (xxxx, Package)",
320 * the package object already exists, otherwise it must be created.
321 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 obj_desc = *obj_desc_ptr;
Bob Mooredefba1d2005-12-16 17:05:00 -0500323 if (!obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400324 obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_PACKAGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 *obj_desc_ptr = obj_desc;
326 if (!obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400327 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 }
329
330 obj_desc->package.node = parent->common.node;
331 }
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 /*
Bob Moore8f9337c2007-02-02 19:48:18 +0300334 * Allocate the element array (array of pointers to the individual
335 * objects) based on the num_elements parameter. Add an extra pointer slot
336 * so that the list is always null terminated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 */
Bob Moore83135242006-10-03 00:00:00 -0400338 obj_desc->package.elements = ACPI_ALLOCATE_ZEROED(((acpi_size)
Bob Moore8f9337c2007-02-02 19:48:18 +0300339 element_count +
Bob Moore83135242006-10-03 00:00:00 -0400340 1) * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 if (!obj_desc->package.elements) {
Len Brown4be44fc2005-08-05 00:44:28 -0400343 acpi_ut_delete_object_desc(obj_desc);
344 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
Bob Moore8f9337c2007-02-02 19:48:18 +0300347 obj_desc->package.count = element_count;
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 /*
Bob Moore8f9337c2007-02-02 19:48:18 +0300350 * Initialize the elements of the package, up to the num_elements count.
351 * Package is automatically padded with uninitialized (NULL) elements
352 * if num_elements is greater than the package list length. Likewise,
353 * Package is truncated if num_elements is less than the list length.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 arg = op->common.value.arg;
356 arg = arg->common.next;
Bob Moore8f9337c2007-02-02 19:48:18 +0300357 for (i = 0; arg && (i < element_count); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (arg->common.aml_opcode == AML_INT_RETURN_VALUE_OP) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400359
Bob Moore8f9337c2007-02-02 19:48:18 +0300360 /* This package element is already built, just get it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Robert Moore44f6c012005-04-18 22:49:35 -0400362 obj_desc->package.elements[i] =
Len Brown4be44fc2005-08-05 00:44:28 -0400363 ACPI_CAST_PTR(union acpi_operand_object,
364 arg->common.node);
365 } else {
366 status = acpi_ds_build_internal_object(walk_state, arg,
367 &obj_desc->
368 package.
369 elements[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 arg = arg->common.next;
372 }
373
Bob Moore8f9337c2007-02-02 19:48:18 +0300374 if (!arg) {
375 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
376 "Package List length larger than NumElements count (%X), truncated\n",
377 element_count));
378 }
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 obj_desc->package.flags |= AOPOBJ_DATA_VALID;
Bob Moore8f9337c2007-02-02 19:48:18 +0300381 op->common.node = ACPI_CAST_PTR(struct acpi_namespace_node, obj_desc);
Len Brown4be44fc2005-08-05 00:44:28 -0400382 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
Robert Moore44f6c012005-04-18 22:49:35 -0400385/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 *
387 * FUNCTION: acpi_ds_create_node
388 *
389 * PARAMETERS: walk_state - Current walk state
390 * Node - NS Node to be initialized
391 * Op - Parser object to be translated
392 *
393 * RETURN: Status
394 *
395 * DESCRIPTION: Create the object to be associated with a namespace node
396 *
Robert Moore44f6c012005-04-18 22:49:35 -0400397 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400400acpi_ds_create_node(struct acpi_walk_state *walk_state,
401 struct acpi_namespace_node *node,
402 union acpi_parse_object *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Len Brown4be44fc2005-08-05 00:44:28 -0400404 acpi_status status;
405 union acpi_operand_object *obj_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Bob Mooreb229cf92006-04-21 17:15:00 -0400407 ACPI_FUNCTION_TRACE_PTR(ds_create_node, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 /*
410 * Because of the execution pass through the non-control-method
411 * parts of the table, we can arrive here twice. Only init
412 * the named object node the first time through
413 */
Len Brown4be44fc2005-08-05 00:44:28 -0400414 if (acpi_ns_get_attached_object(node)) {
415 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417
418 if (!op->common.value.arg) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 /* No arguments, there is nothing to do */
421
Len Brown4be44fc2005-08-05 00:44:28 -0400422 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
424
425 /* Build an internal object for the argument(s) */
426
Len Brown4be44fc2005-08-05 00:44:28 -0400427 status = acpi_ds_build_internal_object(walk_state, op->common.value.arg,
428 &obj_desc);
429 if (ACPI_FAILURE(status)) {
430 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432
433 /* Re-type the object according to its argument */
434
Len Brown4be44fc2005-08-05 00:44:28 -0400435 node->type = ACPI_GET_OBJECT_TYPE(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 /* Attach obj to node */
438
Len Brown4be44fc2005-08-05 00:44:28 -0400439 status = acpi_ns_attach_object(node, obj_desc, node->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 /* Remove local reference to the object */
442
Len Brown4be44fc2005-08-05 00:44:28 -0400443 acpi_ut_remove_reference(obj_desc);
444 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Len Brown4be44fc2005-08-05 00:44:28 -0400447#endif /* ACPI_NO_METHOD_EXECUTION */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Robert Moore44f6c012005-04-18 22:49:35 -0400449/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 *
451 * FUNCTION: acpi_ds_init_object_from_op
452 *
453 * PARAMETERS: walk_state - Current walk state
454 * Op - Parser op used to init the internal object
455 * Opcode - AML opcode associated with the object
456 * ret_obj_desc - Namespace object to be initialized
457 *
458 * RETURN: Status
459 *
460 * DESCRIPTION: Initialize a namespace object from a parser Op and its
461 * associated arguments. The namespace object is a more compact
462 * representation of the Op and its arguments.
463 *
Robert Moore44f6c012005-04-18 22:49:35 -0400464 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400467acpi_ds_init_object_from_op(struct acpi_walk_state *walk_state,
468 union acpi_parse_object *op,
469 u16 opcode,
470 union acpi_operand_object **ret_obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Len Brown4be44fc2005-08-05 00:44:28 -0400472 const struct acpi_opcode_info *op_info;
473 union acpi_operand_object *obj_desc;
474 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Bob Mooreb229cf92006-04-21 17:15:00 -0400476 ACPI_FUNCTION_TRACE(ds_init_object_from_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 obj_desc = *ret_obj_desc;
Len Brown4be44fc2005-08-05 00:44:28 -0400479 op_info = acpi_ps_get_opcode_info(opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (op_info->class == AML_CLASS_UNKNOWN) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 /* Unknown opcode */
483
Len Brown4be44fc2005-08-05 00:44:28 -0400484 return_ACPI_STATUS(AE_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486
487 /* Perform per-object initialization */
488
Len Brown4be44fc2005-08-05 00:44:28 -0400489 switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 case ACPI_TYPE_BUFFER:
491
492 /*
493 * Defer evaluation of Buffer term_arg operand
494 */
Bob Moore8f9337c2007-02-02 19:48:18 +0300495 obj_desc->buffer.node =
496 ACPI_CAST_PTR(struct acpi_namespace_node,
497 walk_state->operands[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 obj_desc->buffer.aml_start = op->named.data;
499 obj_desc->buffer.aml_length = op->named.length;
500 break;
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 case ACPI_TYPE_PACKAGE:
503
504 /*
505 * Defer evaluation of Package term_arg operand
506 */
Bob Moore8f9337c2007-02-02 19:48:18 +0300507 obj_desc->package.node =
508 ACPI_CAST_PTR(struct acpi_namespace_node,
509 walk_state->operands[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 obj_desc->package.aml_start = op->named.data;
511 obj_desc->package.aml_length = op->named.length;
512 break;
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 case ACPI_TYPE_INTEGER:
515
516 switch (op_info->type) {
517 case AML_TYPE_CONSTANT:
518 /*
519 * Resolve AML Constants here - AND ONLY HERE!
520 * All constants are integers.
Robert Moore44f6c012005-04-18 22:49:35 -0400521 * We mark the integer with a flag that indicates that it started
522 * life as a constant -- so that stores to constants will perform
523 * as expected (noop). zero_op is used as a placeholder for optional
524 * target operands.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 */
526 obj_desc->common.flags = AOPOBJ_AML_CONSTANT;
527
528 switch (opcode) {
529 case AML_ZERO_OP:
530
531 obj_desc->integer.value = 0;
532 break;
533
534 case AML_ONE_OP:
535
536 obj_desc->integer.value = 1;
537 break;
538
539 case AML_ONES_OP:
540
541 obj_desc->integer.value = ACPI_INTEGER_MAX;
542
543 /* Truncate value if we are executing from a 32-bit ACPI table */
544
545#ifndef ACPI_NO_METHOD_EXECUTION
Len Brown4be44fc2005-08-05 00:44:28 -0400546 acpi_ex_truncate_for32bit_table(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547#endif
548 break;
549
550 case AML_REVISION_OP:
551
552 obj_desc->integer.value = ACPI_CA_VERSION;
553 break;
554
555 default:
556
Bob Mooreb8e4d892006-01-27 16:43:00 -0500557 ACPI_ERROR((AE_INFO,
558 "Unknown constant opcode %X",
559 opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 status = AE_AML_OPERAND_TYPE;
561 break;
562 }
563 break;
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 case AML_TYPE_LITERAL:
566
567 obj_desc->integer.value = op->common.value.integer;
Robert Moore6f42ccf2005-05-13 00:00:00 -0400568#ifndef ACPI_NO_METHOD_EXECUTION
Len Brown4be44fc2005-08-05 00:44:28 -0400569 acpi_ex_truncate_for32bit_table(obj_desc);
Robert Moore6f42ccf2005-05-13 00:00:00 -0400570#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 break;
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 default:
Bob Mooreb8e4d892006-01-27 16:43:00 -0500574 ACPI_ERROR((AE_INFO, "Unknown Integer type %X",
575 op_info->type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 status = AE_AML_OPERAND_TYPE;
577 break;
578 }
579 break;
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 case ACPI_TYPE_STRING:
582
583 obj_desc->string.pointer = op->common.value.string;
Len Brown4be44fc2005-08-05 00:44:28 -0400584 obj_desc->string.length =
585 (u32) ACPI_STRLEN(op->common.value.string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 /*
588 * The string is contained in the ACPI table, don't ever try
589 * to delete it
590 */
591 obj_desc->common.flags |= AOPOBJ_STATIC_POINTER;
592 break;
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 case ACPI_TYPE_METHOD:
595 break;
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 case ACPI_TYPE_LOCAL_REFERENCE:
598
599 switch (op_info->type) {
600 case AML_TYPE_LOCAL_VARIABLE:
601
602 /* Split the opcode into a base opcode + offset */
603
604 obj_desc->reference.opcode = AML_LOCAL_OP;
605 obj_desc->reference.offset = opcode - AML_LOCAL_OP;
606
607#ifndef ACPI_NO_METHOD_EXECUTION
Len Brown4be44fc2005-08-05 00:44:28 -0400608 status = acpi_ds_method_data_get_node(AML_LOCAL_OP,
609 obj_desc->
610 reference.offset,
611 walk_state,
612 (struct
613 acpi_namespace_node
614 **)&obj_desc->
615 reference.object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616#endif
617 break;
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 case AML_TYPE_METHOD_ARGUMENT:
620
621 /* Split the opcode into a base opcode + offset */
622
623 obj_desc->reference.opcode = AML_ARG_OP;
624 obj_desc->reference.offset = opcode - AML_ARG_OP;
625
626#ifndef ACPI_NO_METHOD_EXECUTION
Len Brown4be44fc2005-08-05 00:44:28 -0400627 status = acpi_ds_method_data_get_node(AML_ARG_OP,
628 obj_desc->
629 reference.offset,
630 walk_state,
631 (struct
632 acpi_namespace_node
633 **)&obj_desc->
634 reference.object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635#endif
636 break;
637
Len Brown4be44fc2005-08-05 00:44:28 -0400638 default: /* Other literals, etc.. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 if (op->common.aml_opcode == AML_INT_NAMEPATH_OP) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /* Node was saved in Op */
643
644 obj_desc->reference.node = op->common.node;
645 }
646
647 obj_desc->reference.opcode = opcode;
648 break;
649 }
650 break;
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 default:
653
Bob Mooreb8e4d892006-01-27 16:43:00 -0500654 ACPI_ERROR((AE_INFO, "Unimplemented data type: %X",
655 ACPI_GET_OBJECT_TYPE(obj_desc)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657 status = AE_AML_OPERAND_TYPE;
658 break;
659 }
660
Len Brown4be44fc2005-08-05 00:44:28 -0400661 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}