1 /******************************************************************************
 
   3  * Module Name: dswload - Dispatcher namespace load callbacks
 
   5  *****************************************************************************/
 
   8  * Copyright (C) 2000 - 2008, Intel Corp.
 
  11  * Redistribution and use in source and binary forms, with or without
 
  12  * modification, are permitted provided that the following conditions
 
  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.
 
  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.
 
  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.
 
  44 #include <acpi/acpi.h>
 
  53 #ifdef ACPI_ASL_COMPILER
 
  54 #include <acpi/acdisasm.h>
 
  57 #define _COMPONENT          ACPI_DISPATCHER
 
  58 ACPI_MODULE_NAME("dswload")
 
  60 /*******************************************************************************
 
  62  * FUNCTION:    acpi_ds_init_callbacks
 
  64  * PARAMETERS:  walk_state      - Current state of the parse tree walk
 
  65  *              pass_number     - 1, 2, or 3
 
  69  * DESCRIPTION: Init walk state callbacks
 
  71  ******************************************************************************/
 
  73 acpi_ds_init_callbacks(struct acpi_walk_state *walk_state, u32 pass_number)
 
  76         switch (pass_number) {
 
  78                 walk_state->parse_flags = ACPI_PARSE_LOAD_PASS1 |
 
  79                     ACPI_PARSE_DELETE_TREE;
 
  80                 walk_state->descending_callback = acpi_ds_load1_begin_op;
 
  81                 walk_state->ascending_callback = acpi_ds_load1_end_op;
 
  85                 walk_state->parse_flags = ACPI_PARSE_LOAD_PASS1 |
 
  86                     ACPI_PARSE_DELETE_TREE;
 
  87                 walk_state->descending_callback = acpi_ds_load2_begin_op;
 
  88                 walk_state->ascending_callback = acpi_ds_load2_end_op;
 
  92 #ifndef ACPI_NO_METHOD_EXECUTION
 
  93                 walk_state->parse_flags |= ACPI_PARSE_EXECUTE |
 
  94                     ACPI_PARSE_DELETE_TREE;
 
  95                 walk_state->descending_callback = acpi_ds_exec_begin_op;
 
  96                 walk_state->ascending_callback = acpi_ds_exec_end_op;
 
 101                 return (AE_BAD_PARAMETER);
 
 107 /*******************************************************************************
 
 109  * FUNCTION:    acpi_ds_load1_begin_op
 
 111  * PARAMETERS:  walk_state      - Current state of the parse tree walk
 
 112  *              out_op          - Where to return op if a new one is created
 
 116  * DESCRIPTION: Descending callback used during the loading of ACPI tables.
 
 118  ******************************************************************************/
 
 121 acpi_ds_load1_begin_op(struct acpi_walk_state * walk_state,
 
 122                        union acpi_parse_object ** out_op)
 
 124         union acpi_parse_object *op;
 
 125         struct acpi_namespace_node *node;
 
 127         acpi_object_type object_type;
 
 131         ACPI_FUNCTION_TRACE(ds_load1_begin_op);
 
 134         ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op,
 
 137         /* We are only interested in opcodes that have an associated name */
 
 140                 if (!(walk_state->op_info->flags & AML_NAMED)) {
 
 142                         return_ACPI_STATUS(AE_OK);
 
 145                 /* Check if this object has already been installed in the namespace */
 
 147                 if (op->common.node) {
 
 149                         return_ACPI_STATUS(AE_OK);
 
 153         path = acpi_ps_get_next_namestring(&walk_state->parser_state);
 
 155         /* Map the raw opcode into an internal object type */
 
 157         object_type = walk_state->op_info->object_type;
 
 159         ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
 
 160                           "State=%p Op=%p [%s]\n", walk_state, op,
 
 161                           acpi_ut_get_type_name(object_type)));
 
 163         switch (walk_state->opcode) {
 
 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.
 
 172                     acpi_ns_lookup(walk_state->scope_info, path, object_type,
 
 173                                    ACPI_IMODE_EXECUTE, ACPI_NS_SEARCH_PARENT,
 
 174                                    walk_state, &(node));
 
 175 #ifdef ACPI_ASL_COMPILER
 
 176                 if (status == AE_NOT_FOUND) {
 
 179                          * Target of Scope() not found. Generate an External for it, and
 
 180                          * insert the name into the namespace.
 
 182                         acpi_dm_add_to_external_list(path, ACPI_TYPE_DEVICE, 0);
 
 184                             acpi_ns_lookup(walk_state->scope_info, path,
 
 185                                            object_type, ACPI_IMODE_LOAD_PASS1,
 
 186                                            ACPI_NS_SEARCH_PARENT, walk_state,
 
 190                 if (ACPI_FAILURE(status)) {
 
 191                         ACPI_ERROR_NAMESPACE(path, status);
 
 192                         return_ACPI_STATUS(status);
 
 196                  * Check to make sure that the target is
 
 197                  * one of the opcodes that actually opens a scope
 
 199                 switch (node->type) {
 
 201                 case ACPI_TYPE_LOCAL_SCOPE:     /* Scope  */
 
 202                 case ACPI_TYPE_DEVICE:
 
 203                 case ACPI_TYPE_POWER:
 
 204                 case ACPI_TYPE_PROCESSOR:
 
 205                 case ACPI_TYPE_THERMAL:
 
 207                         /* These are acceptable types */
 
 210                 case ACPI_TYPE_INTEGER:
 
 211                 case ACPI_TYPE_STRING:
 
 212                 case ACPI_TYPE_BUFFER:
 
 215                          * These types we will allow, but we will change the type. This
 
 216                          * enables some existing code of the form:
 
 219                          *  Scope (DEB) { ... }
 
 221                          * Note: silently change the type here. On the second pass, we will report
 
 224                         ACPI_DEBUG_PRINT((ACPI_DB_INFO,
 
 225                                           "Type override - [%4.4s] had invalid type (%s) for Scope operator, changed to (Scope)\n",
 
 227                                           acpi_ut_get_type_name(node->type)));
 
 229                         node->type = ACPI_TYPE_ANY;
 
 230                         walk_state->scope_info->common.value = ACPI_TYPE_ANY;
 
 235                         /* All other types are an error */
 
 238                                     "Invalid type (%s) for target of Scope operator [%4.4s] (Cannot override)",
 
 239                                     acpi_ut_get_type_name(node->type), path));
 
 241                         return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
 
 247                  * For all other named opcodes, we will enter the name into
 
 250                  * Setup the search flags.
 
 251                  * Since we are entering a name into the namespace, we do not want to
 
 252                  * enable the search-to-root upsearch.
 
 254                  * There are only two conditions where it is acceptable that the name
 
 256                  *    1) the Scope() operator can reopen a scoping object that was
 
 257                  *       previously defined (Scope, Method, Device, etc.)
 
 258                  *    2) Whenever we are parsing a deferred opcode (op_region, Buffer,
 
 259                  *       buffer_field, or Package), the name of the object is already
 
 262                 if (walk_state->deferred_node) {
 
 264                         /* This name is already in the namespace, get the node */
 
 266                         node = walk_state->deferred_node;
 
 272                  * If we are executing a method, do not create any namespace objects
 
 273                  * during the load phase, only during execution.
 
 275                 if (walk_state->method_node) {
 
 281                 flags = ACPI_NS_NO_UPSEARCH;
 
 282                 if ((walk_state->opcode != AML_SCOPE_OP) &&
 
 283                     (!(walk_state->parse_flags & ACPI_PARSE_DEFERRED_OP))) {
 
 284                         flags |= ACPI_NS_ERROR_IF_FOUND;
 
 285                         ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
 
 286                                           "[%s] Cannot already exist\n",
 
 287                                           acpi_ut_get_type_name(object_type)));
 
 289                         ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
 
 290                                           "[%s] Both Find or Create allowed\n",
 
 291                                           acpi_ut_get_type_name(object_type)));
 
 295                  * Enter the named type into the internal namespace. We enter the name
 
 296                  * as we go downward in the parse tree. Any necessary subobjects that
 
 297                  * involve arguments to the opcode must be created as we go back up the
 
 301                     acpi_ns_lookup(walk_state->scope_info, path, object_type,
 
 302                                    ACPI_IMODE_LOAD_PASS1, flags, walk_state,
 
 304                 if (ACPI_FAILURE(status)) {
 
 305                         if (status == AE_ALREADY_EXISTS) {
 
 307                                 /* The name already exists in this scope */
 
 309                                 if (node->flags & ANOBJ_IS_EXTERNAL) {
 
 311                                          * Allow one create on an object or segment that was
 
 312                                          * previously declared External
 
 314                                         node->flags &= ~ANOBJ_IS_EXTERNAL;
 
 315                                         node->type = (u8) object_type;
 
 317                                         /* Just retyped a node, probably will need to open a scope */
 
 319                                         if (acpi_ns_opens_scope(object_type)) {
 
 321                                                     acpi_ds_scope_stack_push
 
 324                                                 if (ACPI_FAILURE(status)) {
 
 334                         if (ACPI_FAILURE(status)) {
 
 335                                 ACPI_ERROR_NAMESPACE(path, status);
 
 336                                 return_ACPI_STATUS(status);
 
 346                 /* Create a new op */
 
 348                 op = acpi_ps_alloc_op(walk_state->opcode);
 
 350                         return_ACPI_STATUS(AE_NO_MEMORY);
 
 354         /* Initialize the op */
 
 356 #if (defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY))
 
 357         op->named.path = ACPI_CAST_PTR(u8, path);
 
 362                  * Put the Node in the "op" object that the parser uses, so we
 
 363                  * can get it again quickly when this scope is closed
 
 365                 op->common.node = node;
 
 366                 op->named.name = node->name.integer;
 
 369         acpi_ps_append_arg(acpi_ps_get_parent_scope(&walk_state->parser_state),
 
 372         return_ACPI_STATUS(status);
 
 375 /*******************************************************************************
 
 377  * FUNCTION:    acpi_ds_load1_end_op
 
 379  * PARAMETERS:  walk_state      - Current state of the parse tree walk
 
 383  * DESCRIPTION: Ascending callback used during the loading of the namespace,
 
 384  *              both control methods and everything else.
 
 386  ******************************************************************************/
 
 388 acpi_status acpi_ds_load1_end_op(struct acpi_walk_state *walk_state)
 
 390         union acpi_parse_object *op;
 
 391         acpi_object_type object_type;
 
 392         acpi_status status = AE_OK;
 
 394         ACPI_FUNCTION_TRACE(ds_load1_end_op);
 
 397         ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op,
 
 400         /* We are only interested in opcodes that have an associated name */
 
 402         if (!(walk_state->op_info->flags & (AML_NAMED | AML_FIELD))) {
 
 403                 return_ACPI_STATUS(AE_OK);
 
 406         /* Get the object type to determine if we should pop the scope */
 
 408         object_type = walk_state->op_info->object_type;
 
 410 #ifndef ACPI_NO_METHOD_EXECUTION
 
 411         if (walk_state->op_info->flags & AML_FIELD) {
 
 413                  * If we are executing a method, do not create any namespace objects
 
 414                  * during the load phase, only during execution.
 
 416                 if (!walk_state->method_node) {
 
 417                         if (walk_state->opcode == AML_FIELD_OP ||
 
 418                             walk_state->opcode == AML_BANK_FIELD_OP ||
 
 419                             walk_state->opcode == AML_INDEX_FIELD_OP) {
 
 421                                     acpi_ds_init_field_objects(op, walk_state);
 
 424                 return_ACPI_STATUS(status);
 
 428          * If we are executing a method, do not create any namespace objects
 
 429          * during the load phase, only during execution.
 
 431         if (!walk_state->method_node) {
 
 432                 if (op->common.aml_opcode == AML_REGION_OP) {
 
 434                             acpi_ex_create_region(op->named.data,
 
 436                                                   (acpi_adr_space_type) ((op->
 
 444                         if (ACPI_FAILURE(status)) {
 
 445                                 return_ACPI_STATUS(status);
 
 447                 } else if (op->common.aml_opcode == AML_DATA_REGION_OP) {
 
 449                             acpi_ex_create_region(op->named.data,
 
 453                         if (ACPI_FAILURE(status)) {
 
 454                                 return_ACPI_STATUS(status);
 
 460         if (op->common.aml_opcode == AML_NAME_OP) {
 
 462                 /* For Name opcode, get the object type from the argument */
 
 464                 if (op->common.value.arg) {
 
 465                         object_type = (acpi_ps_get_opcode_info((op->common.
 
 471                         /* Set node type if we have a namespace node */
 
 473                         if (op->common.node) {
 
 474                                 op->common.node->type = (u8) object_type;
 
 480          * If we are executing a method, do not create any namespace objects
 
 481          * during the load phase, only during execution.
 
 483         if (!walk_state->method_node) {
 
 484                 if (op->common.aml_opcode == AML_METHOD_OP) {
 
 486                          * method_op pkg_length name_string method_flags term_list
 
 488                          * Note: We must create the method node/object pair as soon as we
 
 489                          * see the method declaration. This allows later pass1 parsing
 
 490                          * of invocations of the method (need to know the number of
 
 493                         ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
 
 494                                           "LOADING-Method: State=%p Op=%p NamedObj=%p\n",
 
 495                                           walk_state, op, op->named.node));
 
 497                         if (!acpi_ns_get_attached_object(op->named.node)) {
 
 498                                 walk_state->operands[0] =
 
 499                                     ACPI_CAST_PTR(void, op->named.node);
 
 500                                 walk_state->num_operands = 1;
 
 503                                     acpi_ds_create_operands(walk_state,
 
 506                                 if (ACPI_SUCCESS(status)) {
 
 508                                             acpi_ex_create_method(op->named.
 
 515                                 walk_state->operands[0] = NULL;
 
 516                                 walk_state->num_operands = 0;
 
 518                                 if (ACPI_FAILURE(status)) {
 
 519                                         return_ACPI_STATUS(status);
 
 525         /* Pop the scope stack (only if loading a table) */
 
 527         if (!walk_state->method_node && acpi_ns_opens_scope(object_type)) {
 
 528                 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
 
 529                                   "(%s): Popping scope for Op %p\n",
 
 530                                   acpi_ut_get_type_name(object_type), op));
 
 532                 status = acpi_ds_scope_stack_pop(walk_state);
 
 535         return_ACPI_STATUS(status);
 
 538 /*******************************************************************************
 
 540  * FUNCTION:    acpi_ds_load2_begin_op
 
 542  * PARAMETERS:  walk_state      - Current state of the parse tree walk
 
 543  *              out_op          - Wher to return op if a new one is created
 
 547  * DESCRIPTION: Descending callback used during the loading of ACPI tables.
 
 549  ******************************************************************************/
 
 552 acpi_ds_load2_begin_op(struct acpi_walk_state *walk_state,
 
 553                        union acpi_parse_object **out_op)
 
 555         union acpi_parse_object *op;
 
 556         struct acpi_namespace_node *node;
 
 558         acpi_object_type object_type;
 
 562         ACPI_FUNCTION_TRACE(ds_load2_begin_op);
 
 565         ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op,
 
 569                 if ((walk_state->control_state) &&
 
 570                     (walk_state->control_state->common.state ==
 
 571                      ACPI_CONTROL_CONDITIONAL_EXECUTING)) {
 
 573                         /* We are executing a while loop outside of a method */
 
 575                         status = acpi_ds_exec_begin_op(walk_state, out_op);
 
 576                         return_ACPI_STATUS(status);
 
 579                 /* We only care about Namespace opcodes here */
 
 581                 if ((!(walk_state->op_info->flags & AML_NSOPCODE) &&
 
 582                      (walk_state->opcode != AML_INT_NAMEPATH_OP)) ||
 
 583                     (!(walk_state->op_info->flags & AML_NAMED))) {
 
 584 #ifdef ACPI_ENABLE_MODULE_LEVEL_CODE
 
 585                         if ((walk_state->op_info->class == AML_CLASS_EXECUTE) ||
 
 586                             (walk_state->op_info->class == AML_CLASS_CONTROL)) {
 
 587                                 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
 
 588                                                   "Begin/EXEC: %s (fl %8.8X)\n",
 
 589                                                   walk_state->op_info->name,
 
 590                                                   walk_state->op_info->flags));
 
 592                                 /* Executing a type1 or type2 opcode outside of a method */
 
 595                                     acpi_ds_exec_begin_op(walk_state, out_op);
 
 596                                 return_ACPI_STATUS(status);
 
 599                         return_ACPI_STATUS(AE_OK);
 
 602                 /* Get the name we are going to enter or lookup in the namespace */
 
 604                 if (walk_state->opcode == AML_INT_NAMEPATH_OP) {
 
 606                         /* For Namepath op, get the path string */
 
 608                         buffer_ptr = op->common.value.string;
 
 611                                 /* No name, just exit */
 
 613                                 return_ACPI_STATUS(AE_OK);
 
 616                         /* Get name from the op */
 
 618                         buffer_ptr = ACPI_CAST_PTR(char, &op->named.name);
 
 621                 /* Get the namestring from the raw AML */
 
 624                     acpi_ps_get_next_namestring(&walk_state->parser_state);
 
 627         /* Map the opcode into an internal object type */
 
 629         object_type = walk_state->op_info->object_type;
 
 631         ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
 
 632                           "State=%p Op=%p Type=%X\n", walk_state, op,
 
 635         switch (walk_state->opcode) {
 
 637         case AML_BANK_FIELD_OP:
 
 638         case AML_INDEX_FIELD_OP:
 
 644         case AML_INT_NAMEPATH_OP:
 
 646                  * The name_path is an object reference to an existing object.
 
 647                  * Don't enter the name into the namespace, but look it up
 
 651                     acpi_ns_lookup(walk_state->scope_info, buffer_ptr,
 
 652                                    object_type, ACPI_IMODE_EXECUTE,
 
 653                                    ACPI_NS_SEARCH_PARENT, walk_state, &(node));
 
 658                  * The Path is an object reference to an existing object.
 
 659                  * Don't enter the name into the namespace, but look it up
 
 663                     acpi_ns_lookup(walk_state->scope_info, buffer_ptr,
 
 664                                    object_type, ACPI_IMODE_EXECUTE,
 
 665                                    ACPI_NS_SEARCH_PARENT, walk_state, &(node));
 
 666                 if (ACPI_FAILURE(status)) {
 
 667 #ifdef ACPI_ASL_COMPILER
 
 668                         if (status == AE_NOT_FOUND) {
 
 671                                 ACPI_ERROR_NAMESPACE(buffer_ptr, status);
 
 674                         ACPI_ERROR_NAMESPACE(buffer_ptr, status);
 
 676                         return_ACPI_STATUS(status);
 
 680                  * We must check to make sure that the target is
 
 681                  * one of the opcodes that actually opens a scope
 
 683                 switch (node->type) {
 
 685                 case ACPI_TYPE_LOCAL_SCOPE:     /* Scope */
 
 686                 case ACPI_TYPE_DEVICE:
 
 687                 case ACPI_TYPE_POWER:
 
 688                 case ACPI_TYPE_PROCESSOR:
 
 689                 case ACPI_TYPE_THERMAL:
 
 691                         /* These are acceptable types */
 
 694                 case ACPI_TYPE_INTEGER:
 
 695                 case ACPI_TYPE_STRING:
 
 696                 case ACPI_TYPE_BUFFER:
 
 699                          * These types we will allow, but we will change the type. This
 
 700                          * enables some existing code of the form:
 
 703                          *  Scope (DEB) { ... }
 
 705                         ACPI_WARNING((AE_INFO,
 
 706                                       "Type override - [%4.4s] had invalid type (%s) for Scope operator, changed to (Scope)",
 
 708                                       acpi_ut_get_type_name(node->type)));
 
 710                         node->type = ACPI_TYPE_ANY;
 
 711                         walk_state->scope_info->common.value = ACPI_TYPE_ANY;
 
 716                         /* All other types are an error */
 
 719                                     "Invalid type (%s) for target of Scope operator [%4.4s]",
 
 720                                     acpi_ut_get_type_name(node->type),
 
 723                         return (AE_AML_OPERAND_TYPE);
 
 729                 /* All other opcodes */
 
 731                 if (op && op->common.node) {
 
 733                         /* This op/node was previously entered into the namespace */
 
 735                         node = op->common.node;
 
 737                         if (acpi_ns_opens_scope(object_type)) {
 
 739                                     acpi_ds_scope_stack_push(node, object_type,
 
 741                                 if (ACPI_FAILURE(status)) {
 
 742                                         return_ACPI_STATUS(status);
 
 746                         return_ACPI_STATUS(AE_OK);
 
 750                  * Enter the named type into the internal namespace. We enter the name
 
 751                  * as we go downward in the parse tree. Any necessary subobjects that
 
 752                  * involve arguments to the opcode must be created as we go back up the
 
 755                  * Note: Name may already exist if we are executing a deferred opcode.
 
 757                 if (walk_state->deferred_node) {
 
 759                         /* This name is already in the namespace, get the node */
 
 761                         node = walk_state->deferred_node;
 
 766                 flags = ACPI_NS_NO_UPSEARCH;
 
 767                 if (walk_state->pass_number == ACPI_IMODE_EXECUTE) {
 
 769                         /* Execution mode, node cannot already exist, node is temporary */
 
 771                         flags |= (ACPI_NS_ERROR_IF_FOUND | ACPI_NS_TEMPORARY);
 
 774                 /* Add new entry or lookup existing entry */
 
 777                     acpi_ns_lookup(walk_state->scope_info, buffer_ptr,
 
 778                                    object_type, ACPI_IMODE_LOAD_PASS2, flags,
 
 781                 if (ACPI_SUCCESS(status) && (flags & ACPI_NS_TEMPORARY)) {
 
 782                         ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
 
 783                                           "***New Node [%4.4s] %p is temporary\n",
 
 784                                           acpi_ut_get_node_name(node), node));
 
 789         if (ACPI_FAILURE(status)) {
 
 790                 ACPI_ERROR_NAMESPACE(buffer_ptr, status);
 
 791                 return_ACPI_STATUS(status);
 
 796                 /* Create a new op */
 
 798                 op = acpi_ps_alloc_op(walk_state->opcode);
 
 800                         return_ACPI_STATUS(AE_NO_MEMORY);
 
 803                 /* Initialize the new op */
 
 806                         op->named.name = node->name.integer;
 
 812          * Put the Node in the "op" object that the parser uses, so we
 
 813          * can get it again quickly when this scope is closed
 
 815         op->common.node = node;
 
 816         return_ACPI_STATUS(status);
 
 819 /*******************************************************************************
 
 821  * FUNCTION:    acpi_ds_load2_end_op
 
 823  * PARAMETERS:  walk_state      - Current state of the parse tree walk
 
 827  * DESCRIPTION: Ascending callback used during the loading of the namespace,
 
 828  *              both control methods and everything else.
 
 830  ******************************************************************************/
 
 832 acpi_status acpi_ds_load2_end_op(struct acpi_walk_state *walk_state)
 
 834         union acpi_parse_object *op;
 
 835         acpi_status status = AE_OK;
 
 836         acpi_object_type object_type;
 
 837         struct acpi_namespace_node *node;
 
 838         union acpi_parse_object *arg;
 
 839         struct acpi_namespace_node *new_node;
 
 840 #ifndef ACPI_NO_METHOD_EXECUTION
 
 845         ACPI_FUNCTION_TRACE(ds_load2_end_op);
 
 848         ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Opcode [%s] Op %p State %p\n",
 
 849                           walk_state->op_info->name, op, walk_state));
 
 851         /* Check if opcode had an associated namespace object */
 
 853         if (!(walk_state->op_info->flags & AML_NSOBJECT)) {
 
 854 #ifndef ACPI_NO_METHOD_EXECUTION
 
 855 #ifdef ACPI_ENABLE_MODULE_LEVEL_CODE
 
 856                 /* No namespace object. Executable opcode? */
 
 858                 if ((walk_state->op_info->class == AML_CLASS_EXECUTE) ||
 
 859                     (walk_state->op_info->class == AML_CLASS_CONTROL)) {
 
 860                         ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
 
 861                                           "End/EXEC:   %s (fl %8.8X)\n",
 
 862                                           walk_state->op_info->name,
 
 863                                           walk_state->op_info->flags));
 
 865                         /* Executing a type1 or type2 opcode outside of a method */
 
 867                         status = acpi_ds_exec_end_op(walk_state);
 
 868                         return_ACPI_STATUS(status);
 
 872                 return_ACPI_STATUS(AE_OK);
 
 875         if (op->common.aml_opcode == AML_SCOPE_OP) {
 
 876                 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
 
 877                                   "Ending scope Op=%p State=%p\n", op,
 
 881         object_type = walk_state->op_info->object_type;
 
 884          * Get the Node/name from the earlier lookup
 
 885          * (It was saved in the *op structure)
 
 887         node = op->common.node;
 
 890          * Put the Node on the object stack (Contains the ACPI Name of
 
 893         walk_state->operands[0] = (void *)node;
 
 894         walk_state->num_operands = 1;
 
 896         /* Pop the scope stack */
 
 898         if (acpi_ns_opens_scope(object_type) &&
 
 899             (op->common.aml_opcode != AML_INT_METHODCALL_OP)) {
 
 900                 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
 
 901                                   "(%s) Popping scope for Op %p\n",
 
 902                                   acpi_ut_get_type_name(object_type), op));
 
 904                 status = acpi_ds_scope_stack_pop(walk_state);
 
 905                 if (ACPI_FAILURE(status)) {
 
 911          * Named operations are as follows:
 
 916          * AML_CREATEBYTEFIELD
 
 917          * AML_CREATEDWORDFIELD
 
 919          * AML_CREATEQWORDFIELD
 
 920          * AML_CREATEWORDFIELD
 
 938         ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
 
 939                           "Create-Load [%s] State=%p Op=%p NamedObj=%p\n",
 
 940                           acpi_ps_get_opcode_name(op->common.aml_opcode),
 
 941                           walk_state, op, node));
 
 943         /* Decode the opcode */
 
 945         arg = op->common.value.arg;
 
 947         switch (walk_state->op_info->type) {
 
 948 #ifndef ACPI_NO_METHOD_EXECUTION
 
 950         case AML_TYPE_CREATE_FIELD:
 
 952                  * Create the field object, but the field buffer and index must
 
 953                  * be evaluated later during the execution phase
 
 955                 status = acpi_ds_create_buffer_field(op, walk_state);
 
 958         case AML_TYPE_NAMED_FIELD:
 
 960                  * If we are executing a method, initialize the field
 
 962                 if (walk_state->method_node) {
 
 963                         status = acpi_ds_init_field_objects(op, walk_state);
 
 966                 switch (op->common.aml_opcode) {
 
 967                 case AML_INDEX_FIELD_OP:
 
 970                             acpi_ds_create_index_field(op,
 
 972                                                        common.node, walk_state);
 
 975                 case AML_BANK_FIELD_OP:
 
 978                             acpi_ds_create_bank_field(op, arg->common.node,
 
 985                             acpi_ds_create_field(op, arg->common.node,
 
 990                         /* All NAMED_FIELD opcodes must be handled above */
 
 995         case AML_TYPE_NAMED_SIMPLE:
 
 997                 status = acpi_ds_create_operands(walk_state, arg);
 
 998                 if (ACPI_FAILURE(status)) {
 
1002                 switch (op->common.aml_opcode) {
 
1003                 case AML_PROCESSOR_OP:
 
1005                         status = acpi_ex_create_processor(walk_state);
 
1008                 case AML_POWER_RES_OP:
 
1010                         status = acpi_ex_create_power_resource(walk_state);
 
1015                         status = acpi_ex_create_mutex(walk_state);
 
1020                         status = acpi_ex_create_event(walk_state);
 
1025                         status = acpi_ex_create_alias(walk_state);
 
1029                         /* Unknown opcode */
 
1035                 /* Delete operands */
 
1037                 for (i = 1; i < walk_state->num_operands; i++) {
 
1038                         acpi_ut_remove_reference(walk_state->operands[i]);
 
1039                         walk_state->operands[i] = NULL;
 
1043 #endif                          /* ACPI_NO_METHOD_EXECUTION */
 
1045         case AML_TYPE_NAMED_COMPLEX:
 
1047                 switch (op->common.aml_opcode) {
 
1048 #ifndef ACPI_NO_METHOD_EXECUTION
 
1050                 case AML_DATA_REGION_OP:
 
1052                         if (op->common.aml_opcode == AML_REGION_OP) {
 
1053                                 region_space = (acpi_adr_space_type)
 
1054                                     ((op->common.value.arg)->common.value.
 
1057                                 region_space = REGION_DATA_TABLE;
 
1061                          * If we are executing a method, initialize the region
 
1063                         if (walk_state->method_node) {
 
1065                                     acpi_ex_create_region(op->named.data,
 
1069                                 if (ACPI_FAILURE(status)) {
 
1075                          * The op_region is not fully parsed at this time. Only valid
 
1076                          * argument is the space_id. (We must save the address of the
 
1077                          * AML of the address and length operands)
 
1081                          * If we have a valid region, initialize it
 
1082                          * Namespace is NOT locked at this point.
 
1085                             acpi_ev_initialize_region
 
1086                             (acpi_ns_get_attached_object(node), FALSE);
 
1087                         if (ACPI_FAILURE(status)) {
 
1089                                  *  If AE_NOT_EXIST is returned, it is not fatal
 
1090                                  *  because many regions get created before a handler
 
1091                                  *  is installed for said region.
 
1093                                 if (AE_NOT_EXIST == status) {
 
1101                         status = acpi_ds_create_node(walk_state, node, op);
 
1106                          * method_op pkg_length name_string method_flags term_list
 
1108                          * Note: We must create the method node/object pair as soon as we
 
1109                          * see the method declaration. This allows later pass1 parsing
 
1110                          * of invocations of the method (need to know the number of
 
1113                         ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
 
1114                                           "LOADING-Method: State=%p Op=%p NamedObj=%p\n",
 
1115                                           walk_state, op, op->named.node));
 
1117                         if (!acpi_ns_get_attached_object(op->named.node)) {
 
1118                                 walk_state->operands[0] =
 
1119                                     ACPI_CAST_PTR(void, op->named.node);
 
1120                                 walk_state->num_operands = 1;
 
1123                                     acpi_ds_create_operands(walk_state,
 
1126                                 if (ACPI_SUCCESS(status)) {
 
1128                                             acpi_ex_create_method(op->named.
 
1134                                 walk_state->operands[0] = NULL;
 
1135                                 walk_state->num_operands = 0;
 
1137                                 if (ACPI_FAILURE(status)) {
 
1138                                         return_ACPI_STATUS(status);
 
1143 #endif                          /* ACPI_NO_METHOD_EXECUTION */
 
1146                         /* All NAMED_COMPLEX opcodes must be handled above */
 
1151         case AML_CLASS_INTERNAL:
 
1153                 /* case AML_INT_NAMEPATH_OP: */
 
1156         case AML_CLASS_METHOD_CALL:
 
1158                 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
 
1159                                   "RESOLVING-MethodCall: State=%p Op=%p NamedObj=%p\n",
 
1160                                   walk_state, op, node));
 
1163                  * Lookup the method name and save the Node
 
1166                     acpi_ns_lookup(walk_state->scope_info,
 
1167                                    arg->common.value.string, ACPI_TYPE_ANY,
 
1168                                    ACPI_IMODE_LOAD_PASS2,
 
1169                                    ACPI_NS_SEARCH_PARENT |
 
1170                                    ACPI_NS_DONT_OPEN_SCOPE, walk_state,
 
1172                 if (ACPI_SUCCESS(status)) {
 
1174                          * Make sure that what we found is indeed a method
 
1175                          * We didn't search for a method on purpose, to see if the name
 
1178                         if (new_node->type != ACPI_TYPE_METHOD) {
 
1179                                 status = AE_AML_OPERAND_TYPE;
 
1182                         /* We could put the returned object (Node) on the object stack for
 
1183                          * later, but for now, we will put it in the "op" object that the
 
1184                          * parser uses, so we can get it again at the end of this scope
 
1186                         op->common.node = new_node;
 
1188                         ACPI_ERROR_NAMESPACE(arg->common.value.string, status);
 
1198         /* Remove the Node pushed at the very beginning */
 
1200         walk_state->operands[0] = NULL;
 
1201         walk_state->num_operands = 0;
 
1202         return_ACPI_STATUS(status);