blob: 1bab934e99f8d54d6f9b057bbfdb70ef8439b837 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: dswload - Dispatcher namespace load callbacks
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>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acparser.h"
47#include "amlcode.h"
48#include "acdispat.h"
49#include "acinterp.h"
50#include "acnamesp.h"
51#include "acevents.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Robert Moore73459f72005-06-24 00:00:00 -040053#ifdef ACPI_ASL_COMPILER
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <acpi/acdisasm.h>
55#endif
56
57#define _COMPONENT ACPI_DISPATCHER
Len Brown4be44fc2005-08-05 00:44:28 -040058ACPI_MODULE_NAME("dswload")
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/*******************************************************************************
61 *
62 * FUNCTION: acpi_ds_init_callbacks
63 *
64 * PARAMETERS: walk_state - Current state of the parse tree walk
65 * pass_number - 1, 2, or 3
66 *
67 * RETURN: Status
68 *
69 * DESCRIPTION: Init walk state callbacks
70 *
71 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070072acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040073acpi_ds_init_callbacks(struct acpi_walk_state *walk_state, u32 pass_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75
76 switch (pass_number) {
77 case 1:
Len Brown4be44fc2005-08-05 00:44:28 -040078 walk_state->parse_flags = ACPI_PARSE_LOAD_PASS1 |
79 ACPI_PARSE_DELETE_TREE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 walk_state->descending_callback = acpi_ds_load1_begin_op;
81 walk_state->ascending_callback = acpi_ds_load1_end_op;
82 break;
83
84 case 2:
Len Brown4be44fc2005-08-05 00:44:28 -040085 walk_state->parse_flags = ACPI_PARSE_LOAD_PASS1 |
86 ACPI_PARSE_DELETE_TREE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 walk_state->descending_callback = acpi_ds_load2_begin_op;
88 walk_state->ascending_callback = acpi_ds_load2_end_op;
89 break;
90
91 case 3:
92#ifndef ACPI_NO_METHOD_EXECUTION
Len Brown4be44fc2005-08-05 00:44:28 -040093 walk_state->parse_flags |= ACPI_PARSE_EXECUTE |
94 ACPI_PARSE_DELETE_TREE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 walk_state->descending_callback = acpi_ds_exec_begin_op;
96 walk_state->ascending_callback = acpi_ds_exec_end_op;
97#endif
98 break;
99
100 default:
101 return (AE_BAD_PARAMETER);
102 }
103
104 return (AE_OK);
105}
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/*******************************************************************************
108 *
109 * FUNCTION: acpi_ds_load1_begin_op
110 *
111 * PARAMETERS: walk_state - Current state of the parse tree walk
Robert Moore44f6c012005-04-18 22:49:35 -0400112 * out_op - Where to return op if a new one is created
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 *
114 * RETURN: Status
115 *
116 * DESCRIPTION: Descending callback used during the loading of ACPI tables.
117 *
118 ******************************************************************************/
119
120acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400121acpi_ds_load1_begin_op(struct acpi_walk_state * walk_state,
122 union acpi_parse_object ** out_op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Len Brown4be44fc2005-08-05 00:44:28 -0400124 union acpi_parse_object *op;
125 struct acpi_namespace_node *node;
126 acpi_status status;
127 acpi_object_type object_type;
128 char *path;
129 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Bob Mooreb229cf92006-04-21 17:15:00 -0400131 ACPI_FUNCTION_TRACE(ds_load1_begin_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 op = walk_state->op;
Len Brown4be44fc2005-08-05 00:44:28 -0400134 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op,
135 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 /* We are only interested in opcodes that have an associated name */
138
139 if (op) {
140 if (!(walk_state->op_info->flags & AML_NAMED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 *out_op = op;
Bob Moore28f55eb2005-12-02 18:27:00 -0500142 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
144
145 /* Check if this object has already been installed in the namespace */
146
147 if (op->common.node) {
148 *out_op = op;
Bob Moore28f55eb2005-12-02 18:27:00 -0500149 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151 }
152
Len Brown4be44fc2005-08-05 00:44:28 -0400153 path = acpi_ps_get_next_namestring(&walk_state->parser_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 /* Map the raw opcode into an internal object type */
156
157 object_type = walk_state->op_info->object_type;
158
Len Brown4be44fc2005-08-05 00:44:28 -0400159 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
160 "State=%p Op=%p [%s]\n", walk_state, op,
161 acpi_ut_get_type_name(object_type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 switch (walk_state->opcode) {
164 case AML_SCOPE_OP:
165
166 /*
167 * The target name of the Scope() operator must exist at this point so
168 * that we can actually open the scope to enter new names underneath it.
169 * Allow search-to-root for single namesegs.
170 */
Len Brown4be44fc2005-08-05 00:44:28 -0400171 status =
172 acpi_ns_lookup(walk_state->scope_info, path, object_type,
173 ACPI_IMODE_EXECUTE, ACPI_NS_SEARCH_PARENT,
174 walk_state, &(node));
Robert Moore73459f72005-06-24 00:00:00 -0400175#ifdef ACPI_ASL_COMPILER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (status == AE_NOT_FOUND) {
177 /*
178 * Table disassembly:
Bob Moore967440e32006-06-23 17:04:00 -0400179 * Target of Scope() not found. Generate an External for it, and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * insert the name into the namespace.
181 */
Bob Moore958dd242006-05-12 17:12:00 -0400182 acpi_dm_add_to_external_list(path, ACPI_TYPE_DEVICE, 0);
Len Brown4be44fc2005-08-05 00:44:28 -0400183 status =
184 acpi_ns_lookup(walk_state->scope_info, path,
185 object_type, ACPI_IMODE_LOAD_PASS1,
186 ACPI_NS_SEARCH_PARENT, walk_state,
Bob Moore958dd242006-05-12 17:12:00 -0400187 &node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400190 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500191 ACPI_ERROR_NAMESPACE(path, status);
Bob Moore28f55eb2005-12-02 18:27:00 -0500192 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194
195 /*
196 * Check to make sure that the target is
197 * one of the opcodes that actually opens a scope
198 */
199 switch (node->type) {
Bob Moore15f0c0d2007-02-02 19:48:20 +0300200 case ACPI_TYPE_ANY:
Len Brown4be44fc2005-08-05 00:44:28 -0400201 case ACPI_TYPE_LOCAL_SCOPE: /* Scope */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 case ACPI_TYPE_DEVICE:
203 case ACPI_TYPE_POWER:
204 case ACPI_TYPE_PROCESSOR:
205 case ACPI_TYPE_THERMAL:
206
207 /* These are acceptable types */
208 break;
209
210 case ACPI_TYPE_INTEGER:
211 case ACPI_TYPE_STRING:
212 case ACPI_TYPE_BUFFER:
213
214 /*
Bob Mooref2cb1252009-12-11 14:38:08 +0800215 * These types we will allow, but we will change the type.
216 * This enables some existing code of the form:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 *
218 * Name (DEB, 0)
219 * Scope (DEB) { ... }
220 *
Bob Mooref2cb1252009-12-11 14:38:08 +0800221 * Note: silently change the type here. On the second pass,
222 * we will report a warning
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 */
Len Brown4be44fc2005-08-05 00:44:28 -0400224 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Mooref2cb1252009-12-11 14:38:08 +0800225 "Type override - [%4.4s] had invalid type (%s) "
226 "for Scope operator, changed to type ANY\n",
227 acpi_ut_get_node_name(node),
Len Brown4be44fc2005-08-05 00:44:28 -0400228 acpi_ut_get_type_name(node->type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 node->type = ACPI_TYPE_ANY;
231 walk_state->scope_info->common.value = ACPI_TYPE_ANY;
232 break;
233
234 default:
235
236 /* All other types are an error */
237
Bob Mooreb8e4d892006-01-27 16:43:00 -0500238 ACPI_ERROR((AE_INFO,
Bob Mooref2cb1252009-12-11 14:38:08 +0800239 "Invalid type (%s) for target of "
240 "Scope operator [%4.4s] (Cannot override)",
241 acpi_ut_get_type_name(node->type),
242 acpi_ut_get_node_name(node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Bob Moore28f55eb2005-12-02 18:27:00 -0500244 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
246 break;
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 /*
Robert Moore44f6c012005-04-18 22:49:35 -0400250 * For all other named opcodes, we will enter the name into
251 * the namespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 *
253 * Setup the search flags.
254 * Since we are entering a name into the namespace, we do not want to
255 * enable the search-to-root upsearch.
256 *
257 * There are only two conditions where it is acceptable that the name
258 * already exists:
259 * 1) the Scope() operator can reopen a scoping object that was
260 * previously defined (Scope, Method, Device, etc.)
261 * 2) Whenever we are parsing a deferred opcode (op_region, Buffer,
262 * buffer_field, or Package), the name of the object is already
263 * in the namespace.
264 */
265 if (walk_state->deferred_node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /* This name is already in the namespace, get the node */
268
269 node = walk_state->deferred_node;
270 status = AE_OK;
271 break;
272 }
273
Bob Moore28f55eb2005-12-02 18:27:00 -0500274 /*
275 * If we are executing a method, do not create any namespace objects
276 * during the load phase, only during execution.
277 */
278 if (walk_state->method_node) {
279 node = NULL;
280 status = AE_OK;
281 break;
282 }
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 flags = ACPI_NS_NO_UPSEARCH;
285 if ((walk_state->opcode != AML_SCOPE_OP) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400286 (!(walk_state->parse_flags & ACPI_PARSE_DEFERRED_OP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 flags |= ACPI_NS_ERROR_IF_FOUND;
Len Brown4be44fc2005-08-05 00:44:28 -0400288 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
289 "[%s] Cannot already exist\n",
290 acpi_ut_get_type_name(object_type)));
291 } else {
292 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
293 "[%s] Both Find or Create allowed\n",
294 acpi_ut_get_type_name(object_type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
296
297 /*
Bob Moore967440e32006-06-23 17:04:00 -0400298 * Enter the named type into the internal namespace. We enter the name
299 * as we go downward in the parse tree. Any necessary subobjects that
Robert Moore44f6c012005-04-18 22:49:35 -0400300 * involve arguments to the opcode must be created as we go back up the
301 * parse tree later.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 */
Len Brown4be44fc2005-08-05 00:44:28 -0400303 status =
304 acpi_ns_lookup(walk_state->scope_info, path, object_type,
305 ACPI_IMODE_LOAD_PASS1, flags, walk_state,
Bob Moore958dd242006-05-12 17:12:00 -0400306 &node);
Len Brown4be44fc2005-08-05 00:44:28 -0400307 if (ACPI_FAILURE(status)) {
Bob Moore958dd242006-05-12 17:12:00 -0400308 if (status == AE_ALREADY_EXISTS) {
309
310 /* The name already exists in this scope */
311
312 if (node->flags & ANOBJ_IS_EXTERNAL) {
313 /*
314 * Allow one create on an object or segment that was
315 * previously declared External
316 */
317 node->flags &= ~ANOBJ_IS_EXTERNAL;
318 node->type = (u8) object_type;
319
320 /* Just retyped a node, probably will need to open a scope */
321
322 if (acpi_ns_opens_scope(object_type)) {
323 status =
324 acpi_ds_scope_stack_push
325 (node, object_type,
326 walk_state);
327 if (ACPI_FAILURE(status)) {
328 return_ACPI_STATUS
329 (status);
330 }
331 }
Bob Moore967440e32006-06-23 17:04:00 -0400332
Bob Moore958dd242006-05-12 17:12:00 -0400333 status = AE_OK;
334 }
335 }
336
337 if (ACPI_FAILURE(status)) {
Bob Moore958dd242006-05-12 17:12:00 -0400338 ACPI_ERROR_NAMESPACE(path, status);
339 return_ACPI_STATUS(status);
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342 break;
343 }
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 /* Common exit */
346
347 if (!op) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 /* Create a new op */
350
Len Brown4be44fc2005-08-05 00:44:28 -0400351 op = acpi_ps_alloc_op(walk_state->opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (!op) {
Bob Moore28f55eb2005-12-02 18:27:00 -0500353 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355 }
356
Bob Moore28f55eb2005-12-02 18:27:00 -0500357 /* Initialize the op */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359#if (defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY))
Bob Moorec51a4de2005-11-17 13:07:00 -0500360 op->named.path = ACPI_CAST_PTR(u8, path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361#endif
362
Bob Moore28f55eb2005-12-02 18:27:00 -0500363 if (node) {
364 /*
365 * Put the Node in the "op" object that the parser uses, so we
366 * can get it again quickly when this scope is closed
367 */
368 op->common.node = node;
369 op->named.name = node->name.integer;
370 }
371
Len Brown4be44fc2005-08-05 00:44:28 -0400372 acpi_ps_append_arg(acpi_ps_get_parent_scope(&walk_state->parser_state),
373 op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 *out_op = op;
Bob Moore28f55eb2005-12-02 18:27:00 -0500375 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/*******************************************************************************
379 *
380 * FUNCTION: acpi_ds_load1_end_op
381 *
382 * PARAMETERS: walk_state - Current state of the parse tree walk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 *
384 * RETURN: Status
385 *
386 * DESCRIPTION: Ascending callback used during the loading of the namespace,
387 * both control methods and everything else.
388 *
389 ******************************************************************************/
390
Bob Moore28f55eb2005-12-02 18:27:00 -0500391acpi_status acpi_ds_load1_end_op(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Len Brown4be44fc2005-08-05 00:44:28 -0400393 union acpi_parse_object *op;
394 acpi_object_type object_type;
395 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Bob Mooreb229cf92006-04-21 17:15:00 -0400397 ACPI_FUNCTION_TRACE(ds_load1_end_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 op = walk_state->op;
Len Brown4be44fc2005-08-05 00:44:28 -0400400 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op,
401 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 /* We are only interested in opcodes that have an associated name */
404
405 if (!(walk_state->op_info->flags & (AML_NAMED | AML_FIELD))) {
Bob Moore28f55eb2005-12-02 18:27:00 -0500406 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408
409 /* Get the object type to determine if we should pop the scope */
410
411 object_type = walk_state->op_info->object_type;
412
413#ifndef ACPI_NO_METHOD_EXECUTION
414 if (walk_state->op_info->flags & AML_FIELD) {
Bob Moore28f55eb2005-12-02 18:27:00 -0500415 /*
416 * If we are executing a method, do not create any namespace objects
417 * during the load phase, only during execution.
418 */
419 if (!walk_state->method_node) {
420 if (walk_state->opcode == AML_FIELD_OP ||
421 walk_state->opcode == AML_BANK_FIELD_OP ||
422 walk_state->opcode == AML_INDEX_FIELD_OP) {
423 status =
424 acpi_ds_init_field_objects(op, walk_state);
425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
Bob Moore28f55eb2005-12-02 18:27:00 -0500427 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429
Bob Moore28f55eb2005-12-02 18:27:00 -0500430 /*
431 * If we are executing a method, do not create any namespace objects
432 * during the load phase, only during execution.
433 */
434 if (!walk_state->method_node) {
435 if (op->common.aml_opcode == AML_REGION_OP) {
436 status =
437 acpi_ex_create_region(op->named.data,
438 op->named.length,
Bob Moore967440e32006-06-23 17:04:00 -0400439 (acpi_adr_space_type) ((op->
440 common.
441 value.
442 arg)->
443 common.
444 value.
445 integer),
Bob Moore28f55eb2005-12-02 18:27:00 -0500446 walk_state);
447 if (ACPI_FAILURE(status)) {
448 return_ACPI_STATUS(status);
449 }
Lin Ming941f48b2008-04-10 19:06:41 +0400450 } else if (op->common.aml_opcode == AML_DATA_REGION_OP) {
451 status =
452 acpi_ex_create_region(op->named.data,
453 op->named.length,
454 REGION_DATA_TABLE,
455 walk_state);
456 if (ACPI_FAILURE(status)) {
457 return_ACPI_STATUS(status);
458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
460 }
461#endif
462
463 if (op->common.aml_opcode == AML_NAME_OP) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /* For Name opcode, get the object type from the argument */
466
467 if (op->common.value.arg) {
Len Brown4be44fc2005-08-05 00:44:28 -0400468 object_type = (acpi_ps_get_opcode_info((op->common.
469 value.arg)->
470 common.
471 aml_opcode))->
472 object_type;
Bob Moore28f55eb2005-12-02 18:27:00 -0500473
474 /* Set node type if we have a namespace node */
475
476 if (op->common.node) {
477 op->common.node->type = (u8) object_type;
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480 }
481
Bob Mooredefba1d2005-12-16 17:05:00 -0500482 /*
483 * If we are executing a method, do not create any namespace objects
484 * during the load phase, only during execution.
485 */
486 if (!walk_state->method_node) {
487 if (op->common.aml_opcode == AML_METHOD_OP) {
488 /*
489 * method_op pkg_length name_string method_flags term_list
490 *
491 * Note: We must create the method node/object pair as soon as we
Bob Moore967440e32006-06-23 17:04:00 -0400492 * see the method declaration. This allows later pass1 parsing
Bob Mooredefba1d2005-12-16 17:05:00 -0500493 * of invocations of the method (need to know the number of
494 * arguments.)
495 */
496 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
Bob Mooreb229cf92006-04-21 17:15:00 -0400497 "LOADING-Method: State=%p Op=%p NamedObj=%p\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500498 walk_state, op, op->named.node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Bob Mooredefba1d2005-12-16 17:05:00 -0500500 if (!acpi_ns_get_attached_object(op->named.node)) {
501 walk_state->operands[0] =
502 ACPI_CAST_PTR(void, op->named.node);
503 walk_state->num_operands = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Bob Mooredefba1d2005-12-16 17:05:00 -0500505 status =
506 acpi_ds_create_operands(walk_state,
507 op->common.value.
508 arg);
509 if (ACPI_SUCCESS(status)) {
510 status =
511 acpi_ex_create_method(op->named.
512 data,
513 op->named.
514 length,
515 walk_state);
516 }
Bob Moore967440e32006-06-23 17:04:00 -0400517
Bob Mooredefba1d2005-12-16 17:05:00 -0500518 walk_state->operands[0] = NULL;
519 walk_state->num_operands = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Bob Mooredefba1d2005-12-16 17:05:00 -0500521 if (ACPI_FAILURE(status)) {
522 return_ACPI_STATUS(status);
523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525 }
526 }
527
Bob Mooredefba1d2005-12-16 17:05:00 -0500528 /* Pop the scope stack (only if loading a table) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Bob Mooredefba1d2005-12-16 17:05:00 -0500530 if (!walk_state->method_node && acpi_ns_opens_scope(object_type)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400531 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
532 "(%s): Popping scope for Op %p\n",
533 acpi_ut_get_type_name(object_type), op));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Len Brown4be44fc2005-08-05 00:44:28 -0400535 status = acpi_ds_scope_stack_pop(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
537
Bob Moore28f55eb2005-12-02 18:27:00 -0500538 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541/*******************************************************************************
542 *
543 * FUNCTION: acpi_ds_load2_begin_op
544 *
545 * PARAMETERS: walk_state - Current state of the parse tree walk
Robert Moore44f6c012005-04-18 22:49:35 -0400546 * out_op - Wher to return op if a new one is created
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 *
548 * RETURN: Status
549 *
550 * DESCRIPTION: Descending callback used during the loading of ACPI tables.
551 *
552 ******************************************************************************/
553
554acpi_status
Bob Moore28f55eb2005-12-02 18:27:00 -0500555acpi_ds_load2_begin_op(struct acpi_walk_state *walk_state,
556 union acpi_parse_object **out_op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Len Brown4be44fc2005-08-05 00:44:28 -0400558 union acpi_parse_object *op;
559 struct acpi_namespace_node *node;
560 acpi_status status;
561 acpi_object_type object_type;
562 char *buffer_ptr;
Bob Moore13b572a2007-02-02 19:48:20 +0300563 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Bob Mooreb229cf92006-04-21 17:15:00 -0400565 ACPI_FUNCTION_TRACE(ds_load2_begin_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 op = walk_state->op;
Len Brown4be44fc2005-08-05 00:44:28 -0400568 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op,
569 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 if (op) {
Robert Moore88ac00f2005-05-26 00:00:00 -0400572 if ((walk_state->control_state) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400573 (walk_state->control_state->common.state ==
574 ACPI_CONTROL_CONDITIONAL_EXECUTING)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400575
Robert Moore88ac00f2005-05-26 00:00:00 -0400576 /* We are executing a while loop outside of a method */
577
Len Brown4be44fc2005-08-05 00:44:28 -0400578 status = acpi_ds_exec_begin_op(walk_state, out_op);
579 return_ACPI_STATUS(status);
Robert Moore88ac00f2005-05-26 00:00:00 -0400580 }
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /* We only care about Namespace opcodes here */
583
Robert Moore44f6c012005-04-18 22:49:35 -0400584 if ((!(walk_state->op_info->flags & AML_NSOPCODE) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400585 (walk_state->opcode != AML_INT_NAMEPATH_OP)) ||
586 (!(walk_state->op_info->flags & AML_NAMED))) {
Len Brown4be44fc2005-08-05 00:44:28 -0400587 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
589
Robert Moore44f6c012005-04-18 22:49:35 -0400590 /* Get the name we are going to enter or lookup in the namespace */
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (walk_state->opcode == AML_INT_NAMEPATH_OP) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 /* For Namepath op, get the path string */
595
596 buffer_ptr = op->common.value.string;
597 if (!buffer_ptr) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /* No name, just exit */
600
Len Brown4be44fc2005-08-05 00:44:28 -0400601 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
Len Brown4be44fc2005-08-05 00:44:28 -0400603 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /* Get name from the op */
605
Bob Moore967440e32006-06-23 17:04:00 -0400606 buffer_ptr = ACPI_CAST_PTR(char, &op->named.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
Len Brown4be44fc2005-08-05 00:44:28 -0400608 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 /* Get the namestring from the raw AML */
610
Len Brown4be44fc2005-08-05 00:44:28 -0400611 buffer_ptr =
612 acpi_ps_get_next_namestring(&walk_state->parser_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
614
615 /* Map the opcode into an internal object type */
616
617 object_type = walk_state->op_info->object_type;
618
Len Brown4be44fc2005-08-05 00:44:28 -0400619 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
620 "State=%p Op=%p Type=%X\n", walk_state, op,
621 object_type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 switch (walk_state->opcode) {
624 case AML_FIELD_OP:
625 case AML_BANK_FIELD_OP:
626 case AML_INDEX_FIELD_OP:
627
628 node = NULL;
629 status = AE_OK;
630 break;
631
632 case AML_INT_NAMEPATH_OP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /*
Robert Moore44f6c012005-04-18 22:49:35 -0400634 * The name_path is an object reference to an existing object.
635 * Don't enter the name into the namespace, but look it up
636 * for use later.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 */
Len Brown4be44fc2005-08-05 00:44:28 -0400638 status =
639 acpi_ns_lookup(walk_state->scope_info, buffer_ptr,
640 object_type, ACPI_IMODE_EXECUTE,
641 ACPI_NS_SEARCH_PARENT, walk_state, &(node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 break;
643
644 case AML_SCOPE_OP:
Lin Ming50b77ed2009-10-13 10:34:56 +0800645
646 /* Special case for Scope(\) -> refers to the Root node */
647
648 if (op && (op->named.node == acpi_gbl_root_node)) {
649 node = op->named.node;
650
651 status =
652 acpi_ds_scope_stack_push(node, object_type,
653 walk_state);
654 if (ACPI_FAILURE(status)) {
655 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
Lin Ming50b77ed2009-10-13 10:34:56 +0800657 } else {
658 /*
659 * The Path is an object reference to an existing object.
660 * Don't enter the name into the namespace, but look it up
661 * for use later.
662 */
663 status =
664 acpi_ns_lookup(walk_state->scope_info, buffer_ptr,
665 object_type, ACPI_IMODE_EXECUTE,
666 ACPI_NS_SEARCH_PARENT, walk_state,
667 &(node));
668 if (ACPI_FAILURE(status)) {
669#ifdef ACPI_ASL_COMPILER
670 if (status == AE_NOT_FOUND) {
671 status = AE_OK;
672 } else {
673 ACPI_ERROR_NAMESPACE(buffer_ptr,
674 status);
675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676#else
Lin Ming50b77ed2009-10-13 10:34:56 +0800677 ACPI_ERROR_NAMESPACE(buffer_ptr, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678#endif
Lin Ming50b77ed2009-10-13 10:34:56 +0800679 return_ACPI_STATUS(status);
680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
Bob Moore967440e32006-06-23 17:04:00 -0400682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 /*
684 * We must check to make sure that the target is
685 * one of the opcodes that actually opens a scope
686 */
687 switch (node->type) {
Bob Moore15f0c0d2007-02-02 19:48:20 +0300688 case ACPI_TYPE_ANY:
Len Brown4be44fc2005-08-05 00:44:28 -0400689 case ACPI_TYPE_LOCAL_SCOPE: /* Scope */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 case ACPI_TYPE_DEVICE:
691 case ACPI_TYPE_POWER:
692 case ACPI_TYPE_PROCESSOR:
693 case ACPI_TYPE_THERMAL:
694
695 /* These are acceptable types */
696 break;
697
698 case ACPI_TYPE_INTEGER:
699 case ACPI_TYPE_STRING:
700 case ACPI_TYPE_BUFFER:
701
702 /*
Bob Moore967440e32006-06-23 17:04:00 -0400703 * These types we will allow, but we will change the type. This
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 * enables some existing code of the form:
705 *
706 * Name (DEB, 0)
707 * Scope (DEB) { ... }
708 */
Bob Mooreb8e4d892006-01-27 16:43:00 -0500709 ACPI_WARNING((AE_INFO,
710 "Type override - [%4.4s] had invalid type (%s) for Scope operator, changed to (Scope)",
711 buffer_ptr,
712 acpi_ut_get_type_name(node->type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 node->type = ACPI_TYPE_ANY;
715 walk_state->scope_info->common.value = ACPI_TYPE_ANY;
716 break;
717
718 default:
719
720 /* All other types are an error */
721
Bob Mooreb8e4d892006-01-27 16:43:00 -0500722 ACPI_ERROR((AE_INFO,
723 "Invalid type (%s) for target of Scope operator [%4.4s]",
724 acpi_ut_get_type_name(node->type),
725 buffer_ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 return (AE_AML_OPERAND_TYPE);
728 }
729 break;
730
731 default:
732
733 /* All other opcodes */
734
735 if (op && op->common.node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 /* This op/node was previously entered into the namespace */
738
739 node = op->common.node;
740
Len Brown4be44fc2005-08-05 00:44:28 -0400741 if (acpi_ns_opens_scope(object_type)) {
742 status =
743 acpi_ds_scope_stack_push(node, object_type,
744 walk_state);
745 if (ACPI_FAILURE(status)) {
746 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
Bob Moore967440e32006-06-23 17:04:00 -0400749
Len Brown4be44fc2005-08-05 00:44:28 -0400750 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
752
753 /*
Bob Moore967440e32006-06-23 17:04:00 -0400754 * Enter the named type into the internal namespace. We enter the name
755 * as we go downward in the parse tree. Any necessary subobjects that
Robert Moore44f6c012005-04-18 22:49:35 -0400756 * involve arguments to the opcode must be created as we go back up the
757 * parse tree later.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 *
759 * Note: Name may already exist if we are executing a deferred opcode.
760 */
761 if (walk_state->deferred_node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 /* This name is already in the namespace, get the node */
764
765 node = walk_state->deferred_node;
766 status = AE_OK;
767 break;
768 }
769
Bob Moore13b572a2007-02-02 19:48:20 +0300770 flags = ACPI_NS_NO_UPSEARCH;
Bob Mooreec3153f2007-02-02 19:48:21 +0300771 if (walk_state->pass_number == ACPI_IMODE_EXECUTE) {
Bob Moore13b572a2007-02-02 19:48:20 +0300772
Bob Moored1fdda832007-02-02 19:48:21 +0300773 /* Execution mode, node cannot already exist, node is temporary */
Bob Moore13b572a2007-02-02 19:48:20 +0300774
Lin Ming7f0c8262009-08-13 14:03:15 +0800775 flags |= ACPI_NS_ERROR_IF_FOUND;
776
777 if (!
778 (walk_state->
779 parse_flags & ACPI_PARSE_MODULE_LEVEL)) {
780 flags |= ACPI_NS_TEMPORARY;
781 }
Bob Moore13b572a2007-02-02 19:48:20 +0300782 }
783
784 /* Add new entry or lookup existing entry */
Robert Moore88ac00f2005-05-26 00:00:00 -0400785
Len Brown4be44fc2005-08-05 00:44:28 -0400786 status =
787 acpi_ns_lookup(walk_state->scope_info, buffer_ptr,
Bob Moore13b572a2007-02-02 19:48:20 +0300788 object_type, ACPI_IMODE_LOAD_PASS2, flags,
789 walk_state, &node);
Bob Moorecca97b82008-04-10 19:06:44 +0400790
791 if (ACPI_SUCCESS(status) && (flags & ACPI_NS_TEMPORARY)) {
792 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
793 "***New Node [%4.4s] %p is temporary\n",
794 acpi_ut_get_node_name(node), node));
795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 break;
797 }
798
Len Brown4be44fc2005-08-05 00:44:28 -0400799 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500800 ACPI_ERROR_NAMESPACE(buffer_ptr, status);
Len Brown4be44fc2005-08-05 00:44:28 -0400801 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (!op) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /* Create a new op */
807
Len Brown4be44fc2005-08-05 00:44:28 -0400808 op = acpi_ps_alloc_op(walk_state->opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (!op) {
Len Brown4be44fc2005-08-05 00:44:28 -0400810 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812
813 /* Initialize the new op */
814
815 if (node) {
816 op->named.name = node->name.integer;
817 }
Robert Moore88ac00f2005-05-26 00:00:00 -0400818 *out_op = op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820
821 /*
822 * Put the Node in the "op" object that the parser uses, so we
823 * can get it again quickly when this scope is closed
824 */
825 op->common.node = node;
Len Brown4be44fc2005-08-05 00:44:28 -0400826 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829/*******************************************************************************
830 *
831 * FUNCTION: acpi_ds_load2_end_op
832 *
833 * PARAMETERS: walk_state - Current state of the parse tree walk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 *
835 * RETURN: Status
836 *
837 * DESCRIPTION: Ascending callback used during the loading of the namespace,
838 * both control methods and everything else.
839 *
840 ******************************************************************************/
841
Len Brown4be44fc2005-08-05 00:44:28 -0400842acpi_status acpi_ds_load2_end_op(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Len Brown4be44fc2005-08-05 00:44:28 -0400844 union acpi_parse_object *op;
845 acpi_status status = AE_OK;
846 acpi_object_type object_type;
847 struct acpi_namespace_node *node;
848 union acpi_parse_object *arg;
849 struct acpi_namespace_node *new_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850#ifndef ACPI_NO_METHOD_EXECUTION
Len Brown4be44fc2005-08-05 00:44:28 -0400851 u32 i;
Lin Ming941f48b2008-04-10 19:06:41 +0400852 u8 region_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853#endif
854
Bob Mooreb229cf92006-04-21 17:15:00 -0400855 ACPI_FUNCTION_TRACE(ds_load2_end_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 op = walk_state->op;
Len Brown4be44fc2005-08-05 00:44:28 -0400858 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Opcode [%s] Op %p State %p\n",
859 walk_state->op_info->name, op, walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Robert Moore88ac00f2005-05-26 00:00:00 -0400861 /* Check if opcode had an associated namespace object */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 if (!(walk_state->op_info->flags & AML_NSOBJECT)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400864 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 }
866
867 if (op->common.aml_opcode == AML_SCOPE_OP) {
Len Brown4be44fc2005-08-05 00:44:28 -0400868 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
869 "Ending scope Op=%p State=%p\n", op,
870 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 object_type = walk_state->op_info->object_type;
874
875 /*
876 * Get the Node/name from the earlier lookup
877 * (It was saved in the *op structure)
878 */
879 node = op->common.node;
880
881 /*
882 * Put the Node on the object stack (Contains the ACPI Name of
883 * this object)
884 */
Len Brown4be44fc2005-08-05 00:44:28 -0400885 walk_state->operands[0] = (void *)node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 walk_state->num_operands = 1;
887
888 /* Pop the scope stack */
889
Len Brown4be44fc2005-08-05 00:44:28 -0400890 if (acpi_ns_opens_scope(object_type) &&
891 (op->common.aml_opcode != AML_INT_METHODCALL_OP)) {
892 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
893 "(%s) Popping scope for Op %p\n",
894 acpi_ut_get_type_name(object_type), op));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Len Brown4be44fc2005-08-05 00:44:28 -0400896 status = acpi_ds_scope_stack_pop(walk_state);
897 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 goto cleanup;
899 }
900 }
901
902 /*
903 * Named operations are as follows:
904 *
905 * AML_ALIAS
906 * AML_BANKFIELD
907 * AML_CREATEBITFIELD
908 * AML_CREATEBYTEFIELD
909 * AML_CREATEDWORDFIELD
910 * AML_CREATEFIELD
911 * AML_CREATEQWORDFIELD
912 * AML_CREATEWORDFIELD
913 * AML_DATA_REGION
914 * AML_DEVICE
915 * AML_EVENT
916 * AML_FIELD
917 * AML_INDEXFIELD
918 * AML_METHOD
919 * AML_METHODCALL
920 * AML_MUTEX
921 * AML_NAME
922 * AML_NAMEDFIELD
923 * AML_OPREGION
924 * AML_POWERRES
925 * AML_PROCESSOR
926 * AML_SCOPE
927 * AML_THERMALZONE
928 */
929
Len Brown4be44fc2005-08-05 00:44:28 -0400930 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
Bob Mooreb229cf92006-04-21 17:15:00 -0400931 "Create-Load [%s] State=%p Op=%p NamedObj=%p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400932 acpi_ps_get_opcode_name(op->common.aml_opcode),
933 walk_state, op, node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 /* Decode the opcode */
936
937 arg = op->common.value.arg;
938
939 switch (walk_state->op_info->type) {
940#ifndef ACPI_NO_METHOD_EXECUTION
941
942 case AML_TYPE_CREATE_FIELD:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 /*
944 * Create the field object, but the field buffer and index must
945 * be evaluated later during the execution phase
946 */
Len Brown4be44fc2005-08-05 00:44:28 -0400947 status = acpi_ds_create_buffer_field(op, walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 break;
949
Len Brown4be44fc2005-08-05 00:44:28 -0400950 case AML_TYPE_NAMED_FIELD:
Bob Moore28f55eb2005-12-02 18:27:00 -0500951 /*
952 * If we are executing a method, initialize the field
953 */
954 if (walk_state->method_node) {
955 status = acpi_ds_init_field_objects(op, walk_state);
956 }
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 switch (op->common.aml_opcode) {
959 case AML_INDEX_FIELD_OP:
960
Len Brown4be44fc2005-08-05 00:44:28 -0400961 status =
962 acpi_ds_create_index_field(op,
963 (acpi_handle) arg->
964 common.node, walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 break;
966
967 case AML_BANK_FIELD_OP:
968
Len Brown4be44fc2005-08-05 00:44:28 -0400969 status =
970 acpi_ds_create_bank_field(op, arg->common.node,
971 walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 break;
973
974 case AML_FIELD_OP:
975
Len Brown4be44fc2005-08-05 00:44:28 -0400976 status =
977 acpi_ds_create_field(op, arg->common.node,
978 walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 break;
980
981 default:
982 /* All NAMED_FIELD opcodes must be handled above */
983 break;
984 }
985 break;
986
Len Brown4be44fc2005-08-05 00:44:28 -0400987 case AML_TYPE_NAMED_SIMPLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Len Brown4be44fc2005-08-05 00:44:28 -0400989 status = acpi_ds_create_operands(walk_state, arg);
990 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 goto cleanup;
992 }
993
994 switch (op->common.aml_opcode) {
995 case AML_PROCESSOR_OP:
996
Len Brown4be44fc2005-08-05 00:44:28 -0400997 status = acpi_ex_create_processor(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 break;
999
1000 case AML_POWER_RES_OP:
1001
Len Brown4be44fc2005-08-05 00:44:28 -04001002 status = acpi_ex_create_power_resource(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 break;
1004
1005 case AML_MUTEX_OP:
1006
Len Brown4be44fc2005-08-05 00:44:28 -04001007 status = acpi_ex_create_mutex(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 break;
1009
1010 case AML_EVENT_OP:
1011
Len Brown4be44fc2005-08-05 00:44:28 -04001012 status = acpi_ex_create_event(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 break;
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 case AML_ALIAS_OP:
1016
Len Brown4be44fc2005-08-05 00:44:28 -04001017 status = acpi_ex_create_alias(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 break;
1019
1020 default:
1021 /* Unknown opcode */
1022
1023 status = AE_OK;
1024 goto cleanup;
1025 }
1026
1027 /* Delete operands */
1028
1029 for (i = 1; i < walk_state->num_operands; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -04001030 acpi_ut_remove_reference(walk_state->operands[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 walk_state->operands[i] = NULL;
1032 }
1033
1034 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001035#endif /* ACPI_NO_METHOD_EXECUTION */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 case AML_TYPE_NAMED_COMPLEX:
1038
1039 switch (op->common.aml_opcode) {
1040#ifndef ACPI_NO_METHOD_EXECUTION
1041 case AML_REGION_OP:
Lin Ming941f48b2008-04-10 19:06:41 +04001042 case AML_DATA_REGION_OP:
1043
1044 if (op->common.aml_opcode == AML_REGION_OP) {
1045 region_space = (acpi_adr_space_type)
1046 ((op->common.value.arg)->common.value.
1047 integer);
1048 } else {
1049 region_space = REGION_DATA_TABLE;
1050 }
Bob Moore28f55eb2005-12-02 18:27:00 -05001051
1052 /*
1053 * If we are executing a method, initialize the region
1054 */
1055 if (walk_state->method_node) {
1056 status =
1057 acpi_ex_create_region(op->named.data,
1058 op->named.length,
Lin Ming941f48b2008-04-10 19:06:41 +04001059 region_space,
Bob Moore28f55eb2005-12-02 18:27:00 -05001060 walk_state);
1061 if (ACPI_FAILURE(status)) {
1062 return (status);
1063 }
1064 }
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 /*
Robert Moore44f6c012005-04-18 22:49:35 -04001067 * The op_region is not fully parsed at this time. Only valid
1068 * argument is the space_id. (We must save the address of the
1069 * AML of the address and length operands)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 */
Bob Moore967440e32006-06-23 17:04:00 -04001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 /*
1073 * If we have a valid region, initialize it
1074 * Namespace is NOT locked at this point.
1075 */
Len Brown4be44fc2005-08-05 00:44:28 -04001076 status =
1077 acpi_ev_initialize_region
1078 (acpi_ns_get_attached_object(node), FALSE);
1079 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 /*
1081 * If AE_NOT_EXIST is returned, it is not fatal
1082 * because many regions get created before a handler
1083 * is installed for said region.
1084 */
1085 if (AE_NOT_EXIST == status) {
1086 status = AE_OK;
1087 }
1088 }
1089 break;
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 case AML_NAME_OP:
1092
Len Brown4be44fc2005-08-05 00:44:28 -04001093 status = acpi_ds_create_node(walk_state, node, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 break;
Bob Mooredefba1d2005-12-16 17:05:00 -05001095
1096 case AML_METHOD_OP:
1097 /*
1098 * method_op pkg_length name_string method_flags term_list
1099 *
1100 * Note: We must create the method node/object pair as soon as we
Bob Moore967440e32006-06-23 17:04:00 -04001101 * see the method declaration. This allows later pass1 parsing
Bob Mooredefba1d2005-12-16 17:05:00 -05001102 * of invocations of the method (need to know the number of
1103 * arguments.)
1104 */
1105 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
Bob Mooreb229cf92006-04-21 17:15:00 -04001106 "LOADING-Method: State=%p Op=%p NamedObj=%p\n",
Bob Mooredefba1d2005-12-16 17:05:00 -05001107 walk_state, op, op->named.node));
1108
1109 if (!acpi_ns_get_attached_object(op->named.node)) {
1110 walk_state->operands[0] =
1111 ACPI_CAST_PTR(void, op->named.node);
1112 walk_state->num_operands = 1;
1113
1114 status =
1115 acpi_ds_create_operands(walk_state,
1116 op->common.value.
1117 arg);
1118 if (ACPI_SUCCESS(status)) {
1119 status =
1120 acpi_ex_create_method(op->named.
1121 data,
1122 op->named.
1123 length,
1124 walk_state);
1125 }
1126 walk_state->operands[0] = NULL;
1127 walk_state->num_operands = 0;
1128
1129 if (ACPI_FAILURE(status)) {
1130 return_ACPI_STATUS(status);
1131 }
1132 }
1133 break;
1134
Len Brown4be44fc2005-08-05 00:44:28 -04001135#endif /* ACPI_NO_METHOD_EXECUTION */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 default:
1138 /* All NAMED_COMPLEX opcodes must be handled above */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 break;
1140 }
1141 break;
1142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 case AML_CLASS_INTERNAL:
1144
1145 /* case AML_INT_NAMEPATH_OP: */
1146 break;
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 case AML_CLASS_METHOD_CALL:
1149
Len Brown4be44fc2005-08-05 00:44:28 -04001150 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
Bob Mooreb229cf92006-04-21 17:15:00 -04001151 "RESOLVING-MethodCall: State=%p Op=%p NamedObj=%p\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001152 walk_state, op, node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154 /*
1155 * Lookup the method name and save the Node
1156 */
Len Brown4be44fc2005-08-05 00:44:28 -04001157 status =
1158 acpi_ns_lookup(walk_state->scope_info,
1159 arg->common.value.string, ACPI_TYPE_ANY,
1160 ACPI_IMODE_LOAD_PASS2,
1161 ACPI_NS_SEARCH_PARENT |
1162 ACPI_NS_DONT_OPEN_SCOPE, walk_state,
1163 &(new_node));
1164 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 /*
1166 * Make sure that what we found is indeed a method
Robert Moore44f6c012005-04-18 22:49:35 -04001167 * We didn't search for a method on purpose, to see if the name
1168 * would resolve
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 */
1170 if (new_node->type != ACPI_TYPE_METHOD) {
1171 status = AE_AML_OPERAND_TYPE;
1172 }
1173
Robert Moore44f6c012005-04-18 22:49:35 -04001174 /* We could put the returned object (Node) on the object stack for
1175 * later, but for now, we will put it in the "op" object that the
1176 * parser uses, so we can get it again at the end of this scope
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 */
1178 op->common.node = new_node;
Len Brown4be44fc2005-08-05 00:44:28 -04001179 } else {
Bob Mooreb8e4d892006-01-27 16:43:00 -05001180 ACPI_ERROR_NAMESPACE(arg->common.value.string, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
1182 break;
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 default:
1185 break;
1186 }
1187
Len Brown4be44fc2005-08-05 00:44:28 -04001188 cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 /* Remove the Node pushed at the very beginning */
1191
1192 walk_state->operands[0] = NULL;
1193 walk_state->num_operands = 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001194 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}