blob: 44d4f4bb2f925232df5b7f3f9cb152c238100f83 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: dswload - Dispatcher namespace load callbacks
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2005, R. Byron Moore
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
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/acinterp.h>
49#include <acpi/acnamesp.h>
50#include <acpi/acevents.h>
51
Robert Moore73459f72005-06-24 00:00:00 -040052#ifdef ACPI_ASL_COMPILER
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <acpi/acdisasm.h>
54#endif
55
56#define _COMPONENT ACPI_DISPATCHER
Len Brown4be44fc2005-08-05 00:44:28 -040057ACPI_MODULE_NAME("dswload")
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/*******************************************************************************
60 *
61 * FUNCTION: acpi_ds_init_callbacks
62 *
63 * PARAMETERS: walk_state - Current state of the parse tree walk
64 * pass_number - 1, 2, or 3
65 *
66 * RETURN: Status
67 *
68 * DESCRIPTION: Init walk state callbacks
69 *
70 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070071acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040072acpi_ds_init_callbacks(struct acpi_walk_state *walk_state, u32 pass_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74
75 switch (pass_number) {
76 case 1:
Len Brown4be44fc2005-08-05 00:44:28 -040077 walk_state->parse_flags = ACPI_PARSE_LOAD_PASS1 |
78 ACPI_PARSE_DELETE_TREE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 walk_state->descending_callback = acpi_ds_load1_begin_op;
80 walk_state->ascending_callback = acpi_ds_load1_end_op;
81 break;
82
83 case 2:
Len Brown4be44fc2005-08-05 00:44:28 -040084 walk_state->parse_flags = ACPI_PARSE_LOAD_PASS1 |
85 ACPI_PARSE_DELETE_TREE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 walk_state->descending_callback = acpi_ds_load2_begin_op;
87 walk_state->ascending_callback = acpi_ds_load2_end_op;
88 break;
89
90 case 3:
91#ifndef ACPI_NO_METHOD_EXECUTION
Len Brown4be44fc2005-08-05 00:44:28 -040092 walk_state->parse_flags |= ACPI_PARSE_EXECUTE |
93 ACPI_PARSE_DELETE_TREE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 walk_state->descending_callback = acpi_ds_exec_begin_op;
95 walk_state->ascending_callback = acpi_ds_exec_end_op;
96#endif
97 break;
98
99 default:
100 return (AE_BAD_PARAMETER);
101 }
102
103 return (AE_OK);
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*******************************************************************************
107 *
108 * FUNCTION: acpi_ds_load1_begin_op
109 *
110 * PARAMETERS: walk_state - Current state of the parse tree walk
Robert Moore44f6c012005-04-18 22:49:35 -0400111 * out_op - Where to return op if a new one is created
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 *
113 * RETURN: Status
114 *
115 * DESCRIPTION: Descending callback used during the loading of ACPI tables.
116 *
117 ******************************************************************************/
118
119acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400120acpi_ds_load1_begin_op(struct acpi_walk_state * walk_state,
121 union acpi_parse_object ** out_op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Len Brown4be44fc2005-08-05 00:44:28 -0400123 union acpi_parse_object *op;
124 struct acpi_namespace_node *node;
125 acpi_status status;
126 acpi_object_type object_type;
127 char *path;
128 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Bob Moore28f55eb2005-12-02 18:27:00 -0500130 ACPI_FUNCTION_TRACE("ds_load1_begin_op");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 op = walk_state->op;
Len Brown4be44fc2005-08-05 00:44:28 -0400133 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op,
134 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 /* We are only interested in opcodes that have an associated name */
137
138 if (op) {
139 if (!(walk_state->op_info->flags & AML_NAMED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 *out_op = op;
Bob Moore28f55eb2005-12-02 18:27:00 -0500141 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
143
144 /* Check if this object has already been installed in the namespace */
145
146 if (op->common.node) {
147 *out_op = op;
Bob Moore28f55eb2005-12-02 18:27:00 -0500148 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
150 }
151
Len Brown4be44fc2005-08-05 00:44:28 -0400152 path = acpi_ps_get_next_namestring(&walk_state->parser_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 /* Map the raw opcode into an internal object type */
155
156 object_type = walk_state->op_info->object_type;
157
Len Brown4be44fc2005-08-05 00:44:28 -0400158 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
159 "State=%p Op=%p [%s]\n", walk_state, op,
160 acpi_ut_get_type_name(object_type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 switch (walk_state->opcode) {
163 case AML_SCOPE_OP:
164
165 /*
166 * The target name of the Scope() operator must exist at this point so
167 * that we can actually open the scope to enter new names underneath it.
168 * Allow search-to-root for single namesegs.
169 */
Len Brown4be44fc2005-08-05 00:44:28 -0400170 status =
171 acpi_ns_lookup(walk_state->scope_info, path, object_type,
172 ACPI_IMODE_EXECUTE, ACPI_NS_SEARCH_PARENT,
173 walk_state, &(node));
Robert Moore73459f72005-06-24 00:00:00 -0400174#ifdef ACPI_ASL_COMPILER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (status == AE_NOT_FOUND) {
176 /*
177 * Table disassembly:
178 * Target of Scope() not found. Generate an External for it, and
179 * insert the name into the namespace.
180 */
Len Brown4be44fc2005-08-05 00:44:28 -0400181 acpi_dm_add_to_external_list(path);
182 status =
183 acpi_ns_lookup(walk_state->scope_info, path,
184 object_type, ACPI_IMODE_LOAD_PASS1,
185 ACPI_NS_SEARCH_PARENT, walk_state,
186 &(node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
188#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400189 if (ACPI_FAILURE(status)) {
190 ACPI_REPORT_NSERROR(path, status);
Bob Moore28f55eb2005-12-02 18:27:00 -0500191 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
193
194 /*
195 * Check to make sure that the target is
196 * one of the opcodes that actually opens a scope
197 */
198 switch (node->type) {
Len Brown4be44fc2005-08-05 00:44:28 -0400199 case ACPI_TYPE_LOCAL_SCOPE: /* Scope */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 case ACPI_TYPE_DEVICE:
201 case ACPI_TYPE_POWER:
202 case ACPI_TYPE_PROCESSOR:
203 case ACPI_TYPE_THERMAL:
204
205 /* These are acceptable types */
206 break;
207
208 case ACPI_TYPE_INTEGER:
209 case ACPI_TYPE_STRING:
210 case ACPI_TYPE_BUFFER:
211
212 /*
213 * These types we will allow, but we will change the type. This
214 * enables some existing code of the form:
215 *
216 * Name (DEB, 0)
217 * Scope (DEB) { ... }
218 *
Robert Moore44f6c012005-04-18 22:49:35 -0400219 * Note: silently change the type here. On the second pass, we will report
220 * a warning
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 */
222
Len Brown4be44fc2005-08-05 00:44:28 -0400223 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
224 "Type override - [%4.4s] had invalid type (%s) for Scope operator, changed to (Scope)\n",
225 path,
226 acpi_ut_get_type_name(node->type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 node->type = ACPI_TYPE_ANY;
229 walk_state->scope_info->common.value = ACPI_TYPE_ANY;
230 break;
231
232 default:
233
234 /* All other types are an error */
235
Len Brown4be44fc2005-08-05 00:44:28 -0400236 ACPI_REPORT_ERROR(("Invalid type (%s) for target of Scope operator [%4.4s] (Cannot override)\n", acpi_ut_get_type_name(node->type), path));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Bob Moore28f55eb2005-12-02 18:27:00 -0500238 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240 break;
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 default:
243
244 /*
Robert Moore44f6c012005-04-18 22:49:35 -0400245 * For all other named opcodes, we will enter the name into
246 * the namespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 *
248 * Setup the search flags.
249 * Since we are entering a name into the namespace, we do not want to
250 * enable the search-to-root upsearch.
251 *
252 * There are only two conditions where it is acceptable that the name
253 * already exists:
254 * 1) the Scope() operator can reopen a scoping object that was
255 * previously defined (Scope, Method, Device, etc.)
256 * 2) Whenever we are parsing a deferred opcode (op_region, Buffer,
257 * buffer_field, or Package), the name of the object is already
258 * in the namespace.
259 */
Bob Moore28f55eb2005-12-02 18:27:00 -0500260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (walk_state->deferred_node) {
262 /* This name is already in the namespace, get the node */
263
264 node = walk_state->deferred_node;
265 status = AE_OK;
266 break;
267 }
268
Bob Moore28f55eb2005-12-02 18:27:00 -0500269 /*
270 * If we are executing a method, do not create any namespace objects
271 * during the load phase, only during execution.
272 */
273 if (walk_state->method_node) {
274 node = NULL;
275 status = AE_OK;
276 break;
277 }
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 flags = ACPI_NS_NO_UPSEARCH;
280 if ((walk_state->opcode != AML_SCOPE_OP) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400281 (!(walk_state->parse_flags & ACPI_PARSE_DEFERRED_OP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 flags |= ACPI_NS_ERROR_IF_FOUND;
Len Brown4be44fc2005-08-05 00:44:28 -0400283 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
284 "[%s] Cannot already exist\n",
285 acpi_ut_get_type_name(object_type)));
286 } else {
287 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
288 "[%s] Both Find or Create allowed\n",
289 acpi_ut_get_type_name(object_type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
291
292 /*
293 * Enter the named type into the internal namespace. We enter the name
Robert Moore44f6c012005-04-18 22:49:35 -0400294 * as we go downward in the parse tree. Any necessary subobjects that
295 * involve arguments to the opcode must be created as we go back up the
296 * parse tree later.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 */
Len Brown4be44fc2005-08-05 00:44:28 -0400298 status =
299 acpi_ns_lookup(walk_state->scope_info, path, object_type,
300 ACPI_IMODE_LOAD_PASS1, flags, walk_state,
301 &(node));
302 if (ACPI_FAILURE(status)) {
303 ACPI_REPORT_NSERROR(path, status);
Bob Moore28f55eb2005-12-02 18:27:00 -0500304 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
306 break;
307 }
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 /* Common exit */
310
311 if (!op) {
312 /* Create a new op */
313
Len Brown4be44fc2005-08-05 00:44:28 -0400314 op = acpi_ps_alloc_op(walk_state->opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (!op) {
Bob Moore28f55eb2005-12-02 18:27:00 -0500316 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318 }
319
Bob Moore28f55eb2005-12-02 18:27:00 -0500320 /* Initialize the op */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322#if (defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY))
Bob Moorec51a4de2005-11-17 13:07:00 -0500323 op->named.path = ACPI_CAST_PTR(u8, path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324#endif
325
Bob Moore28f55eb2005-12-02 18:27:00 -0500326 if (node) {
327 /*
328 * Put the Node in the "op" object that the parser uses, so we
329 * can get it again quickly when this scope is closed
330 */
331 op->common.node = node;
332 op->named.name = node->name.integer;
333 }
334
Len Brown4be44fc2005-08-05 00:44:28 -0400335 acpi_ps_append_arg(acpi_ps_get_parent_scope(&walk_state->parser_state),
336 op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 *out_op = op;
Bob Moore28f55eb2005-12-02 18:27:00 -0500338 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341/*******************************************************************************
342 *
343 * FUNCTION: acpi_ds_load1_end_op
344 *
345 * PARAMETERS: walk_state - Current state of the parse tree walk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 *
347 * RETURN: Status
348 *
349 * DESCRIPTION: Ascending callback used during the loading of the namespace,
350 * both control methods and everything else.
351 *
352 ******************************************************************************/
353
Bob Moore28f55eb2005-12-02 18:27:00 -0500354acpi_status acpi_ds_load1_end_op(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Len Brown4be44fc2005-08-05 00:44:28 -0400356 union acpi_parse_object *op;
357 acpi_object_type object_type;
358 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Bob Moore28f55eb2005-12-02 18:27:00 -0500360 ACPI_FUNCTION_TRACE("ds_load1_end_op");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 op = walk_state->op;
Len Brown4be44fc2005-08-05 00:44:28 -0400363 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op,
364 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 /* We are only interested in opcodes that have an associated name */
367
368 if (!(walk_state->op_info->flags & (AML_NAMED | AML_FIELD))) {
Bob Moore28f55eb2005-12-02 18:27:00 -0500369 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
371
372 /* Get the object type to determine if we should pop the scope */
373
374 object_type = walk_state->op_info->object_type;
375
376#ifndef ACPI_NO_METHOD_EXECUTION
377 if (walk_state->op_info->flags & AML_FIELD) {
Bob Moore28f55eb2005-12-02 18:27:00 -0500378 /*
379 * If we are executing a method, do not create any namespace objects
380 * during the load phase, only during execution.
381 */
382 if (!walk_state->method_node) {
383 if (walk_state->opcode == AML_FIELD_OP ||
384 walk_state->opcode == AML_BANK_FIELD_OP ||
385 walk_state->opcode == AML_INDEX_FIELD_OP) {
386 status =
387 acpi_ds_init_field_objects(op, walk_state);
388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
Bob Moore28f55eb2005-12-02 18:27:00 -0500390 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
392
Bob Moore28f55eb2005-12-02 18:27:00 -0500393 /*
394 * If we are executing a method, do not create any namespace objects
395 * during the load phase, only during execution.
396 */
397 if (!walk_state->method_node) {
398 if (op->common.aml_opcode == AML_REGION_OP) {
399 status =
400 acpi_ex_create_region(op->named.data,
401 op->named.length,
402 (acpi_adr_space_type)
403 ((op->common.value.arg)->
404 common.value.integer),
405 walk_state);
406 if (ACPI_FAILURE(status)) {
407 return_ACPI_STATUS(status);
408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410 }
411#endif
412
413 if (op->common.aml_opcode == AML_NAME_OP) {
414 /* For Name opcode, get the object type from the argument */
415
416 if (op->common.value.arg) {
Len Brown4be44fc2005-08-05 00:44:28 -0400417 object_type = (acpi_ps_get_opcode_info((op->common.
418 value.arg)->
419 common.
420 aml_opcode))->
421 object_type;
Bob Moore28f55eb2005-12-02 18:27:00 -0500422
423 /* Set node type if we have a namespace node */
424
425 if (op->common.node) {
426 op->common.node->type = (u8) object_type;
427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429 }
430
431 if (op->common.aml_opcode == AML_METHOD_OP) {
432 /*
433 * method_op pkg_length name_string method_flags term_list
434 *
435 * Note: We must create the method node/object pair as soon as we
436 * see the method declaration. This allows later pass1 parsing
437 * of invocations of the method (need to know the number of
438 * arguments.)
439 */
Len Brown4be44fc2005-08-05 00:44:28 -0400440 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
441 "LOADING-Method: State=%p Op=%p named_obj=%p\n",
442 walk_state, op, op->named.node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Len Brown4be44fc2005-08-05 00:44:28 -0400444 if (!acpi_ns_get_attached_object(op->named.node)) {
445 walk_state->operands[0] = (void *)op->named.node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 walk_state->num_operands = 1;
447
Len Brown4be44fc2005-08-05 00:44:28 -0400448 status =
449 acpi_ds_create_operands(walk_state,
450 op->common.value.arg);
451 if (ACPI_SUCCESS(status)) {
452 status = acpi_ex_create_method(op->named.data,
453 op->named.length,
454 walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456 walk_state->operands[0] = NULL;
457 walk_state->num_operands = 0;
458
Len Brown4be44fc2005-08-05 00:44:28 -0400459 if (ACPI_FAILURE(status)) {
Bob Moore28f55eb2005-12-02 18:27:00 -0500460 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462 }
463 }
464
465 /* Pop the scope stack */
466
Len Brown4be44fc2005-08-05 00:44:28 -0400467 if (acpi_ns_opens_scope(object_type)) {
468 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
469 "(%s): Popping scope for Op %p\n",
470 acpi_ut_get_type_name(object_type), op));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Len Brown4be44fc2005-08-05 00:44:28 -0400472 status = acpi_ds_scope_stack_pop(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474
Bob Moore28f55eb2005-12-02 18:27:00 -0500475 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478/*******************************************************************************
479 *
480 * FUNCTION: acpi_ds_load2_begin_op
481 *
482 * PARAMETERS: walk_state - Current state of the parse tree walk
Robert Moore44f6c012005-04-18 22:49:35 -0400483 * out_op - Wher to return op if a new one is created
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 *
485 * RETURN: Status
486 *
487 * DESCRIPTION: Descending callback used during the loading of ACPI tables.
488 *
489 ******************************************************************************/
490
491acpi_status
Bob Moore28f55eb2005-12-02 18:27:00 -0500492acpi_ds_load2_begin_op(struct acpi_walk_state *walk_state,
493 union acpi_parse_object **out_op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Len Brown4be44fc2005-08-05 00:44:28 -0400495 union acpi_parse_object *op;
496 struct acpi_namespace_node *node;
497 acpi_status status;
498 acpi_object_type object_type;
499 char *buffer_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Len Brown4be44fc2005-08-05 00:44:28 -0400501 ACPI_FUNCTION_TRACE("ds_load2_begin_op");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 op = walk_state->op;
Len Brown4be44fc2005-08-05 00:44:28 -0400504 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op,
505 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 if (op) {
Robert Moore88ac00f2005-05-26 00:00:00 -0400508 if ((walk_state->control_state) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400509 (walk_state->control_state->common.state ==
510 ACPI_CONTROL_CONDITIONAL_EXECUTING)) {
Robert Moore88ac00f2005-05-26 00:00:00 -0400511 /* We are executing a while loop outside of a method */
512
Len Brown4be44fc2005-08-05 00:44:28 -0400513 status = acpi_ds_exec_begin_op(walk_state, out_op);
514 return_ACPI_STATUS(status);
Robert Moore88ac00f2005-05-26 00:00:00 -0400515 }
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 /* We only care about Namespace opcodes here */
518
Robert Moore44f6c012005-04-18 22:49:35 -0400519 if ((!(walk_state->op_info->flags & AML_NSOPCODE) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400520 (walk_state->opcode != AML_INT_NAMEPATH_OP)) ||
521 (!(walk_state->op_info->flags & AML_NAMED))) {
Robert Mooreaff8c272005-09-02 17:24:17 -0400522#ifdef ACPI_ENABLE_MODULE_LEVEL_CODE
Robert Moore44f6c012005-04-18 22:49:35 -0400523 if ((walk_state->op_info->class == AML_CLASS_EXECUTE) ||
Len Brown4be44fc2005-08-05 00:44:28 -0400524 (walk_state->op_info->class == AML_CLASS_CONTROL)) {
Robert Mooreaff8c272005-09-02 17:24:17 -0400525
Len Brown4be44fc2005-08-05 00:44:28 -0400526 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
527 "Begin/EXEC: %s (fl %8.8X)\n",
528 walk_state->op_info->name,
529 walk_state->op_info->flags));
Robert Moore88ac00f2005-05-26 00:00:00 -0400530
531 /* Executing a type1 or type2 opcode outside of a method */
532
Len Brown4be44fc2005-08-05 00:44:28 -0400533 status =
534 acpi_ds_exec_begin_op(walk_state, out_op);
535 return_ACPI_STATUS(status);
Robert Moore44f6c012005-04-18 22:49:35 -0400536 }
Robert Mooreaff8c272005-09-02 17:24:17 -0400537#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400538 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540
Robert Moore44f6c012005-04-18 22:49:35 -0400541 /* Get the name we are going to enter or lookup in the namespace */
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (walk_state->opcode == AML_INT_NAMEPATH_OP) {
544 /* For Namepath op, get the path string */
545
546 buffer_ptr = op->common.value.string;
547 if (!buffer_ptr) {
548 /* No name, just exit */
549
Len Brown4be44fc2005-08-05 00:44:28 -0400550 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
Len Brown4be44fc2005-08-05 00:44:28 -0400552 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 /* Get name from the op */
554
Len Brown4be44fc2005-08-05 00:44:28 -0400555 buffer_ptr = (char *)&op->named.name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
Len Brown4be44fc2005-08-05 00:44:28 -0400557 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /* Get the namestring from the raw AML */
559
Len Brown4be44fc2005-08-05 00:44:28 -0400560 buffer_ptr =
561 acpi_ps_get_next_namestring(&walk_state->parser_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563
564 /* Map the opcode into an internal object type */
565
566 object_type = walk_state->op_info->object_type;
567
Len Brown4be44fc2005-08-05 00:44:28 -0400568 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
569 "State=%p Op=%p Type=%X\n", walk_state, op,
570 object_type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 switch (walk_state->opcode) {
573 case AML_FIELD_OP:
574 case AML_BANK_FIELD_OP:
575 case AML_INDEX_FIELD_OP:
576
577 node = NULL;
578 status = AE_OK;
579 break;
580
581 case AML_INT_NAMEPATH_OP:
582
583 /*
Robert Moore44f6c012005-04-18 22:49:35 -0400584 * The name_path is an object reference to an existing object.
585 * Don't enter the name into the namespace, but look it up
586 * for use later.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 */
Len Brown4be44fc2005-08-05 00:44:28 -0400588 status =
589 acpi_ns_lookup(walk_state->scope_info, buffer_ptr,
590 object_type, ACPI_IMODE_EXECUTE,
591 ACPI_NS_SEARCH_PARENT, walk_state, &(node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 break;
593
594 case AML_SCOPE_OP:
595
596 /*
Robert Moore44f6c012005-04-18 22:49:35 -0400597 * The Path is an object reference to an existing object.
598 * Don't enter the name into the namespace, but look it up
599 * for use later.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 */
Len Brown4be44fc2005-08-05 00:44:28 -0400601 status =
602 acpi_ns_lookup(walk_state->scope_info, buffer_ptr,
603 object_type, ACPI_IMODE_EXECUTE,
604 ACPI_NS_SEARCH_PARENT, walk_state, &(node));
605 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -0400606#ifdef ACPI_ASL_COMPILER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (status == AE_NOT_FOUND) {
608 status = AE_OK;
Len Brown4be44fc2005-08-05 00:44:28 -0400609 } else {
610 ACPI_REPORT_NSERROR(buffer_ptr, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612#else
Len Brown4be44fc2005-08-05 00:44:28 -0400613 ACPI_REPORT_NSERROR(buffer_ptr, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400615 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617 /*
618 * We must check to make sure that the target is
619 * one of the opcodes that actually opens a scope
620 */
621 switch (node->type) {
Len Brown4be44fc2005-08-05 00:44:28 -0400622 case ACPI_TYPE_LOCAL_SCOPE: /* Scope */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 case ACPI_TYPE_DEVICE:
624 case ACPI_TYPE_POWER:
625 case ACPI_TYPE_PROCESSOR:
626 case ACPI_TYPE_THERMAL:
627
628 /* These are acceptable types */
629 break;
630
631 case ACPI_TYPE_INTEGER:
632 case ACPI_TYPE_STRING:
633 case ACPI_TYPE_BUFFER:
634
635 /*
636 * These types we will allow, but we will change the type. This
637 * enables some existing code of the form:
638 *
639 * Name (DEB, 0)
640 * Scope (DEB) { ... }
641 */
642
Len Brown4be44fc2005-08-05 00:44:28 -0400643 ACPI_REPORT_WARNING(("Type override - [%4.4s] had invalid type (%s) for Scope operator, changed to (Scope)\n", buffer_ptr, acpi_ut_get_type_name(node->type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 node->type = ACPI_TYPE_ANY;
646 walk_state->scope_info->common.value = ACPI_TYPE_ANY;
647 break;
648
649 default:
650
651 /* All other types are an error */
652
Len Brown4be44fc2005-08-05 00:44:28 -0400653 ACPI_REPORT_ERROR(("Invalid type (%s) for target of Scope operator [%4.4s]\n", acpi_ut_get_type_name(node->type), buffer_ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 return (AE_AML_OPERAND_TYPE);
656 }
657 break;
658
659 default:
660
661 /* All other opcodes */
662
663 if (op && op->common.node) {
664 /* This op/node was previously entered into the namespace */
665
666 node = op->common.node;
667
Len Brown4be44fc2005-08-05 00:44:28 -0400668 if (acpi_ns_opens_scope(object_type)) {
669 status =
670 acpi_ds_scope_stack_push(node, object_type,
671 walk_state);
672 if (ACPI_FAILURE(status)) {
673 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
675
676 }
Len Brown4be44fc2005-08-05 00:44:28 -0400677 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
679
680 /*
681 * Enter the named type into the internal namespace. We enter the name
Robert Moore44f6c012005-04-18 22:49:35 -0400682 * as we go downward in the parse tree. Any necessary subobjects that
683 * involve arguments to the opcode must be created as we go back up the
684 * parse tree later.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 *
686 * Note: Name may already exist if we are executing a deferred opcode.
687 */
688 if (walk_state->deferred_node) {
689 /* This name is already in the namespace, get the node */
690
691 node = walk_state->deferred_node;
692 status = AE_OK;
693 break;
694 }
695
Robert Moore88ac00f2005-05-26 00:00:00 -0400696 /* Add new entry into namespace */
697
Len Brown4be44fc2005-08-05 00:44:28 -0400698 status =
699 acpi_ns_lookup(walk_state->scope_info, buffer_ptr,
700 object_type, ACPI_IMODE_LOAD_PASS2,
701 ACPI_NS_NO_UPSEARCH, walk_state, &(node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 break;
703 }
704
Len Brown4be44fc2005-08-05 00:44:28 -0400705 if (ACPI_FAILURE(status)) {
706 ACPI_REPORT_NSERROR(buffer_ptr, status);
707 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (!op) {
711 /* Create a new op */
712
Len Brown4be44fc2005-08-05 00:44:28 -0400713 op = acpi_ps_alloc_op(walk_state->opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (!op) {
Len Brown4be44fc2005-08-05 00:44:28 -0400715 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
717
718 /* Initialize the new op */
719
720 if (node) {
721 op->named.name = node->name.integer;
722 }
Robert Moore88ac00f2005-05-26 00:00:00 -0400723 *out_op = op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725
726 /*
727 * Put the Node in the "op" object that the parser uses, so we
728 * can get it again quickly when this scope is closed
729 */
730 op->common.node = node;
731
Len Brown4be44fc2005-08-05 00:44:28 -0400732 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735/*******************************************************************************
736 *
737 * FUNCTION: acpi_ds_load2_end_op
738 *
739 * PARAMETERS: walk_state - Current state of the parse tree walk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 *
741 * RETURN: Status
742 *
743 * DESCRIPTION: Ascending callback used during the loading of the namespace,
744 * both control methods and everything else.
745 *
746 ******************************************************************************/
747
Len Brown4be44fc2005-08-05 00:44:28 -0400748acpi_status acpi_ds_load2_end_op(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Len Brown4be44fc2005-08-05 00:44:28 -0400750 union acpi_parse_object *op;
751 acpi_status status = AE_OK;
752 acpi_object_type object_type;
753 struct acpi_namespace_node *node;
754 union acpi_parse_object *arg;
755 struct acpi_namespace_node *new_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756#ifndef ACPI_NO_METHOD_EXECUTION
Len Brown4be44fc2005-08-05 00:44:28 -0400757 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758#endif
759
Len Brown4be44fc2005-08-05 00:44:28 -0400760 ACPI_FUNCTION_TRACE("ds_load2_end_op");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 op = walk_state->op;
Len Brown4be44fc2005-08-05 00:44:28 -0400763 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Opcode [%s] Op %p State %p\n",
764 walk_state->op_info->name, op, walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Robert Moore88ac00f2005-05-26 00:00:00 -0400766 /* Check if opcode had an associated namespace object */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 if (!(walk_state->op_info->flags & AML_NSOBJECT)) {
Robert Moore88ac00f2005-05-26 00:00:00 -0400769#ifndef ACPI_NO_METHOD_EXECUTION
Robert Mooreaff8c272005-09-02 17:24:17 -0400770#ifdef ACPI_ENABLE_MODULE_LEVEL_CODE
Robert Moore88ac00f2005-05-26 00:00:00 -0400771 /* No namespace object. Executable opcode? */
772
773 if ((walk_state->op_info->class == AML_CLASS_EXECUTE) ||
Len Brown4be44fc2005-08-05 00:44:28 -0400774 (walk_state->op_info->class == AML_CLASS_CONTROL)) {
775 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
776 "End/EXEC: %s (fl %8.8X)\n",
777 walk_state->op_info->name,
778 walk_state->op_info->flags));
Robert Moore88ac00f2005-05-26 00:00:00 -0400779
780 /* Executing a type1 or type2 opcode outside of a method */
781
Len Brown4be44fc2005-08-05 00:44:28 -0400782 status = acpi_ds_exec_end_op(walk_state);
783 return_ACPI_STATUS(status);
Robert Moore88ac00f2005-05-26 00:00:00 -0400784 }
785#endif
Robert Mooreaff8c272005-09-02 17:24:17 -0400786#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400787 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
789
790 if (op->common.aml_opcode == AML_SCOPE_OP) {
Len Brown4be44fc2005-08-05 00:44:28 -0400791 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
792 "Ending scope Op=%p State=%p\n", op,
793 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 object_type = walk_state->op_info->object_type;
797
798 /*
799 * Get the Node/name from the earlier lookup
800 * (It was saved in the *op structure)
801 */
802 node = op->common.node;
803
804 /*
805 * Put the Node on the object stack (Contains the ACPI Name of
806 * this object)
807 */
Len Brown4be44fc2005-08-05 00:44:28 -0400808 walk_state->operands[0] = (void *)node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 walk_state->num_operands = 1;
810
811 /* Pop the scope stack */
812
Len Brown4be44fc2005-08-05 00:44:28 -0400813 if (acpi_ns_opens_scope(object_type) &&
814 (op->common.aml_opcode != AML_INT_METHODCALL_OP)) {
815 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
816 "(%s) Popping scope for Op %p\n",
817 acpi_ut_get_type_name(object_type), op));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Len Brown4be44fc2005-08-05 00:44:28 -0400819 status = acpi_ds_scope_stack_pop(walk_state);
820 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 goto cleanup;
822 }
823 }
824
825 /*
826 * Named operations are as follows:
827 *
828 * AML_ALIAS
829 * AML_BANKFIELD
830 * AML_CREATEBITFIELD
831 * AML_CREATEBYTEFIELD
832 * AML_CREATEDWORDFIELD
833 * AML_CREATEFIELD
834 * AML_CREATEQWORDFIELD
835 * AML_CREATEWORDFIELD
836 * AML_DATA_REGION
837 * AML_DEVICE
838 * AML_EVENT
839 * AML_FIELD
840 * AML_INDEXFIELD
841 * AML_METHOD
842 * AML_METHODCALL
843 * AML_MUTEX
844 * AML_NAME
845 * AML_NAMEDFIELD
846 * AML_OPREGION
847 * AML_POWERRES
848 * AML_PROCESSOR
849 * AML_SCOPE
850 * AML_THERMALZONE
851 */
852
Len Brown4be44fc2005-08-05 00:44:28 -0400853 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
854 "Create-Load [%s] State=%p Op=%p named_obj=%p\n",
855 acpi_ps_get_opcode_name(op->common.aml_opcode),
856 walk_state, op, node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 /* Decode the opcode */
859
860 arg = op->common.value.arg;
861
862 switch (walk_state->op_info->type) {
863#ifndef ACPI_NO_METHOD_EXECUTION
864
865 case AML_TYPE_CREATE_FIELD:
866
867 /*
868 * Create the field object, but the field buffer and index must
869 * be evaluated later during the execution phase
870 */
Len Brown4be44fc2005-08-05 00:44:28 -0400871 status = acpi_ds_create_buffer_field(op, walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 break;
873
Len Brown4be44fc2005-08-05 00:44:28 -0400874 case AML_TYPE_NAMED_FIELD:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Bob Moore28f55eb2005-12-02 18:27:00 -0500876 /*
877 * If we are executing a method, initialize the field
878 */
879 if (walk_state->method_node) {
880 status = acpi_ds_init_field_objects(op, walk_state);
881 }
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 switch (op->common.aml_opcode) {
884 case AML_INDEX_FIELD_OP:
885
Len Brown4be44fc2005-08-05 00:44:28 -0400886 status =
887 acpi_ds_create_index_field(op,
888 (acpi_handle) arg->
889 common.node, walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 break;
891
892 case AML_BANK_FIELD_OP:
893
Len Brown4be44fc2005-08-05 00:44:28 -0400894 status =
895 acpi_ds_create_bank_field(op, arg->common.node,
896 walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 break;
898
899 case AML_FIELD_OP:
900
Len Brown4be44fc2005-08-05 00:44:28 -0400901 status =
902 acpi_ds_create_field(op, arg->common.node,
903 walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 break;
905
906 default:
907 /* All NAMED_FIELD opcodes must be handled above */
908 break;
909 }
910 break;
911
Len Brown4be44fc2005-08-05 00:44:28 -0400912 case AML_TYPE_NAMED_SIMPLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Len Brown4be44fc2005-08-05 00:44:28 -0400914 status = acpi_ds_create_operands(walk_state, arg);
915 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 goto cleanup;
917 }
918
919 switch (op->common.aml_opcode) {
920 case AML_PROCESSOR_OP:
921
Len Brown4be44fc2005-08-05 00:44:28 -0400922 status = acpi_ex_create_processor(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 break;
924
925 case AML_POWER_RES_OP:
926
Len Brown4be44fc2005-08-05 00:44:28 -0400927 status = acpi_ex_create_power_resource(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 break;
929
930 case AML_MUTEX_OP:
931
Len Brown4be44fc2005-08-05 00:44:28 -0400932 status = acpi_ex_create_mutex(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 break;
934
935 case AML_EVENT_OP:
936
Len Brown4be44fc2005-08-05 00:44:28 -0400937 status = acpi_ex_create_event(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 break;
939
940 case AML_DATA_REGION_OP:
941
Len Brown4be44fc2005-08-05 00:44:28 -0400942 status = acpi_ex_create_table_region(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 break;
944
945 case AML_ALIAS_OP:
946
Len Brown4be44fc2005-08-05 00:44:28 -0400947 status = acpi_ex_create_alias(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 break;
949
950 default:
951 /* Unknown opcode */
952
953 status = AE_OK;
954 goto cleanup;
955 }
956
957 /* Delete operands */
958
959 for (i = 1; i < walk_state->num_operands; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400960 acpi_ut_remove_reference(walk_state->operands[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 walk_state->operands[i] = NULL;
962 }
963
964 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400965#endif /* ACPI_NO_METHOD_EXECUTION */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 case AML_TYPE_NAMED_COMPLEX:
968
969 switch (op->common.aml_opcode) {
970#ifndef ACPI_NO_METHOD_EXECUTION
971 case AML_REGION_OP:
Bob Moore28f55eb2005-12-02 18:27:00 -0500972
973 /*
974 * If we are executing a method, initialize the region
975 */
976 if (walk_state->method_node) {
977 status =
978 acpi_ex_create_region(op->named.data,
979 op->named.length,
980 (acpi_adr_space_type)
981 ((op->common.value.
982 arg)->common.value.
983 integer),
984 walk_state);
985 if (ACPI_FAILURE(status)) {
986 return (status);
987 }
988 }
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 /*
Robert Moore44f6c012005-04-18 22:49:35 -0400991 * The op_region is not fully parsed at this time. Only valid
992 * argument is the space_id. (We must save the address of the
993 * AML of the address and length operands)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 */
995 /*
996 * If we have a valid region, initialize it
997 * Namespace is NOT locked at this point.
998 */
Len Brown4be44fc2005-08-05 00:44:28 -0400999 status =
1000 acpi_ev_initialize_region
1001 (acpi_ns_get_attached_object(node), FALSE);
1002 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 /*
1004 * If AE_NOT_EXIST is returned, it is not fatal
1005 * because many regions get created before a handler
1006 * is installed for said region.
1007 */
1008 if (AE_NOT_EXIST == status) {
1009 status = AE_OK;
1010 }
1011 }
1012 break;
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 case AML_NAME_OP:
1015
Len Brown4be44fc2005-08-05 00:44:28 -04001016 status = acpi_ds_create_node(walk_state, node, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001018#endif /* ACPI_NO_METHOD_EXECUTION */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 default:
1021 /* All NAMED_COMPLEX opcodes must be handled above */
1022 /* Note: Method objects were already created in Pass 1 */
1023 break;
1024 }
1025 break;
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 case AML_CLASS_INTERNAL:
1028
1029 /* case AML_INT_NAMEPATH_OP: */
1030 break;
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 case AML_CLASS_METHOD_CALL:
1033
Len Brown4be44fc2005-08-05 00:44:28 -04001034 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
1035 "RESOLVING-method_call: State=%p Op=%p named_obj=%p\n",
1036 walk_state, op, node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 /*
1039 * Lookup the method name and save the Node
1040 */
Len Brown4be44fc2005-08-05 00:44:28 -04001041 status =
1042 acpi_ns_lookup(walk_state->scope_info,
1043 arg->common.value.string, ACPI_TYPE_ANY,
1044 ACPI_IMODE_LOAD_PASS2,
1045 ACPI_NS_SEARCH_PARENT |
1046 ACPI_NS_DONT_OPEN_SCOPE, walk_state,
1047 &(new_node));
1048 if (ACPI_SUCCESS(status)) {
Len Brownbd6dbdf2005-08-04 00:17:42 -04001049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 /*
1051 * Make sure that what we found is indeed a method
Robert Moore44f6c012005-04-18 22:49:35 -04001052 * We didn't search for a method on purpose, to see if the name
1053 * would resolve
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 */
1055 if (new_node->type != ACPI_TYPE_METHOD) {
1056 status = AE_AML_OPERAND_TYPE;
1057 }
1058
Robert Moore44f6c012005-04-18 22:49:35 -04001059 /* We could put the returned object (Node) on the object stack for
1060 * later, but for now, we will put it in the "op" object that the
1061 * parser uses, so we can get it again at the end of this scope
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 */
1063 op->common.node = new_node;
Len Brown4be44fc2005-08-05 00:44:28 -04001064 } else {
1065 ACPI_REPORT_NSERROR(arg->common.value.string, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 }
1067 break;
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 default:
1070 break;
1071 }
1072
Len Brown4be44fc2005-08-05 00:44:28 -04001073 cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075 /* Remove the Node pushed at the very beginning */
1076
1077 walk_state->operands[0] = NULL;
1078 walk_state->num_operands = 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001079 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}