[ACPI] ACPICA 20051202
[deliverable/linux.git] / drivers / acpi / dispatcher / dswload.c
CommitLineData
1da177e4
LT
1/******************************************************************************
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
1da177e4
LT
44#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
73459f73 52#ifdef ACPI_ASL_COMPILER
1da177e4
LT
53#include <acpi/acdisasm.h>
54#endif
55
56#define _COMPONENT ACPI_DISPATCHER
4be44fcd 57ACPI_MODULE_NAME("dswload")
1da177e4
LT
58
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 ******************************************************************************/
1da177e4 71acpi_status
4be44fcd 72acpi_ds_init_callbacks(struct acpi_walk_state *walk_state, u32 pass_number)
1da177e4
LT
73{
74
75 switch (pass_number) {
76 case 1:
4be44fcd
LB
77 walk_state->parse_flags = ACPI_PARSE_LOAD_PASS1 |
78 ACPI_PARSE_DELETE_TREE;
1da177e4
LT
79 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:
4be44fcd
LB
84 walk_state->parse_flags = ACPI_PARSE_LOAD_PASS1 |
85 ACPI_PARSE_DELETE_TREE;
1da177e4
LT
86 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
4be44fcd
LB
92 walk_state->parse_flags |= ACPI_PARSE_EXECUTE |
93 ACPI_PARSE_DELETE_TREE;
1da177e4
LT
94 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
1da177e4
LT
106/*******************************************************************************
107 *
108 * FUNCTION: acpi_ds_load1_begin_op
109 *
110 * PARAMETERS: walk_state - Current state of the parse tree walk
44f6c012 111 * out_op - Where to return op if a new one is created
1da177e4
LT
112 *
113 * RETURN: Status
114 *
115 * DESCRIPTION: Descending callback used during the loading of ACPI tables.
116 *
117 ******************************************************************************/
118
119acpi_status
4be44fcd
LB
120acpi_ds_load1_begin_op(struct acpi_walk_state * walk_state,
121 union acpi_parse_object ** out_op)
1da177e4 122{
4be44fcd
LB
123 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;
1da177e4 129
28f55ebc 130 ACPI_FUNCTION_TRACE("ds_load1_begin_op");
1da177e4
LT
131
132 op = walk_state->op;
4be44fcd
LB
133 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op,
134 walk_state));
1da177e4
LT
135
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)) {
1da177e4 140 *out_op = op;
28f55ebc 141 return_ACPI_STATUS(AE_OK);
1da177e4
LT
142 }
143
144 /* Check if this object has already been installed in the namespace */
145
146 if (op->common.node) {
147 *out_op = op;
28f55ebc 148 return_ACPI_STATUS(AE_OK);
1da177e4
LT
149 }
150 }
151
4be44fcd 152 path = acpi_ps_get_next_namestring(&walk_state->parser_state);
1da177e4
LT
153
154 /* Map the raw opcode into an internal object type */
155
156 object_type = walk_state->op_info->object_type;
157
4be44fcd
LB
158 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
159 "State=%p Op=%p [%s]\n", walk_state, op,
160 acpi_ut_get_type_name(object_type)));
1da177e4
LT
161
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 */
4be44fcd
LB
170 status =
171 acpi_ns_lookup(walk_state->scope_info, path, object_type,
172 ACPI_IMODE_EXECUTE, ACPI_NS_SEARCH_PARENT,
173 walk_state, &(node));
73459f73 174#ifdef ACPI_ASL_COMPILER
1da177e4
LT
175 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 */
4be44fcd
LB
181 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));
1da177e4
LT
187 }
188#endif
4be44fcd
LB
189 if (ACPI_FAILURE(status)) {
190 ACPI_REPORT_NSERROR(path, status);
28f55ebc 191 return_ACPI_STATUS(status);
1da177e4
LT
192 }
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) {
4be44fcd 199 case ACPI_TYPE_LOCAL_SCOPE: /* Scope */
1da177e4
LT
200 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 *
44f6c012
RM
219 * Note: silently change the type here. On the second pass, we will report
220 * a warning
1da177e4
LT
221 */
222
4be44fcd
LB
223 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)));
1da177e4
LT
227
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
4be44fcd 236 ACPI_REPORT_ERROR(("Invalid type (%s) for target of Scope operator [%4.4s] (Cannot override)\n", acpi_ut_get_type_name(node->type), path));
1da177e4 237
28f55ebc 238 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
1da177e4
LT
239 }
240 break;
241
1da177e4
LT
242 default:
243
244 /*
44f6c012
RM
245 * For all other named opcodes, we will enter the name into
246 * the namespace.
1da177e4
LT
247 *
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 */
28f55ebc 260
1da177e4
LT
261 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
28f55ebc
BM
269 /*
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
1da177e4
LT
279 flags = ACPI_NS_NO_UPSEARCH;
280 if ((walk_state->opcode != AML_SCOPE_OP) &&
4be44fcd 281 (!(walk_state->parse_flags & ACPI_PARSE_DEFERRED_OP))) {
1da177e4 282 flags |= ACPI_NS_ERROR_IF_FOUND;
4be44fcd
LB
283 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)));
1da177e4
LT
290 }
291
292 /*
293 * Enter the named type into the internal namespace. We enter the name
44f6c012
RM
294 * 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.
1da177e4 297 */
4be44fcd
LB
298 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);
28f55ebc 304 return_ACPI_STATUS(status);
1da177e4
LT
305 }
306 break;
307 }
308
1da177e4
LT
309 /* Common exit */
310
311 if (!op) {
312 /* Create a new op */
313
4be44fcd 314 op = acpi_ps_alloc_op(walk_state->opcode);
1da177e4 315 if (!op) {
28f55ebc 316 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
317 }
318 }
319
28f55ebc 320 /* Initialize the op */
1da177e4
LT
321
322#if (defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY))
c51a4de8 323 op->named.path = ACPI_CAST_PTR(u8, path);
1da177e4
LT
324#endif
325
28f55ebc
BM
326 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
4be44fcd
LB
335 acpi_ps_append_arg(acpi_ps_get_parent_scope(&walk_state->parser_state),
336 op);
1da177e4 337 *out_op = op;
28f55ebc 338 return_ACPI_STATUS(status);
1da177e4
LT
339}
340
1da177e4
LT
341/*******************************************************************************
342 *
343 * FUNCTION: acpi_ds_load1_end_op
344 *
345 * PARAMETERS: walk_state - Current state of the parse tree walk
1da177e4
LT
346 *
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
28f55ebc 354acpi_status acpi_ds_load1_end_op(struct acpi_walk_state *walk_state)
1da177e4 355{
4be44fcd
LB
356 union acpi_parse_object *op;
357 acpi_object_type object_type;
358 acpi_status status = AE_OK;
1da177e4 359
28f55ebc 360 ACPI_FUNCTION_TRACE("ds_load1_end_op");
1da177e4
LT
361
362 op = walk_state->op;
4be44fcd
LB
363 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op,
364 walk_state));
1da177e4
LT
365
366 /* We are only interested in opcodes that have an associated name */
367
368 if (!(walk_state->op_info->flags & (AML_NAMED | AML_FIELD))) {
28f55ebc 369 return_ACPI_STATUS(AE_OK);
1da177e4
LT
370 }
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) {
28f55ebc
BM
378 /*
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 }
1da177e4 389 }
28f55ebc 390 return_ACPI_STATUS(status);
1da177e4
LT
391 }
392
28f55ebc
BM
393 /*
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 }
1da177e4
LT
409 }
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) {
4be44fcd
LB
417 object_type = (acpi_ps_get_opcode_info((op->common.
418 value.arg)->
419 common.
420 aml_opcode))->
421 object_type;
28f55ebc
BM
422
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 }
1da177e4
LT
428 }
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 */
4be44fcd
LB
440 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
441 "LOADING-Method: State=%p Op=%p named_obj=%p\n",
442 walk_state, op, op->named.node));
1da177e4 443
4be44fcd
LB
444 if (!acpi_ns_get_attached_object(op->named.node)) {
445 walk_state->operands[0] = (void *)op->named.node;
1da177e4
LT
446 walk_state->num_operands = 1;
447
4be44fcd
LB
448 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);
1da177e4
LT
455 }
456 walk_state->operands[0] = NULL;
457 walk_state->num_operands = 0;
458
4be44fcd 459 if (ACPI_FAILURE(status)) {
28f55ebc 460 return_ACPI_STATUS(status);
1da177e4
LT
461 }
462 }
463 }
464
465 /* Pop the scope stack */
466
4be44fcd
LB
467 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));
1da177e4 471
4be44fcd 472 status = acpi_ds_scope_stack_pop(walk_state);
1da177e4
LT
473 }
474
28f55ebc 475 return_ACPI_STATUS(status);
1da177e4
LT
476}
477
1da177e4
LT
478/*******************************************************************************
479 *
480 * FUNCTION: acpi_ds_load2_begin_op
481 *
482 * PARAMETERS: walk_state - Current state of the parse tree walk
44f6c012 483 * out_op - Wher to return op if a new one is created
1da177e4
LT
484 *
485 * RETURN: Status
486 *
487 * DESCRIPTION: Descending callback used during the loading of ACPI tables.
488 *
489 ******************************************************************************/
490
491acpi_status
28f55ebc
BM
492acpi_ds_load2_begin_op(struct acpi_walk_state *walk_state,
493 union acpi_parse_object **out_op)
1da177e4 494{
4be44fcd
LB
495 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;
1da177e4 500
4be44fcd 501 ACPI_FUNCTION_TRACE("ds_load2_begin_op");
1da177e4
LT
502
503 op = walk_state->op;
4be44fcd
LB
504 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op,
505 walk_state));
1da177e4
LT
506
507 if (op) {
88ac00f5 508 if ((walk_state->control_state) &&
4be44fcd
LB
509 (walk_state->control_state->common.state ==
510 ACPI_CONTROL_CONDITIONAL_EXECUTING)) {
88ac00f5
RM
511 /* We are executing a while loop outside of a method */
512
4be44fcd
LB
513 status = acpi_ds_exec_begin_op(walk_state, out_op);
514 return_ACPI_STATUS(status);
88ac00f5
RM
515 }
516
1da177e4
LT
517 /* We only care about Namespace opcodes here */
518
44f6c012 519 if ((!(walk_state->op_info->flags & AML_NSOPCODE) &&
4be44fcd
LB
520 (walk_state->opcode != AML_INT_NAMEPATH_OP)) ||
521 (!(walk_state->op_info->flags & AML_NAMED))) {
aff8c277 522#ifdef ACPI_ENABLE_MODULE_LEVEL_CODE
44f6c012 523 if ((walk_state->op_info->class == AML_CLASS_EXECUTE) ||
4be44fcd 524 (walk_state->op_info->class == AML_CLASS_CONTROL)) {
aff8c277 525
4be44fcd
LB
526 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));
88ac00f5
RM
530
531 /* Executing a type1 or type2 opcode outside of a method */
532
4be44fcd
LB
533 status =
534 acpi_ds_exec_begin_op(walk_state, out_op);
535 return_ACPI_STATUS(status);
44f6c012 536 }
aff8c277 537#endif
4be44fcd 538 return_ACPI_STATUS(AE_OK);
1da177e4
LT
539 }
540
44f6c012
RM
541 /* Get the name we are going to enter or lookup in the namespace */
542
1da177e4
LT
543 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
4be44fcd 550 return_ACPI_STATUS(AE_OK);
1da177e4 551 }
4be44fcd 552 } else {
1da177e4
LT
553 /* Get name from the op */
554
4be44fcd 555 buffer_ptr = (char *)&op->named.name;
1da177e4 556 }
4be44fcd 557 } else {
1da177e4
LT
558 /* Get the namestring from the raw AML */
559
4be44fcd
LB
560 buffer_ptr =
561 acpi_ps_get_next_namestring(&walk_state->parser_state);
1da177e4
LT
562 }
563
564 /* Map the opcode into an internal object type */
565
566 object_type = walk_state->op_info->object_type;
567
4be44fcd
LB
568 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
569 "State=%p Op=%p Type=%X\n", walk_state, op,
570 object_type));
1da177e4
LT
571
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 /*
44f6c012
RM
584 * 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.
1da177e4 587 */
4be44fcd
LB
588 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));
1da177e4
LT
592 break;
593
594 case AML_SCOPE_OP:
595
596 /*
44f6c012
RM
597 * 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.
1da177e4 600 */
4be44fcd
LB
601 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)) {
73459f73 606#ifdef ACPI_ASL_COMPILER
1da177e4
LT
607 if (status == AE_NOT_FOUND) {
608 status = AE_OK;
4be44fcd
LB
609 } else {
610 ACPI_REPORT_NSERROR(buffer_ptr, status);
1da177e4
LT
611 }
612#else
4be44fcd 613 ACPI_REPORT_NSERROR(buffer_ptr, status);
1da177e4 614#endif
4be44fcd 615 return_ACPI_STATUS(status);
1da177e4
LT
616 }
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) {
4be44fcd 622 case ACPI_TYPE_LOCAL_SCOPE: /* Scope */
1da177e4
LT
623 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
4be44fcd 643 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)));
1da177e4
LT
644
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
4be44fcd 653 ACPI_REPORT_ERROR(("Invalid type (%s) for target of Scope operator [%4.4s]\n", acpi_ut_get_type_name(node->type), buffer_ptr));
1da177e4
LT
654
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
4be44fcd
LB
668 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);
1da177e4
LT
674 }
675
676 }
4be44fcd 677 return_ACPI_STATUS(AE_OK);
1da177e4
LT
678 }
679
680 /*
681 * Enter the named type into the internal namespace. We enter the name
44f6c012
RM
682 * 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.
1da177e4
LT
685 *
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
88ac00f5
RM
696 /* Add new entry into namespace */
697
4be44fcd
LB
698 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));
1da177e4
LT
702 break;
703 }
704
4be44fcd
LB
705 if (ACPI_FAILURE(status)) {
706 ACPI_REPORT_NSERROR(buffer_ptr, status);
707 return_ACPI_STATUS(status);
1da177e4
LT
708 }
709
1da177e4
LT
710 if (!op) {
711 /* Create a new op */
712
4be44fcd 713 op = acpi_ps_alloc_op(walk_state->opcode);
1da177e4 714 if (!op) {
4be44fcd 715 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
716 }
717
718 /* Initialize the new op */
719
720 if (node) {
721 op->named.name = node->name.integer;
722 }
88ac00f5 723 *out_op = op;
1da177e4
LT
724 }
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
4be44fcd 732 return_ACPI_STATUS(status);
1da177e4
LT
733}
734
1da177e4
LT
735/*******************************************************************************
736 *
737 * FUNCTION: acpi_ds_load2_end_op
738 *
739 * PARAMETERS: walk_state - Current state of the parse tree walk
1da177e4
LT
740 *
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
4be44fcd 748acpi_status acpi_ds_load2_end_op(struct acpi_walk_state *walk_state)
1da177e4 749{
4be44fcd
LB
750 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;
1da177e4 756#ifndef ACPI_NO_METHOD_EXECUTION
4be44fcd 757 u32 i;
1da177e4
LT
758#endif
759
4be44fcd 760 ACPI_FUNCTION_TRACE("ds_load2_end_op");
1da177e4
LT
761
762 op = walk_state->op;
4be44fcd
LB
763 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Opcode [%s] Op %p State %p\n",
764 walk_state->op_info->name, op, walk_state));
1da177e4 765
88ac00f5 766 /* Check if opcode had an associated namespace object */
1da177e4
LT
767
768 if (!(walk_state->op_info->flags & AML_NSOBJECT)) {
88ac00f5 769#ifndef ACPI_NO_METHOD_EXECUTION
aff8c277 770#ifdef ACPI_ENABLE_MODULE_LEVEL_CODE
88ac00f5
RM
771 /* No namespace object. Executable opcode? */
772
773 if ((walk_state->op_info->class == AML_CLASS_EXECUTE) ||
4be44fcd
LB
774 (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));
88ac00f5
RM
779
780 /* Executing a type1 or type2 opcode outside of a method */
781
4be44fcd
LB
782 status = acpi_ds_exec_end_op(walk_state);
783 return_ACPI_STATUS(status);
88ac00f5 784 }
aff8c277 785#endif
88ac00f5 786#endif
4be44fcd 787 return_ACPI_STATUS(AE_OK);
1da177e4
LT
788 }
789
790 if (op->common.aml_opcode == AML_SCOPE_OP) {
4be44fcd
LB
791 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
792 "Ending scope Op=%p State=%p\n", op,
793 walk_state));
1da177e4
LT
794 }
795
1da177e4
LT
796 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 */
4be44fcd 808 walk_state->operands[0] = (void *)node;
1da177e4
LT
809 walk_state->num_operands = 1;
810
811 /* Pop the scope stack */
812
4be44fcd
LB
813 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));
1da177e4 818
4be44fcd
LB
819 status = acpi_ds_scope_stack_pop(walk_state);
820 if (ACPI_FAILURE(status)) {
1da177e4
LT
821 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
4be44fcd
LB
853 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));
1da177e4
LT
857
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 */
4be44fcd 871 status = acpi_ds_create_buffer_field(op, walk_state);
1da177e4
LT
872 break;
873
4be44fcd 874 case AML_TYPE_NAMED_FIELD:
1da177e4 875
28f55ebc
BM
876 /*
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
1da177e4
LT
883 switch (op->common.aml_opcode) {
884 case AML_INDEX_FIELD_OP:
885
4be44fcd
LB
886 status =
887 acpi_ds_create_index_field(op,
888 (acpi_handle) arg->
889 common.node, walk_state);
1da177e4
LT
890 break;
891
892 case AML_BANK_FIELD_OP:
893
4be44fcd
LB
894 status =
895 acpi_ds_create_bank_field(op, arg->common.node,
896 walk_state);
1da177e4
LT
897 break;
898
899 case AML_FIELD_OP:
900
4be44fcd
LB
901 status =
902 acpi_ds_create_field(op, arg->common.node,
903 walk_state);
1da177e4
LT
904 break;
905
906 default:
907 /* All NAMED_FIELD opcodes must be handled above */
908 break;
909 }
910 break;
911
4be44fcd 912 case AML_TYPE_NAMED_SIMPLE:
1da177e4 913
4be44fcd
LB
914 status = acpi_ds_create_operands(walk_state, arg);
915 if (ACPI_FAILURE(status)) {
1da177e4
LT
916 goto cleanup;
917 }
918
919 switch (op->common.aml_opcode) {
920 case AML_PROCESSOR_OP:
921
4be44fcd 922 status = acpi_ex_create_processor(walk_state);
1da177e4
LT
923 break;
924
925 case AML_POWER_RES_OP:
926
4be44fcd 927 status = acpi_ex_create_power_resource(walk_state);
1da177e4
LT
928 break;
929
930 case AML_MUTEX_OP:
931
4be44fcd 932 status = acpi_ex_create_mutex(walk_state);
1da177e4
LT
933 break;
934
935 case AML_EVENT_OP:
936
4be44fcd 937 status = acpi_ex_create_event(walk_state);
1da177e4
LT
938 break;
939
940 case AML_DATA_REGION_OP:
941
4be44fcd 942 status = acpi_ex_create_table_region(walk_state);
1da177e4
LT
943 break;
944
945 case AML_ALIAS_OP:
946
4be44fcd 947 status = acpi_ex_create_alias(walk_state);
1da177e4
LT
948 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++) {
4be44fcd 960 acpi_ut_remove_reference(walk_state->operands[i]);
1da177e4
LT
961 walk_state->operands[i] = NULL;
962 }
963
964 break;
4be44fcd 965#endif /* ACPI_NO_METHOD_EXECUTION */
1da177e4
LT
966
967 case AML_TYPE_NAMED_COMPLEX:
968
969 switch (op->common.aml_opcode) {
970#ifndef ACPI_NO_METHOD_EXECUTION
971 case AML_REGION_OP:
28f55ebc
BM
972
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
1da177e4 990 /*
44f6c012
RM
991 * 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)
1da177e4
LT
994 */
995 /*
996 * If we have a valid region, initialize it
997 * Namespace is NOT locked at this point.
998 */
4be44fcd
LB
999 status =
1000 acpi_ev_initialize_region
1001 (acpi_ns_get_attached_object(node), FALSE);
1002 if (ACPI_FAILURE(status)) {
1da177e4
LT
1003 /*
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
1da177e4
LT
1014 case AML_NAME_OP:
1015
4be44fcd 1016 status = acpi_ds_create_node(walk_state, node, op);
1da177e4 1017 break;
4be44fcd 1018#endif /* ACPI_NO_METHOD_EXECUTION */
1da177e4
LT
1019
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
1da177e4
LT
1027 case AML_CLASS_INTERNAL:
1028
1029 /* case AML_INT_NAMEPATH_OP: */
1030 break;
1031
1da177e4
LT
1032 case AML_CLASS_METHOD_CALL:
1033
4be44fcd
LB
1034 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
1035 "RESOLVING-method_call: State=%p Op=%p named_obj=%p\n",
1036 walk_state, op, node));
1da177e4
LT
1037
1038 /*
1039 * Lookup the method name and save the Node
1040 */
4be44fcd
LB
1041 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)) {
bd6dbdf3 1049
1da177e4
LT
1050 /*
1051 * Make sure that what we found is indeed a method
44f6c012
RM
1052 * We didn't search for a method on purpose, to see if the name
1053 * would resolve
1da177e4
LT
1054 */
1055 if (new_node->type != ACPI_TYPE_METHOD) {
1056 status = AE_AML_OPERAND_TYPE;
1057 }
1058
44f6c012
RM
1059 /* 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
1da177e4
LT
1062 */
1063 op->common.node = new_node;
4be44fcd
LB
1064 } else {
1065 ACPI_REPORT_NSERROR(arg->common.value.string, status);
1da177e4
LT
1066 }
1067 break;
1068
1da177e4
LT
1069 default:
1070 break;
1071 }
1072
4be44fcd 1073 cleanup:
1da177e4
LT
1074
1075 /* Remove the Node pushed at the very beginning */
1076
1077 walk_state->operands[0] = NULL;
1078 walk_state->num_operands = 0;
4be44fcd 1079 return_ACPI_STATUS(status);
1da177e4 1080}
This page took 0.099889 seconds and 5 git commands to generate.